{
  "version": 3,
  "sources": ["ssg:https://ga.jspm.io/npm:@motionone/utils@10.14.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:@motionone/easing@10.12.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:@motionone/animation@10.12.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:tslib@2.4.0/tslib.es6.js", "ssg:https://ga.jspm.io/npm:hey-listen@1.0.8/dist/index.js", "ssg:https://ga.jspm.io/npm:@motionone/generators@10.12.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:@motionone/dom@10.12.0/dist/index.es.js", "ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/jyRNgY7vYWXe6t31T0wo/Ticker.js", "ssg:https://framerusercontent.com/modules/T5bzhrkfZBbD5AeTx0KF/EXzqRFodhCJA70QmEGaa/i9mMX8Wmo.js"],
  "sourcesContent": ["function addUniqueItem(t,e){-1===t.indexOf(e)&&t.push(e)}function removeItem(t,e){const n=t.indexOf(e);n>-1&&t.splice(n,1)}const clamp=(t,e,n)=>Math.min(Math.max(n,t),e);const t={duration:.3,delay:0,endDelay:0,repeat:0,easing:\"ease\"};const isNumber=t=>\"number\"===typeof t;const isEasingList=t=>Array.isArray(t)&&!isNumber(t[0]);const wrap=(t,e,n)=>{const o=e-t;return((n-t)%o+o)%o+t};function getEasingForSegment(t,e){return isEasingList(t)?t[wrap(0,t.length,e)]:t}const mix=(t,e,n)=>-n*t+n*e+t;const noop=()=>{};const noopReturn=t=>t;const progress=(t,e,n)=>e-t===0?1:(n-t)/(e-t);function fillOffset(t,e){const n=t[t.length-1];for(let o=1;o<=e;o++){const s=progress(0,e,o);t.push(mix(n,1,s))}}function defaultOffset(t){const e=[0];fillOffset(e,t-1);return e}function interpolate(t,e=defaultOffset(t.length),n=noopReturn){const o=t.length;const s=o-e.length;s>0&&fillOffset(e,s);return s=>{let f=0;for(;f<o-2;f++)if(s<e[f+1])break;let r=clamp(0,1,progress(e[f],e[f+1],s));const c=getEasingForSegment(n,f);r=c(r);return mix(t[f],t[f+1],r)}}const isCubicBezier=t=>Array.isArray(t)&&isNumber(t[0]);const isEasingGenerator=t=>\"object\"===typeof t&&Boolean(t.createAnimation);const isFunction=t=>\"function\"===typeof t;const isString=t=>\"string\"===typeof t;const e={ms:t=>1e3*t,s:t=>t/1e3};\n/*\n  Convert velocity into velocity per second\n\n  @param [number]: Unit per frame\n  @param [number]: Frame duration in ms\n*/function velocityPerSecond(t,e){return e?t*(1e3/e):0}export{addUniqueItem,clamp,defaultOffset,t as defaults,fillOffset,getEasingForSegment,interpolate,isCubicBezier,isEasingGenerator,isEasingList,isFunction,isNumber,isString,mix,noop,noopReturn,progress,removeItem,e as time,velocityPerSecond,wrap};\n\n//# sourceMappingURL=index.es.js.map", "import{noopReturn as t,clamp as n}from\"@motionone/utils\";const calcBezier=(t,n,e)=>(((1-3*e+3*n)*t+(3*e-6*n))*t+3*n)*t;const e=1e-7;const i=12;function binarySubdivide(t,n,o,r,c){let u;let a;let s=0;do{a=n+(o-n)/2;u=calcBezier(a,r,c)-t;u>0?o=a:n=a}while(Math.abs(u)>e&&++s<i);return a}function cubicBezier(n,e,i,o){if(n===e&&i===o)return t;const getTForX=t=>binarySubdivide(t,0,1,n,i);return t=>0===t||1===t?t:calcBezier(getTForX(t),e,o)}const steps=(t,e=\"end\")=>i=>{i=\"end\"===e?Math.min(i,.999):Math.max(i,.001);const o=i*t;const r=\"end\"===e?Math.floor(o):Math.ceil(o);return n(0,1,r/t)};export{cubicBezier,steps};\n\n//# sourceMappingURL=index.es.js.map", "import{noopReturn as t,defaults as i,isEasingGenerator as e,isEasingList as s,interpolate as a}from\"@motionone/utils\";import{cubicBezier as n,steps as r}from\"@motionone/easing\";const o={ease:n(.25,.1,.25,1),\"ease-in\":n(.42,0,1,1),\"ease-in-out\":n(.42,0,.58,1),\"ease-out\":n(0,0,.58,1)};const h=/\\((.*?)\\)/;function getEasingFunction(i){if(\"function\"===typeof i)return i;if(Array.isArray(i))return n(...i);if(o[i])return o[i];if(i.startsWith(\"steps\")){const t=h.exec(i);if(t){const i=t[1].split(\",\");return r(parseFloat(i[0]),i[1].trim())}}return t}class Animation{constructor(n,r=[0,1],{easing:o,duration:h=i.duration,delay:u=i.delay,endDelay:l=i.endDelay,repeat:m=i.repeat,offset:c,direction:p=\"normal\"}={}){this.startTime=null;this.rate=1;this.t=0;this.cancelTimestamp=null;this.easing=t;this.duration=0;this.totalDuration=0;this.repeat=0;this.playState=\"idle\";this.finished=new Promise(((t,i)=>{this.resolve=t;this.reject=i}));o=o||i.easing;if(e(o)){const t=o.createAnimation(r,(()=>\"0\"),true);o=t.easing;void 0!==t.keyframes&&(r=t.keyframes);void 0!==t.duration&&(h=t.duration)}this.repeat=m;this.easing=s(o)?t:getEasingFunction(o);this.updateDuration(h);const d=a(r,c,s(o)?o.map(getEasingFunction):t);this.tick=t=>{var i;u=u;let e=0;e=void 0!==this.pauseTime?this.pauseTime:(t-this.startTime)*this.rate;this.t=e;e/=1e3;e=Math.max(e-u,0);\"finished\"===this.playState&&void 0===this.pauseTime&&(e=this.totalDuration);const s=e/this.duration;let a=Math.floor(s);let r=s%1;!r&&s>=1&&(r=1);1===r&&a--;const o=a%2;(\"reverse\"===p||\"alternate\"===p&&o||\"alternate-reverse\"===p&&!o)&&(r=1-r);const h=e>=this.totalDuration?1:Math.min(r,1);const m=d(this.easing(h));n(m);const c=void 0===this.pauseTime&&(\"finished\"===this.playState||e>=this.totalDuration+l);if(c){this.playState=\"finished\";null===(i=this.resolve)||void 0===i?void 0:i.call(this,m)}else\"idle\"!==this.playState&&(this.frameRequestId=requestAnimationFrame(this.tick))};this.play()}play(){const t=performance.now();this.playState=\"running\";void 0!==this.pauseTime?this.startTime=t-this.pauseTime:this.startTime||(this.startTime=t);this.cancelTimestamp=this.startTime;this.pauseTime=void 0;this.frameRequestId=requestAnimationFrame(this.tick)}pause(){this.playState=\"paused\";this.pauseTime=this.t}finish(){this.playState=\"finished\";this.tick(0)}stop(){var t;this.playState=\"idle\";void 0!==this.frameRequestId&&cancelAnimationFrame(this.frameRequestId);null===(t=this.reject)||void 0===t?void 0:t.call(this,false)}cancel(){this.stop();this.tick(this.cancelTimestamp)}reverse(){this.rate*=-1}commitStyles(){}updateDuration(t){this.duration=t;this.totalDuration=t*(this.repeat+1)}get currentTime(){return this.t}set currentTime(t){void 0!==this.pauseTime||0===this.rate?this.pauseTime=t:this.startTime=performance.now()-t/this.rate}get playbackRate(){return this.rate}set playbackRate(t){this.rate=t}}export{Animation,getEasingFunction};\n\n//# sourceMappingURL=index.es.js.map", "var extendStatics=function(e,t){extendStatics=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var r in t)Object.prototype.hasOwnProperty.call(t,r)&&(e[r]=t[r])};return extendStatics(e,t)};function __extends(e,t){if(\"function\"!==typeof t&&null!==t)throw new TypeError(\"Class extends value \"+String(t)+\" is not a constructor or null\");extendStatics(e,t);function __(){this.constructor=e}e.prototype=null===t?Object.create(t):(__.prototype=t.prototype,new __)}var __assign=function(){__assign=Object.assign||function __assign(e){for(var t,r=1,n=arguments.length;r<n;r++){t=arguments[r];for(var o in t)Object.prototype.hasOwnProperty.call(t,o)&&(e[o]=t[o])}return e};return __assign.apply(this,arguments)};function __rest(e,t){var r={};for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&t.indexOf(n)<0&&(r[n]=e[n]);if(null!=e&&\"function\"===typeof Object.getOwnPropertySymbols){var o=0;for(n=Object.getOwnPropertySymbols(e);o<n.length;o++)t.indexOf(n[o])<0&&Object.prototype.propertyIsEnumerable.call(e,n[o])&&(r[n[o]]=e[n[o]])}return r}function __decorate(e,t,r,n){var o,a=arguments.length,i=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if(\"object\"===typeof Reflect&&\"function\"===typeof Reflect.decorate)i=Reflect.decorate(e,t,r,n);else for(var c=e.length-1;c>=0;c--)(o=e[c])&&(i=(a<3?o(i):a>3?o(t,r,i):o(t,r))||i);return a>3&&i&&Object.defineProperty(t,r,i),i}function __param(e,t){return function(r,n){t(r,n,e)}}function __metadata(e,t){if(\"object\"===typeof Reflect&&\"function\"===typeof Reflect.metadata)return Reflect.metadata(e,t)}function __awaiter(e,t,r,n){function adopt(e){return e instanceof r?e:new r((function(t){t(e)}))}return new(r||(r=Promise))((function(r,o){function fulfilled(e){try{step(n.next(e))}catch(e){o(e)}}function rejected(e){try{step(n.throw(e))}catch(e){o(e)}}function step(e){e.done?r(e.value):adopt(e.value).then(fulfilled,rejected)}step((n=n.apply(e,t||[])).next())}))}function __generator(e,t){var r,n,o,a,i={label:0,sent:function(){if(1&o[0])throw o[1];return o[1]},trys:[],ops:[]};return a={next:verb(0),throw:verb(1),return:verb(2)},\"function\"===typeof Symbol&&(a[Symbol.iterator]=function(){return this}),a;function verb(e){return function(t){return step([e,t])}}function step(a){if(r)throw new TypeError(\"Generator is already executing.\");while(i)try{if(r=1,n&&(o=2&a[0]?n.return:a[0]?n.throw||((o=n.return)&&o.call(n),0):n.next)&&!(o=o.call(n,a[1])).done)return o;(n=0,o)&&(a=[2&a[0],o.value]);switch(a[0]){case 0:case 1:o=a;break;case 4:i.label++;return{value:a[1],done:false};case 5:i.label++;n=a[1];a=[0];continue;case 7:a=i.ops.pop();i.trys.pop();continue;default:if(!(o=i.trys,o=o.length>0&&o[o.length-1])&&(6===a[0]||2===a[0])){i=0;continue}if(3===a[0]&&(!o||a[1]>o[0]&&a[1]<o[3])){i.label=a[1];break}if(6===a[0]&&i.label<o[1]){i.label=o[1];o=a;break}if(o&&i.label<o[2]){i.label=o[2];i.ops.push(a);break}o[2]&&i.ops.pop();i.trys.pop();continue}a=t.call(e,i)}catch(e){a=[6,e];n=0}finally{r=o=0}if(5&a[0])throw a[1];return{value:a[0]?a[1]:void 0,done:true}}}var e=Object.create?function(e,t,r,n){void 0===n&&(n=r);var o=Object.getOwnPropertyDescriptor(t,r);o&&!(\"get\"in o?!t.__esModule:o.writable||o.configurable)||(o={enumerable:true,get:function(){return t[r]}});Object.defineProperty(e,n,o)}:function(e,t,r,n){void 0===n&&(n=r);e[n]=t[r]};function __exportStar(t,r){for(var n in t)\"default\"===n||Object.prototype.hasOwnProperty.call(r,n)||e(r,t,n)}function __values(e){var t=\"function\"===typeof Symbol&&Symbol.iterator,r=t&&e[t],n=0;if(r)return r.call(e);if(e&&\"number\"===typeof e.length)return{next:function(){e&&n>=e.length&&(e=void 0);return{value:e&&e[n++],done:!e}}};throw new TypeError(t?\"Object is not iterable.\":\"Symbol.iterator is not defined.\")}function __read(e,t){var r=\"function\"===typeof Symbol&&e[Symbol.iterator];if(!r)return e;var n,o,a=r.call(e),i=[];try{while((void 0===t||t-- >0)&&!(n=a.next()).done)i.push(n.value)}catch(e){o={error:e}}finally{try{n&&!n.done&&(r=a.return)&&r.call(a)}finally{if(o)throw o.error}}return i}\n/** @deprecated */function __spread(){for(var e=[],t=0;t<arguments.length;t++)e=e.concat(__read(arguments[t]));return e}\n/** @deprecated */function __spreadArrays(){for(var e=0,t=0,r=arguments.length;t<r;t++)e+=arguments[t].length;var n=Array(e),o=0;for(t=0;t<r;t++)for(var a=arguments[t],i=0,c=a.length;i<c;i++,o++)n[o]=a[i];return n}function __spreadArray(e,t,r){if(r||2===arguments.length)for(var n,o=0,a=t.length;o<a;o++)if(n||!(o in t)){n||(n=Array.prototype.slice.call(t,0,o));n[o]=t[o]}return e.concat(n||Array.prototype.slice.call(t))}function __await(e){return this instanceof __await?(this.v=e,this):new __await(e)}function __asyncGenerator(e,t,r){if(!Symbol.asyncIterator)throw new TypeError(\"Symbol.asyncIterator is not defined.\");var n,o=r.apply(e,t||[]),a=[];return n={},verb(\"next\"),verb(\"throw\"),verb(\"return\"),n[Symbol.asyncIterator]=function(){return this},n;function verb(e){o[e]&&(n[e]=function(t){return new Promise((function(r,n){a.push([e,t,r,n])>1||resume(e,t)}))})}function resume(e,t){try{step(o[e](t))}catch(e){settle(a[0][3],e)}}function step(e){e.value instanceof __await?Promise.resolve(e.value.v).then(fulfill,reject):settle(a[0][2],e)}function fulfill(e){resume(\"next\",e)}function reject(e){resume(\"throw\",e)}function settle(e,t){(e(t),a.shift(),a.length)&&resume(a[0][0],a[0][1])}}function __asyncDelegator(e){var t,r;return t={},verb(\"next\"),verb(\"throw\",(function(e){throw e})),verb(\"return\"),t[Symbol.iterator]=function(){return this},t;function verb(n,o){t[n]=e[n]?function(t){return(r=!r)?{value:__await(e[n](t)),done:\"return\"===n}:o?o(t):t}:o}}function __asyncValues(e){if(!Symbol.asyncIterator)throw new TypeError(\"Symbol.asyncIterator is not defined.\");var t,r=e[Symbol.asyncIterator];return r?r.call(e):(e=\"function\"===typeof __values?__values(e):e[Symbol.iterator](),t={},verb(\"next\"),verb(\"throw\"),verb(\"return\"),t[Symbol.asyncIterator]=function(){return this},t);function verb(r){t[r]=e[r]&&function(t){return new Promise((function(n,o){t=e[r](t),settle(n,o,t.done,t.value)}))}}function settle(e,t,r,n){Promise.resolve(n).then((function(t){e({value:t,done:r})}),t)}}function __makeTemplateObject(e,t){Object.defineProperty?Object.defineProperty(e,\"raw\",{value:t}):e.raw=t;return e}var t=Object.create?function(e,t){Object.defineProperty(e,\"default\",{enumerable:true,value:t})}:function(e,t){e.default=t};function __importStar(r){if(r&&r.__esModule)return r;var n={};if(null!=r)for(var o in r)\"default\"!==o&&Object.prototype.hasOwnProperty.call(r,o)&&e(n,r,o);t(n,r);return n}function __importDefault(e){return e&&e.__esModule?e:{default:e}}function __classPrivateFieldGet(e,t,r,n){if(\"a\"===r&&!n)throw new TypeError(\"Private accessor was defined without a getter\");if(\"function\"===typeof t?e!==t||!n:!t.has(e))throw new TypeError(\"Cannot read private member from an object whose class did not declare it\");return\"m\"===r?n:\"a\"===r?n.call(e):n?n.value:t.get(e)}function __classPrivateFieldSet(e,t,r,n,o){if(\"m\"===n)throw new TypeError(\"Private method is not writable\");if(\"a\"===n&&!o)throw new TypeError(\"Private accessor was defined without a setter\");if(\"function\"===typeof t?e!==t||!o:!t.has(e))throw new TypeError(\"Cannot write private member to an object whose class did not declare it\");return\"a\"===n?o.call(e,r):o?o.value=r:t.set(e,r),r}function __classPrivateFieldIn(e,t){if(null===t||\"object\"!==typeof t&&\"function\"!==typeof t)throw new TypeError(\"Cannot use 'in' operator on non-object\");return\"function\"===typeof e?t===e:e.has(t)}export{__assign,__asyncDelegator,__asyncGenerator,__asyncValues,__await,__awaiter,__classPrivateFieldGet,__classPrivateFieldIn,__classPrivateFieldSet,e as __createBinding,__decorate,__exportStar,__extends,__generator,__importDefault,__importStar,__makeTemplateObject,__metadata,__param,__read,__rest,__spread,__spreadArray,__spreadArrays,__values};\n\n//# sourceMappingURL=tslib.es6.js.map", "var n={};Object.defineProperty(n,\"__esModule\",{value:true});n.warning=function(){};n.invariant=function(){};const e=n.__esModule,t=n.warning,r=n.invariant;export default n;export{e as __esModule,r as invariant,t as warning};\n\n//# sourceMappingURL=index.js.map", "import{velocityPerSecond as e,time as t}from\"@motionone/utils\";const s=5;function calcGeneratorVelocity(t,n,r){const a=Math.max(n-s,0);return e(r-t(a),n-a)}const n={stiffness:100,damping:10,mass:1};const calcDampingRatio=(e=n.stiffness,t=n.damping,s=n.mass)=>t/(2*Math.sqrt(e*s));function hasReachedTarget(e,t,s){return e<t&&s>=t||e>t&&s<=t}const spring=({stiffness:e=n.stiffness,damping:s=n.damping,mass:r=n.mass,from:a=0,to:o=1,velocity:c=0,restSpeed:i=2,restDistance:h=.5}={})=>{c=c?t.s(c):0;const u={done:false,hasReachedTarget:false,current:a,target:o};const d=o-a;const f=Math.sqrt(e/r)/1e3;const l=calcDampingRatio(e,s,r);let g;if(l<1){const e=f*Math.sqrt(1-l*l);g=t=>o-Math.exp(-l*f*t)*((l*f*d-c)/e*Math.sin(e*t)+d*Math.cos(e*t))}else g=e=>o-Math.exp(-f*e)*(d+(f*d-c)*e);return e=>{u.current=g(e);const t=0===e?c:calcGeneratorVelocity(g,e,u.current);const s=Math.abs(t)<=i;const n=Math.abs(o-u.current)<=h;u.done=s&&n;u.hasReachedTarget=hasReachedTarget(a,o,u.current);return u}};const glide=({from:e=0,velocity:s=0,power:n=.8,decay:r=.325,bounceDamping:a,bounceStiffness:o,changeTarget:c,min:i,max:h,restDistance:u=.5,restSpeed:d})=>{r=t.ms(r);const f={hasReachedTarget:false,done:false,current:e,target:e};const isOutOfBounds=e=>void 0!==i&&e<i||void 0!==h&&e>h;const nearestBoundary=e=>void 0===i?h:void 0===h||Math.abs(i-e)<Math.abs(h-e)?i:h;let l=n*s;const g=e+l;const m=void 0===c?g:c(g);f.target=m;m!==g&&(l=m-e);const calcDelta=e=>-l*Math.exp(-e/r);const calcLatest=e=>m+calcDelta(e);const applyFriction=e=>{const t=calcDelta(e);const s=calcLatest(e);f.done=Math.abs(t)<=u;f.current=f.done?m:s};let p;let M;const checkCatchBoundary=e=>{if(isOutOfBounds(f.current)){p=e;M=spring({from:f.current,to:nearestBoundary(f.current),velocity:calcGeneratorVelocity(calcLatest,e,f.current),damping:a,stiffness:o,restDistance:u,restSpeed:d})}};checkCatchBoundary(0);return e=>{let t=false;if(!M&&void 0===p){t=true;applyFriction(e);checkCatchBoundary(e)}if(void 0!==p&&e>p){f.hasReachedTarget=true;return M(e-p)}f.hasReachedTarget=false;!t&&applyFriction(e);return f}};const r=10;const a=1e4;function pregenerateKeyframes(e){let t;let s=r;let n=e(0);const o=[n.current];while(!n.done&&s<a){n=e(s);o.push(n.done?n.target:n.current);void 0===t&&n.hasReachedTarget&&(t=s);s+=r}const c=s-r;1===o.length&&o.push(n.current);return{keyframes:o,duration:c/1e3,overshootDuration:(null!==t&&void 0!==t?t:c)/1e3}}export{calcGeneratorVelocity,glide,pregenerateKeyframes,spring};\n\n//# sourceMappingURL=index.es.js.map", "import{MotionValue as e}from\"@motionone/types\";import{noopReturn as t,addUniqueItem as n,isCubicBezier as o,defaults as i,isEasingGenerator as s,isNumber as r,time as a,isEasingList as c,noop as l,removeItem as f,mix as u,getEasingForSegment as d,isString as g,defaultOffset as m,fillOffset as h,progress as p,velocityPerSecond as v,interpolate as y}from\"@motionone/utils\";import{Animation as w,getEasingFunction as E}from\"@motionone/animation\";import{__rest as b}from\"tslib\";import{invariant as S}from\"hey-listen\";import{pregenerateKeyframes as A,calcGeneratorVelocity as O,spring as x,glide as V}from\"@motionone/generators\";const z=new WeakMap;function getAnimationData(e){z.has(e)||z.set(e,{transforms:[],values:new Map});return z.get(e)}function getMotionValue(t,n){t.has(n)||t.set(n,new e);return t.get(n)}const W=[\"\",\"X\",\"Y\",\"Z\"];const L=[\"translate\",\"scale\",\"rotate\",\"skew\"];const T={x:\"translateX\",y:\"translateY\",z:\"translateZ\"};const D={syntax:\"<angle>\",initialValue:\"0deg\",toDefaultUnit:e=>e+\"deg\"};const M={translate:{syntax:\"<length-percentage>\",initialValue:\"0px\",toDefaultUnit:e=>e+\"px\"},rotate:D,scale:{syntax:\"<number>\",initialValue:1,toDefaultUnit:t},skew:D};const k=new Map;const asTransformCssVar=e=>`--motion-${e}`;const B=[\"x\",\"y\",\"z\"];L.forEach((e=>{W.forEach((t=>{B.push(e+t);k.set(asTransformCssVar(e+t),M[e])}))}));const compareTransformOrder=(e,t)=>B.indexOf(e)-B.indexOf(t);const j=new Set(B);const isTransform=e=>j.has(e);const addTransformToElement=(e,t)=>{T[t]&&(t=T[t]);const{transforms:o}=getAnimationData(e);n(o,t);e.style.transform=buildTransformTemplate(o)};const buildTransformTemplate=e=>e.sort(compareTransformOrder).reduce(transformListToString,\"\").trim();const transformListToString=(e,t)=>`${e} ${t}(var(${asTransformCssVar(t)}))`;const isCssVar=e=>e.startsWith(\"--\");const P=new Set;function registerCssVariable(e){if(!P.has(e)){P.add(e);try{const{syntax:t,initialValue:n}=k.has(e)?k.get(e):{};CSS.registerProperty({name:e,inherits:false,syntax:t,initialValue:n})}catch(e){}}}const convertEasing=e=>o(e)?cubicBezierAsString(e):e;const cubicBezierAsString=([e,t,n,o])=>`cubic-bezier(${e}, ${t}, ${n}, ${o})`;const testAnimation=e=>document.createElement(\"div\").animate(e,{duration:.001});const C={cssRegisterProperty:()=>\"undefined\"!==typeof CSS&&Object.hasOwnProperty.call(CSS,\"registerProperty\"),waapi:()=>Object.hasOwnProperty.call(Element.prototype,\"animate\"),partialKeyframes:()=>{try{testAnimation({opacity:[1]})}catch(e){return false}return true},finished:()=>Boolean(testAnimation({opacity:[0,1]}).finished)};const $={};const R={};for(const e in C)R[e]=()=>{void 0===$[e]&&($[e]=C[e]());return $[e]};function hydrateKeyframes(e,t){for(let n=0;n<e.length;n++)null===e[n]&&(e[n]=n?e[n-1]:t());return e}const keyframesList=e=>Array.isArray(e)?e:[e];function getStyleName(e){T[e]&&(e=T[e]);return isTransform(e)?asTransformCssVar(e):e}const H={get:(e,t)=>{t=getStyleName(t);let n=isCssVar(t)?e.style.getPropertyValue(t):getComputedStyle(e)[t];if(!n&&0!==n){const e=k.get(t);e&&(n=e.initialValue)}return n},set:(e,t,n)=>{t=getStyleName(t);isCssVar(t)?e.style.setProperty(t,n):e.style[t]=n}};function stopAnimation(e,t=true){if(e&&\"finished\"!==e.playState)try{if(e.stop)e.stop();else{t&&e.commitStyles();e.cancel()}}catch(e){}}function getDevToolsRecord(){return window.__MOTION_DEV_TOOLS_RECORD}function animateStyle(e,t,n,o={}){const f=getDevToolsRecord();const u=false!==o.record&&f;let d;let{duration:g=i.duration,delay:m=i.delay,endDelay:h=i.endDelay,repeat:p=i.repeat,easing:v=i.easing,direction:y,offset:E,allowWebkitAcceleration:b=false}=o;const S=getAnimationData(e);let A=R.waapi();const O=isTransform(t);O&&addTransformToElement(e,t);const x=getStyleName(t);const V=getMotionValue(S.values,x);const z=k.get(x);stopAnimation(V.animation,!(s(v)&&V.generator)&&false!==o.record);return()=>{const readInitialValue=()=>{var t,n;return null!==(n=null!==(t=H.get(e,x))&&void 0!==t?t:null===z||void 0===z?void 0:z.initialValue)&&void 0!==n?n:0};let i=hydrateKeyframes(keyframesList(n),readInitialValue);if(s(v)){const e=v.createAnimation(i,readInitialValue,O,x,V);v=e.easing;void 0!==e.keyframes&&(i=e.keyframes);void 0!==e.duration&&(g=e.duration)}isCssVar(x)&&(R.cssRegisterProperty()?registerCssVariable(x):A=false);if(A){z&&(i=i.map((e=>r(e)?z.toDefaultUnit(e):e)));1!==i.length||R.partialKeyframes()&&!u||i.unshift(readInitialValue());const t={delay:a.ms(m),duration:a.ms(g),endDelay:a.ms(h),easing:c(v)?void 0:convertEasing(v),direction:y,iterations:p+1,fill:\"both\"};d=e.animate({[x]:i,offset:E,easing:c(v)?v.map(convertEasing):void 0},t);d.finished||(d.finished=new Promise(((e,t)=>{d.onfinish=e;d.oncancel=t})));const n=i[i.length-1];d.finished.then((()=>{H.set(e,x,n);d.cancel()})).catch(l);b||(d.playbackRate=1.000001)}else if(O){i=i.map((e=>\"string\"===typeof e?parseFloat(e):e));1===i.length&&i.unshift(parseFloat(readInitialValue()));const render=t=>{z&&(t=z.toDefaultUnit(t));H.set(e,x,t)};d=new w(render,i,Object.assign(Object.assign({},o),{duration:g,easing:v}))}else{const t=i[i.length-1];H.set(e,x,z&&r(t)?z.toDefaultUnit(t):t)}u&&f(e,t,i,{duration:g,delay:m,easing:v,repeat:p,offset:E},\"motion-one\");V.setAnimation(d);return d}}const getOptions=(e,t)=>e[t]?Object.assign(Object.assign({},e),e[t]):Object.assign({},e);function resolveElements(e,t){var n;if(\"string\"===typeof e)if(t){null!==(n=t[e])&&void 0!==n?n:t[e]=document.querySelectorAll(e);e=t[e]}else e=document.querySelectorAll(e);else e instanceof Element&&(e=[e]);return Array.from(e||[])}const createAnimation=e=>e();const withControls=(e,t,n=i.duration)=>new Proxy({animations:e.map(createAnimation).filter(Boolean),duration:n,options:t},I);const getActiveAnimation=e=>e.animations[0];const I={get:(e,t)=>{const n=getActiveAnimation(e);switch(t){case\"duration\":return e.duration;case\"currentTime\":return a.s((null===n||void 0===n?void 0:n[t])||0);case\"playbackRate\":case\"playState\":return null===n||void 0===n?void 0:n[t];case\"finished\":e.finished||(e.finished=Promise.all(e.animations.map(selectFinished)).catch(l));return e.finished;case\"stop\":return()=>{e.animations.forEach((e=>stopAnimation(e)))};case\"forEachNative\":return t=>{e.animations.forEach((n=>t(n,e)))};default:return\"undefined\"===typeof(null===n||void 0===n?void 0:n[t])?void 0:()=>e.animations.forEach((e=>e[t]()))}},set:(e,t,n)=>{switch(t){case\"currentTime\":n=a.ms(n);case\"currentTime\":case\"playbackRate\":for(let o=0;o<e.animations.length;o++)e.animations[o][t]=n;return true}return false}};const selectFinished=e=>e.finished;function stagger(e=.1,{start:t=0,from:n=0,easing:o}={}){return(i,s)=>{const a=r(n)?n:getFromIndex(n,s);const c=Math.abs(a-i);let l=e*c;if(o){const t=s*e;const n=E(o);l=n(l/t)*t}return t+l}}function getFromIndex(e,t){if(\"first\"===e)return 0;{const n=t-1;return\"last\"===e?n:n/2}}function resolveOption(e,t,n){return\"function\"===typeof e?e(t,n):e}function animate(e,t,n={}){e=resolveElements(e);const o=e.length;const i=[];for(let s=0;s<o;s++){const r=e[s];for(const e in t){const a=getOptions(n,e);a.delay=resolveOption(a.delay,s,o);const c=animateStyle(r,e,t[e],a);i.push(c)}}return withControls(i,n,n.duration)}function calcNextTime(e,t,n,o){var i;return r(t)?t:t.startsWith(\"-\")||t.startsWith(\"+\")?Math.max(0,e+parseFloat(t)):\"<\"===t?n:null!==(i=o.get(t))&&void 0!==i?i:e}function eraseKeyframes(e,t,n){for(let o=0;o<e.length;o++){const i=e[o];if(i.at>t&&i.at<n){f(e,i);o--}}}function addKeyframes(e,t,n,o,i,s){eraseKeyframes(e,i,s);for(let r=0;r<t.length;r++)e.push({value:t[r],at:u(i,s,o[r]),easing:d(n,r)})}function compareByTime(e,t){return e.at===t.at?null===e.value?1:-1:e.at-t.at}function timeline(e,t={}){var n;const o=createAnimationsFromTimeline(e,t);const i=o.map((e=>animateStyle(...e))).filter(Boolean);return withControls(i,t,null===(n=o[0])||void 0===n?void 0:n[3].duration)}function createAnimationsFromTimeline(e,t={}){var{defaultOptions:n={}}=t,o=b(t,[\"defaultOptions\"]);const r=[];const a=new Map;const c={};const l=new Map;let f=0;let u=0;let d=0;for(let t=0;t<e.length;t++){const o=e[t];if(g(o)){l.set(o,u);continue}if(!Array.isArray(o)){l.set(o.name,calcNextTime(u,o.at,f,l));continue}const[r,p,v={}]=o;void 0!==v.at&&(u=calcNextTime(u,v.at,f,l));let y=0;const w=resolveElements(r,c);const E=w.length;for(let e=0;e<E;e++){const t=w[e];const o=getElementSequence(t,a);for(const t in p){const r=getValueSequence(t,o);let a=keyframesList(p[t]);const c=getOptions(v,t);let{duration:l=n.duration||i.duration,easing:f=n.easing||i.easing}=c;if(s(f)){const e=isTransform(t);S(2===a.length||!e,\"spring must be provided 2 keyframes within timeline\");const n=f.createAnimation(a,(()=>\"0\"),e);f=n.easing;void 0!==n.keyframes&&(a=n.keyframes);void 0!==n.duration&&(l=n.duration)}const g=resolveOption(v.delay,e,E)||0;const w=u+g;const b=w+l;let{offset:A=m(a.length)}=c;1===A.length&&0===A[0]&&(A[1]=1);const O=length-a.length;O>0&&h(A,O);1===a.length&&a.unshift(null);addKeyframes(r,a,f,A,w,b);y=Math.max(g+l,y);d=Math.max(b,d)}}f=u;u+=y}a.forEach(((e,t)=>{for(const s in e){const a=e[s];a.sort(compareByTime);const c=[];const l=[];const f=[];for(let e=0;e<a.length;e++){const{at:t,value:n,easing:o}=a[e];c.push(n);l.push(p(0,d,t));f.push(o||i.easing)}if(0!==l[0]){l.unshift(0);c.unshift(c[0]);f.unshift(\"linear\")}if(1!==l[l.length-1]){l.push(1);c.push(null)}r.push([t,s,c,Object.assign(Object.assign(Object.assign({},n),{duration:d,easing:f,offset:l}),o)])}}));return r}function getElementSequence(e,t){!t.has(e)&&t.set(e,{});return t.get(e)}function getValueSequence(e,t){t[e]||(t[e]=[]);return t[e]}function createGeneratorEasing(e){const t=new WeakMap;return(n={})=>{const o=new Map;const getGenerator=(t=0,i=100,s=0,r=false)=>{const a=`${t}-${i}-${s}-${r}`;o.has(a)||o.set(a,e(Object.assign({from:t,to:i,velocity:s,restSpeed:r?.05:2,restDistance:r?.01:.5},n)));return o.get(a)};const getKeyframes=e=>{t.has(e)||t.set(e,A(e));return t.get(e)};return{createAnimation:(e,t,n,o,i)=>{var s,r;let a;const c=e.length;let l=n&&c<=2&&e.every(isNumberOrNull);if(l){const n=e[c-1];const l=1===c?null:e[0];let f=0;let u=0;const d=null===i||void 0===i?void 0:i.generator;if(d){const{animation:t,generatorStartTime:n}=i;const o=(null===t||void 0===t?void 0:t.startTime)||n||0;const r=(null===t||void 0===t?void 0:t.currentTime)||performance.now()-o;const a=d(r).current;u=null!==(s=l)&&void 0!==s?s:a;(1===c||2===c&&null===e[0])&&(f=O((e=>d(e).current),r,a))}else u=null!==(r=l)&&void 0!==r?r:parseFloat(t());const g=getGenerator(u,n,f,null===o||void 0===o?void 0:o.includes(\"scale\"));const m=getKeyframes(g);a=Object.assign(Object.assign({},m),{easing:\"linear\"});if(i){i.generator=g;i.generatorStartTime=performance.now()}}else{const e=getKeyframes(getGenerator(0,100));a={easing:\"ease\",duration:e.overshootDuration}}return a}}}}const isNumberOrNull=e=>\"string\"!==typeof e;const N=createGeneratorEasing(x);const F=createGeneratorEasing(V);const U={any:0,all:1};function inView$1(e,t,{root:n,margin:o,amount:i=\"any\"}={}){if(\"undefined\"===typeof IntersectionObserver)return()=>{};const s=resolveElements(e);const r=new WeakMap;const onIntersectionChange=e=>{e.forEach((e=>{const n=r.get(e.target);if(e.isIntersecting!==Boolean(n))if(e.isIntersecting){const n=t(e);\"function\"===typeof n?r.set(e.target,n):a.unobserve(e.target)}else if(n){n(e);r.delete(e.target)}}))};const a=new IntersectionObserver(onIntersectionChange,{root:n,rootMargin:o,threshold:\"number\"===typeof i?i:U[i]});s.forEach((e=>a.observe(e)));return()=>a.disconnect()}const q=new WeakMap;let K;function getElementSize(e,t){if(t){const{inlineSize:e,blockSize:n}=t[0];return{width:e,height:n}}return e instanceof SVGElement&&\"getBBox\"in e?e.getBBox():{width:e.offsetWidth,height:e.offsetHeight}}function notifyTarget({target:e,contentRect:t,borderBoxSize:n}){var o;null===(o=q.get(e))||void 0===o?void 0:o.forEach((o=>{o({target:e,contentSize:t,get size(){return getElementSize(e,n)}})}))}function notifyAll(e){e.forEach(notifyTarget)}function createResizeObserver(){\"undefined\"!==typeof ResizeObserver&&(K=new ResizeObserver(notifyAll))}function resizeElement(e,t){K||createResizeObserver();const n=resolveElements(e);n.forEach((e=>{let n=q.get(e);if(!n){n=new Set;q.set(e,n)}n.add(t);null===K||void 0===K?void 0:K.observe(e)}));return()=>{n.forEach((e=>{const n=q.get(e);null===n||void 0===n?void 0:n.delete(t);(null===n||void 0===n?void 0:n.size)||(null===K||void 0===K?void 0:K.unobserve(e))}))}}const G=new Set;let _;function createWindowResizeHandler(){_=()=>{const e={width:window.innerWidth,height:window.innerHeight};const t={target:window,size:e,contentSize:e};G.forEach((e=>e(t)))};window.addEventListener(\"resize\",_)}function resizeWindow(e){G.add(e);_||createWindowResizeHandler();return()=>{G.delete(e);!G.size&&_&&(_=void 0)}}function resize(e,t){return\"function\"===typeof e?resizeWindow(e):resizeElement(e,t)}const Z=50;const createAxisInfo=()=>({current:0,offset:[],progress:0,scrollLength:0,targetOffset:0,targetLength:0,containerLength:0,velocity:0});const createScrollInfo=()=>({time:0,x:createAxisInfo(),y:createAxisInfo()});const X={x:{length:\"Width\",position:\"Left\"},y:{length:\"Height\",position:\"Top\"}};function updateAxisInfo(e,t,n,o){const i=n[t];const{length:s,position:r}=X[t];const a=i.current;const c=n.time;i.current=e[\"scroll\"+r];i.scrollLength=e[\"scroll\"+s]-e[\"client\"+s];i.offset.length=0;i.offset[0]=0;i.offset[1]=i.scrollLength;i.progress=p(0,i.scrollLength,i.current);const l=o-c;i.velocity=l>Z?0:v(i.current-a,l)}function updateScrollInfo(e,t,n){updateAxisInfo(e,\"x\",t,n);updateAxisInfo(e,\"y\",t,n);t.time=n}function calcInset(e,t){let n={x:0,y:0};let o=e;while(o&&o!==t)if(o instanceof HTMLElement){n.x+=o.offsetLeft;n.y+=o.offsetTop;o=o.offsetParent}else if(o instanceof SVGGraphicsElement&&\"getBBox\"in o){const{top:e,left:t}=o.getBBox();n.x+=t;n.y+=e;while(o&&\"svg\"!==o.tagName)o=o.parentNode}return n}const Y={Enter:[[0,1],[1,1]],Exit:[[0,0],[1,0]],Any:[[1,0],[0,1]],All:[[0,0],[1,1]]};const J={start:0,center:.5,end:1};function resolveEdge(e,t,n=0){let o=0;void 0!==J[e]&&(e=J[e]);if(g(e)){const t=parseFloat(e);e.endsWith(\"px\")?o=t:e.endsWith(\"%\")?e=t/100:e.endsWith(\"vw\")?o=t/100*document.documentElement.clientWidth:e.endsWith(\"vh\")?o=t/100*document.documentElement.clientHeight:e=t}r(e)&&(o=t*e);return n+o}const Q=[0,0];function resolveOffset(e,t,n,o){let i=Array.isArray(e)?e:Q;let s=0;let a=0;if(r(e))i=[e,e];else if(g(e)){e=e.trim();i=e.includes(\" \")?e.split(\" \"):[e,J[e]?e:\"0\"]}s=resolveEdge(i[0],n,o);a=resolveEdge(i[1],t);return s-a}const ee={x:0,y:0};function resolveOffsets(e,t,n){let{offset:o=Y.All}=n;const{target:i=e,axis:s=\"y\"}=n;const r=\"y\"===s?\"height\":\"width\";const a=i!==e?calcInset(i,e):ee;const c=i===e?{width:e.scrollWidth,height:e.scrollHeight}:{width:i.clientWidth,height:i.clientHeight};const l={width:e.clientWidth,height:e.clientHeight};t[s].offset.length=0;let f=!t[s].interpolate;const u=o.length;for(let e=0;e<u;e++){const n=resolveOffset(o[e],l[r],c[r],a[s]);f||n===t[s].interpolatorOffsets[e]||(f=true);t[s].offset[e]=n}if(f){t[s].interpolate=y(m(u),t[s].offset);t[s].interpolatorOffsets=[...t[s].offset]}t[s].progress=t[s].interpolate(t[s].current)}function measure(e,t=e,n){n.x.targetOffset=0;n.y.targetOffset=0;if(t!==e){let o=t;while(o&&o!=e){n.x.targetOffset+=o.offsetLeft;n.y.targetOffset+=o.offsetTop;o=o.offsetParent}}n.x.targetLength=t===e?t.scrollWidth:t.clientWidth;n.y.targetLength=t===e?t.scrollHeight:t.clientHeight;n.x.containerLength=e.clientWidth;n.y.containerLength=e.clientHeight}function createOnScrollHandler(e,t,n,o={}){const i=o.axis||\"y\";return{measure:()=>measure(e,o.target,n),update:t=>{updateScrollInfo(e,n,t);(o.offset||o.target)&&resolveOffsets(e,n,o)},notify:\"function\"===typeof t?()=>t(n):scrubAnimation(t,n[i])}}function scrubAnimation(e,n){e.pause();e.forEachNative(((e,{easing:n})=>{var o,i;if(e.updateDuration){n||(e.easing=t);e.updateDuration(1)}else{const t={duration:1e3};n||(t.easing=\"linear\");null===(i=null===(o=e.effect)||void 0===o?void 0:o.updateTiming)||void 0===i?void 0:i.call(o,t)}}));return()=>{e.currentTime=n.progress}}const te=new WeakMap;const ne=new WeakMap;const oe=new WeakMap;const getEventTarget=e=>e===document.documentElement?window:e;function scroll(e,t={}){var{container:n=document.documentElement}=t,o=b(t,[\"container\"]);let i=oe.get(n);if(!i){i=new Set;oe.set(n,i)}const s=createScrollInfo();const r=createOnScrollHandler(n,e,s,o);i.add(r);if(!te.has(n)){const listener=()=>{const e=performance.now();for(const e of i)e.measure();for(const t of i)t.update(e);for(const e of i)e.notify()};te.set(n,listener);const e=getEventTarget(n);window.addEventListener(\"resize\",listener,{passive:true});n!==document.documentElement&&ne.set(n,resize(n,listener));e.addEventListener(\"scroll\",listener,{passive:true})}const a=te.get(n);const c=requestAnimationFrame(a);return()=>{var t;\"function\"!==typeof e&&e.stop();cancelAnimationFrame(c);const o=oe.get(n);if(!o)return;o.delete(r);if(o.size)return;const i=te.get(n);te.delete(n);if(i){getEventTarget(n).removeEventListener(\"scroll\",i);null===(t=ne.get(n))||void 0===t?void 0:t();window.removeEventListener(\"resize\",i)}}}function hasChanged(e,t){return typeof e!==typeof t||(Array.isArray(e)&&Array.isArray(t)?!shallowCompare(e,t):e!==t)}function shallowCompare(e,t){const n=t.length;if(n!==e.length)return false;for(let o=0;o<n;o++)if(t[o]!==e[o])return false;return true}function isVariant(e){return\"object\"===typeof e}function resolveVariant(e,t){return isVariant(e)?e:e&&t?t[e]:void 0}let ie;function processScheduledAnimations(){if(!ie)return;const e=ie.sort(compareByDepth).map(fireAnimateUpdates);e.forEach(fireNext);e.forEach(fireNext);ie=void 0}function scheduleAnimation(e){if(ie)n(ie,e);else{ie=[e];requestAnimationFrame(processScheduledAnimations)}}function unscheduleAnimation(e){ie&&f(ie,e)}const compareByDepth=(e,t)=>e.getDepth()-t.getDepth();const fireAnimateUpdates=e=>e.animateUpdates();const fireNext=e=>e.next();const motionEvent=(e,t)=>new CustomEvent(e,{detail:{target:t}});function dispatchPointerEvent(e,t,n){e.dispatchEvent(new CustomEvent(t,{detail:{originalEvent:n}}))}function dispatchViewEvent(e,t,n){e.dispatchEvent(new CustomEvent(t,{detail:{originalEntry:n}}))}const se={isActive:e=>Boolean(e.inView),subscribe:(e,{enable:t,disable:n},{inViewOptions:o={}})=>{const{once:i}=o,s=b(o,[\"once\"]);return inView$1(e,(o=>{t();dispatchViewEvent(e,\"viewenter\",o);if(!i)return t=>{n();dispatchViewEvent(e,\"viewleave\",t)}}),s)}};const mouseEvent=(e,t,n)=>o=>{if(!o.pointerType||\"mouse\"===o.pointerType){n();dispatchPointerEvent(e,t,o)}};const re={isActive:e=>Boolean(e.hover),subscribe:(e,{enable:t,disable:n})=>{const o=mouseEvent(e,\"hoverstart\",t);const i=mouseEvent(e,\"hoverend\",n);e.addEventListener(\"pointerenter\",o);e.addEventListener(\"pointerleave\",i);return()=>{e.removeEventListener(\"pointerenter\",o);e.removeEventListener(\"pointerleave\",i)}}};const ae={isActive:e=>Boolean(e.press),subscribe:(e,{enable:t,disable:n})=>{const onPointerUp=t=>{n();dispatchPointerEvent(e,\"pressend\",t);window.removeEventListener(\"pointerup\",onPointerUp)};const onPointerDown=n=>{t();dispatchPointerEvent(e,\"pressstart\",n);window.addEventListener(\"pointerup\",onPointerUp)};e.addEventListener(\"pointerdown\",onPointerDown);return()=>{e.removeEventListener(\"pointerdown\",onPointerDown);window.removeEventListener(\"pointerup\",onPointerUp)}}};const ce={inView:se,hover:re,press:ae};const le=[\"initial\",\"animate\",...Object.keys(ce),\"exit\"];const fe=new WeakMap;function createMotionState(e={},t){let n;let o=t?t.getDepth()+1:0;const i={initial:true,animate:true};const s={};const r={};for(const n of le)r[n]=\"string\"===typeof e[n]?e[n]:null===t||void 0===t?void 0:t.getContext()[n];const a=false===e.initial?\"animate\":\"initial\";let c=resolveVariant(e[a]||r[a],e.variants)||{},f=b(c,[\"transition\"]);const u=Object.assign({},f);function*animateUpdates(){var t,o;const s=f;f={};const r={};for(const n of le){if(!i[n])continue;const s=resolveVariant(e[n]);if(s)for(const n in s)if(\"transition\"!==n){f[n]=s[n];r[n]=getOptions(null!==(o=null!==(t=s.transition)&&void 0!==t?t:e.transition)&&void 0!==o?o:{},n)}}const a=new Set([...Object.keys(f),...Object.keys(s)]);const c=[];a.forEach((e=>{var t;void 0===f[e]&&(f[e]=u[e]);if(hasChanged(s[e],f[e])){null!==(t=u[e])&&void 0!==t?t:u[e]=H.get(n,e);c.push(animateStyle(n,e,f[e],r[e]))}}));yield;const d=c.map((e=>e())).filter(Boolean);if(!d.length)return;const g=f;n.dispatchEvent(motionEvent(\"motionstart\",g));Promise.all(d.map((e=>e.finished))).then((()=>{n.dispatchEvent(motionEvent(\"motioncomplete\",g))})).catch(l)}const setGesture=(e,t)=>()=>{i[e]=t;scheduleAnimation(d)};const updateGestureSubscriptions=()=>{for(const t in ce){const o=ce[t].isActive(e);const i=s[t];if(o&&!i)s[t]=ce[t].subscribe(n,{enable:setGesture(t,true),disable:setGesture(t,false)},e);else if(!o&&i){i();delete s[t]}}};const d={update:t=>{if(n){e=t;updateGestureSubscriptions();scheduleAnimation(d)}},setActive:(e,t)=>{if(n){i[e]=t;scheduleAnimation(d)}},animateUpdates:animateUpdates,getDepth:()=>o,getTarget:()=>f,getOptions:()=>e,getContext:()=>r,mount:e=>{S(Boolean(e),\"Animation state must be mounted with valid Element\");n=e;fe.set(n,d);updateGestureSubscriptions();return()=>{fe.delete(n);unscheduleAnimation(d);for(const e in s)s[e]()}},isMounted:()=>Boolean(n)};return d}function createStyles(e){const t={};const n=[];for(let o in e){const i=e[o];if(isTransform(o)){T[o]&&(o=T[o]);n.push(o);o=asTransformCssVar(o)}let s=Array.isArray(i)?i[0]:i;const a=k.get(o);a&&(s=r(i)?a.toDefaultUnit(i):i);t[o]=s}n.length&&(t.transform=buildTransformTemplate(n));return t}const camelLetterToPipeLetter=e=>`-${e.toLowerCase()}`;const camelToPipeCase=e=>e.replace(/[A-Z]/g,camelLetterToPipeLetter);function createStyleString(e={}){const t=createStyles(e);let n=\"\";for(const e in t){n+=e.startsWith(\"--\")?e:camelToPipeCase(e);n+=`: ${t[e]}; `}return n}export{Y as ScrollOffset,animate,animateStyle,createMotionState,createStyleString,createStyles,getAnimationData,getStyleName,F as glide,inView$1 as inView,fe as mountedStates,resize,scroll,N as spring,stagger,H as style,timeline,withControls};\n\n//# sourceMappingURL=index.es.js.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useLayoutEffect,useEffect,useState,useRef,useMemo,useCallback,cloneElement}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{useReducedMotion,LayoutGroup,useInView,useMotionValue,useTransform,motion,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)`};/**\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 currentTarget=RenderTarget.current();const isCanvas=currentTarget===RenderTarget.canvas||currentTarget===RenderTarget.export;// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const numChildren=Children.count(filteredSlots);const hasChildren=numChildren>0;if(direction===true){direction=\"left\";}const isHorizontal=direction===\"left\"||direction===\"right\";const offset=useMotionValue(0);const transformer=directionTransformers[direction];const transform=useTransform(offset,transformer);/* Refs and State */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return[{current:null},{current:null}];},[]);const[size,setSize]=useState({parent:null,children:null});/* Arrays */let clonedChildren=null;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);useLayoutEffect(()=>{frame.read(measure,false,true);return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){frame.read(measure,false,true);}initialResize.current=false;});},[]);}clonedChildren=Children.map(filteredSlots,(child,index)=>{let ref;if(index===0){ref=childrenRef[0];}if(index===filteredSlots.length-1){ref=childrenRef[1];}const size={width:widthType?child.props?.width:\"100%\",height:heightType?child.props?.height:\"100%\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{ref:ref,style:size,children:/*#__PURE__*/cloneElement(child,{style:{...child.props?.style,...size,flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},child.props?.children)})});});}const isInView=isCanvas?true:useInView(parentRef);if(!isCanvas){for(let i=0;i<duplicateBy;i++){dupedChildren=dupedChildren.concat(Children.map(filteredSlots,(child,childIndex)=>{const size={width:widthType?child.props?.width:\"100%\",height:heightType?child.props?.height:\"100%\",willChange:!isInView?undefined:\"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.props?.style,width:widthType?child.props?.width:\"100%\",height:heightType?child.props?.height:\"100%\",flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-dupe-\"+i:undefined},child.props?.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){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]);const playOrPause=useCallback(()=>{if(!animationRef.current)return;const hidden=document.hidden;if(isInView&&!hidden&&animationRef.current.playState===\"paused\"){animationRef.current.play();}else if((!isInView||hidden)&&animationRef.current.playState===\"running\"){animationRef.current.pause();}},[isInView]);useEffect(()=>{playOrPause();},[isInView,hoverFactor,animateToValue,speed]);useEffect(()=>{document.addEventListener(\"visibilitychange\",playOrPause);return()=>{document.removeEventListener(\"visibilitychange\",playOrPause);};},[playOrPause]);}/* Fades */const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/* Empty state */if(!hasChildren){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2728\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to infinitely loop on your page.\"})]});}return /*#__PURE__*/_jsx(\"section\",{style:{...containerStyle,opacity:opacity,WebkitMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,overflow:overflow?\"visible\":\"hidden\",padding:paddingValue},ref:parentRef,children:/*#__PURE__*/_jsxs(motion.ul,{ref:listRef,style:{...containerStyle,gap:gap,top:direction===\"bottom\"&&isValidNumber(animateToValue)?-animateToValue:undefined,left:direction===\"right\"&&isValidNumber(animateToValue)?-animateToValue:undefined,placeItems:alignment,position:\"relative\",flexDirection:isHorizontal?\"row\":\"column\",...style,willChange:isCanvas||!isInView?\"auto\":\"transform\",transform:transformer(0)},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\":{\"framerIntrinsicWidth\":\"400\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerDisableUnlink\":\"*\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"200\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "// Generated by Framer (6464825)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,PropertyOverrides,RichText,SVG,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useMetadata,useRouteElementId,withCSS,withFX,withOptimizedAppearEffect,withVariantAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/jyRNgY7vYWXe6t31T0wo/Ticker.js\";import{Icon as Feather}from\"https://framerusercontent.com/modules/f0DboytQenYh21kfme7W/zb1zVBMZJKgPMiedOi0y/Feather.js\";import Visual_4 from\"https://framerusercontent.com/modules/i6rtwK1YpfXO5FR9PU5N/Ishder6RZrMylvbhC7Cm/PlKA7L8hQ.js\";import Visual_9 from\"https://framerusercontent.com/modules/kXbbRqOBfz1gLnRdNj0U/W42hEh53hoSgHifOBMxO/r1vlCpH0M.js\";import UserComponent from\"https://framerusercontent.com/modules/PtxaBiSAA5V6LvrpAt6G/ukoWbbXWpuIc6Sz4vRp6/UD0eTfbk_.js\";import Visual_22 from\"https://framerusercontent.com/modules/wkY1Iw6kaO58tgIEqJMf/tvY99ZxPUxUnOfgDE951/WGoYS8_43.js\";import Twitter from\"https://framerusercontent.com/modules/yP6Ky9DUjdi5Mttr9BJ9/PeUoR9WElmAWTAhUiNfR/Twitter.js\";import Visual_8 from\"#framer/local/canvasComponent/BqjvKRaiz/BqjvKRaiz.js\";import FAQ from\"#framer/local/canvasComponent/bzTWXgNjO/bzTWXgNjO.js\";import Call from\"#framer/local/canvasComponent/CfQcTQF8M/CfQcTQF8M.js\";import HeaderMenu from\"#framer/local/canvasComponent/H1b2x9FXV/H1b2x9FXV.js\";import Integration from\"#framer/local/canvasComponent/KdEmKrLdr/KdEmKrLdr.js\";import Visual_5 from\"#framer/local/canvasComponent/KIYGVSEnO/KIYGVSEnO.js\";import Visual3 from\"#framer/local/canvasComponent/NkOmen5tF/NkOmen5tF.js\";import TrialPromo from\"#framer/local/canvasComponent/Q6Q_CoMwP/Q6Q_CoMwP.js\";import Feature1 from\"#framer/local/canvasComponent/WD23R5wId/WD23R5wId.js\";import Visual_7 from\"#framer/local/canvasComponent/wDBiv1dJQ/wDBiv1dJQ.js\";import Navigation from\"#framer/local/canvasComponent/WPlRxmMyK/WPlRxmMyK.js\";import Footer from\"#framer/local/canvasComponent/YaQfNczZG/YaQfNczZG.js\";import MainCTAButton from\"#framer/local/canvasComponent/zjCQy6F2o/zjCQy6F2o.js\";import*as sharedStyle from\"#framer/local/css/B9Ry0Newv/B9Ry0Newv.js\";import*as sharedStyle1 from\"#framer/local/css/H07kZ5lQF/H07kZ5lQF.js\";import*as sharedStyle5 from\"#framer/local/css/Q9pxHhLAa/Q9pxHhLAa.js\";import*as sharedStyle2 from\"#framer/local/css/tJvmL6S04/tJvmL6S04.js\";import*as sharedStyle4 from\"#framer/local/css/WDxYu2sRT/WDxYu2sRT.js\";import*as sharedStyle3 from\"#framer/local/css/YckFIlg3V/YckFIlg3V.js\";import metadataProvider from\"#framer/local/webPageMetadata/i9mMX8Wmo/i9mMX8Wmo.js\";const NavigationFonts=getFonts(Navigation);const FeatherFonts=getFonts(Feather);const MainCTAButtonFonts=getFonts(MainCTAButton);const HeaderMenuFonts=getFonts(HeaderMenu);const CallFonts=getFonts(Call);const TickerFonts=getFonts(Ticker);const ContainerWithOptimizedAppearEffect=withOptimizedAppearEffect(Container);const Feature1Fonts=getFonts(Feature1);const Visual_22Fonts=getFonts(Visual_22);const Visual3Fonts=getFonts(Visual3);const Visual_4Fonts=getFonts(Visual_4);const Visual_5Fonts=getFonts(Visual_5);const Visual_7Fonts=getFonts(Visual_7);const Visual_8Fonts=getFonts(Visual_8);const Visual_9Fonts=getFonts(Visual_9);const MotionAWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.a);const ImageWithOptimizedAppearEffect=withOptimizedAppearEffect(Image);const IntegrationFonts=getFonts(Integration);const ContainerWithFX=withFX(Container);const IntegrationWithVariantAppearEffect=withVariantAppearEffect(Integration);const TwitterFonts=getFonts(Twitter);const FAQFonts=getFonts(FAQ);const TrialPromoFonts=getFonts(TrialPromo);const FooterFonts=getFonts(Footer);const breakpoints={aIyxiFhHf:\"(max-width: 809px)\",dKmIpojSc:\"(min-width: 810px) and (max-width: 1199px)\",wGHcS5BPl:\"(min-width: 1200px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-yptcx\";const variantClassNames={aIyxiFhHf:\"framer-v-16itkok\",dKmIpojSc:\"framer-v-mxtsjn\",wGHcS5BPl:\"framer-v-ygrexw\"};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const transition1={damping:52,delay:.4,mass:1,stiffness:267,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:80};const transformTemplate2=(_,t)=>`translate(-50%, -50%) ${t}`;const transition2={damping:30,delay:.9,mass:1,stiffness:300,type:\"spring\"};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:0};const animation3={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:-20,y:0};const transition3={bounce:.25,delay:0,duration:.45,type:\"spring\"};const animation4={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.1,skewX:0,skewY:0,transition:transition3};const transition4={bounce:.2,delay:.4,duration:.4,type:\"spring\"};const animation5={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition4,x:0,y:0};const animation6={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:56};const animation7={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:-46,y:0};const transition5={damping:30,delay:0,mass:2,stiffness:300,type:\"spring\"};const animation8={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition5,x:-46,y:0};const transition6={damping:30,delay:.15,mass:2,stiffness:300,type:\"spring\"};const animation9={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition6,x:-46,y:0};const transition7={damping:30,delay:.05,mass:2,stiffness:300,type:\"spring\"};const animation10={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition7,x:-46,y:0};const transition8={damping:30,delay:.1,mass:2,stiffness:300,type:\"spring\"};const animation11={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition8,x:-46,y:0};const transition9={damping:30,delay:.2,mass:2,stiffness:300,type:\"spring\"};const animation12={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition9,x:-46,y:0};const transition10={damping:30,delay:.25,mass:2,stiffness:300,type:\"spring\"};const animation13={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition10,x:-46,y:0};const transition11={damping:30,delay:.3,mass:2,stiffness:300,type:\"spring\"};const animation14={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition11,x:-46,y:0};const transition12={damping:30,delay:.55,mass:2,stiffness:300,type:\"spring\"};const animation15={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition12,x:-46,y:0};const transition13={damping:30,delay:.35,mass:2,stiffness:300,type:\"spring\"};const animation16={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition13,x:-46,y:0};const transition14={damping:30,delay:.4,mass:2,stiffness:300,type:\"spring\"};const animation17={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition14,x:-46,y:0};const transition15={damping:30,delay:.45,mass:2,stiffness:300,type:\"spring\"};const animation18={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition15,x:-46,y:0};const transition16={damping:30,delay:.5,mass:2,stiffness:300,type:\"spring\"};const animation19={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition16,x:-46,y:0};const animation20={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:150};const transition17={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation21={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition17,x:0,y:150};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"wGHcS5BPl\",Phone:\"aIyxiFhHf\",Tablet:\"dKmIpojSc\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"wGHcS5BPl\"};};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 metadata=React.useMemo(()=>metadataProvider(undefined,activeLocale),[undefined,activeLocale]);useMetadata(metadata);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const elementId=useRouteElementId(\"nmq8t8WIn\");const ref1=React.useRef(null);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"aIyxiFhHf\")return false;return true;};const elementId1=useRouteElementId(\"Dxk_r1dN4\");const ref2=React.useRef(null);const elementId2=useRouteElementId(\"HM6BfaNCm\");const ref3=React.useRef(null);const elementId3=useRouteElementId(\"NgGcOr45W\");const ref4=React.useRef(null);const elementId4=useRouteElementId(\"ByhYSqbjb\");const ref5=React.useRef(null);const elementId5=useRouteElementId(\"S4lL2T0GH\");const ref6=React.useRef(null);const elementId6=useRouteElementId(\"MXIvwsHra\");const ref7=React.useRef(null);const elementId7=useRouteElementId(\"wcCESsQK2\");const ref8=React.useRef(null);const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"dKmIpojSc\")return false;return true;};const elementId8=useRouteElementId(\"CO8yW2QSN\");const ref9=React.useRef(null);useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"wGHcS5BPl\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: rgb(255, 255, 255); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-ygrexw\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:57,width:\"100vw\",y:0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1j4apu4-container\",layoutScroll:true,nodeId:\"F_Ikj8ppB\",scopeId:\"i9mMX8Wmo\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aIyxiFhHf:{variant:\"hQAdXucmx\"}},children:/*#__PURE__*/_jsx(Navigation,{height:\"100%\",id:\"F_Ikj8ppB\",layoutId:\"F_Ikj8ppB\",style:{width:\"100%\"},variant:\"NX2xaq5Mv\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1lmhvjq\",\"data-framer-name\":\"hero\",id:elementId,ref:ref1,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-vklsu6\",\"data-framer-name\":\"backgound\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-fawvvk\",\"data-framer-name\":\"bg-color\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-2j2njf\",\"data-framer-name\":\"hero\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-pwd6xm\",\"data-framer-name\":\"frame\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1cfo2xh\",\"data-framer-name\":\"header\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-w127i0\",\"data-framer-name\":\"text\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dKmIpojSc:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-ukwb87\",\"data-styles-preset\":\"B9Ry0Newv\",style:{\"--framer-text-color\":\"var(--token-68d38960-ebb8-4b27-9f42-0786670e4b4d, rgb(51, 51, 51))\"},children:\"Unbelievably good meeting notes\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-ukwb87\",\"data-styles-preset\":\"B9Ry0Newv\",children:\"Unbelievably good meeting notes\"})}),className:\"framer-4pket1\",\"data-framer-name\":\"Unbelievably good meeting notes\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-me6stv\",\"data-styles-preset\":\"H07kZ5lQF\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-5b2b5b8a-7a02-45b2-b323-56c47f64c3a5, rgb(51, 51, 51))\"},children:\"AI-powered notes, action items, and automations.\"})}),className:\"framer-11gezi9\",\"data-framer-name\":\"AI-powered notes, action items, and automations. Automatically updates your CRM, Notion, and more.\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1f1wbvw\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-4q5pel\",children:[/*#__PURE__*/_jsx(Link,{href:\"https://time.com/charter/6987522/the-best-ai-note-taking-tools-for-meetings/\",motionChild:true,nodeId:\"tVlnAbBBQ\",scopeId:\"i9mMX8Wmo\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-1sibypl framer-e5sn1r\",\"data-framer-name\":\"testimonials\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1r7uncw-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"WaDCUa7IE\",scopeId:\"i9mMX8Wmo\",children:/*#__PURE__*/_jsx(Feather,{color:\"var(--token-ec0709d6-8bb6-4ad9-b285-de42dd7b1a8c, rgb(101, 117, 140))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"award\",id:\"WaDCUa7IE\",layoutId:\"WaDCUa7IE\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1sj2iku\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aIyxiFhHf:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNjAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"10px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"110%\",\"--framer-text-color\":\"var(--token-0c0723d1-66e6-4757-aa10-e949bff27413, rgb(101, 117, 140))\"},children:\" TIME's top pick for AI note-taking\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNjAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"110%\",\"--framer-text-color\":\"var(--token-ec0709d6-8bb6-4ad9-b285-de42dd7b1a8c, rgb(101, 117, 140))\"},children:\" TIME's top pick for AI note-taking\"})}),className:\"framer-1vkggu8\",\"data-framer-name\":\"Text\",fonts:[\"GF;Plus Jakarta Sans-600\"],verticalAlignment:\"center\",withExternalLayout:true})})})]})}),/*#__PURE__*/_jsx(Link,{href:{hash:\":S4lL2T0GH\",webPageId:\"i9mMX8Wmo\"},motionChild:true,nodeId:\"EheGG4RzS\",openInNewTab:false,scopeId:\"i9mMX8Wmo\",smoothScroll:true,children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-a56w2h framer-e5sn1r\",\"data-framer-name\":\"testimonials\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1v9luur\",\"data-framer-name\":\"Graphic\",fill:\"var(--token-ec0709d6-8bb6-4ad9-b285-de42dd7b1a8c, rgb(101, 117, 140))\",intrinsicHeight:16,intrinsicWidth:16,svg:'<svg width=\"16\" height=\"16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\"><path d=\"M13.893 3.073a3.667 3.667 0 0 0-5.187 0L8 3.78l-.707-.707A3.668 3.668 0 0 0 2.106 8.26l.707.707L8 14.153l5.186-5.186.707-.707a3.668 3.668 0 0 0 0-5.187v0Z\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/></g><defs><clipPath id=\"a\"><path fill=\"#fff\" d=\"M0 0h16v16H0z\"/></clipPath></defs></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-37e74n\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aIyxiFhHf:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNjAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"10px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--token-0c0723d1-66e6-4757-aa10-e949bff27413, rgb(101, 117, 140))\"},children:\"150+ testimonials\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNjAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--token-ec0709d6-8bb6-4ad9-b285-de42dd7b1a8c, rgb(101, 117, 140))\"},children:\"150+ testimonials\"})}),className:\"framer-4kt6gc\",\"data-framer-name\":\"1,000+ testimonials\",fonts:[\"GF;Plus Jakarta Sans-600\"],verticalAlignment:\"center\",withExternalLayout:true})})})]})}),isDisplayed()&&/*#__PURE__*/_jsx(Link,{href:\"https://www.ycombinator.com/companies/circleback\",motionChild:true,nodeId:\"jg1zRzAg0\",openInNewTab:true,scopeId:\"i9mMX8Wmo\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-phfed4 hidden-16itkok framer-e5sn1r\",\"data-framer-name\":\"testimonials\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1dzb4ud\",\"data-framer-name\":\"Y Combinator\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 14 14\"><path d=\"M 0 0 L 14 0 L 14 14 L 0 14 Z\" fill=\"var(--token-ec0709d6-8bb6-4ad9-b285-de42dd7b1a8c, rgb(101, 117, 140))\"></path><path d=\"M 6.528 7.916 L 4.125 3.414 L 5.223 3.414 L 6.637 6.263 C 6.659 6.314 6.684 6.366 6.713 6.421 C 6.742 6.475 6.767 6.531 6.789 6.589 C 6.804 6.611 6.815 6.631 6.822 6.649 C 6.829 6.667 6.836 6.684 6.844 6.698 C 6.879 6.768 6.911 6.838 6.941 6.91 C 6.97 6.979 6.996 7.042 7.017 7.1 C 7.08 6.968 7.143 6.835 7.208 6.703 C 7.277 6.562 7.347 6.415 7.42 6.263 L 8.855 3.414 L 9.877 3.414 L 7.452 7.97 L 7.452 10.873 L 6.528 10.873 L 6.528 7.916 Z\" fill=\"rgb(255,255,255)\"></path></svg>',svgContentId:12836767860,withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1r4jl3l\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNjAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"110%\",\"--framer-text-color\":\"var(--token-ec0709d6-8bb6-4ad9-b285-de42dd7b1a8c, rgb(101, 117, 140))\"},children:\"Backed by Y Combinator\"})}),className:\"framer-153ej7y\",\"data-framer-name\":\"Text\",fonts:[\"GF;Plus Jakarta Sans-600\"],verticalAlignment:\"center\",withExternalLayout:true})})]})}),isDisplayed()&&/*#__PURE__*/_jsx(Link,{href:\"https://techcrunch.com/2024/11/26/yc-backed-circleback-is-out-to-become-the-best-meeting-notetaker/\",motionChild:true,nodeId:\"JLeu1CK_R\",openInNewTab:true,scopeId:\"i9mMX8Wmo\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-1wjvqzt hidden-16itkok framer-e5sn1r\",\"data-framer-name\":\"testimonials\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-is5tp7\",\"data-framer-name\":\"TechCrunch\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 16 8\"><path d=\"M 8 0 L 8 2.667 L 5.333 2.667 L 5.333 8 L 2.667 8 L 2.667 2.667 L 0 2.667 L 0 0 Z M 10.667 0 L 16 0 L 16 2.667 L 10.667 2.667 Z M 16 5.333 L 16 8 L 8 8 L 8 2.667 L 10.667 2.667 L 10.667 5.333 Z\" fill=\"var(--token-ec0709d6-8bb6-4ad9-b285-de42dd7b1a8c, rgb(101, 117, 140))\"></path></svg>',svgContentId:11210906410,withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ir2spi\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNjAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"110%\",\"--framer-text-color\":\"var(--token-ec0709d6-8bb6-4ad9-b285-de42dd7b1a8c, rgb(101, 117, 140))\"},children:\"TechCrunch\"})}),className:\"framer-127184t\",\"data-framer-name\":\"Text\",fonts:[\"GF;Plus Jakarta Sans-600\"],verticalAlignment:\"center\",withExternalLayout:true})})]})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aIyxiFhHf:{y:(componentViewport?.y||0)+0+0+0+0+120+0+0+0+0+265+0+49}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:56,width:\"170px\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aIyxiFhHf:{style:{}},dKmIpojSc:{style:{scale:1.1}}},children:/*#__PURE__*/_jsx(Container,{className:\"framer-11icv4l-container\",nodeId:\"IlgscPxxI\",rendersWithMotion:true,scopeId:\"i9mMX8Wmo\",style:{scale:1.2},children:/*#__PURE__*/_jsx(MainCTAButton,{bbKZuZ0Ha:UserComponent,height:\"100%\",id:\"IlgscPxxI\",layoutId:\"IlgscPxxI\",rVURAfZyC:\"Start for free\",style:{height:\"100%\",width:\"100%\"},variant:\"g4koXkRah\",width:\"100%\",YSuhtGh7m:\"https://app.circleback.ai/\"})})})})})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aIyxiFhHf:{width:\"427px\",y:(componentViewport?.y||0)+0+0+0+0+120+0+0+370}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:628,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aIyxiFhHf:{style:{scale:.8}},dKmIpojSc:{style:{originY:.15,scale:.65}}},children:/*#__PURE__*/_jsx(Container,{className:\"framer-13k4b6-container\",nodeId:\"ScxvwP3YA\",rendersWithMotion:true,scopeId:\"i9mMX8Wmo\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aIyxiFhHf:{EneQyAbMC:false,J2Esz_XCY:false,style:{height:\"100%\",width:\"100%\"},variant:\"xFKITjYKT\"}},children:/*#__PURE__*/_jsx(HeaderMenu,{EneQyAbMC:true,height:\"100%\",id:\"ScxvwP3YA\",J2Esz_XCY:true,layoutId:\"ScxvwP3YA\",variant:\"ICihC_9b4\",width:\"100%\"})})})})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aIyxiFhHf:{y:(componentViewport?.y||0)+0+0+0+0+1268-320.5}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:214,width:\"286px\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aIyxiFhHf:{style:{rotate:-2}},dKmIpojSc:{style:{originY:0,scale:.7}}},children:/*#__PURE__*/_jsx(Container,{className:\"framer-bc2z2s-container\",nodeId:\"B_KOsXE09\",rendersWithMotion:true,scopeId:\"i9mMX8Wmo\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aIyxiFhHf:{variant:\"MVRTyebVx\"}},children:/*#__PURE__*/_jsx(Call,{height:\"100%\",id:\"B_KOsXE09\",layoutId:\"B_KOsXE09\",style:{height:\"100%\",width:\"100%\"},variant:\"NSEhdYKzw\",width:\"100%\"})})})})})})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1u9ku5g\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-lef87\",\"data-framer-name\":\"companies\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aIyxiFhHf:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtODAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"10px\",\"--framer-font-weight\":\"800\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"rgb(158, 161, 173)\"},children:\"LOVED BY PEOPLE  AT\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtODAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-font-weight\":\"800\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"rgb(158, 161, 173)\"},children:\"LOVED BY PEOPLE  AT\"})}),className:\"framer-f69bbd\",\"data-framer-name\":\"Trusted by professionals\",fonts:[\"GF;Plus Jakarta Sans-800\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-14fjjru-container\",isModuleExternal:true,nodeId:\"HG2EnIVrK\",scopeId:\"i9mMX8Wmo\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:60,height:\"100%\",hoverFactor:1,id:\"HG2EnIVrK\",layoutId:\"HG2EnIVrK\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1pe0fph\",\"data-framer-name\":\"Visit California\",children:/*#__PURE__*/_jsxs(SVG,{className:\"framer-1pi8enq\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 101.959 31.925\" overflow=\"visible\"><g><path d=\"M 15.51 18.649 C 16.095 18.649 16.698 19.115 16.698 19.901 C 16.698 20.569 15.86 21.614 14.57 22.431 C 13.011 22.434 6.934 22.039 5.392 21.379 C 4.058 19.99 3.234 18.066 3.234 15.952 C 3.234 11.197 7.132 8.252 10.744 8.252 C 13.774 8.252 16.385 10.448 16.385 11.527 C 16.385 12.449 15.762 12.78 15.18 12.78 C 14.696 12.78 14.359 12.487 13.968 12.153 C 13.348 11.619 12.412 10.815 10.744 10.815 C 8.003 10.815 5.774 13.12 5.774 15.956 C 5.774 18.826 7.894 21.076 10.597 21.076 C 12.637 21.076 13.695 19.997 14.329 19.35 C 14.693 18.969 15.009 18.649 15.51 18.649 M 85.801 11.908 C 85.586 11.721 85.294 11.615 84.984 11.615 C 84.691 11.615 84.412 11.714 84.204 11.888 C 83.969 12.085 83.823 12.357 83.755 12.718 C 83.717 12.933 83.714 13.134 83.714 13.28 L 83.714 21.729 L 84.262 21.712 C 84.33 21.709 84.391 21.709 84.456 21.706 L 84.783 21.695 C 85.014 21.689 85.246 21.682 85.474 21.671 L 85.685 21.879 L 86.288 21.852 L 86.288 13.246 C 86.288 13.089 86.284 12.793 86.179 12.483 C 86.1 12.249 85.971 12.054 85.801 11.908 M 85.11 7.731 C 84.725 7.731 84.368 7.877 84.109 8.136 C 83.843 8.404 83.694 8.766 83.697 9.144 C 83.697 9.532 83.84 9.889 84.106 10.151 C 84.368 10.414 84.725 10.56 85.11 10.56 L 85.113 10.56 C 85.501 10.56 85.859 10.417 86.117 10.155 C 86.38 9.893 86.526 9.535 86.526 9.151 C 86.529 8.763 86.383 8.405 86.117 8.143 C 85.859 7.874 85.498 7.731 85.11 7.731 M 98.86 15.088 C 98.655 14.264 98.291 13.191 97.736 12.793 C 96.732 12.048 95.506 11.687 93.991 11.687 C 92.994 11.687 91.816 11.85 90.843 12.119 C 90.325 12.266 89.9 12.429 89.583 12.609 C 89.372 12.732 89.212 12.854 89.086 12.991 C 88.882 13.212 88.773 13.474 88.773 13.746 C 88.773 14.046 88.868 14.335 89.045 14.56 C 89.266 14.853 89.617 15.026 89.988 15.026 C 90.366 15.023 90.706 14.914 91.098 14.788 L 91.18 14.764 C 91.85 14.546 92.684 14.274 93.991 14.274 C 94.56 14.274 95.02 14.339 95.401 14.471 C 95.717 14.584 95.918 14.72 96.068 14.836 C 96.262 14.992 96.32 15.118 96.364 15.299 C 96.395 15.428 96.415 15.973 96.422 16.511 C 95.602 16.099 94.492 15.66 93.011 15.66 C 91.517 15.66 90.145 16.095 89.147 16.889 C 88.174 17.661 87.598 18.744 87.53 19.935 L 87.51 20.259 L 88.085 20.296 C 88.157 20.303 88.225 20.306 88.293 20.31 C 88.633 20.337 88.963 20.361 89.294 20.385 L 90.077 20.446 L 90.104 20.119 C 90.141 19.653 90.4 19.227 90.856 18.883 C 91.404 18.468 92.163 18.24 92.991 18.24 C 94.475 18.243 95.472 18.839 96.426 19.431 L 96.426 21.059 L 97.219 21.147 C 97.593 21.191 97.951 21.236 98.291 21.277 L 99.006 21.365 L 99.003 16.895 C 99.003 16.231 98.999 15.649 98.86 15.088 M 80.916 13.654 L 80.868 13.597 C 80.599 13.29 80.163 12.844 79.479 12.521 C 78.802 12.197 78.002 12.041 77.038 12.041 C 75.271 12.041 73.787 12.613 72.824 13.117 C 72.763 13.008 72.694 12.909 72.626 12.817 C 72.49 12.637 72.334 12.49 72.163 12.378 C 71.946 12.235 71.717 12.163 71.483 12.163 C 71.19 12.167 70.9 12.279 70.659 12.487 C 70.386 12.729 70.23 13.069 70.23 13.423 C 70.23 13.624 70.281 13.787 70.325 13.917 C 70.356 13.998 70.393 14.083 70.431 14.175 L 70.642 14.703 C 70.768 15.108 70.778 15.779 70.774 16.684 L 70.774 19.775 L 71.084 19.772 C 71.163 19.769 71.244 19.769 71.323 19.769 L 71.527 19.769 C 71.738 19.765 71.952 19.765 72.17 19.762 L 72.596 19.758 L 73.351 19.758 L 73.351 15.946 C 73.947 15.537 74.434 15.271 74.921 15.084 C 75.568 14.839 76.245 14.723 77.066 14.723 C 77.529 14.723 77.903 14.781 78.209 14.894 C 78.499 14.999 78.734 15.156 78.948 15.38 C 79.122 15.564 79.217 15.789 79.278 16.119 C 79.34 16.473 79.34 16.919 79.34 17.392 L 79.34 19.85 L 80.106 19.871 L 81.178 19.911 L 81.92 19.946 L 81.923 17.389 C 81.92 16.548 81.91 15.952 81.784 15.36 C 81.637 14.734 81.365 14.189 80.916 13.654 M 68.803 13.086 L 68.739 12.984 L 68.62 12.885 C 67.537 12.065 66.311 11.973 65.835 11.973 C 64.735 11.973 63.636 12.398 62.56 13.236 C 62.502 13.14 62.444 13.052 62.383 12.97 C 62.216 12.739 62.049 12.558 61.869 12.415 C 61.603 12.204 61.317 12.099 61.025 12.095 C 60.637 12.095 60.279 12.252 60.037 12.521 C 59.823 12.763 59.707 13.069 59.707 13.382 C 59.704 13.627 59.765 13.869 59.881 14.1 C 59.966 14.267 60.065 14.403 60.153 14.526 C 60.276 14.696 60.402 14.873 60.5 15.146 C 60.623 15.483 60.684 15.901 60.684 16.432 L 60.684 20.143 L 61.42 20.095 L 62.489 20.034 L 62.7 20.024 C 62.788 20.02 62.877 20.014 62.965 20.01 L 63.258 19.997 L 63.258 16.208 C 63.636 15.748 63.969 15.418 64.31 15.18 C 64.8 14.836 65.28 14.676 65.831 14.676 C 65.917 14.676 66.151 14.683 66.427 14.747 C 66.638 14.795 66.941 14.894 67.18 15.094 L 67.35 15.234 L 67.585 15.261 C 67.602 15.261 67.643 15.265 67.7 15.265 C 67.872 15.266 68.043 15.237 68.204 15.18 C 68.405 15.108 68.684 14.951 68.882 14.618 C 68.997 14.417 69.055 14.189 69.055 13.957 C 69.055 13.753 69.014 13.549 68.929 13.341 C 68.878 13.202 68.82 13.11 68.803 13.086 M 57.161 13.706 C 55.908 12.582 54.172 11.963 52.276 11.963 C 50.38 11.963 48.643 12.582 47.391 13.706 C 46.104 14.856 45.396 16.466 45.396 18.237 C 45.396 19.268 45.637 20.242 46.117 21.137 L 46.158 21.215 L 46.764 21.168 C 47.163 21.137 47.561 21.103 47.956 21.069 L 49.246 20.963 L 48.729 20.347 C 48.228 19.748 47.973 19.04 47.973 18.24 C 47.973 17.239 48.374 16.364 49.13 15.711 C 49.917 15.033 51.033 14.655 52.276 14.655 C 53.518 14.655 54.635 15.03 55.425 15.711 C 56.18 16.364 56.582 17.239 56.582 18.24 C 56.582 18.771 56.46 19.275 56.211 19.748 L 55.871 20.405 L 58.856 20.18 L 58.89 20.065 C 59.067 19.479 59.159 18.866 59.159 18.24 C 59.159 16.466 58.448 14.856 57.161 13.706 M 45.971 10.996 C 46.148 10.89 46.294 10.74 46.414 10.55 C 46.536 10.346 46.594 10.141 46.597 9.927 C 46.597 9.641 46.502 9.365 46.329 9.147 C 46.117 8.882 45.811 8.701 45.386 8.586 C 45.062 8.5 44.674 8.46 44.197 8.46 C 43.414 8.46 42.642 8.637 41.961 8.967 C 41.447 9.219 40.994 9.556 40.711 9.896 L 40.562 10.077 L 40.538 10.117 L 40.538 10.121 C 40.249 10.516 40.061 10.917 39.952 11.38 C 39.809 11.966 39.779 12.65 39.779 13.491 L 39.779 21.552 L 40.32 21.522 L 40.511 21.511 C 40.749 21.498 40.984 21.484 41.215 21.467 L 42.298 21.399 L 42.298 16.81 L 43.357 16.81 C 43.704 16.81 44.031 16.688 44.269 16.466 C 44.528 16.235 44.674 15.894 44.674 15.537 C 44.674 15.363 44.647 15.207 44.592 15.057 C 44.492 14.795 44.301 14.577 44.054 14.444 C 43.857 14.339 43.626 14.284 43.357 14.284 L 42.298 14.284 L 42.298 13.481 C 42.298 12.766 42.325 12.33 42.39 12.027 C 42.458 11.714 42.557 11.568 42.679 11.449 C 42.863 11.275 43.404 10.975 44.262 10.975 C 44.569 10.975 44.681 11.006 44.78 11.033 L 45.334 11.139 L 45.433 11.146 C 45.62 11.149 45.801 11.098 45.971 10.996 M 36.545 7.731 C 36.16 7.731 35.803 7.877 35.544 8.14 C 35.282 8.402 35.135 8.759 35.139 9.144 C 35.139 9.529 35.282 9.886 35.544 10.148 C 35.803 10.414 36.163 10.557 36.548 10.557 L 36.555 10.557 C 36.94 10.557 37.294 10.41 37.556 10.148 C 37.821 9.883 37.964 9.529 37.964 9.144 C 37.964 8.759 37.821 8.402 37.559 8.136 C 37.294 7.874 36.936 7.731 36.545 7.731 M 37.348 11.908 C 37.134 11.721 36.844 11.615 36.531 11.615 C 36.238 11.615 35.963 11.714 35.751 11.888 C 35.517 12.085 35.367 12.357 35.302 12.718 C 35.265 12.933 35.261 13.134 35.261 13.28 L 35.261 22.169 L 35.806 22.151 C 35.874 22.148 35.939 22.148 36 22.145 L 36.327 22.134 C 36.575 22.128 36.824 22.117 37.066 22.107 L 37.831 22.073 L 37.831 13.246 C 37.828 13.089 37.828 12.793 37.723 12.483 C 37.644 12.249 37.518 12.054 37.348 11.908 M 33.331 7.02 C 33.331 6.853 33.331 6.54 33.239 6.22 C 33.168 5.978 33.062 5.784 32.912 5.631 C 32.698 5.403 32.398 5.277 32.065 5.277 C 31.758 5.277 31.462 5.399 31.254 5.61 C 30.989 5.883 30.911 6.206 30.87 6.458 C 30.836 6.686 30.836 6.904 30.836 7.05 L 30.836 30.175 C 30.836 30.342 30.839 30.655 30.928 30.979 C 30.999 31.22 31.105 31.414 31.251 31.568 C 31.466 31.799 31.769 31.925 32.099 31.925 C 32.405 31.925 32.698 31.803 32.909 31.591 C 33.174 31.319 33.253 30.996 33.294 30.744 C 33.328 30.519 33.328 30.298 33.328 30.155 L 33.328 14.026 Z M 29.164 16.926 C 29.164 16.262 29.161 15.03 29.021 14.475 C 28.851 13.797 28.483 13.263 27.898 12.844 C 26.894 12.102 25.668 11.745 24.153 11.745 C 23.156 11.745 21.978 11.905 21.004 12.174 C 20.49 12.317 20.065 12.477 19.745 12.66 C 19.534 12.783 19.374 12.902 19.248 13.038 C 19.043 13.26 18.934 13.522 18.934 13.794 C 18.934 14.094 19.03 14.373 19.207 14.601 C 19.428 14.89 19.779 15.064 20.15 15.064 C 20.521 15.06 20.854 14.955 21.243 14.832 L 21.334 14.802 C 22.005 14.584 22.839 14.315 24.15 14.315 C 24.708 14.315 25.181 14.38 25.559 14.509 C 25.879 14.618 26.077 14.754 26.226 14.87 C 26.42 15.026 26.482 15.152 26.526 15.329 C 26.557 15.462 26.577 16.031 26.58 16.541 C 25.76 16.129 24.65 15.694 23.169 15.694 C 21.675 15.694 20.303 16.126 19.306 16.916 C 18.257 17.743 17.678 18.907 17.682 20.194 C 17.682 20.603 17.743 21.011 17.862 21.403 L 17.917 21.576 L 18.318 21.597 L 19.391 21.648 L 19.493 21.651 C 19.925 21.671 20.361 21.685 20.793 21.702 L 21.018 21.709 L 20.507 20.997 C 20.344 20.766 20.259 20.511 20.259 20.238 C 20.259 19.602 20.671 19.159 21.011 18.904 C 21.563 18.492 22.322 18.264 23.149 18.264 C 24.538 18.264 25.488 18.778 26.502 19.397 L 26.587 19.449 L 26.587 21.842 L 26.768 21.845 C 27.125 21.849 27.489 21.852 27.857 21.852 C 27.922 21.852 27.99 21.852 28.058 21.855 C 28.34 21.859 28.623 21.859 28.912 21.859 L 29.191 21.859 L 29.164 20.643 Z\" fill=\"rgb(158, 161, 174)\"></path><path d=\"M 101.787 22.128 L 101.77 22.111 C 101.627 21.937 101.43 21.814 101.164 21.736 C 101.001 21.689 100.861 21.675 100.814 21.668 C 100.759 21.658 99.5 21.45 97.314 21.174 C 97.178 21.157 97.042 21.14 96.899 21.12 L 96.722 21.1 C 96.381 21.059 96.024 21.014 95.646 20.97 L 95.418 20.943 C 95.265 20.926 95.108 20.909 94.951 20.889 C 92.769 20.644 90.584 20.434 88.395 20.259 C 88.259 20.249 88.126 20.238 87.986 20.225 L 87.717 20.204 C 87.391 20.177 87.06 20.153 86.72 20.129 C 86.652 20.126 86.58 20.119 86.509 20.116 L 86.043 20.085 C 85.576 20.054 85.106 20.024 84.623 19.993 C 84.483 19.983 84.34 19.976 84.197 19.966 L 82.717 19.881 L 82.264 19.86 C 81.542 19.823 80.824 19.792 80.112 19.762 C 79.969 19.755 79.823 19.748 79.68 19.745 L 79.632 19.741 C 79.581 19.738 79.53 19.738 79.483 19.734 L 78.414 19.694 L 78.203 19.687 C 78.053 19.68 77.903 19.677 77.753 19.673 C 75.663 19.609 73.58 19.574 71.547 19.574 L 70.9 19.574 L 70.475 19.578 C 70.257 19.581 70.043 19.581 69.831 19.585 L 69.627 19.585 C 69.481 19.585 69.334 19.588 69.188 19.591 C 66.734 19.622 64.306 19.694 61.797 19.82 L 61.345 19.84 L 61.134 19.85 C 60.776 19.867 60.415 19.888 60.061 19.908 L 59.871 19.918 C 59.728 19.925 59.585 19.935 59.442 19.946 C 58.914 19.976 58.393 20.01 57.879 20.044 C 57.654 20.058 57.43 20.075 57.209 20.089 L 57.144 20.092 C 57.062 20.099 56.984 20.102 56.899 20.109 L 55.537 20.208 C 55.411 20.218 55.289 20.225 55.163 20.235 C 53.546 20.357 51.959 20.487 50.42 20.613 L 50.342 20.62 C 49.614 20.681 48.875 20.739 48.129 20.8 C 47.803 20.827 47.479 20.851 47.149 20.878 L 47.05 20.885 C 46.655 20.919 46.257 20.95 45.859 20.977 L 45.437 21.008 L 45.324 21.018 C 44.26 21.096 43.196 21.17 42.131 21.239 L 41.624 21.27 C 41.389 21.283 41.154 21.3 40.916 21.314 L 40.725 21.324 C 40.579 21.334 40.439 21.341 40.296 21.348 C 39.479 21.396 38.689 21.433 37.913 21.467 L 37.464 21.488 L 37.253 21.498 C 37.011 21.508 36.763 21.515 36.514 21.525 L 36.187 21.539 C 36.123 21.542 36.058 21.546 35.993 21.546 C 35.847 21.549 35.7 21.556 35.561 21.559 C 34.703 21.59 33.937 21.61 33.198 21.624 L 32.752 21.634 L 32.545 21.637 C 32.3 21.644 32.051 21.644 31.803 21.648 L 31.564 21.651 C 31.496 21.651 31.428 21.651 31.36 21.654 C 31.214 21.658 31.067 21.658 30.921 21.658 C 30.38 21.665 29.831 21.665 29.273 21.665 L 29.106 21.665 C 28.817 21.665 28.534 21.665 28.255 21.661 C 28.187 21.661 28.123 21.658 28.054 21.658 C 27.687 21.658 27.323 21.654 26.965 21.651 L 26.894 21.651 L 26.761 21.648 C 24.837 21.627 22.907 21.576 21.001 21.505 L 19.7 21.454 L 19.598 21.45 L 18.356 21.389 L 18.203 21.382 L 18.026 21.372 C 17.529 21.345 17.045 21.317 16.569 21.29 L 16.214 21.27 L 16.095 21.263 C 16.014 21.26 15.932 21.253 15.847 21.246 L 15.585 21.229 C 15.193 21.202 14.809 21.178 14.441 21.154 C 14.407 21.151 14.376 21.147 14.349 21.147 C 14.053 21.127 13.76 21.103 13.464 21.079 C 11.646 20.94 9.872 20.78 8.174 20.596 C 7.949 20.572 7.717 20.548 7.496 20.524 L 7.401 20.514 C 6.945 20.463 6.509 20.412 6.104 20.364 L 5.77 20.323 C 5.62 20.306 5.477 20.286 5.334 20.269 C 4.163 20.123 3.258 20.007 2.683 19.929 C 2.26 19.871 1.927 19.826 1.692 19.796 L 1.365 19.751 C 1.297 19.731 1.154 19.7 0.97 19.697 C 0.739 19.7 0.548 19.755 0.381 19.867 C 0.283 19.935 0.201 20.02 0.136 20.123 C 0.058 20.252 0.01 20.405 0.003 20.569 C 0 20.589 0 20.609 0 20.63 C 0 20.851 0.078 21.062 0.225 21.232 C 0.412 21.447 0.654 21.549 0.824 21.607 C 0.912 21.637 0.994 21.658 1.049 21.668 C 1.079 21.675 1.103 21.678 1.123 21.682 L 1.185 21.692 C 1.501 21.746 2.196 21.855 3.244 21.998 C 7.666 22.604 16.906 23.619 29.113 23.619 C 32.844 23.619 36.511 23.513 40.306 23.302 C 40.46 23.292 40.609 23.285 40.763 23.278 L 41.243 23.251 C 41.494 23.237 41.746 23.22 41.995 23.207 L 42.182 23.193 C 42.325 23.183 42.465 23.176 42.611 23.166 C 45.351 22.986 47.935 22.774 50.434 22.567 L 50.543 22.557 C 56.718 22.049 63.105 21.525 71.472 21.525 C 87.656 21.525 99.956 23.489 100.623 23.598 C 100.65 23.605 100.681 23.612 100.725 23.619 C 100.803 23.632 100.878 23.639 100.953 23.639 L 100.957 23.639 C 101.164 23.636 101.348 23.588 101.505 23.493 C 101.736 23.357 101.896 23.108 101.944 22.819 C 101.954 22.764 101.957 22.706 101.957 22.655 C 101.968 22.471 101.906 22.281 101.787 22.128\" fill=\"rgb(158, 161, 174)\"></path><path d=\"M 52.974 10.121 L 52.865 10.121 C 52.306 10.121 51.929 9.767 51.697 9.226 L 49.471 4.082 C 49.416 3.946 49.362 3.769 49.362 3.578 C 49.362 3.091 49.811 2.614 50.366 2.614 C 50.921 2.614 51.22 2.928 51.37 3.346 L 52.929 7.568 L 54.516 3.323 C 54.652 2.969 54.938 2.618 55.479 2.618 C 56.02 2.618 56.47 3.037 56.47 3.595 C 56.47 3.772 56.402 3.986 56.361 4.082 L 54.134 9.226 C 53.91 9.757 53.532 10.121 52.974 10.121 M 57.791 0.991 C 57.791 1.59 58.294 1.968 58.945 1.968 C 59.595 1.968 60.099 1.586 60.099 0.991 L 60.099 0.963 C 60.099 0.368 59.595 0 58.945 0 C 58.294 0 57.791 0.368 57.791 0.963 Z M 57.913 9.021 C 57.913 9.593 58.376 10.053 58.945 10.053 C 59.517 10.053 59.976 9.59 59.976 9.021 L 59.976 3.649 C 59.976 3.077 59.513 2.618 58.945 2.618 C 58.376 2.618 57.913 3.077 57.913 3.649 Z M 61.78 9.28 C 62.662 9.852 63.626 10.107 64.521 10.107 C 66.097 10.107 67.302 9.375 67.302 7.762 L 67.302 7.734 C 67.302 6.403 66.121 5.917 65.103 5.576 C 64.317 5.304 63.622 5.113 63.622 4.708 L 63.622 4.681 C 63.622 4.395 63.881 4.177 64.381 4.177 C 64.817 4.177 65.372 4.354 65.957 4.64 C 66.094 4.708 66.189 4.735 66.339 4.735 C 66.802 4.735 67.166 4.385 67.166 3.922 C 67.166 3.571 66.975 3.299 66.676 3.149 C 65.971 2.795 65.185 2.594 64.426 2.594 C 62.958 2.594 61.763 3.421 61.763 4.902 L 61.763 4.929 C 61.763 6.339 62.917 6.815 63.935 7.115 C 64.735 7.36 65.44 7.51 65.44 7.956 L 65.44 7.983 C 65.44 8.31 65.168 8.524 64.572 8.524 C 63.986 8.524 63.295 8.306 62.604 7.874 C 62.495 7.806 62.346 7.765 62.196 7.765 C 61.733 7.765 61.382 8.116 61.382 8.579 C 61.389 8.902 61.566 9.144 61.78 9.28 M 68.756 0.991 C 68.756 1.59 69.26 1.968 69.91 1.968 C 70.56 1.968 71.064 1.586 71.064 0.991 L 71.064 0.963 C 71.064 0.368 70.56 0 69.91 0 C 69.26 0 68.756 0.368 68.756 0.963 Z M 68.878 9.021 C 68.878 9.593 69.338 10.053 69.91 10.053 C 70.482 10.053 70.941 9.59 70.941 9.021 L 70.941 3.649 C 70.941 3.077 70.482 2.618 69.91 2.618 C 69.338 2.618 68.878 3.077 68.878 3.649 Z M 73.532 7.911 C 73.532 9.593 74.386 10.097 75.649 10.097 C 76.095 10.097 76.449 10.043 76.831 9.893 C 77.117 9.784 77.362 9.484 77.362 9.12 C 77.362 8.643 76.967 8.266 76.507 8.266 C 76.466 8.266 76.33 8.279 76.262 8.279 C 75.799 8.279 75.595 8.048 75.595 7.574 L 75.595 4.466 L 76.504 4.466 C 76.991 4.466 77.386 4.072 77.386 3.585 C 77.386 3.098 76.991 2.703 76.504 2.703 L 75.595 2.703 L 75.595 1.791 C 75.595 1.219 75.135 0.759 74.563 0.759 C 73.995 0.759 73.532 1.219 73.532 1.791 L 73.532 2.7 L 73.464 2.7 C 72.977 2.7 72.582 3.094 72.582 3.581 C 72.582 4.068 72.977 4.463 73.464 4.463 L 73.532 4.463 L 73.532 7.911\" fill=\"rgb(158, 161, 174)\"></path></g></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsxs(SVG,{className:\"framer-8ctldv\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 95.772 26.649\" overflow=\"visible\"><path d=\"M 12.276 13.372 C 12.861 13.372 13.464 13.838 13.464 14.625 C 13.464 15.292 12.626 16.337 11.336 17.154 C 9.777 17.157 3.7 16.763 2.158 16.102 C 0.824 14.713 0 12.79 0 10.676 C 0 5.92 3.898 2.975 7.51 2.975 C 10.54 2.975 13.151 5.171 13.151 6.25 C 13.151 7.173 12.528 7.503 11.946 7.503 C 11.462 7.503 11.125 7.21 10.734 6.877 C 10.114 6.342 9.178 5.539 7.51 5.539 C 4.769 5.539 2.54 7.843 2.54 10.679 C 2.54 13.549 4.66 15.799 7.363 15.799 C 9.403 15.799 10.461 14.72 11.094 14.073 C 11.459 13.692 11.775 13.372 12.276 13.372 M 82.567 6.631 C 82.352 6.444 82.06 6.339 81.75 6.339 C 81.457 6.339 81.178 6.437 80.97 6.611 C 80.735 6.809 80.589 7.081 80.521 7.442 C 80.483 7.656 80.48 7.857 80.48 8.003 L 80.48 16.453 L 81.028 16.436 C 81.096 16.432 81.157 16.432 81.222 16.429 L 81.549 16.419 C 81.78 16.412 82.012 16.405 82.24 16.395 L 82.451 16.603 L 83.054 16.575 L 83.054 7.969 C 83.054 7.813 83.05 7.517 82.945 7.207 C 82.866 6.972 82.737 6.778 82.567 6.631 M 81.876 2.454 C 81.491 2.454 81.134 2.601 80.875 2.86 C 80.609 3.127 80.46 3.49 80.463 3.867 C 80.463 4.255 80.606 4.613 80.871 4.875 C 81.134 5.137 81.491 5.283 81.876 5.283 L 81.879 5.283 C 82.267 5.283 82.625 5.14 82.883 4.878 C 83.146 4.616 83.292 4.259 83.292 3.874 C 83.295 3.486 83.149 3.129 82.883 2.866 C 82.625 2.597 82.264 2.454 81.876 2.454 M 95.626 9.811 C 95.421 8.987 95.057 7.915 94.502 7.517 C 93.498 6.771 92.272 6.41 90.757 6.41 C 89.76 6.41 88.582 6.574 87.609 6.843 C 87.091 6.989 86.666 7.152 86.349 7.333 C 86.138 7.455 85.978 7.578 85.852 7.714 C 85.648 7.935 85.539 8.197 85.539 8.47 C 85.539 8.769 85.634 9.059 85.811 9.283 C 86.032 9.576 86.383 9.75 86.754 9.75 C 87.132 9.746 87.472 9.637 87.864 9.511 L 87.946 9.488 C 88.616 9.27 89.45 8.997 90.757 8.997 C 91.326 8.997 91.786 9.062 92.167 9.195 C 92.483 9.307 92.684 9.443 92.834 9.559 C 93.028 9.716 93.086 9.842 93.13 10.022 C 93.161 10.151 93.181 10.696 93.188 11.234 C 92.368 10.822 91.258 10.383 89.777 10.383 C 88.283 10.383 86.911 10.819 85.913 11.612 C 84.94 12.385 84.364 13.467 84.296 14.659 L 84.276 14.982 L 84.851 15.02 C 84.923 15.026 84.991 15.03 85.059 15.033 C 85.399 15.06 85.729 15.084 86.06 15.108 L 86.843 15.169 L 86.87 14.843 C 86.907 14.376 87.166 13.951 87.622 13.607 C 88.17 13.191 88.929 12.963 89.757 12.963 C 91.241 12.967 92.238 13.563 93.191 14.155 L 93.191 15.782 L 93.985 15.871 C 94.359 15.915 94.717 15.959 95.057 16 L 95.772 16.089 L 95.769 11.619 C 95.769 10.955 95.765 10.373 95.626 9.811 M 77.682 8.378 L 77.634 8.32 C 77.365 8.014 76.929 7.568 76.245 7.244 C 75.568 6.921 74.768 6.764 73.804 6.764 C 72.037 6.764 70.553 7.336 69.59 7.84 C 69.529 7.731 69.46 7.632 69.392 7.54 C 69.256 7.36 69.1 7.214 68.929 7.101 C 68.711 6.958 68.483 6.887 68.249 6.887 C 67.956 6.89 67.666 7.003 67.425 7.21 C 67.152 7.452 66.996 7.792 66.996 8.146 C 66.996 8.347 67.047 8.511 67.091 8.64 C 67.122 8.722 67.159 8.807 67.197 8.899 L 67.408 9.426 C 67.534 9.831 67.544 10.502 67.54 11.408 L 67.54 14.499 L 67.85 14.495 C 67.929 14.492 68.01 14.492 68.089 14.492 L 68.293 14.492 C 68.504 14.489 68.718 14.489 68.936 14.485 L 69.362 14.482 L 70.117 14.482 L 70.117 10.669 C 70.713 10.26 71.2 9.995 71.687 9.808 C 72.334 9.563 73.011 9.447 73.831 9.447 C 74.294 9.447 74.669 9.505 74.975 9.617 C 75.265 9.723 75.5 9.879 75.714 10.104 C 75.888 10.288 75.983 10.512 76.044 10.843 C 76.106 11.197 76.106 11.643 76.106 12.116 L 76.106 14.574 L 76.871 14.594 L 77.944 14.635 L 78.686 14.669 L 78.689 12.112 C 78.686 11.271 78.676 10.676 78.55 10.083 C 78.403 9.457 78.131 8.912 77.682 8.378 M 65.569 7.809 L 65.505 7.707 L 65.386 7.609 C 64.303 6.788 63.077 6.696 62.601 6.696 C 61.501 6.696 60.402 7.122 59.326 7.959 C 59.268 7.864 59.21 7.775 59.149 7.694 C 58.982 7.462 58.815 7.282 58.635 7.139 C 58.369 6.928 58.083 6.822 57.791 6.819 C 57.403 6.819 57.045 6.975 56.803 7.244 C 56.589 7.486 56.473 7.792 56.473 8.106 C 56.47 8.351 56.531 8.592 56.647 8.824 C 56.732 8.991 56.831 9.127 56.919 9.249 C 57.042 9.42 57.168 9.597 57.266 9.869 C 57.389 10.206 57.45 10.625 57.45 11.156 L 57.45 14.866 L 58.186 14.819 L 59.254 14.757 L 59.466 14.747 C 59.554 14.744 59.643 14.737 59.731 14.734 L 60.024 14.72 L 60.024 10.931 C 60.402 10.471 60.735 10.141 61.076 9.903 C 61.566 9.559 62.046 9.399 62.597 9.399 C 62.683 9.399 62.917 9.406 63.193 9.471 C 63.404 9.518 63.707 9.617 63.946 9.818 L 64.116 9.957 L 64.351 9.985 C 64.368 9.985 64.409 9.988 64.466 9.988 C 64.638 9.989 64.809 9.961 64.97 9.903 C 65.171 9.831 65.45 9.675 65.648 9.341 C 65.763 9.14 65.821 8.912 65.821 8.681 C 65.821 8.477 65.78 8.272 65.695 8.065 C 65.644 7.925 65.586 7.833 65.569 7.809 M 53.927 8.429 C 52.674 7.306 50.938 6.686 49.042 6.686 C 47.146 6.686 45.409 7.306 44.157 8.429 C 42.87 9.58 42.162 11.19 42.162 12.96 C 42.162 13.991 42.403 14.965 42.883 15.86 L 42.924 15.939 L 43.53 15.891 C 43.929 15.86 44.327 15.826 44.722 15.792 L 46.012 15.687 L 45.494 15.071 C 44.994 14.471 44.739 13.763 44.739 12.963 C 44.739 11.963 45.14 11.088 45.896 10.434 C 46.683 9.757 47.799 9.379 49.042 9.379 C 50.284 9.379 51.401 9.753 52.191 10.434 C 52.946 11.088 53.348 11.963 53.348 12.963 C 53.348 13.494 53.226 13.998 52.977 14.471 L 52.637 15.129 L 55.622 14.904 L 55.656 14.788 C 55.833 14.203 55.925 13.59 55.925 12.963 C 55.925 11.19 55.214 9.58 53.927 8.429 M 42.737 5.719 C 42.914 5.614 43.06 5.464 43.18 5.273 C 43.302 5.069 43.36 4.865 43.363 4.65 C 43.363 4.364 43.268 4.089 43.094 3.871 C 42.883 3.605 42.577 3.425 42.151 3.309 C 41.828 3.224 41.44 3.183 40.963 3.183 C 40.18 3.183 39.408 3.36 38.727 3.69 C 38.213 3.942 37.76 4.279 37.477 4.62 L 37.328 4.8 L 37.304 4.841 L 37.304 4.844 C 37.014 5.239 36.827 5.641 36.718 6.104 C 36.575 6.689 36.545 7.374 36.545 8.214 L 36.545 16.276 L 37.086 16.245 L 37.277 16.235 C 37.515 16.221 37.75 16.208 37.981 16.191 L 39.064 16.123 L 39.064 11.534 L 40.123 11.534 C 40.47 11.534 40.797 11.411 41.035 11.19 C 41.294 10.958 41.44 10.618 41.44 10.26 C 41.44 10.087 41.413 9.93 41.358 9.78 C 41.258 9.518 41.067 9.301 40.82 9.168 C 40.623 9.062 40.391 9.008 40.123 9.008 L 39.064 9.008 L 39.064 8.204 C 39.064 7.489 39.091 7.054 39.156 6.751 C 39.224 6.437 39.323 6.291 39.445 6.172 C 39.629 5.998 40.17 5.699 41.028 5.699 C 41.334 5.699 41.447 5.729 41.546 5.757 L 42.1 5.862 L 42.199 5.869 C 42.386 5.872 42.567 5.821 42.737 5.719 M 33.311 2.454 C 32.926 2.454 32.569 2.601 32.31 2.863 C 32.048 3.125 31.901 3.483 31.905 3.867 C 31.905 4.252 32.048 4.609 32.31 4.871 C 32.569 5.137 32.929 5.28 33.314 5.28 L 33.321 5.28 C 33.706 5.28 34.06 5.134 34.322 4.871 C 34.587 4.606 34.73 4.252 34.73 3.867 C 34.73 3.483 34.587 3.125 34.325 2.86 C 34.06 2.597 33.702 2.454 33.311 2.454 M 34.114 6.631 C 33.9 6.444 33.61 6.339 33.297 6.339 C 33.004 6.339 32.729 6.437 32.517 6.611 C 32.283 6.809 32.133 7.081 32.068 7.442 C 32.031 7.656 32.027 7.857 32.027 8.003 L 32.027 16.892 L 32.572 16.875 C 32.64 16.871 32.705 16.871 32.766 16.868 L 33.093 16.858 C 33.341 16.851 33.59 16.841 33.831 16.831 L 34.597 16.797 L 34.597 7.969 C 34.594 7.813 34.594 7.517 34.489 7.207 C 34.41 6.972 34.284 6.778 34.114 6.631 M 30.097 1.743 C 30.097 1.576 30.097 1.263 30.005 0.943 C 29.934 0.701 29.828 0.507 29.678 0.354 C 29.464 0.126 29.164 0 28.831 0 C 28.524 0 28.228 0.123 28.02 0.334 C 27.755 0.606 27.677 0.929 27.636 1.181 C 27.602 1.409 27.602 1.627 27.602 1.774 L 27.602 24.899 C 27.602 25.066 27.605 25.379 27.694 25.702 C 27.765 25.944 27.871 26.138 28.017 26.291 C 28.231 26.523 28.534 26.649 28.865 26.649 C 29.171 26.649 29.464 26.526 29.675 26.315 C 29.94 26.043 30.019 25.719 30.06 25.467 C 30.094 25.243 30.094 25.021 30.094 24.878 L 30.094 8.749 Z M 25.93 11.649 C 25.93 10.986 25.927 9.753 25.787 9.198 C 25.617 8.521 25.249 7.986 24.664 7.568 C 23.66 6.826 22.434 6.468 20.919 6.468 C 19.922 6.468 18.744 6.628 17.77 6.897 C 17.256 7.04 16.831 7.2 16.511 7.384 C 16.3 7.506 16.14 7.626 16.014 7.762 C 15.809 7.983 15.7 8.245 15.7 8.517 C 15.7 8.817 15.796 9.096 15.973 9.324 C 16.194 9.614 16.545 9.787 16.916 9.787 C 17.287 9.784 17.62 9.678 18.009 9.556 L 18.1 9.525 C 18.771 9.307 19.605 9.038 20.916 9.038 C 21.474 9.038 21.947 9.103 22.325 9.232 C 22.645 9.341 22.843 9.477 22.992 9.593 C 23.186 9.75 23.248 9.876 23.292 10.053 C 23.323 10.186 23.343 10.754 23.346 11.265 C 22.526 10.853 21.416 10.417 19.935 10.417 C 18.441 10.417 17.069 10.849 16.071 11.639 C 15.023 12.466 14.444 13.631 14.448 14.917 C 14.448 15.326 14.509 15.734 14.628 16.126 L 14.683 16.3 L 15.084 16.32 L 16.157 16.371 L 16.259 16.374 C 16.691 16.395 17.127 16.409 17.559 16.426 L 17.784 16.432 L 17.273 15.721 C 17.11 15.489 17.025 15.234 17.025 14.962 C 17.025 14.325 17.437 13.883 17.777 13.627 C 18.329 13.215 19.088 12.987 19.915 12.987 C 21.304 12.987 22.254 13.501 23.268 14.121 L 23.353 14.172 L 23.353 16.565 L 23.534 16.569 C 23.891 16.572 24.255 16.575 24.623 16.575 C 24.688 16.575 24.756 16.575 24.824 16.579 C 25.106 16.582 25.389 16.582 25.678 16.582 L 25.957 16.582 L 25.93 15.367 Z\" fill=\"rgb(158, 161, 174)\"></path></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-3i627h\",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.464 14.179\" overflow=\"visible\"><path d=\"M 12.276 10.397 C 12.861 10.397 13.464 10.863 13.464 11.649 C 13.464 12.317 12.626 13.362 11.336 14.179 C 9.777 14.182 3.7 13.787 2.158 13.127 C 0.824 11.738 0 9.814 0 7.7 C 0 2.945 3.898 0 7.51 0 C 10.54 0 13.151 2.196 13.151 3.275 C 13.151 4.197 12.528 4.528 11.946 4.528 C 11.462 4.528 11.125 4.235 10.734 3.901 C 10.114 3.367 9.178 2.563 7.51 2.563 C 4.769 2.563 2.54 4.868 2.54 7.704 C 2.54 10.574 4.66 12.824 7.363 12.824 C 9.403 12.824 10.461 11.745 11.094 11.098 C 11.459 10.717 11.775 10.397 12.276 10.397\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-fbyd9g\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 2.574 10.264\" overflow=\"visible\"><path d=\"M 2.087 0.293 C 1.872 0.106 1.58 0 1.27 0 C 0.977 0 0.698 0.099 0.49 0.272 C 0.255 0.47 0.109 0.742 0.041 1.103 C 0.003 1.317 0 1.518 0 1.665 L 0 10.114 L 0.548 10.097 C 0.616 10.094 0.677 10.094 0.742 10.09 L 1.069 10.08 C 1.3 10.073 1.532 10.066 1.76 10.056 L 1.971 10.264 L 2.574 10.237 L 2.574 1.631 C 2.574 1.474 2.57 1.178 2.465 0.868 C 2.386 0.633 2.257 0.439 2.087 0.293\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1519ork\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 2.829 2.829\" overflow=\"visible\"><path d=\"M 1.413 0 C 1.028 0 0.671 0.146 0.412 0.405 C 0.146 0.672 -0.003 1.035 0 1.413 C 0 1.801 0.143 2.158 0.409 2.42 C 0.671 2.683 1.028 2.829 1.413 2.829 L 1.416 2.829 C 1.804 2.829 2.162 2.686 2.42 2.424 C 2.683 2.162 2.829 1.804 2.829 1.42 C 2.832 1.031 2.686 0.674 2.42 0.412 C 2.162 0.143 1.801 0 1.413 0\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-jn04r0\",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.496 9.678\" overflow=\"visible\"><path d=\"M 11.35 3.401 C 11.146 2.577 10.781 1.505 10.226 1.106 C 9.222 0.361 7.997 0 6.482 0 C 5.484 0 4.306 0.163 3.333 0.432 C 2.815 0.579 2.39 0.742 2.073 0.923 C 1.862 1.045 1.702 1.168 1.576 1.304 C 1.372 1.525 1.263 1.787 1.263 2.06 C 1.263 2.359 1.358 2.649 1.535 2.873 C 1.757 3.166 2.107 3.34 2.478 3.34 C 2.856 3.336 3.197 3.227 3.588 3.101 L 3.67 3.077 C 4.34 2.86 5.174 2.587 6.482 2.587 C 7.05 2.587 7.51 2.652 7.891 2.785 C 8.208 2.897 8.409 3.033 8.558 3.149 C 8.752 3.306 8.81 3.431 8.854 3.612 C 8.885 3.741 8.906 4.286 8.912 4.824 C 8.092 4.412 6.982 3.973 5.501 3.973 C 4.007 3.973 2.635 4.409 1.637 5.202 C 0.664 5.974 0.089 7.057 0.02 8.249 L 0 8.572 L 0.575 8.609 C 0.647 8.616 0.715 8.62 0.783 8.623 C 1.123 8.65 1.454 8.674 1.784 8.698 L 2.567 8.759 L 2.594 8.432 C 2.631 7.966 2.89 7.54 3.346 7.197 C 3.894 6.781 4.654 6.553 5.481 6.553 C 6.965 6.557 7.963 7.152 8.916 7.745 L 8.916 9.372 L 9.709 9.46 C 10.083 9.505 10.441 9.549 10.781 9.59 L 11.496 9.678 L 11.493 5.209 C 11.493 4.545 11.489 3.963 11.35 3.401\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1v75ir5\",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.694 7.905\" overflow=\"visible\"><path d=\"M 10.686 1.614 L 10.638 1.556 C 10.369 1.249 9.934 0.803 9.249 0.48 C 8.572 0.157 7.772 0 6.809 0 C 5.042 0 3.557 0.572 2.594 1.076 C 2.533 0.967 2.465 0.868 2.397 0.776 C 2.26 0.596 2.104 0.449 1.934 0.337 C 1.716 0.194 1.488 0.123 1.253 0.123 C 0.96 0.126 0.671 0.238 0.429 0.446 C 0.157 0.688 0 1.028 0 1.382 C 0 1.583 0.051 1.746 0.095 1.876 C 0.126 1.957 0.163 2.043 0.201 2.134 L 0.412 2.662 C 0.538 3.067 0.548 3.738 0.545 4.643 L 0.545 7.734 L 0.854 7.731 C 0.933 7.728 1.014 7.728 1.093 7.728 L 1.297 7.728 C 1.508 7.724 1.723 7.724 1.94 7.721 L 2.366 7.717 L 3.122 7.717 L 3.122 3.905 C 3.717 3.496 4.204 3.231 4.691 3.043 C 5.338 2.798 6.015 2.683 6.836 2.683 C 7.299 2.683 7.673 2.74 7.98 2.853 C 8.269 2.958 8.504 3.115 8.718 3.34 C 8.892 3.523 8.987 3.748 9.049 4.078 C 9.11 4.432 9.11 4.878 9.11 5.351 L 9.11 7.809 L 9.876 7.83 L 10.948 7.871 L 11.69 7.905 L 11.694 5.348 C 11.69 4.507 11.68 3.911 11.554 3.319 C 11.408 2.693 11.135 2.148 10.686 1.614\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-m4dz1n\",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.348 8.17\" overflow=\"visible\"><path d=\"M 9.096 1.113 L 9.032 1.011 L 8.912 0.912 C 7.83 0.092 6.604 0 6.128 0 C 5.028 0 3.929 0.426 2.853 1.263 C 2.795 1.168 2.737 1.079 2.676 0.997 C 2.509 0.766 2.342 0.586 2.162 0.443 C 1.896 0.231 1.61 0.126 1.318 0.123 C 0.929 0.123 0.572 0.279 0.33 0.548 C 0.116 0.79 0 1.096 0 1.409 C -0.003 1.654 0.058 1.896 0.174 2.128 C 0.259 2.294 0.358 2.431 0.446 2.553 C 0.569 2.723 0.695 2.9 0.793 3.173 C 0.916 3.51 0.977 3.929 0.977 4.46 L 0.977 8.17 L 1.712 8.123 L 2.781 8.061 L 2.992 8.051 C 3.081 8.048 3.169 8.041 3.258 8.037 L 3.551 8.024 L 3.551 4.235 C 3.929 3.775 4.262 3.445 4.603 3.207 C 5.093 2.863 5.573 2.703 6.124 2.703 C 6.209 2.703 6.444 2.71 6.72 2.774 C 6.931 2.822 7.234 2.921 7.472 3.122 L 7.643 3.261 L 7.878 3.289 C 7.895 3.289 7.935 3.292 7.993 3.292 C 8.165 3.293 8.336 3.264 8.497 3.207 C 8.698 3.135 8.977 2.979 9.175 2.645 C 9.29 2.444 9.348 2.216 9.348 1.985 C 9.348 1.78 9.307 1.576 9.222 1.369 C 9.171 1.229 9.113 1.137 9.096 1.113\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-m5x726\",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.763 9.253\" overflow=\"visible\"><path d=\"M 11.765 1.743 C 10.512 0.62 8.776 0 6.88 0 C 4.984 0 3.248 0.62 1.995 1.743 C 0.708 2.894 0 4.504 0 6.274 C 0 7.306 0.242 8.279 0.722 9.174 L 0.763 9.253 L 1.369 9.205 C 1.767 9.174 2.165 9.14 2.56 9.106 L 3.85 9.001 L 3.333 8.385 C 2.832 7.786 2.577 7.077 2.577 6.277 C 2.577 5.277 2.979 4.402 3.734 3.748 C 4.521 3.071 5.637 2.693 6.88 2.693 C 8.123 2.693 9.239 3.067 10.029 3.748 C 10.785 4.402 11.186 5.277 11.186 6.277 C 11.186 6.809 11.064 7.312 10.815 7.786 L 10.475 8.443 L 13.46 8.218 L 13.494 8.102 C 13.671 7.517 13.763 6.904 13.763 6.277 C 13.763 4.504 13.052 2.894 11.765 1.743\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-mcgy54\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 6.819 13.093\" overflow=\"visible\"><path d=\"M 6.192 2.536 C 6.369 2.431 6.516 2.281 6.635 2.09 C 6.757 1.886 6.815 1.682 6.819 1.467 C 6.819 1.181 6.723 0.906 6.55 0.688 C 6.339 0.422 6.032 0.242 5.607 0.126 C 5.283 0.041 4.895 0 4.419 0 C 3.636 0 2.863 0.177 2.182 0.507 C 1.668 0.759 1.215 1.096 0.933 1.437 L 0.783 1.617 L 0.759 1.658 L 0.759 1.661 C 0.47 2.056 0.283 2.458 0.174 2.921 C 0.031 3.506 0 4.191 0 5.031 L 0 13.093 L 0.541 13.062 L 0.732 13.052 C 0.97 13.038 1.205 13.025 1.437 13.008 L 2.519 12.94 L 2.519 8.351 L 3.578 8.351 C 3.925 8.351 4.252 8.228 4.49 8.007 C 4.749 7.775 4.895 7.435 4.895 7.077 C 4.895 6.904 4.868 6.747 4.814 6.597 C 4.714 6.335 4.523 6.118 4.276 5.985 C 4.078 5.879 3.847 5.825 3.578 5.825 L 2.519 5.825 L 2.519 5.021 C 2.519 4.306 2.546 3.871 2.611 3.568 C 2.679 3.254 2.778 3.108 2.9 2.989 C 3.084 2.815 3.626 2.516 4.483 2.516 C 4.79 2.516 4.902 2.546 5.001 2.574 L 5.556 2.679 L 5.654 2.686 C 5.842 2.689 6.022 2.638 6.192 2.536\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1yk7jx4\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 2.826 2.826\" overflow=\"visible\"><path d=\"M 1.406 0 C 1.021 0 0.664 0.146 0.405 0.409 C 0.143 0.671 -0.003 1.028 0 1.413 C 0 1.797 0.143 2.155 0.405 2.417 C 0.664 2.683 1.025 2.826 1.409 2.826 L 1.416 2.826 C 1.801 2.826 2.155 2.679 2.417 2.417 C 2.683 2.151 2.826 1.797 2.826 1.413 C 2.826 1.028 2.683 0.671 2.42 0.405 C 2.155 0.143 1.798 0 1.406 0\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1kzfp9g\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 2.57 10.553\" overflow=\"visible\"><path d=\"M 2.087 0.293 C 1.872 0.106 1.583 0 1.27 0 C 0.977 0 0.701 0.099 0.49 0.272 C 0.255 0.47 0.106 0.742 0.041 1.103 C 0.003 1.317 0 1.518 0 1.665 L 0 10.553 L 0.545 10.536 C 0.613 10.533 0.677 10.533 0.739 10.529 L 1.066 10.519 C 1.314 10.512 1.563 10.502 1.804 10.492 L 2.57 10.458 L 2.57 1.631 C 2.567 1.474 2.567 1.178 2.461 0.868 C 2.383 0.633 2.257 0.439 2.087 0.293\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-19nw092\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 2.495 26.649\" overflow=\"visible\"><path d=\"M 2.495 1.743 C 2.495 1.576 2.495 1.263 2.403 0.943 C 2.332 0.701 2.226 0.507 2.077 0.354 C 1.862 0.126 1.563 0 1.229 0 C 0.923 0 0.626 0.123 0.419 0.334 C 0.153 0.606 0.075 0.929 0.034 1.181 C 0 1.409 0 1.627 0 1.774 L 0 24.899 C 0 25.066 0.003 25.379 0.092 25.702 C 0.163 25.944 0.269 26.138 0.415 26.291 C 0.63 26.523 0.933 26.649 1.263 26.649 C 1.569 26.649 1.862 26.526 2.073 26.315 C 2.339 26.043 2.417 25.719 2.458 25.467 C 2.492 25.243 2.492 25.021 2.492 24.878 L 2.492 8.749 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-19mo0to\",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.51 10.114\" overflow=\"visible\"><path d=\"M 11.483 5.181 C 11.483 4.517 11.479 3.285 11.34 2.73 C 11.169 2.053 10.802 1.518 10.216 1.1 C 9.212 0.357 7.986 0 6.472 0 C 5.474 0 4.296 0.16 3.323 0.429 C 2.809 0.572 2.383 0.732 2.063 0.916 C 1.852 1.038 1.692 1.157 1.566 1.294 C 1.362 1.515 1.253 1.777 1.253 2.049 C 1.253 2.349 1.348 2.628 1.525 2.856 C 1.746 3.146 2.097 3.319 2.468 3.319 C 2.839 3.316 3.173 3.21 3.561 3.088 L 3.653 3.057 C 4.323 2.839 5.157 2.57 6.468 2.57 C 7.026 2.57 7.5 2.635 7.877 2.764 C 8.197 2.873 8.395 3.009 8.545 3.125 C 8.739 3.282 8.8 3.408 8.844 3.585 C 8.875 3.717 8.895 4.286 8.899 4.797 C 8.078 4.385 6.969 3.949 5.488 3.949 C 3.993 3.949 2.621 4.381 1.624 5.171 C 0.575 5.998 -0.003 7.163 0 8.449 C 0 8.858 0.061 9.266 0.18 9.658 L 0.235 9.831 L 0.637 9.852 L 1.709 9.903 L 1.811 9.906 C 2.243 9.927 2.679 9.94 3.112 9.957 L 3.336 9.964 L 2.826 9.253 C 2.662 9.021 2.577 8.766 2.577 8.494 C 2.577 7.857 2.989 7.414 3.329 7.159 C 3.881 6.747 4.64 6.519 5.467 6.519 C 6.856 6.519 7.806 7.033 8.82 7.653 L 8.906 7.704 L 8.906 10.097 L 9.086 10.1 C 9.443 10.104 9.808 10.107 10.175 10.107 C 10.24 10.107 10.308 10.107 10.376 10.111 C 10.659 10.114 10.941 10.114 11.231 10.114 L 11.51 10.114 L 11.483 8.899 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-plxhtg\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 101.959 4.065\" overflow=\"visible\"><path d=\"M 101.787 2.553 L 101.77 2.536 C 101.627 2.363 101.43 2.24 101.164 2.162 C 101.001 2.114 100.861 2.1 100.814 2.094 C 100.759 2.083 99.5 1.876 97.314 1.6 C 97.178 1.583 97.042 1.566 96.899 1.546 L 96.722 1.525 C 96.381 1.484 96.024 1.44 95.646 1.396 L 95.418 1.369 C 95.265 1.351 95.108 1.334 94.951 1.314 C 92.769 1.07 90.584 0.86 88.395 0.684 C 88.259 0.674 88.126 0.664 87.986 0.65 L 87.717 0.63 C 87.391 0.603 87.06 0.579 86.72 0.555 C 86.652 0.551 86.58 0.545 86.509 0.541 L 86.043 0.511 C 85.576 0.48 85.106 0.449 84.623 0.419 C 84.483 0.409 84.34 0.402 84.197 0.391 L 82.717 0.306 L 82.264 0.286 C 81.542 0.249 80.824 0.218 80.112 0.187 C 79.969 0.18 79.823 0.174 79.68 0.17 L 79.632 0.167 C 79.581 0.163 79.53 0.163 79.483 0.16 L 78.414 0.119 L 78.203 0.112 C 78.053 0.106 77.903 0.102 77.753 0.099 C 75.663 0.034 73.58 0 71.547 0 L 70.9 0 L 70.475 0.003 C 70.257 0.007 70.043 0.007 69.831 0.01 L 69.627 0.01 C 69.481 0.01 69.334 0.014 69.188 0.017 C 66.734 0.048 64.306 0.119 61.797 0.245 L 61.345 0.266 L 61.134 0.276 C 60.776 0.293 60.415 0.313 60.061 0.334 L 59.871 0.344 C 59.728 0.351 59.585 0.361 59.442 0.371 C 58.914 0.402 58.393 0.436 57.879 0.47 C 57.654 0.483 57.43 0.5 57.209 0.514 L 57.144 0.517 C 57.062 0.524 56.984 0.528 56.899 0.534 L 55.537 0.633 C 55.411 0.643 55.289 0.65 55.163 0.66 C 53.546 0.783 51.959 0.912 50.42 1.038 L 50.342 1.045 C 49.614 1.106 48.875 1.164 48.129 1.226 C 47.803 1.253 47.479 1.277 47.149 1.304 L 47.05 1.311 C 46.655 1.345 46.257 1.375 45.859 1.403 L 45.437 1.433 L 45.324 1.443 C 44.26 1.522 43.196 1.595 42.131 1.665 L 41.624 1.695 C 41.389 1.709 41.154 1.726 40.916 1.74 L 40.725 1.75 C 40.579 1.76 40.439 1.767 40.296 1.774 C 39.479 1.821 38.689 1.859 37.913 1.893 L 37.464 1.913 L 37.253 1.923 C 37.011 1.934 36.763 1.94 36.514 1.951 L 36.187 1.964 C 36.123 1.968 36.058 1.971 35.993 1.971 C 35.847 1.974 35.7 1.981 35.561 1.985 C 34.703 2.015 33.937 2.036 33.198 2.049 L 32.752 2.06 L 32.545 2.063 C 32.3 2.07 32.051 2.07 31.803 2.073 L 31.564 2.077 C 31.496 2.077 31.428 2.077 31.36 2.08 C 31.214 2.083 31.067 2.083 30.921 2.083 C 30.38 2.09 29.831 2.09 29.273 2.09 L 29.106 2.09 C 28.817 2.09 28.534 2.09 28.255 2.087 C 28.187 2.087 28.123 2.083 28.054 2.083 C 27.687 2.083 27.323 2.08 26.965 2.077 L 26.894 2.077 L 26.761 2.073 C 24.837 2.053 22.907 2.002 21.001 1.93 L 19.7 1.879 L 19.598 1.876 L 18.356 1.814 L 18.203 1.808 L 18.026 1.797 C 17.529 1.77 17.045 1.743 16.569 1.716 L 16.214 1.695 L 16.095 1.689 C 16.014 1.685 15.932 1.678 15.847 1.671 L 15.585 1.654 C 15.193 1.627 14.809 1.603 14.441 1.58 C 14.407 1.576 14.376 1.573 14.349 1.573 C 14.053 1.552 13.76 1.529 13.464 1.505 C 11.646 1.365 9.872 1.205 8.174 1.021 C 7.949 0.997 7.717 0.974 7.496 0.95 L 7.401 0.94 C 6.945 0.889 6.509 0.837 6.104 0.79 L 5.77 0.749 C 5.62 0.732 5.477 0.711 5.334 0.694 C 4.163 0.548 3.258 0.432 2.683 0.354 C 2.26 0.296 1.927 0.252 1.692 0.221 L 1.365 0.177 C 1.297 0.157 1.154 0.126 0.97 0.123 C 0.739 0.126 0.548 0.18 0.381 0.293 C 0.283 0.361 0.201 0.446 0.136 0.548 C 0.058 0.677 0.01 0.831 0.003 0.994 C 0 1.014 0 1.035 0 1.055 C 0 1.277 0.078 1.488 0.225 1.658 C 0.412 1.872 0.654 1.974 0.824 2.032 C 0.912 2.063 0.994 2.083 1.049 2.094 C 1.079 2.1 1.103 2.104 1.123 2.107 L 1.185 2.117 C 1.501 2.172 2.196 2.281 3.244 2.424 C 7.666 3.03 16.906 4.044 29.113 4.044 C 32.844 4.044 36.511 3.939 40.306 3.728 C 40.46 3.717 40.609 3.711 40.763 3.704 L 41.243 3.677 C 41.494 3.663 41.746 3.646 41.995 3.632 L 42.182 3.619 C 42.325 3.609 42.465 3.602 42.611 3.591 C 45.351 3.411 47.935 3.2 50.434 2.992 L 50.543 2.982 C 56.718 2.475 63.105 1.951 71.472 1.951 C 87.656 1.951 99.956 3.915 100.623 4.024 C 100.65 4.031 100.681 4.037 100.725 4.044 C 100.803 4.058 100.878 4.065 100.953 4.065 L 100.957 4.065 C 101.164 4.061 101.348 4.014 101.505 3.918 C 101.736 3.782 101.896 3.534 101.944 3.244 C 101.954 3.19 101.957 3.132 101.957 3.081 C 101.968 2.897 101.906 2.706 101.787 2.553\" fill=\"rgb(158, 161, 174)\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsxs(SVG,{className:\"framer-1winzrl\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 28.024 10.121\" overflow=\"visible\"><path d=\"M 3.612 10.121 L 3.503 10.121 C 2.945 10.121 2.567 9.767 2.335 9.226 L 0.109 4.082 C 0.054 3.946 0 3.769 0 3.578 C 0 3.091 0.449 2.614 1.004 2.614 C 1.559 2.614 1.859 2.928 2.009 3.346 L 3.568 7.568 L 5.154 3.323 C 5.29 2.969 5.576 2.618 6.117 2.618 C 6.659 2.618 7.108 3.037 7.108 3.595 C 7.108 3.772 7.04 3.986 6.999 4.082 L 4.773 9.226 C 4.548 9.757 4.17 10.121 3.612 10.121 M 8.429 0.991 C 8.429 1.59 8.933 1.968 9.583 1.968 C 10.233 1.968 10.737 1.586 10.737 0.991 L 10.737 0.963 C 10.737 0.368 10.233 0 9.583 0 C 8.933 0 8.429 0.368 8.429 0.963 Z M 8.551 9.021 C 8.551 9.593 9.014 10.053 9.583 10.053 C 10.155 10.053 10.614 9.59 10.614 9.021 L 10.614 3.649 C 10.614 3.077 10.151 2.618 9.583 2.618 C 9.014 2.618 8.551 3.077 8.551 3.649 Z M 12.419 9.28 C 13.3 9.852 14.264 10.107 15.159 10.107 C 16.735 10.107 17.94 9.375 17.94 7.762 L 17.94 7.734 C 17.94 6.403 16.759 5.917 15.741 5.576 C 14.955 5.304 14.26 5.113 14.26 4.708 L 14.26 4.681 C 14.26 4.395 14.519 4.177 15.02 4.177 C 15.455 4.177 16.01 4.354 16.596 4.64 C 16.732 4.708 16.827 4.735 16.977 4.735 C 17.44 4.735 17.804 4.385 17.804 3.922 C 17.804 3.571 17.614 3.299 17.314 3.149 C 16.609 2.795 15.823 2.594 15.064 2.594 C 13.597 2.594 12.402 3.421 12.402 4.902 L 12.402 4.929 C 12.402 6.339 13.556 6.815 14.574 7.115 C 15.374 7.36 16.078 7.51 16.078 7.956 L 16.078 7.983 C 16.078 8.31 15.806 8.524 15.21 8.524 C 14.625 8.524 13.934 8.306 13.243 7.874 C 13.134 7.806 12.984 7.765 12.834 7.765 C 12.371 7.765 12.02 8.116 12.02 8.579 C 12.027 8.902 12.204 9.144 12.419 9.28 M 19.394 0.991 C 19.394 1.59 19.898 1.968 20.548 1.968 C 21.198 1.968 21.702 1.586 21.702 0.991 L 21.702 0.963 C 21.702 0.368 21.198 0 20.548 0 C 19.898 0 19.394 0.368 19.394 0.963 Z M 19.517 9.021 C 19.517 9.593 19.976 10.053 20.548 10.053 C 21.12 10.053 21.58 9.59 21.58 9.021 L 21.58 3.649 C 21.58 3.077 21.12 2.618 20.548 2.618 C 19.976 2.618 19.517 3.077 19.517 3.649 Z M 24.17 7.911 C 24.17 9.593 25.025 10.097 26.288 10.097 C 26.734 10.097 27.088 10.043 27.469 9.893 C 27.755 9.784 28 9.484 28 9.12 C 28 8.643 27.605 8.266 27.146 8.266 C 27.105 8.266 26.969 8.279 26.9 8.279 C 26.437 8.279 26.233 8.048 26.233 7.574 L 26.233 4.466 L 27.142 4.466 C 27.629 4.466 28.024 4.072 28.024 3.585 C 28.024 3.098 27.629 2.703 27.142 2.703 L 26.233 2.703 L 26.233 1.791 C 26.233 1.219 25.774 0.759 25.202 0.759 C 24.633 0.759 24.17 1.219 24.17 1.791 L 24.17 2.7 L 24.102 2.7 C 23.615 2.7 23.22 3.094 23.22 3.581 C 23.22 4.068 23.615 4.463 24.102 4.463 L 24.17 4.463 L 24.17 7.911\" fill=\"rgb(158, 161, 174)\"></path></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1r69ia1\",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.108 7.506\" overflow=\"visible\"><path d=\"M 3.612 7.506 L 3.503 7.506 C 2.945 7.506 2.567 7.152 2.335 6.611 L 0.109 1.467 C 0.054 1.331 0 1.154 0 0.963 C 0 0.477 0.449 0 1.004 0 C 1.559 0 1.859 0.313 2.009 0.732 L 3.568 4.953 L 5.154 0.708 C 5.29 0.354 5.576 0.003 6.117 0.003 C 6.659 0.003 7.108 0.422 7.108 0.98 C 7.108 1.157 7.04 1.372 6.999 1.467 L 4.773 6.611 C 4.548 7.142 4.17 7.506 3.612 7.506\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1qawxiu\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 2.308 1.968\" overflow=\"visible\"><path d=\"M 0 0.991 C 0 1.59 0.504 1.968 1.154 1.968 C 1.804 1.968 2.308 1.586 2.308 0.991 L 2.308 0.963 C 2.308 0.368 1.804 0 1.154 0 C 0.504 0 0 0.368 0 0.963 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1j95khm\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 2.063 7.435\" overflow=\"visible\"><path d=\"M 0 6.403 C 0 6.975 0.463 7.435 1.031 7.435 C 1.603 7.435 2.063 6.972 2.063 6.403 L 2.063 1.031 C 2.063 0.46 1.6 0 1.031 0 C 0.463 0 0 0.46 0 1.031 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-ze5z2o\",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.92 7.513\" overflow=\"visible\"><path d=\"M 0.398 6.686 C 1.28 7.258 2.243 7.513 3.139 7.513 C 4.715 7.513 5.92 6.781 5.92 5.168 L 5.92 5.14 C 5.92 3.809 4.739 3.323 3.721 2.982 C 2.934 2.71 2.24 2.519 2.24 2.114 L 2.24 2.087 C 2.24 1.801 2.499 1.583 2.999 1.583 C 3.435 1.583 3.99 1.76 4.575 2.046 C 4.711 2.114 4.807 2.141 4.957 2.141 C 5.42 2.141 5.784 1.791 5.784 1.328 C 5.784 0.977 5.593 0.705 5.294 0.555 C 4.589 0.201 3.803 0 3.043 0 C 1.576 0 0.381 0.827 0.381 2.308 L 0.381 2.335 C 0.381 3.745 1.535 4.221 2.553 4.521 C 3.353 4.766 4.058 4.916 4.058 5.362 L 4.058 5.389 C 4.058 5.716 3.786 5.93 3.19 5.93 C 2.604 5.93 1.913 5.712 1.222 5.28 C 1.113 5.212 0.963 5.171 0.814 5.171 C 0.351 5.171 0 5.522 0 5.985 C 0.007 6.308 0.184 6.55 0.398 6.686\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1cjtdwk\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 2.308 1.968\" overflow=\"visible\"><path d=\"M 0 0.991 C 0 1.59 0.504 1.968 1.154 1.968 C 1.804 1.968 2.308 1.586 2.308 0.991 L 2.308 0.963 C 2.308 0.368 1.804 0 1.154 0 C 0.504 0 0 0.368 0 0.963 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1j4y50y\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 2.063 7.435\" overflow=\"visible\"><path d=\"M 0 6.403 C 0 6.975 0.46 7.435 1.031 7.435 C 1.603 7.435 2.063 6.972 2.063 6.403 L 2.063 1.031 C 2.063 0.46 1.603 0 1.031 0 C 0.46 0 0 0.46 0 1.031 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-c6p6z2\",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.803 9.338\" overflow=\"visible\"><path d=\"M 0.95 7.152 C 0.95 8.834 1.804 9.338 3.067 9.338 C 3.513 9.338 3.867 9.283 4.249 9.134 C 4.534 9.025 4.78 8.725 4.78 8.361 C 4.78 7.884 4.385 7.506 3.925 7.506 C 3.884 7.506 3.748 7.52 3.68 7.52 C 3.217 7.52 3.013 7.289 3.013 6.815 L 3.013 3.707 L 3.922 3.707 C 4.409 3.707 4.803 3.312 4.803 2.826 C 4.803 2.339 4.409 1.944 3.922 1.944 L 3.013 1.944 L 3.013 1.031 C 3.013 0.46 2.553 0 1.981 0 C 1.413 0 0.95 0.46 0.95 1.031 L 0.95 1.94 L 0.882 1.94 C 0.395 1.94 0 2.335 0 2.822 C 0 3.309 0.395 3.704 0.882 3.704 L 0.95 3.704 L 0.95 7.152\" fill=\"transparent\"></path></svg>',withExternalLayout:true})]})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1fthmmh\",\"data-framer-name\":\"Y Combinator\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1y8pjeh\",\"data-framer-name\":\"graphic\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 124 30\"><path d=\"M 0.503 0.5 L 29.455 0.5 L 29.455 29.5 L 0.503 29.5 Z\" fill=\"rgb(158, 161, 174)\"></path><path d=\"M 14.015 16.933 L 8.998 7.556 L 11.314 7.556 L 14.209 13.453 C 14.209 13.55 14.306 13.647 14.402 13.744 C 14.499 13.84 14.499 13.937 14.596 14.13 L 14.692 14.227 L 14.692 14.323 C 14.789 14.517 14.789 14.614 14.886 14.808 C 14.982 14.904 14.982 15.098 15.079 15.194 C 15.176 14.903 15.369 14.71 15.465 14.323 C 15.561 14.033 15.755 13.744 15.948 13.453 L 18.843 7.556 L 20.966 7.556 L 15.949 17.031 L 15.949 23.025 L 14.019 23.025 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 41.045 10.695 C 42.265 10.695 43.323 11.021 44.138 11.675 L 43.325 12.654 C 42.592 12.166 41.86 11.84 40.966 11.84 C 39.581 11.84 38.524 12.574 37.954 13.96 C 37.629 14.775 37.466 15.836 37.466 17.222 C 37.466 18.283 37.627 19.179 37.874 19.832 C 38.525 21.381 39.584 22.114 41.211 22.114 C 42.106 22.114 42.921 21.87 43.653 21.299 L 44.466 22.36 C 43.407 23.012 42.28 23.339 41.048 23.339 C 39.584 23.339 38.363 22.769 37.386 21.546 C 36.408 20.393 36.001 18.856 36.001 16.981 C 36.001 15.107 36.489 13.639 37.466 12.417 C 38.362 11.357 39.584 10.704 41.048 10.704 Z M 45.685 18.767 C 45.685 17.299 46.01 16.157 46.743 15.343 C 47.476 14.53 48.372 14.039 49.511 14.039 C 50.813 14.039 51.87 14.527 52.604 15.588 C 53.174 16.403 53.418 17.545 53.418 18.93 C 53.418 20.561 52.93 21.866 52.033 22.681 C 51.359 23.274 50.488 23.594 49.591 23.578 C 48.372 23.578 47.474 23.17 46.742 22.273 C 46.009 21.458 45.684 20.235 45.684 18.767 Z M 51.383 16.404 C 50.976 15.67 50.405 15.251 49.511 15.251 C 48.617 15.251 48.046 15.577 47.639 16.231 C 47.313 16.72 47.231 17.536 47.231 18.594 C 47.231 19.98 47.392 20.957 47.801 21.53 C 48.209 22.102 48.779 22.426 49.591 22.426 C 50.569 22.426 51.22 21.938 51.545 21.04 C 51.706 20.551 51.789 19.887 51.789 19.083 C 51.87 17.861 51.709 16.962 51.382 16.392 Z M 56.02 16.565 C 56.02 15.669 55.94 14.934 55.695 14.375 L 57.079 14.049 C 57.323 14.457 57.405 14.946 57.405 15.354 L 57.405 15.435 C 57.73 15.108 58.056 14.782 58.555 14.538 C 59.125 14.212 59.614 14.049 60.102 14.049 C 60.835 14.049 61.486 14.375 61.893 14.946 C 61.973 15.107 62.136 15.354 62.218 15.516 C 63.196 14.537 64.09 14.049 65.067 14.049 C 65.719 14.049 66.287 14.293 66.696 14.701 C 67.103 15.19 67.347 15.762 67.347 16.414 L 67.347 23.18 L 65.86 23.18 L 65.86 16.495 C 65.86 15.598 65.453 15.19 64.709 15.19 C 64.302 15.19 63.814 15.352 63.407 15.679 C 63.246 15.84 62.919 16.087 62.512 16.413 L 62.351 16.574 L 62.351 23.179 L 60.804 23.179 L 60.804 16.81 C 60.804 16.239 60.723 15.83 60.56 15.657 C 60.316 15.413 60.072 15.331 59.665 15.331 C 59.013 15.331 58.28 15.739 57.386 16.553 L 57.386 23.238 L 56.022 23.238 Z M 69.86 10.369 L 71.325 10.043 C 71.486 10.695 71.569 11.429 71.569 12.325 L 71.569 15.341 C 72.382 14.526 73.279 14.119 74.174 14.119 C 75.233 14.119 76.128 14.527 76.698 15.341 C 77.349 16.156 77.676 17.298 77.676 18.684 C 77.676 20.151 77.35 21.293 76.698 22.19 C 76.045 23.087 75.151 23.495 74.092 23.495 C 73.611 23.504 73.135 23.392 72.708 23.169 C 72.22 22.924 71.895 22.68 71.649 22.354 L 71.406 23.333 L 70.021 23.333 C 70.182 22.925 70.265 22.181 70.265 21.051 L 70.265 12.487 C 70.185 11.508 70.104 10.774 69.858 10.366 Z M 72.219 15.901 C 71.975 16.063 71.731 16.309 71.568 16.554 L 71.568 21.224 C 72.137 21.958 72.87 22.285 73.754 22.285 C 74.487 22.285 75.057 22.04 75.382 21.47 C 75.79 20.817 76.034 19.921 76.034 18.616 C 76.034 17.463 75.873 16.659 75.464 16.17 C 75.138 15.681 74.569 15.436 73.754 15.436 C 73.266 15.355 72.695 15.516 72.208 15.924 Z M 79.791 11.521 C 79.791 11.195 79.871 10.951 80.116 10.706 C 80.362 10.462 80.604 10.38 80.93 10.38 C 81.256 10.38 81.5 10.461 81.744 10.706 C 81.987 10.952 82.069 11.195 82.069 11.521 C 82.069 11.848 81.989 12.092 81.744 12.336 C 81.498 12.581 81.256 12.662 80.93 12.662 C 80.604 12.662 80.36 12.582 80.116 12.336 C 79.872 12.091 79.791 11.848 79.791 11.521 Z M 80.129 23.253 L 80.129 14.285 L 81.594 14.041 L 81.594 23.255 Z M 84.757 16.565 C 84.757 15.913 84.757 15.505 84.677 15.343 C 84.677 15.099 84.516 14.855 84.351 14.447 L 85.735 14.039 C 85.958 14.466 86.07 14.943 86.061 15.425 C 86.956 14.529 87.933 14.039 88.91 14.039 C 89.398 14.039 89.805 14.119 90.213 14.365 C 90.62 14.61 90.946 14.935 91.108 15.345 C 91.269 15.671 91.352 15.997 91.352 16.405 L 91.352 23.254 L 89.968 23.254 L 89.968 17.139 C 89.968 16.405 89.887 15.917 89.642 15.672 C 89.386 15.408 89.033 15.261 88.665 15.264 C 88.339 15.264 87.852 15.425 87.362 15.672 C 86.91 15.903 86.498 16.206 86.142 16.569 L 86.142 23.254 L 84.757 23.254 Z M 94.607 16.239 L 93.874 15.259 C 95.094 14.444 96.316 14.038 97.619 14.038 C 98.921 14.038 99.736 14.526 100.142 15.424 C 100.303 15.75 100.303 16.239 100.303 16.973 L 100.303 17.462 L 100.223 20.398 L 100.223 20.806 C 100.223 21.294 100.223 21.621 100.303 21.866 C 100.384 22.192 100.629 22.437 100.955 22.6 L 100.222 23.58 C 99.57 23.336 99.163 22.928 99.002 22.275 C 98.188 23.09 97.292 23.497 96.397 23.497 C 95.501 23.497 94.768 23.253 94.21 22.763 C 93.722 22.355 93.477 21.703 93.477 20.888 C 93.434 19.938 93.899 19.037 94.698 18.524 C 95.512 17.953 96.733 17.709 98.199 17.709 L 98.85 17.709 L 98.85 17.056 C 98.85 16.322 98.77 15.835 98.524 15.67 C 98.212 15.331 97.764 15.152 97.305 15.181 C 96.817 15.181 96.246 15.342 95.595 15.589 L 94.617 16.241 Z M 98.923 21.05 L 99.003 18.687 L 98.27 18.687 C 96.967 18.687 96.153 18.932 95.665 19.421 C 95.339 19.748 95.177 20.236 95.177 20.889 C 95.177 21.949 95.665 22.52 96.724 22.52 C 97.665 22.466 98.502 21.904 98.91 21.052 Z M 104.945 14.282 L 107.224 14.282 L 106.816 15.435 L 104.944 15.435 L 104.944 21.224 C 104.944 21.713 105.025 22.039 105.188 22.285 C 105.349 22.446 105.676 22.611 106.083 22.611 C 106.409 22.611 106.735 22.53 106.979 22.449 L 107.14 23.346 C 106.652 23.591 106.162 23.672 105.593 23.672 C 104.209 23.672 103.559 23.02 103.559 21.635 L 103.559 15.438 L 102.338 15.438 L 102.338 14.285 L 103.489 14.285 L 103.489 14.124 C 103.489 13.963 103.569 13.309 103.65 12.249 L 103.65 12.003 L 105.115 11.677 C 104.953 12.657 104.953 13.552 104.953 14.287 Z M 108.69 18.766 C 108.69 17.298 109.015 16.156 109.748 15.342 C 110.4 14.527 111.377 14.038 112.516 14.038 C 113.819 14.038 114.875 14.526 115.609 15.587 C 116.179 16.402 116.423 17.544 116.423 18.929 C 116.423 20.56 115.935 21.865 115.038 22.68 C 114.364 23.273 113.494 23.593 112.597 23.577 C 111.377 23.577 110.479 23.169 109.747 22.272 C 109.096 21.457 108.689 20.234 108.689 18.766 Z M 114.47 16.403 C 114.063 15.669 113.492 15.25 112.598 15.25 C 111.704 15.25 111.133 15.576 110.725 16.23 C 110.4 16.719 110.318 17.535 110.318 18.593 C 110.318 19.979 110.479 20.956 110.888 21.528 C 111.296 22.101 111.866 22.425 112.678 22.425 C 113.656 22.425 114.306 21.936 114.632 21.039 C 114.793 20.55 114.876 19.886 114.876 19.081 C 114.876 17.86 114.715 16.961 114.469 16.391 Z M 119.107 16.4 C 119.107 15.586 119.027 14.933 118.782 14.443 L 120.166 14.035 C 120.389 14.463 120.501 14.94 120.492 15.422 L 120.492 15.583 C 121.225 14.603 122.038 14.116 123.015 14.116 C 123.176 14.116 123.341 14.116 123.503 14.197 L 122.933 15.746 C 122.772 15.665 122.608 15.665 122.526 15.665 C 122.2 15.665 121.793 15.746 121.467 15.991 C 121.142 16.237 120.816 16.48 120.654 16.806 C 120.547 17.121 120.492 17.452 120.492 17.785 L 120.492 23.41 L 119.107 23.41 Z\" fill=\"rgb(158, 161, 174)\"></path></svg>',svgContentId:11826039690,withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-a2v60d\",\"data-framer-name\":\"Box\",children:/*#__PURE__*/_jsxs(SVG,{className:\"framer-3cx8um\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 58.011 32\" overflow=\"visible\"><g><path d=\"M 31.169 9.444 C 26.855 9.444 23.11 11.87 21.217 15.43 C 19.324 11.869 15.579 9.445 11.265 9.445 C 8.73 9.445 6.391 10.282 4.508 11.696 L 4.508 2.207 L 4.507 2.207 C 4.481 0.984 3.483 0 2.254 0 C 1.025 0 0.027 0.984 0.001 2.207 L 0 2.207 L 0 20.896 L 0.005 20.896 C 0.105 27.031 5.106 31.975 11.265 31.975 C 15.579 31.975 19.324 29.55 21.217 25.989 C 23.11 29.55 26.855 31.975 31.168 31.975 C 37.39 31.975 42.434 26.931 42.434 20.71 C 42.434 14.488 37.39 9.444 31.169 9.444 Z M 11.265 27.467 C 7.533 27.467 4.508 24.442 4.508 20.71 C 4.508 16.978 7.533 13.953 11.265 13.953 C 14.997 13.953 18.022 16.978 18.022 20.71 C 18.022 24.442 14.997 27.467 11.265 27.467 Z M 31.169 27.467 C 27.437 27.467 24.412 24.442 24.412 20.71 C 24.412 16.977 27.437 13.953 31.169 13.953 C 34.9 13.953 37.926 16.977 37.926 20.71 C 37.926 24.442 34.9 27.467 31.169 27.467 Z\" fill=\"rgb(158, 161, 174)\"></path><path d=\"M 57.588 28.43 L 51.818 20.718 L 57.588 13.006 L 57.587 13.005 C 58.3 12.012 58.094 10.626 57.111 9.887 C 56.128 9.149 54.739 9.337 53.984 10.299 L 53.983 10.298 L 49.004 16.955 L 44.024 10.298 L 44.024 10.3 C 43.268 9.337 41.88 9.149 40.897 9.888 C 39.914 10.626 39.707 12.012 40.421 13.005 L 40.42 13.006 L 46.189 20.718 L 40.42 28.43 L 40.421 28.43 C 39.707 29.424 39.914 30.81 40.897 31.548 C 41.88 32.287 43.268 32.099 44.024 31.137 L 44.024 31.138 L 49.004 24.481 L 53.983 31.138 L 53.984 31.137 C 54.739 32.099 56.128 32.287 57.111 31.548 C 58.094 30.81 58.3 29.424 57.587 28.431 Z\" fill=\"rgb(158, 161, 174)\"></path></g></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsxs(SVG,{className:\"framer-7r8zuh\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 42.434 31.975\" overflow=\"visible\"><path d=\"M 31.169 9.444 C 26.855 9.444 23.11 11.87 21.217 15.43 C 19.324 11.869 15.579 9.445 11.265 9.445 C 8.73 9.445 6.391 10.282 4.508 11.696 L 4.508 2.207 L 4.507 2.207 C 4.481 0.984 3.483 0 2.254 0 C 1.025 0 0.027 0.984 0.001 2.207 L 0 2.207 L 0 20.896 L 0.005 20.896 C 0.105 27.031 5.106 31.975 11.265 31.975 C 15.579 31.975 19.324 29.55 21.217 25.989 C 23.11 29.55 26.855 31.975 31.168 31.975 C 37.39 31.975 42.434 26.931 42.434 20.71 C 42.434 14.488 37.39 9.444 31.169 9.444 Z M 11.265 27.467 C 7.533 27.467 4.508 24.442 4.508 20.71 C 4.508 16.978 7.533 13.953 11.265 13.953 C 14.997 13.953 18.022 16.978 18.022 20.71 C 18.022 24.442 14.997 27.467 11.265 27.467 Z M 31.169 27.467 C 27.437 27.467 24.412 24.442 24.412 20.71 C 24.412 16.977 27.437 13.953 31.169 13.953 C 34.9 13.953 37.926 16.977 37.926 20.71 C 37.926 24.442 34.9 27.467 31.169 27.467 Z\" fill=\"rgb(158, 161, 174)\"></path></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1piz3nj\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 42.434 31.975\" overflow=\"visible\"><path d=\"M 31.169 9.444 C 26.855 9.444 23.11 11.87 21.217 15.43 C 19.324 11.869 15.579 9.445 11.265 9.445 C 8.73 9.445 6.391 10.282 4.508 11.696 L 4.508 2.207 L 4.507 2.207 C 4.481 0.984 3.483 0 2.254 0 C 1.025 0 0.027 0.984 0.001 2.207 L 0 2.207 L 0 20.896 L 0.005 20.896 C 0.105 27.031 5.106 31.975 11.265 31.975 C 15.579 31.975 19.324 29.55 21.217 25.989 C 23.11 29.55 26.855 31.975 31.168 31.975 C 37.39 31.975 42.434 26.931 42.434 20.71 C 42.434 14.488 37.39 9.444 31.169 9.444 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-kei4qw\",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.514 13.514\" overflow=\"visible\"><path d=\"M 6.757 13.514 C 3.025 13.514 0 10.489 0 6.757 C 0 3.025 3.025 0 6.757 0 C 10.489 0 13.514 3.025 13.514 6.757 C 13.514 10.489 10.489 13.514 6.757 13.514 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-ru43nl\",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.514 13.514\" overflow=\"visible\"><path d=\"M 6.757 13.514 C 3.025 13.514 0 10.489 0 6.757 C 0 3.025 3.025 0 6.757 0 C 10.489 0 13.514 3.025 13.514 6.757 C 13.514 10.489 10.489 13.514 6.757 13.514 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1s0lqs1\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 18.014 22.564\" overflow=\"visible\"><path d=\"M 17.591 18.994 L 11.822 11.282 L 17.591 3.57 L 17.59 3.569 C 18.304 2.576 18.097 1.19 17.114 0.451 C 16.131 -0.286 14.742 -0.099 13.987 0.863 L 13.986 0.863 L 9.007 7.519 L 4.028 0.863 L 4.027 0.864 C 3.272 -0.099 1.883 -0.286 0.9 0.452 C -0.083 1.19 -0.29 2.576 0.424 3.57 L 0.423 3.57 L 6.192 11.282 L 0.423 18.994 L 0.424 18.995 C -0.29 19.988 -0.083 21.374 0.9 22.112 C 1.883 22.851 3.272 22.663 4.027 21.701 L 4.028 21.702 L 9.007 15.045 L 13.986 21.702 L 13.987 21.701 C 14.743 22.663 16.131 22.851 17.114 22.113 C 18.097 21.374 18.304 19.988 17.59 18.995 Z\" fill=\"rgb(158, 161, 174)\"></path></svg>',withExternalLayout:true})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-a9whs0\",\"data-framer-name\":\"Thumbtack\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-ptb68e\",\"data-framer-name\":\"Thumbtack 2018\",fill:\"rgb(159, 161, 173)\",intrinsicHeight:135,intrinsicWidth:1e3,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" class=\"black db\" width=\"1000\" height=\"134.615\" viewBox=\"0 0 1300 166.29\" style=\"fill:currentColor\"><path d=\"M963.917 145.053c-11.692 0-17.409-7.275-17.392-14.808 0-9.859 7.333-14.792 16.583-16.084l31.509-4.5v5.709c-.008 22.583-15.484 29.683-30.709 29.683zM970.25 42.07c36.2 0 59.233 17.975 59.233 53.291v71.775h-33.3l.134-14.183c-6.667 10.017-20.975 17.7-38.684 17.692-28.541-.008-45.925-18.45-45.916-38.434 0-22.841 17.675-35.558 39.966-38.666 0 0 36.609-4.334 41.809-5.042 0-15.075-14.059-18.492-28.067-18.492-14.35 0-25.758 5.009-34.583 10.917l-13.059-22.725c13.692-9.683 31.684-16.133 52.467-16.133ZM196.833 58.653c9.084-12.075 22.634-16.35 36.584-16.35 28.958 0 49.616 19.233 49.616 47.517v77.55h-34.35v-67c0-17.584-9.208-27.267-24.875-27.267-14.741 0-26.975 9.167-26.975 27.525v66.75h-34.358V-4.355h34.358v63ZM651.5 89.811v77.55h-34.217v-67c0-17.583-9.341-27.266-24.875-27.266-14.741 0-26.983 9.166-26.983 27.525v66.75h-34.342v-67c0-17.6-9.208-27.275-24.875-27.275-14.733 0-26.975 9.166-26.975 27.525v66.75h-34.35V45.57h33.425v14.325c9.084-12.942 23.034-17.6 37.517-17.6 18.417 0 33.558 7.916 42.108 20.866 9.875-15.458 26.584-20.866 43.3-20.866 30 0 50.275 19.233 50.275 47.516zm153.833 16.584c0 36.583-26.591 64.108-61.733 64.108-17.633 0-29.875-6.783-38.167-16.583v13.441h-33.558V-4.23h34.217v62.5c8.291-9.55 20.266-15.967 37.375-15.967 35.275 0 61.858 27.533 61.858 64.108zm-100.233 0c0 19.241 13.3 33.566 32.775 33.566 20.267 0 32.9-14.958 32.9-33.558 0-18.608-12.633-33.558-32.9-33.558-19.475 0-32.775 14.333-32.775 33.558zm455.958-41.092-24.75 19.733c-7.75-7.916-16.05-12.191-27.233-12.191-17.767 0-31.983 13.325-31.983 33.558 0 20.358 14.083 33.558 31.85 33.558 11.05 0 20.533-4.775 27.766-12.316l24.484 19.983c-11.975 14.708-29.884 22.875-51.192 22.875-40.675 0-67.917-27.15-67.917-64.1 0-36.833 27.242-64.108 67.917-64.108 21.308 0 39.333 8.3 51.058 23zm131.9-19.733-46.2 45.525L1300 167.37h-41.792l-35.533-55.142-15.533 15.333v39.809h-34.35V-4.23h34.35v95.083l44.483-45.275h41.342zM388.6 154.295c-9.083 12.066-22.633 16.35-36.583 16.35-28.959 0-49.617-19.225-49.617-47.509V45.578h34.35v66.992c0 17.591 9.208 27.275 24.875 27.275 14.742 0 26.975-9.175 26.975-27.525V45.56h34.35v121.8H388.6v-13.075zM809.867 45.578h18.691v-36.2h34.225v36.2h38.067v29.167h-38.067v51.525c0 8.525 6.175 13.7 12.942 13.7 7.125 0 16.392-4.284 16.392-4.284l11.066 26.092s-11.758 8.6-38.033 8.6c-17.375 0-36.592-12.558-36.592-36.95v-58.7h-18.691V45.561ZM93.833 42.245v77.366c0 13.334-3.666 26.442-10.641 38l-7.717 12.767-7.708-12.775a73.458 73.458 0 0 1-10.65-38V58.645c9.116-12.109 22.725-16.4 36.716-16.4zM0 28.453V-4.355h150.958v32.808Z\" style=\"fill-rule:evenodd;stroke-width:8.33333302\"/></svg>',transformTemplate:transformTemplate1,withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-et1eia\",\"data-framer-name\":\"TikTok\",children:/*#__PURE__*/_jsxs(SVG,{className:\"framer-ai1eh7\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 109.926 32\" overflow=\"visible\"><g><path d=\"M 21.064 11.53 C 23.132 13.007 25.666 13.877 28.403 13.877 L 28.403 8.613 C 27.885 8.613 27.368 8.559 26.862 8.452 L 26.862 12.595 C 24.125 12.595 21.592 11.726 19.523 10.248 L 19.523 20.989 C 19.523 26.363 15.164 30.719 9.789 30.719 C 7.783 30.719 5.918 30.112 4.37 29.073 C 6.137 30.879 8.602 32 11.33 32 C 16.706 32 21.064 27.644 21.064 22.271 L 21.064 11.53 Z M 22.965 6.219 C 21.908 5.065 21.214 3.573 21.064 1.924 L 21.064 1.247 L 19.603 1.247 C 19.971 3.343 21.225 5.134 22.965 6.219 Z M 7.77 24.95 C 7.179 24.176 6.86 23.229 6.862 22.255 C 6.862 19.798 8.855 17.805 11.314 17.805 C 11.773 17.805 12.228 17.875 12.665 18.014 L 12.665 12.632 C 12.155 12.563 11.64 12.533 11.125 12.544 L 11.125 16.732 C 10.687 16.594 10.232 16.523 9.773 16.524 C 7.314 16.524 5.321 18.516 5.321 20.974 C 5.321 22.712 6.317 24.217 7.77 24.95 Z\" fill=\"rgba(158, 161, 173, 0.25)\"></path><path d=\"M 19.466 10.21 C 21.535 11.688 24.069 12.557 26.805 12.557 L 26.805 8.414 C 25.278 8.089 23.926 7.291 22.909 6.181 C 21.169 5.096 19.915 3.305 19.547 1.209 L 15.711 1.209 L 15.711 22.233 C 15.702 24.683 13.712 26.668 11.258 26.668 C 9.812 26.668 8.527 25.979 7.713 24.912 C 6.26 24.179 5.264 22.674 5.264 20.936 C 5.264 18.479 7.257 16.486 9.717 16.486 C 10.188 16.486 10.642 16.559 11.068 16.694 L 11.068 12.506 C 5.787 12.615 1.539 16.928 1.539 22.233 C 1.539 24.881 2.597 27.281 4.314 29.035 C 5.862 30.075 7.727 30.681 9.732 30.681 C 15.108 30.681 19.466 26.325 19.466 20.952 L 19.466 10.21 Z\" fill=\"rgb(158, 161, 173)\"></path><path d=\"M 26.807 8.486 L 26.807 7.366 C 25.43 7.368 24.08 6.982 22.911 6.253 C 23.945 7.385 25.308 8.166 26.807 8.486 Z M 19.549 1.281 C 19.514 1.081 19.487 0.879 19.468 0.677 L 19.468 0 L 14.171 0 L 14.171 21.023 C 14.163 23.474 12.173 25.459 9.719 25.459 C 9.023 25.46 8.337 25.297 7.715 24.984 C 8.529 26.051 9.814 26.74 11.26 26.74 C 13.714 26.74 15.704 24.756 15.713 22.305 L 15.713 1.281 Z M 11.07 12.578 L 11.07 11.385 C 10.628 11.325 10.181 11.295 9.735 11.295 C 4.358 11.295 0 15.651 0 21.023 C 0 24.392 1.713 27.361 4.316 29.107 C 2.599 27.353 1.541 24.952 1.541 22.305 C 1.541 17 5.789 12.687 11.07 12.578 Z\" fill=\"rgba(158, 161, 173, 0.25)\"></path><path d=\"M 88.231 26.241 C 92.078 26.241 95.196 23.147 95.196 19.332 C 95.196 15.517 92.078 12.423 88.231 12.423 L 87.182 12.423 C 91.029 12.423 94.147 15.517 94.147 19.332 C 94.147 23.147 91.029 26.241 87.182 26.241 Z\" fill=\"rgba(158, 161, 173, 0.25)\"></path><path d=\"M 87.061 12.423 L 86.012 12.423 C 82.165 12.423 79.046 15.517 79.046 19.332 C 79.046 23.147 82.165 26.241 86.012 26.241 L 87.061 26.241 C 83.214 26.241 80.096 23.147 80.096 19.332 C 80.095 15.517 83.214 12.423 87.061 12.423 Z\" fill=\"rgba(158, 161, 173, 0.25)\"></path><path d=\"M 34.074 9.392 L 34.074 12.894 L 38.176 12.894 L 38.176 26.238 L 42.28 26.238 L 42.28 12.988 L 45.619 12.988 L 46.764 9.392 L 34.074 9.392 Z M 67.659 9.392 L 67.659 12.894 L 71.761 12.894 L 71.761 26.238 L 75.864 26.238 L 75.864 12.988 L 79.203 12.988 L 80.348 9.392 L 67.659 9.392 Z M 47.528 11.379 C 47.528 10.282 48.423 9.392 49.53 9.392 C 50.637 9.392 51.534 10.282 51.534 11.379 C 51.534 12.477 50.638 13.367 49.53 13.367 C 48.423 13.366 47.528 12.477 47.528 11.379 Z M 47.528 14.786 L 51.534 14.786 L 51.534 26.238 L 47.528 26.238 Z M 53.251 9.392 L 53.251 26.237 L 57.259 26.237 L 57.259 21.884 L 58.499 20.748 L 62.411 26.332 L 66.704 26.332 L 61.074 18.193 L 66.131 13.271 L 61.265 13.271 L 57.259 17.246 L 57.259 9.392 Z M 96.472 9.392 L 96.472 26.237 L 100.48 26.237 L 100.48 21.884 L 101.719 20.748 L 105.632 26.332 L 109.926 26.332 L 104.296 18.193 L 109.353 13.271 L 104.487 13.271 L 100.48 17.246 L 100.48 9.392 Z M 87.122 26.332 C 90.968 26.332 94.087 23.239 94.087 19.424 C 94.087 15.608 90.968 12.514 87.122 12.514 L 87.027 12.514 C 83.18 12.514 80.061 15.608 80.061 19.424 C 80.061 23.239 83.18 26.332 87.027 26.332 Z M 83.687 19.424 C 83.687 17.568 85.204 16.064 87.075 16.064 C 88.945 16.064 90.462 17.568 90.462 19.424 C 90.462 21.279 88.945 22.784 87.075 22.784 C 85.204 22.783 83.687 21.279 83.687 19.424 Z\" fill=\"rgb(158, 161, 173)\"></path></g></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsxs(SVG,{className:\"framer-1k3odu3\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24.033 30.753\" overflow=\"visible\"><path d=\"M 16.694 10.282 C 18.763 11.76 21.296 12.63 24.033 12.63 L 24.033 7.366 C 23.515 7.366 22.999 7.312 22.492 7.205 L 22.492 11.348 C 19.755 11.348 17.222 10.479 15.153 9.001 L 15.153 19.742 C 15.153 25.116 10.795 29.471 5.419 29.471 C 3.413 29.471 1.549 28.865 0 27.826 C 1.768 29.632 4.233 30.753 6.96 30.753 C 12.336 30.753 16.694 26.397 16.694 21.023 L 16.694 10.282 Z M 18.595 4.972 C 17.538 3.818 16.844 2.326 16.694 0.677 L 16.694 0 L 15.234 0 C 15.601 2.096 16.855 3.887 18.595 4.972 Z M 3.4 23.702 C 2.81 22.928 2.49 21.982 2.492 21.008 C 2.492 18.55 4.485 16.558 6.945 16.558 C 7.403 16.558 7.858 16.628 8.295 16.766 L 8.295 11.385 C 7.785 11.315 7.27 11.286 6.755 11.296 L 6.755 15.485 C 6.318 15.346 5.862 15.276 5.403 15.276 C 2.944 15.276 0.951 17.269 0.951 19.727 C 0.951 21.465 1.947 22.969 3.4 23.702 Z\" fill=\"rgba(158, 161, 173, 0.25)\"></path></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1ef4rug\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24.033 23.548\" overflow=\"visible\"><path d=\"M 16.694 3.077 C 18.763 4.555 21.296 5.425 24.033 5.425 L 24.033 0.161 C 23.515 0.161 22.999 0.107 22.492 0 L 22.492 4.143 C 19.755 4.143 17.222 3.274 15.153 1.796 L 15.153 12.537 C 15.153 17.911 10.795 22.266 5.419 22.266 C 3.413 22.266 1.549 21.66 0 20.621 C 1.768 22.427 4.233 23.548 6.96 23.548 C 12.336 23.548 16.694 19.192 16.694 13.819 L 16.694 3.077 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-95j3yb\",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.362 4.972\" overflow=\"visible\"><path d=\"M 3.362 4.972 C 2.305 3.818 1.611 2.326 1.461 0.677 L 1.461 0 L 0 0 C 0.368 2.096 1.622 3.887 3.362 4.972 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-f5rqj6\",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.345 12.408\" overflow=\"visible\"><path d=\"M 2.449 12.408 C 1.859 11.634 1.54 10.687 1.541 9.714 C 1.541 7.256 3.535 5.264 5.994 5.264 C 6.452 5.263 6.908 5.334 7.345 5.472 L 7.345 0.091 C 6.834 0.021 6.319 -0.009 5.804 0.002 L 5.804 4.191 C 5.367 4.052 4.911 3.982 4.453 3.982 C 1.993 3.982 0 5.975 0 8.433 C 0 10.17 0.996 11.675 2.449 12.408 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-tkpm5w\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 25.266 29.471\" overflow=\"visible\"><path d=\"M 17.927 9.001 C 19.996 10.478 22.53 11.348 25.266 11.348 L 25.266 7.205 C 23.739 6.88 22.386 6.082 21.37 4.972 C 19.629 3.887 18.376 2.096 18.008 0 L 14.171 0 L 14.171 21.023 C 14.163 23.474 12.173 25.459 9.719 25.459 C 8.273 25.459 6.988 24.77 6.174 23.702 C 4.721 22.969 3.725 21.465 3.725 19.727 C 3.725 17.269 5.718 15.277 8.177 15.277 C 8.649 15.277 9.103 15.35 9.529 15.485 L 9.529 11.297 C 4.248 11.406 0 15.719 0 21.023 C 0 23.671 1.058 26.072 2.774 27.826 C 4.323 28.865 6.187 29.471 8.193 29.471 C 13.569 29.471 17.927 25.115 17.927 19.742 L 17.927 9.001 Z\" fill=\"rgb(158, 161, 173)\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsxs(SVG,{className:\"framer-fzoov\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 26.807 29.107\" overflow=\"visible\"><path d=\"M 26.807 8.486 L 26.807 7.366 C 25.43 7.368 24.08 6.982 22.911 6.253 C 23.945 7.385 25.308 8.166 26.807 8.486 Z M 19.549 1.281 C 19.514 1.081 19.487 0.879 19.468 0.677 L 19.468 0 L 14.171 0 L 14.171 21.023 C 14.163 23.474 12.173 25.459 9.719 25.459 C 9.023 25.46 8.337 25.297 7.715 24.984 C 8.529 26.051 9.814 26.74 11.26 26.74 C 13.714 26.74 15.704 24.756 15.713 22.305 L 15.713 1.281 Z M 11.07 12.578 L 11.07 11.385 C 10.628 11.325 10.181 11.295 9.735 11.295 C 4.358 11.295 0 15.651 0 21.023 C 0 24.392 1.713 27.361 4.316 29.107 C 2.599 27.353 1.541 24.952 1.541 22.305 C 1.541 17 5.789 12.687 11.07 12.578 Z\" fill=\"rgba(158, 161, 173, 0.25)\"></path></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-jwhtmm\",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.896 2.233\" overflow=\"visible\"><path d=\"M 3.896 2.233 L 3.896 1.113 C 2.519 1.115 1.169 0.729 0 0 C 1.035 1.132 2.397 1.913 3.896 2.233 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1rf3d21\",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.834 26.74\" overflow=\"visible\"><path d=\"M 11.834 1.281 C 11.799 1.081 11.772 0.879 11.753 0.677 L 11.753 0 L 6.456 0 L 6.456 21.023 C 6.447 23.474 4.458 25.459 2.003 25.459 C 1.308 25.46 0.621 25.297 0 24.984 C 0.814 26.051 2.098 26.74 3.545 26.74 C 5.998 26.74 7.989 24.756 7.997 22.305 L 7.997 1.281 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-13uvate\",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.07 17.812\" overflow=\"visible\"><path d=\"M 11.07 1.283 L 11.07 0.091 C 10.628 0.03 10.181 0 9.735 0 C 4.358 0 0 4.356 0 9.729 C 0 13.097 1.713 16.066 4.316 17.812 C 2.599 16.058 1.541 13.658 1.541 11.01 C 1.541 5.705 5.789 1.392 11.07 1.283 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1l9ovmw\",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.014 13.818\" overflow=\"visible\"><path d=\"M 1.049 13.818 C 4.896 13.818 8.014 10.724 8.014 6.909 C 8.014 3.094 4.896 0 1.049 0 L 0 0 C 3.847 0 6.965 3.094 6.965 6.909 C 6.965 10.724 3.847 13.818 0 13.818 Z\" fill=\"rgba(158, 161, 173, 0.25)\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-nfqh66\",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.015 13.818\" overflow=\"visible\"><path d=\"M 8.015 0 L 6.966 0 C 3.119 0 0 3.094 0 6.909 C 0 10.724 3.119 13.818 6.966 13.818 L 8.015 13.818 C 4.168 13.818 1.049 10.724 1.049 6.909 C 1.049 3.094 4.168 0 8.015 0 Z\" fill=\"rgba(158, 161, 173, 0.25)\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsxs(SVG,{className:\"framer-2cmjaw\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 75.851 16.94\" overflow=\"visible\"><path d=\"M 0 0 L 0 3.502 L 4.102 3.502 L 4.102 16.846 L 8.206 16.846 L 8.206 3.596 L 11.545 3.596 L 12.69 0 L 0 0 Z M 33.584 0 L 33.584 3.502 L 37.686 3.502 L 37.686 16.846 L 41.79 16.846 L 41.79 3.596 L 45.129 3.596 L 46.274 0 L 33.584 0 Z M 13.453 1.987 C 13.453 0.89 14.349 0 15.455 0 C 16.563 0 17.459 0.89 17.459 1.987 C 17.459 3.085 16.563 3.975 15.455 3.975 C 14.349 3.974 13.453 3.085 13.453 1.987 Z M 13.453 5.395 L 17.459 5.395 L 17.459 16.846 L 13.453 16.846 Z M 19.177 0 L 19.177 16.846 L 23.185 16.846 L 23.185 12.493 L 24.425 11.356 L 28.336 16.94 L 32.63 16.94 L 27 8.801 L 32.057 3.88 L 27.191 3.88 L 23.185 7.854 L 23.185 0 Z M 62.397 0 L 62.397 16.846 L 66.405 16.846 L 66.405 12.493 L 67.645 11.356 L 71.558 16.94 L 75.851 16.94 L 70.222 8.801 L 75.278 3.88 L 70.413 3.88 L 66.405 7.854 L 66.405 0 Z M 53.047 16.94 C 56.894 16.94 60.013 13.847 60.013 10.032 C 60.013 6.216 56.894 3.123 53.047 3.123 L 52.952 3.123 C 49.106 3.123 45.987 6.216 45.987 10.032 C 45.987 13.847 49.106 16.94 52.952 16.94 Z M 49.613 10.032 C 49.613 8.176 51.13 6.672 53.001 6.672 C 54.87 6.672 56.387 8.176 56.387 10.032 C 56.387 11.888 54.87 13.392 53.001 13.392 C 51.13 13.391 49.613 11.888 49.613 10.032 Z\" fill=\"rgb(158, 161, 173)\"></path></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1mey47z\",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.69 16.846\" overflow=\"visible\"><path d=\"M 0 0 L 0 3.502 L 4.102 3.502 L 4.102 16.846 L 8.206 16.846 L 8.206 3.596 L 11.545 3.596 L 12.69 0 L 0 0 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1x9d71i\",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.689 16.846\" overflow=\"visible\"><path d=\"M 0 0 L 0 3.502 L 4.102 3.502 L 4.102 16.846 L 8.206 16.846 L 8.206 3.596 L 11.544 3.596 L 12.689 0 L 0 0 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-5rd1nr\",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.006 3.975\" overflow=\"visible\"><path d=\"M 0 1.987 C 0 0.89 0.896 0 2.002 0 C 3.109 0 4.006 0.89 4.006 1.987 C 4.006 3.085 3.11 3.975 2.002 3.975 C 0.896 3.974 0 3.085 0 1.987 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-x4nc9s\",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.006 11.451\" overflow=\"visible\"><path d=\"M 0 0 L 4.006 0 L 4.006 11.451 L 0 11.451 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-vx7n3u\",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.452 16.94\" overflow=\"visible\"><path d=\"M 0 0 L 0 16.846 L 4.008 16.846 L 4.008 12.493 L 5.248 11.356 L 9.159 16.94 L 13.452 16.94 L 7.823 8.801 L 12.88 3.88 L 8.014 3.88 L 4.008 7.854 L 4.008 0 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-l0q7ru\",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.454 16.94\" overflow=\"visible\"><path d=\"M 0 0 L 0 16.846 L 4.008 16.846 L 4.008 12.493 L 5.248 11.356 L 9.16 16.94 L 13.454 16.94 L 7.824 8.801 L 12.881 3.88 L 8.016 3.88 L 4.008 7.854 L 4.008 0 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1ahymk9\",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.026 13.818\" overflow=\"visible\"><path d=\"M 7.06 13.818 C 10.907 13.818 14.026 10.724 14.026 6.909 C 14.026 3.094 10.907 0 7.06 0 L 6.965 0 C 3.118 0 0 3.094 0 6.909 C 0 10.724 3.118 13.818 6.965 13.818 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1u7b29g\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 6.775 6.719\" overflow=\"visible\"><path d=\"M 0 3.359 C 0 1.503 1.517 0 3.388 0 C 5.258 0 6.775 1.503 6.775 3.359 C 6.775 5.215 5.258 6.719 3.388 6.719 C 1.517 6.719 0 5.215 0 3.359 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true})]})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-wm97he\",\"data-framer-name\":\"Live Nation\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-owpqgn\",\"data-framer-name\":\"livenation\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 94 20\"><path d=\"M 1.077 1.077 L 93.01 1.077 L 93.01 19.096 L 1.077 19.096 Z\" fill=\"transparent\"></path><path d=\"M 6.615 5.51 L 9.596 5.51 L 9.596 11.875 L 13.779 11.875 L 13.779 14.423 L 6.615 14.423 Z M 17.827 5.51 L 21.163 5.51 L 22.894 10.51 L 24.625 5.51 L 27.904 5.51 L 24.288 14.481 L 21.442 14.481 Z M 28.019 5.51 L 35.615 5.51 L 35.615 7.952 L 30.942 7.952 L 30.942 8.856 L 35.298 8.856 L 35.298 11.01 L 30.942 11.01 L 30.942 11.981 L 35.673 11.981 L 35.673 14.423 L 28.01 14.423 L 28.01 5.51 Z\" fill=\"rgb(158, 161, 173)\"></path><path d=\"M 39.202 5.51 L 41.99 5.51 L 45.163 9.442 L 45.163 5.51 L 48.115 5.51 L 48.115 14.413 L 45.471 14.413 L 42.163 10.308 L 42.163 14.413 L 39.212 14.413 L 39.212 5.51 Z\" fill=\"rgb(158, 161, 173)\"></path><path d=\"M 51.721 5.442 L 54.673 5.442 L 58.423 14.413 L 55.192 14.413 L 54.721 13.221 L 51.606 13.221 L 51.144 14.413 L 47.962 14.413 Z M 53.99 11.106 L 53.173 8.942 L 52.356 11.106 Z M 58.913 8.029 L 56.288 8.029 L 56.288 5.51 L 64.51 5.51 L 64.51 8.029 L 61.885 8.029 L 61.885 14.413 L 58.904 14.413 L 58.904 8.029 Z M 64.962 5.51 L 67.942 5.51 L 67.942 14.413 L 64.962 14.413 Z M 68.519 9.99 L 68.519 9.962 C 68.519 7.375 70.644 5.317 73.394 5.317 C 76.144 5.317 78.24 7.356 78.24 9.933 L 78.24 9.962 C 78.24 12.548 76.115 14.606 73.365 14.606 C 70.615 14.606 68.519 12.567 68.519 9.99 Z M 75.24 9.99 L 75.24 9.962 C 75.24 8.904 74.519 7.952 73.365 7.952 C 72.231 7.952 71.519 8.894 71.519 9.933 L 71.519 9.962 C 71.519 11.019 72.24 11.971 73.394 11.971 C 74.529 11.971 75.24 11.029 75.24 9.99 Z M 78.548 5.51 L 81.337 5.51 L 84.51 9.442 L 84.51 5.51 L 87.462 5.51 L 87.462 14.413 L 84.808 14.413 L 81.5 10.308 L 81.5 14.413 L 78.548 14.413 Z\" fill=\"rgb(158, 161, 173)\"></path><path d=\"M 93.904 20 L 0 20 L 0 0 L 93.904 0 Z M 1.971 18.019 L 91.933 18.019 L 91.933 1.971 L 1.971 1.971 Z\" fill=\"rgb(158, 161, 173)\"></path><path d=\"M 18.894 3.702 L 18.663 3.298 C 18.625 3.231 18.567 3.279 18.567 3.279 C 18.567 3.279 18.375 3.423 18.269 3.49 C 18.163 3.558 18.173 3.644 18.173 3.683 C 18.173 3.731 18.144 3.99 18.144 3.99 C 18.135 4.048 18.106 4.096 18.087 4.125 L 16.375 5.452 L 16.163 5.5 L 15.635 5.76 L 15.663 5.404 C 15.702 5.423 15.76 5.481 15.798 5.49 C 15.846 5.5 15.923 5.481 15.923 5.481 C 15.923 5.481 15.894 5.413 15.894 5.375 C 15.894 5.337 15.904 5.269 15.904 5.269 C 15.904 5.269 15.981 5.317 16.048 5.317 C 16.096 5.317 16.144 5.298 16.173 5.279 C 16.202 5.26 16.231 5.221 16.231 5.221 C 16.231 5.221 16.135 5.163 16.096 5.125 C 16.077 5.096 16.038 5.058 16.058 5.058 C 16.106 5.058 16.183 4.99 16.183 4.99 C 16.183 4.99 16.135 4.962 16.087 4.923 C 16.038 4.885 16.019 4.856 16 4.808 C 15.981 4.76 15.971 4.721 15.971 4.721 C 15.971 4.721 16 4.76 16.067 4.76 C 16.125 4.76 16.183 4.721 16.183 4.721 C 16.183 4.721 16.135 4.692 16.106 4.663 C 16.077 4.625 16.048 4.587 16.029 4.538 C 16.01 4.471 16 4.433 15.981 4.385 C 15.971 4.356 15.971 4.317 15.952 4.25 C 15.933 4.096 15.865 4.029 15.865 4.029 C 15.663 3.76 15.202 3.692 15.202 3.692 C 14.971 3.644 14.731 3.952 14.635 4.26 C 14.481 4.769 14.529 5.269 14.529 5.269 C 14.529 5.269 14.538 5.365 14.615 5.413 C 14.663 5.442 14.865 5.49 14.865 5.49 L 14.846 5.904 L 14.356 5.942 C 14.356 5.942 13.99 5.721 13.683 5.538 L 12.327 4.529 C 12.327 4.529 12.269 4.49 12.26 4.385 C 12.26 4.385 12.231 4.125 12.231 4.077 C 12.231 4.029 12.24 3.952 12.135 3.885 C 12.029 3.817 11.837 3.673 11.837 3.673 C 11.837 3.673 11.769 3.615 11.731 3.683 L 11.5 4.087 L 11.596 4.471 C 11.596 4.471 11.635 4.548 11.702 4.615 L 11.788 4.702 L 12.288 5.154 L 12.298 5.154 L 13.125 5.894 L 13.365 6.125 C 13.365 6.125 13.385 6.154 13.385 6.202 L 13.385 6.385 C 13.385 6.385 13.385 6.423 13.404 6.452 C 13.433 6.481 13.875 6.837 13.875 6.837 C 13.875 6.837 13.904 6.865 13.904 6.923 L 13.981 9.577 C 13.981 9.577 13.981 9.615 14.019 9.615 L 14.163 9.673 L 14.49 12.577 L 15.115 14.5 L 14.125 14.981 C 14.125 14.981 14.087 15 14.067 15.038 C 14.067 15.038 14.01 15.154 14.01 15.173 C 14.01 15.212 14.038 15.221 14.038 15.221 L 15.51 15.221 L 15.365 15.606 L 15.327 15.712 C 15.327 15.712 15.279 15.904 15.356 15.933 C 15.442 15.962 15.702 15.971 15.817 15.962 C 15.962 15.952 16.221 15.933 16.269 15.894 C 16.308 15.856 16.327 15.673 16.115 14.5 L 15.99 9.962 L 16.365 7.115 C 16.404 6.798 16.442 6.769 16.442 6.769 C 16.442 6.769 16.846 6.471 16.885 6.433 C 16.923 6.394 16.913 6.337 16.913 6.337 L 16.913 6.019 C 16.913 5.962 16.933 5.913 16.933 5.913 L 17.26 5.596 L 17.356 5.5 L 18.394 4.5 L 18.577 4.288 L 18.663 4.202 C 18.721 4.135 18.76 4.058 18.76 4.058 C 18.76 4.058 18.837 3.865 18.865 3.808 C 18.923 3.769 18.894 3.702 18.894 3.702 M 88.913 6.192 C 88.913 5.808 89.221 5.49 89.615 5.49 C 90.01 5.49 90.317 5.808 90.317 6.192 C 90.317 6.577 90.01 6.894 89.615 6.894 C 89.212 6.885 88.913 6.567 88.913 6.192 Z M 90.231 6.183 C 90.231 5.837 89.962 5.558 89.615 5.558 C 89.26 5.558 88.99 5.837 88.99 6.183 C 88.99 6.529 89.26 6.798 89.606 6.798 C 89.962 6.808 90.231 6.529 90.231 6.183 Z M 89.327 5.788 L 89.654 5.788 C 89.75 5.788 89.837 5.817 89.885 5.865 C 89.923 5.904 89.942 5.962 89.942 6.029 C 89.942 6.144 89.875 6.221 89.779 6.26 L 89.962 6.529 L 89.769 6.529 L 89.606 6.288 L 89.481 6.288 L 89.481 6.538 L 89.327 6.538 Z M 89.654 6.154 C 89.74 6.154 89.779 6.106 89.779 6.048 C 89.779 5.981 89.731 5.942 89.644 5.942 L 89.481 5.942 L 89.481 6.154 Z\" fill=\"rgb(158, 161, 173)\"></path></svg>',svgContentId:10782564409,withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1bd30rk\",\"data-framer-name\":\"Samsung\",children:/*#__PURE__*/_jsxs(SVG,{className:\"framer-1tlab7q\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 120.03 32.008\" overflow=\"visible\"><g><path d=\"M 0 0 L 120.03 0 L 120.03 32.008 L 0 32.008 Z\" fill=\"transparent\"></path><path d=\"M 8.002 19.656 L 8.002 18.516 L 11.997 18.516 L 11.997 19.966 C 11.991 20.352 12.152 20.721 12.438 20.979 C 12.724 21.237 13.109 21.359 13.491 21.312 C 14.162 21.403 14.789 20.965 14.936 20.305 C 15.043 19.94 15.034 19.551 14.91 19.192 C 14.137 17.247 8.853 16.367 8.182 13.336 C 8.045 12.671 8.037 11.985 8.157 11.316 C 8.569 8.882 10.708 8.002 13.362 8.002 C 15.476 8.002 18.389 8.494 18.389 11.757 L 18.389 12.819 L 14.678 12.819 L 14.678 11.887 C 14.7 11.515 14.559 11.152 14.292 10.893 C 14.024 10.634 13.656 10.505 13.285 10.54 C 12.636 10.468 12.041 10.908 11.92 11.55 C 11.878 11.808 11.887 12.072 11.946 12.327 C 12.383 14.062 18.029 14.995 18.648 18.129 C 18.802 18.941 18.811 19.774 18.673 20.589 C 18.312 23.074 16.095 24.006 13.415 24.006 C 10.603 24.006 8.002 22.996 8.002 19.656 Z M 56.406 19.605 L 56.406 18.465 L 60.35 18.465 L 60.35 19.889 C 60.338 20.271 60.492 20.64 60.774 20.898 C 61.055 21.157 61.436 21.28 61.815 21.235 C 62.48 21.334 63.108 20.906 63.259 20.251 C 63.366 19.895 63.357 19.514 63.234 19.163 C 62.486 17.247 57.253 16.362 56.584 13.336 C 56.447 12.679 56.438 12.002 56.558 11.342 C 56.973 8.934 59.115 8.054 61.715 8.054 C 63.804 8.054 66.69 8.572 66.69 11.783 L 66.69 12.819 L 63.005 12.819 L 63.005 11.913 C 63.029 11.546 62.892 11.186 62.63 10.928 C 62.368 10.67 62.006 10.538 61.639 10.567 C 61.001 10.482 60.409 10.916 60.299 11.551 C 60.257 11.809 60.265 12.073 60.324 12.328 C 60.736 14.063 66.326 14.97 66.949 18.077 C 67.103 18.88 67.112 19.705 66.974 20.511 C 66.613 22.998 64.422 23.904 61.772 23.904 C 58.985 23.906 56.406 22.893 56.406 19.605 Z M 70.531 20.15 C 70.495 19.823 70.486 19.493 70.506 19.165 L 70.506 8.442 L 74.269 8.442 L 74.269 19.5 C 74.264 19.69 74.272 19.881 74.294 20.07 C 74.466 20.711 75.048 21.157 75.711 21.157 C 76.375 21.157 76.957 20.711 77.129 20.07 C 77.152 19.881 77.16 19.69 77.155 19.5 L 77.155 8.442 L 80.92 8.442 L 80.92 19.163 C 80.92 19.448 80.894 19.992 80.894 20.148 C 80.637 22.949 78.446 23.849 75.714 23.849 C 72.982 23.849 70.789 22.944 70.531 20.148 Z M 101.512 19.994 C 101.474 19.666 101.457 19.335 101.46 19.005 L 101.46 12.715 C 101.46 12.456 101.485 11.99 101.511 11.73 C 101.846 8.934 104.089 8.054 106.744 8.054 C 109.373 8.054 111.692 8.934 111.951 11.731 C 111.982 12.058 111.99 12.388 111.976 12.716 L 111.976 13.203 L 108.213 13.203 L 108.213 12.379 C 108.214 12.188 108.197 11.997 108.162 11.809 C 107.959 11.161 107.359 10.72 106.68 10.72 C 106.001 10.72 105.4 11.161 105.197 11.809 C 105.154 12.04 105.137 12.275 105.146 12.509 L 105.146 19.345 C 105.142 19.535 105.151 19.726 105.172 19.915 C 105.357 20.615 106.023 21.078 106.744 21.005 C 107.453 21.081 108.106 20.613 108.264 19.918 C 108.299 19.73 108.308 19.538 108.29 19.348 L 108.29 17.169 L 106.77 17.169 L 106.77 14.994 L 112.028 14.994 L 112.028 19.005 C 112.032 19.334 112.014 19.662 111.976 19.989 C 111.719 22.708 109.375 23.666 106.744 23.666 C 104.112 23.666 101.769 22.711 101.512 19.992 Z M 49.061 23.384 L 48.961 9.555 L 46.381 23.384 L 42.618 23.384 L 40.065 9.555 L 39.965 23.384 L 36.251 23.384 L 36.56 8.468 L 42.618 8.468 L 44.499 20.122 L 46.381 8.468 L 52.437 8.468 L 52.772 23.384 Z M 29.266 23.384 L 27.256 9.555 L 25.193 23.384 L 21.173 23.384 L 23.906 8.468 L 30.531 8.468 L 33.263 23.384 Z M 92.259 23.229 L 88.522 10.825 L 88.728 23.228 L 85.067 23.228 L 85.067 8.468 L 90.583 8.468 L 94.084 20.484 L 93.882 8.468 L 97.568 8.468 L 97.568 23.23 Z\" fill=\"rgb(158, 161, 174)\"></path></g></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-9wme54\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 120.03 32.008\" overflow=\"visible\"><path d=\"M 0 0 L 120.03 0 L 120.03 32.008 L 0 32.008 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsxs(SVG,{className:\"framer-18evvmc\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 104.027 16.004\" overflow=\"visible\"><path d=\"M 0 11.654 L 0 10.514 L 3.995 10.514 L 3.995 11.964 C 3.989 12.35 4.15 12.719 4.436 12.977 C 4.722 13.235 5.107 13.357 5.489 13.31 C 6.159 13.401 6.787 12.963 6.934 12.303 C 7.041 11.938 7.032 11.549 6.908 11.19 C 6.135 9.245 0.851 8.365 0.18 5.334 C 0.043 4.669 0.035 3.983 0.155 3.314 C 0.567 0.88 2.706 0 5.36 0 C 7.474 0 10.387 0.492 10.387 3.755 L 10.387 4.817 L 6.676 4.817 L 6.676 3.885 C 6.698 3.513 6.557 3.15 6.29 2.891 C 6.022 2.632 5.654 2.503 5.283 2.538 C 4.634 2.466 4.039 2.906 3.918 3.548 C 3.876 3.806 3.885 4.07 3.944 4.325 C 4.381 6.06 10.027 6.993 10.646 10.127 C 10.8 10.939 10.809 11.772 10.671 12.587 C 10.31 15.072 8.093 16.004 5.413 16.004 C 2.601 16.004 0 14.994 0 11.654 Z M 48.404 11.603 L 48.404 10.463 L 52.348 10.463 L 52.348 11.887 C 52.336 12.269 52.49 12.638 52.772 12.896 C 53.053 13.155 53.434 13.278 53.813 13.233 C 54.478 13.332 55.106 12.904 55.257 12.249 C 55.364 11.893 55.355 11.512 55.232 11.161 C 54.484 9.245 49.251 8.36 48.582 5.334 C 48.445 4.677 48.436 4 48.556 3.34 C 48.971 0.932 51.113 0.052 53.713 0.052 C 55.802 0.052 58.688 0.57 58.688 3.781 L 58.688 4.817 L 55.003 4.817 L 55.003 3.911 C 55.027 3.544 54.89 3.184 54.628 2.926 C 54.366 2.668 54.004 2.536 53.637 2.565 C 52.999 2.48 52.407 2.914 52.297 3.549 C 52.255 3.807 52.263 4.071 52.322 4.326 C 52.734 6.061 58.324 6.968 58.947 10.075 C 59.101 10.878 59.11 11.703 58.972 12.509 C 58.611 14.996 56.42 15.902 53.77 15.902 C 50.983 15.904 48.404 14.891 48.404 11.603 Z M 62.529 12.148 C 62.493 11.821 62.484 11.491 62.504 11.163 L 62.504 0.44 L 66.267 0.44 L 66.267 11.498 C 66.262 11.688 66.27 11.879 66.292 12.068 C 66.464 12.709 67.046 13.155 67.709 13.155 C 68.373 13.155 68.955 12.709 69.127 12.068 C 69.15 11.879 69.158 11.688 69.153 11.498 L 69.153 0.44 L 72.918 0.44 L 72.918 11.161 C 72.918 11.446 72.892 11.99 72.892 12.146 C 72.635 14.947 70.444 15.847 67.712 15.847 C 64.98 15.847 62.787 14.942 62.529 12.146 Z M 93.51 11.992 C 93.472 11.664 93.455 11.333 93.458 11.003 L 93.458 4.713 C 93.458 4.454 93.483 3.988 93.509 3.728 C 93.844 0.932 96.087 0.052 98.742 0.052 C 101.371 0.052 103.69 0.932 103.949 3.729 C 103.98 4.056 103.988 4.386 103.974 4.714 L 103.974 5.201 L 100.211 5.201 L 100.211 4.377 C 100.212 4.186 100.195 3.995 100.16 3.807 C 99.957 3.159 99.357 2.718 98.678 2.718 C 97.999 2.718 97.398 3.159 97.195 3.807 C 97.152 4.038 97.135 4.273 97.144 4.507 L 97.144 11.343 C 97.14 11.533 97.149 11.724 97.17 11.913 C 97.355 12.613 98.021 13.076 98.742 13.003 C 99.451 13.079 100.104 12.611 100.262 11.916 C 100.297 11.728 100.306 11.536 100.288 11.346 L 100.288 9.167 L 98.768 9.167 L 98.768 6.992 L 104.026 6.992 L 104.026 11.003 C 104.03 11.332 104.012 11.66 103.974 11.987 C 103.717 14.706 101.373 15.664 98.742 15.664 C 96.11 15.664 93.767 14.709 93.51 11.99 Z M 41.059 15.382 L 40.959 1.553 L 38.379 15.382 L 34.616 15.382 L 32.063 1.553 L 31.963 15.382 L 28.249 15.382 L 28.558 0.466 L 34.616 0.466 L 36.497 12.12 L 38.379 0.466 L 44.435 0.466 L 44.77 15.382 Z M 21.264 15.382 L 19.254 1.553 L 17.191 15.382 L 13.171 15.382 L 15.904 0.466 L 22.529 0.466 L 25.261 15.382 Z M 84.257 15.227 L 80.52 2.823 L 80.726 15.226 L 77.065 15.226 L 77.065 0.466 L 82.581 0.466 L 86.082 12.482 L 85.88 0.466 L 89.566 0.466 L 89.566 15.228 Z\" fill=\"rgb(158, 161, 174)\"></path></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1x1v33y\",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.768 16.004\" overflow=\"visible\"><path d=\"M 0 11.654 L 0 10.514 L 3.995 10.514 L 3.995 11.964 C 3.989 12.35 4.15 12.719 4.436 12.977 C 4.722 13.235 5.107 13.357 5.489 13.31 C 6.159 13.401 6.787 12.963 6.934 12.303 C 7.041 11.938 7.032 11.549 6.908 11.19 C 6.135 9.245 0.851 8.365 0.18 5.334 C 0.043 4.669 0.035 3.983 0.155 3.314 C 0.567 0.88 2.706 0 5.36 0 C 7.474 0 10.387 0.492 10.387 3.755 L 10.387 4.817 L 6.676 4.817 L 6.676 3.885 C 6.698 3.513 6.557 3.15 6.29 2.891 C 6.022 2.632 5.654 2.503 5.283 2.538 C 4.634 2.466 4.039 2.906 3.918 3.548 C 3.876 3.806 3.885 4.07 3.944 4.325 C 4.381 6.06 10.027 6.993 10.646 10.127 C 10.8 10.939 10.809 11.772 10.671 12.587 C 10.31 15.072 8.093 16.004 5.413 16.004 C 2.601 16.004 0 14.994 0 11.654 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1xlk7o2\",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.665 15.85\" overflow=\"visible\"><path d=\"M 0 11.551 L 0 10.411 L 3.944 10.411 L 3.944 11.835 C 3.931 12.217 4.086 12.586 4.368 12.844 C 4.649 13.103 5.03 13.226 5.409 13.181 C 6.074 13.28 6.702 12.852 6.853 12.197 C 6.96 11.841 6.951 11.46 6.828 11.109 C 6.08 9.193 0.847 8.308 0.178 5.282 C 0.041 4.625 0.032 3.948 0.152 3.288 C 0.567 0.88 2.709 0 5.309 0 C 7.398 0 10.284 0.518 10.284 3.729 L 10.284 4.765 L 6.599 4.765 L 6.599 3.859 C 6.622 3.492 6.486 3.132 6.224 2.874 C 5.961 2.616 5.6 2.484 5.233 2.513 C 4.595 2.428 4.003 2.862 3.893 3.497 C 3.851 3.755 3.859 4.019 3.918 4.274 C 4.33 6.009 9.919 6.916 10.543 10.023 C 10.697 10.826 10.706 11.651 10.568 12.457 C 10.207 14.944 8.016 15.85 5.366 15.85 C 2.579 15.852 0 14.839 0 11.551 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1uewjht\",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.425 15.407\" overflow=\"visible\"><path d=\"M 0.035 11.708 C -0.001 11.381 -0.009 11.051 0.01 10.723 L 0.01 0 L 3.773 0 L 3.773 11.058 C 3.768 11.248 3.776 11.439 3.798 11.628 C 3.971 12.269 4.552 12.714 5.216 12.714 C 5.88 12.714 6.461 12.269 6.634 11.628 C 6.656 11.439 6.665 11.248 6.66 11.058 L 6.66 0 L 10.425 0 L 10.425 10.721 C 10.425 11.006 10.399 11.55 10.399 11.706 C 10.142 14.507 7.95 15.407 5.218 15.407 C 2.487 15.407 0.293 14.502 0.035 11.706 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-17lunv3\",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 15.612\" overflow=\"visible\"><path d=\"M 0.052 11.94 C 0.014 11.612 -0.003 11.281 0 10.951 L 0 4.661 C 0 4.402 0.025 3.936 0.051 3.676 C 0.387 0.88 2.629 0 5.284 0 C 7.913 0 10.232 0.88 10.491 3.677 C 10.522 4.004 10.53 4.334 10.516 4.662 L 10.516 5.149 L 6.753 5.149 L 6.753 4.325 C 6.754 4.134 6.737 3.943 6.702 3.755 C 6.499 3.107 5.899 2.666 5.22 2.666 C 4.541 2.666 3.94 3.107 3.737 3.755 C 3.694 3.986 3.677 4.221 3.686 4.455 L 3.686 11.291 C 3.682 11.481 3.691 11.672 3.712 11.861 C 3.897 12.561 4.563 13.024 5.284 12.951 C 5.993 13.027 6.646 12.559 6.804 11.864 C 6.839 11.676 6.848 11.484 6.83 11.294 L 6.83 9.115 L 5.31 9.115 L 5.31 6.94 L 10.568 6.94 L 10.568 10.951 C 10.572 11.28 10.555 11.608 10.516 11.935 C 10.259 14.654 7.915 15.612 5.284 15.612 C 2.652 15.612 0.31 14.657 0.052 11.938 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1yzjkot\",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.521 14.916\" overflow=\"visible\"><path d=\"M 12.81 14.916 L 12.71 1.087 L 10.13 14.916 L 6.367 14.916 L 3.814 1.087 L 3.714 14.916 L 0 14.916 L 0.309 0 L 6.367 0 L 8.248 11.654 L 10.13 0 L 16.186 0 L 16.521 14.916 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-lb54ph\",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.09 14.916\" overflow=\"visible\"><path d=\"M 8.093 14.916 L 6.083 1.087 L 4.02 14.916 L 0 14.916 L 2.733 0 L 9.357 0 L 12.09 14.916 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1f2ilw6\",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.501 14.762\" overflow=\"visible\"><path d=\"M 7.192 14.761 L 3.455 2.357 L 3.661 14.76 L 0 14.76 L 0 0 L 5.515 0 L 9.016 12.016 L 8.815 0 L 12.501 0 L 12.501 14.762 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true})]})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-fnqr9d\",\"data-framer-name\":\"3M\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1iv4kr0\",\"data-framer-name\":\"$3M\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 40 21\"><g transform=\"translate(-36.605 -653.573)\"><path d=\"M 0 786.966 L 607.978 786.966 L 607.978 0 L 0 0 Z\" fill=\"transparent\"></path><path d=\"M 68.087 654.163 L 65.233 665.734 L 62.372 654.163 L 54.107 654.163 L 54.107 658.436 C 53.103 654.697 49.419 653.759 46.127 653.706 C 42.113 653.654 37.665 655.388 37.511 660.678 L 43.063 660.678 C 43.063 659.081 44.53 658.167 45.915 658.19 C 47.616 658.176 48.398 658.899 48.438 660.026 C 48.379 661.004 47.8 661.684 45.929 661.684 L 44.061 661.684 L 44.061 665.524 L 45.755 665.524 C 46.719 665.524 48.059 666.046 48.111 667.413 C 48.175 669.042 47.039 669.758 45.641 669.772 C 43.144 669.68 42.5 667.768 42.5 666.124 L 36.738 666.124 C 36.762 667.231 36.726 674.451 45.757 674.397 C 50.082 674.438 53.232 672.623 54.12 670.124 L 54.12 673.955 L 59.678 673.955 L 59.678 661.472 L 62.751 673.955 L 67.716 673.955 L 70.801 661.486 L 70.801 673.966 L 76.471 673.966 L 76.471 654.163 L 68.086 654.163 Z M 54.125 665.707 C 53.417 664.248 52.421 663.609 51.861 663.407 C 53.037 662.886 53.653 662.178 54.125 660.768 Z\" fill=\"rgb(158, 161, 174)\"></path></g></svg>',svgContentId:9824773339,withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1mdjw55\",\"data-framer-name\":\"Cisco\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1ejozlg\",\"data-framer-name\":\"graphic\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 60 30\"><g transform=\"translate(5.833 2.084)\"><path d=\"M 13.743 17.132 L 15.888 17.132 L 15.888 25.629 L 13.743 25.629 Z M 32.915 19.579 C 32.848 19.511 32.178 19.103 31.105 19.103 C 29.764 19.103 28.759 20.055 28.759 21.347 C 28.759 22.638 29.697 23.59 31.105 23.59 C 32.111 23.59 32.781 23.182 32.915 23.114 L 32.915 25.425 C 32.647 25.493 31.909 25.697 30.971 25.697 C 28.558 25.697 26.479 24.066 26.479 21.279 C 26.479 18.763 28.356 16.86 30.971 16.86 C 31.976 16.86 32.714 17.132 32.915 17.132 Z M 10.793 19.579 C 10.726 19.511 10.056 19.103 8.983 19.103 C 7.642 19.103 6.637 20.055 6.637 21.347 C 6.637 22.638 7.575 23.59 8.983 23.59 C 9.989 23.59 10.659 23.182 10.793 23.114 L 10.793 25.425 C 10.525 25.493 9.787 25.697 8.849 25.697 C 6.503 25.697 4.357 24.066 4.357 21.279 C 4.357 18.763 6.234 16.86 8.849 16.86 C 9.854 16.86 10.592 17.132 10.793 17.132 Z M 43.976 21.414 C 43.976 23.862 42.099 25.833 39.552 25.833 C 37.004 25.833 35.127 23.862 35.127 21.414 C 35.127 18.967 37.004 16.996 39.552 16.996 C 42.166 16.996 43.976 18.967 43.976 21.414 Z M 39.552 19.171 C 38.278 19.171 37.339 20.191 37.339 21.414 C 37.339 22.638 38.278 23.658 39.552 23.658 C 40.825 23.658 41.764 22.638 41.764 21.414 C 41.764 20.191 40.825 19.171 39.552 19.171 Z M 23.865 19.103 C 23.865 19.103 22.927 18.831 22.189 18.831 C 21.318 18.831 20.848 19.103 20.848 19.511 C 20.848 20.055 21.452 20.191 21.787 20.327 L 22.39 20.531 C 23.731 21.007 24.401 21.958 24.401 22.978 C 24.401 25.086 22.524 25.833 20.915 25.833 C 19.776 25.833 18.703 25.629 18.636 25.629 L 18.636 23.658 C 18.837 23.726 19.709 23.998 20.647 23.998 C 21.72 23.998 22.189 23.658 22.189 23.182 C 22.189 22.774 21.787 22.502 21.251 22.366 C 21.117 22.298 20.915 22.23 20.781 22.23 C 19.575 21.822 18.636 21.143 18.636 19.715 C 18.636 18.151 19.843 17.064 21.787 17.064 C 22.792 17.064 23.798 17.336 23.865 17.336 Z\" fill=\"rgb(158, 161, 174)\"></path><path d=\"M 2.145 8.022 C 2.149 7.732 2.037 7.454 1.835 7.249 C 1.633 7.044 1.358 6.931 1.073 6.934 C 0.787 6.931 0.512 7.044 0.31 7.249 C 0.108 7.454 -0.004 7.732 0 8.022 L 0 10.265 C -0.004 10.555 0.108 10.834 0.31 11.039 C 0.512 11.243 0.787 11.357 1.073 11.353 C 1.358 11.357 1.633 11.243 1.835 11.039 C 2.037 10.834 2.149 10.555 2.145 10.265 Z\" fill=\"rgb(158, 161, 174)\"></path><path d=\"M 7.91 5.099 C 7.914 4.809 7.802 4.53 7.6 4.326 C 7.398 4.121 7.123 4.007 6.838 4.011 C 6.234 4.011 5.832 4.487 5.832 5.099 L 5.832 10.265 C 5.829 10.555 5.94 10.834 6.142 11.039 C 6.344 11.243 6.619 11.357 6.905 11.353 C 7.19 11.357 7.465 11.243 7.667 11.039 C 7.869 10.834 7.981 10.555 7.977 10.265 L 7.977 5.099 Z M 13.743 1.088 C 13.746 0.798 13.634 0.519 13.432 0.315 C 13.23 0.11 12.956 -0.004 12.67 0 C 12.384 -0.004 12.109 0.11 11.908 0.315 C 11.706 0.519 11.594 0.798 11.597 1.088 L 11.597 12.373 C 11.594 12.662 11.706 12.941 11.908 13.146 C 12.109 13.351 12.384 13.464 12.67 13.461 C 12.956 13.464 13.23 13.351 13.432 13.146 C 13.634 12.941 13.746 12.662 13.743 12.373 Z M 19.508 5.099 C 19.511 4.809 19.399 4.53 19.198 4.326 C 18.996 4.121 18.721 4.007 18.435 4.011 C 18.15 4.007 17.875 4.121 17.673 4.326 C 17.471 4.53 17.359 4.809 17.363 5.099 L 17.363 10.265 C 17.359 10.555 17.471 10.834 17.673 11.039 C 17.875 11.243 18.15 11.357 18.435 11.353 C 18.721 11.357 18.996 11.243 19.198 11.039 C 19.399 10.834 19.511 10.555 19.508 10.265 Z\" fill=\"rgb(158, 161, 174)\"></path><path d=\"M 25.273 8.022 C 25.276 7.732 25.165 7.454 24.963 7.249 C 24.761 7.044 24.486 6.931 24.2 6.934 C 23.915 6.931 23.64 7.044 23.438 7.249 C 23.236 7.454 23.124 7.732 23.128 8.022 L 23.128 10.265 C 23.124 10.555 23.236 10.834 23.438 11.039 C 23.64 11.243 23.915 11.357 24.2 11.353 C 24.486 11.357 24.761 11.243 24.963 11.039 C 25.165 10.834 25.276 10.555 25.273 10.265 Z\" fill=\"rgb(158, 161, 174)\"></path><path d=\"M 31.038 5.099 C 31.038 4.498 30.558 4.011 29.965 4.011 C 29.373 4.011 28.893 4.498 28.893 5.099 L 28.893 10.265 C 28.893 10.866 29.373 11.353 29.965 11.353 C 30.558 11.353 31.038 10.866 31.038 10.265 Z M 36.803 1.088 C 36.803 0.487 36.323 0 35.73 0 C 35.138 0 34.658 0.487 34.658 1.088 L 34.658 12.373 C 34.658 12.974 35.138 13.461 35.73 13.461 C 36.323 13.461 36.803 12.974 36.803 12.373 Z M 42.568 5.099 C 42.568 4.498 42.088 4.011 41.496 4.011 C 40.903 4.011 40.423 4.498 40.423 5.099 L 40.423 10.265 C 40.423 10.866 40.903 11.353 41.496 11.353 C 42.088 11.353 42.568 10.866 42.568 10.265 Z M 48.333 8.022 C 48.333 7.421 47.853 6.934 47.261 6.934 C 46.668 6.934 46.188 7.421 46.188 8.022 L 46.188 10.265 C 46.188 10.866 46.668 11.353 47.261 11.353 C 47.853 11.353 48.333 10.866 48.333 10.265 Z\" fill=\"rgb(158, 161, 174)\"></path></g></svg>',svgContentId:12240411714,withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-50ibjz\",\"data-framer-name\":\"Timescale\",children:/*#__PURE__*/_jsxs(SVG,{className:\"framer-c1kjl\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 124.483 28\" overflow=\"visible\"><g><g transform=\"translate(0 0)\"><path d=\"M 14 0 C 21.732 0 28 6.268 28 14 C 28 21.732 21.732 28 14 28 C 6.268 28 0 21.732 0 14 C 0.002 6.267 6.268 0 14 0 Z\" fill=\"transparent\"></path><path d=\"M 12.195 12.6 L 12.193 10.293 C 12.193 10.155 12.138 10.024 12.041 9.927 L 10.044 7.927 L 8.652 9.464 L 11.908 12.721 C 12.014 12.826 12.195 12.75 12.195 12.6 Z\" fill=\"rgb(158, 161, 174)\"></path></g><g transform=\"translate(0 0)\"><path d=\"M 14 0 C 21.732 0 28 6.268 28 14 C 28 21.732 21.732 28 14 28 C 6.268 28 0 21.732 0 14 C 0.002 6.267 6.268 0 14 0 Z\" fill=\"transparent\"></path><path d=\"M 7.782 18.163 L 3.857 14.247 L 2.454 15.771 L 7.647 20.959 C 7.752 21.064 7.935 20.99 7.935 20.839 L 7.935 18.53 C 7.934 18.392 7.88 18.261 7.782 18.163 Z\" fill=\"rgb(158, 161, 174)\"></path></g><g transform=\"translate(0 0)\"><path d=\"M 14 0 C 21.732 0 28 6.268 28 14 C 28 21.732 21.732 28 14 28 C 6.268 28 0 21.732 0 14 C 0.002 6.267 6.268 0 14 0 Z\" fill=\"transparent\"></path><path d=\"M 13.011 0.085 C 5.966 0.571 0.337 6.403 0.071 13.46 C -0.188 20.349 4.549 26.179 10.947 27.608 L 2.42 19.079 C 2.297 18.957 2.229 18.791 2.23 18.618 L 2.237 15.862 C 2.237 15.747 2.376 15.69 2.458 15.771 L 3.861 14.247 C 3.773 14.159 3.773 14.016 3.861 13.928 L 5.21 12.581 C 5.298 12.493 5.442 12.493 5.528 12.581 L 10.086 17.139 C 10.279 17.333 10.388 17.596 10.388 17.869 L 10.388 22.626 C 10.388 23.311 10.661 23.968 11.144 24.453 L 14.62 27.929 C 15.503 27.891 16.363 27.77 17.196 27.575 L 12.794 23.171 C 12.576 22.953 12.454 22.658 12.454 22.35 L 12.454 17.755 C 12.454 17.001 12.155 16.28 11.622 15.747 L 6.995 11.12 C 6.907 11.031 6.907 10.889 6.995 10.8 L 8.334 9.464 C 8.422 9.376 8.565 9.376 8.652 9.464 L 10.044 7.927 C 10.018 7.897 9.994 7.865 9.968 7.83 C 9.57 7.293 9.328 6.408 9.611 5.409 C 9.78 4.77 10.131 4.287 10.778 3.702 C 10.835 3.65 10.925 3.648 10.982 3.698 L 12.656 5.15 L 12.985 5.436 C 13.111 5.547 13.263 5.625 13.427 5.662 L 18.649 6.903 C 18.71 6.917 18.767 6.948 18.81 6.991 L 24.174 12.341 C 24.267 12.431 24.321 12.555 24.321 12.687 L 24.321 13.824 C 24.321 13.998 24.276 14.171 24.193 14.324 L 21.538 19.16 C 21.423 19.372 21.164 19.461 20.943 19.364 L 19.719 18.831 L 15.248 18.831 C 14.96 18.831 14.728 19.064 14.728 19.35 L 14.728 21.343 C 14.728 21.618 14.837 21.882 15.03 22.077 L 19.662 26.744 C 24.54 24.572 27.941 19.68 27.941 13.995 C 27.94 5.966 21.157 -0.478 13.011 0.085 Z\" fill=\"rgb(158, 161, 174)\"></path></g><path d=\"M 49.352 9.543 C 49.637 9.815 49.979 9.952 50.377 9.952 C 50.776 9.952 51.111 9.815 51.385 9.543 C 51.658 9.26 51.794 8.913 51.794 8.506 C 51.794 8.097 51.658 7.779 51.385 7.518 C 51.113 7.246 50.776 7.109 50.377 7.109 C 49.979 7.109 49.637 7.246 49.352 7.518 C 49.08 7.779 48.943 8.109 48.943 8.506 C 48.943 8.901 49.08 9.26 49.352 9.543 Z\" fill=\"rgb(158, 161, 174)\"></path><path d=\"M 51.596 11.16 L 49.116 11.16 L 49.116 20.727 L 51.596 20.727 Z\" fill=\"rgb(158, 161, 174)\"></path><path d=\"M 41.246 20.724 L 41.246 9.641 L 37.364 9.641 L 37.364 7.421 L 47.625 7.421 L 47.625 9.641 L 43.743 9.641 L 43.743 20.724 Z M 53.637 20.724 L 53.637 11.158 L 55.629 11.158 L 55.81 12.44 C 56.1 11.97 56.523 11.591 57.077 11.303 C 57.633 11.002 58.259 10.85 58.96 10.85 C 59.661 10.85 60.221 11.001 60.717 11.303 C 61.212 11.603 61.592 12.031 61.858 12.585 C 62.135 12.079 62.558 11.665 63.124 11.339 C 63.704 11.014 64.362 10.852 65.099 10.852 C 66.089 10.852 66.88 11.177 67.47 11.827 C 68.074 12.466 68.376 13.32 68.376 14.39 L 68.376 20.726 L 65.913 20.726 L 65.913 14.499 C 65.913 14.029 65.775 13.657 65.497 13.38 C 65.232 13.092 64.869 12.947 64.412 12.947 C 63.771 12.947 63.247 13.134 62.836 13.506 C 62.437 13.879 62.239 14.356 62.239 14.932 L 62.239 20.726 L 59.776 20.726 L 59.776 14.499 C 59.776 14.029 59.638 13.657 59.36 13.38 C 59.094 13.092 58.732 12.947 58.275 12.947 C 57.634 12.947 57.117 13.134 56.718 13.506 C 56.319 13.879 56.121 14.356 56.121 14.932 L 56.121 20.726 Z M 79.152 15.905 L 79.152 16.482 L 72.037 16.482 C 72.133 17.227 72.416 17.83 72.887 18.287 C 73.357 18.743 73.949 18.972 74.662 18.972 C 75.169 18.972 75.597 18.863 75.947 18.648 C 76.227 18.472 76.456 18.226 76.61 17.933 L 78.824 18.525 C 78.529 19.184 78.101 19.725 77.54 20.146 C 76.757 20.724 75.79 21.012 74.644 21.012 C 73.667 21.012 72.792 20.802 72.019 20.38 C 71.258 19.947 70.668 19.352 70.245 18.594 C 69.822 17.824 69.612 16.989 69.612 15.978 C 69.612 14.967 69.817 14.076 70.228 13.306 C 70.651 12.524 71.229 11.922 71.966 11.501 C 72.703 11.066 73.547 10.85 74.465 10.85 C 75.383 10.85 76.191 11.056 76.891 11.465 C 77.592 11.874 78.141 12.464 78.539 13.234 C 78.938 13.991 79.144 14.882 79.156 15.905 Z M 76.622 14.841 C 76.489 14.228 76.235 13.752 75.861 13.415 C 75.486 13.078 75.034 12.909 74.466 12.909 C 73.899 12.909 73.41 13.084 73 13.432 C 72.589 13.769 72.306 14.238 72.149 14.841 Z M 81.244 20.147 C 80.724 19.747 80.372 19.224 80.182 18.58 L 82.438 17.978 C 82.519 18.28 82.681 18.523 82.927 18.703 C 83.265 18.932 83.712 19.046 84.268 19.046 C 84.739 19.046 85.099 18.962 85.353 18.794 C 85.607 18.613 85.733 18.366 85.733 18.054 C 85.733 17.849 85.679 17.693 85.571 17.585 C 85.474 17.464 85.36 17.379 85.227 17.333 C 85.094 17.272 84.828 17.176 84.43 17.044 L 83.216 16.647 C 82.564 16.442 82.022 16.232 81.587 16.016 C 81.164 15.788 80.821 15.493 80.555 15.132 C 80.302 14.759 80.176 14.295 80.176 13.743 C 80.176 12.864 80.502 12.167 81.154 11.649 C 81.805 11.12 82.723 10.856 83.907 10.856 C 85.091 10.856 86 11.151 86.713 11.739 C 87.262 12.178 87.638 12.761 87.84 13.491 L 85.676 14.069 C 85.605 13.681 85.432 13.386 85.155 13.184 C 84.841 12.944 84.425 12.823 83.905 12.823 C 83.494 12.823 83.173 12.901 82.946 13.058 C 82.716 13.215 82.602 13.431 82.602 13.707 C 82.602 13.9 82.662 14.062 82.783 14.193 C 82.916 14.314 83.054 14.404 83.199 14.464 C 83.344 14.525 83.598 14.614 83.96 14.735 L 85.065 15.115 C 85.814 15.355 86.406 15.596 86.839 15.836 C 87.274 16.064 87.605 16.359 87.835 16.72 C 88.076 17.069 88.197 17.526 88.197 18.092 C 88.197 19.007 87.866 19.723 87.201 20.241 C 86.537 20.758 85.619 21.014 84.449 21.014 C 83.061 21.014 81.993 20.726 81.244 20.147 Z M 91.623 20.363 C 90.862 19.918 90.277 19.304 89.87 18.525 C 89.471 17.742 89.272 16.882 89.272 15.871 C 89.272 14.86 89.483 13.974 89.906 13.217 C 90.341 12.457 90.931 11.874 91.68 11.465 C 92.439 11.056 93.304 10.85 94.269 10.85 C 95.163 10.85 95.953 11.02 96.64 11.356 C 97.327 11.693 97.871 12.167 98.269 12.782 C 98.466 13.08 98.62 13.401 98.728 13.745 L 96.395 14.368 C 96.274 14.01 96.058 13.693 95.77 13.449 C 95.359 13.089 94.854 12.908 94.25 12.908 C 93.502 12.908 92.898 13.179 92.439 13.72 C 91.98 14.25 91.751 14.93 91.751 15.869 C 91.751 16.808 91.985 17.554 92.457 18.108 C 92.928 18.662 93.542 18.938 94.303 18.938 C 94.895 18.938 95.384 18.763 95.77 18.415 C 96.008 18.199 96.191 17.938 96.323 17.633 L 98.632 18.249 C 98.39 18.901 98.01 19.455 97.491 19.913 C 96.657 20.646 95.594 21.014 94.303 21.014 C 93.276 21.014 92.384 20.796 91.623 20.363 Z M 109.249 11.158 L 109.249 20.724 L 106.786 20.724 L 106.786 19.587 C 106.496 20.032 106.098 20.382 105.59 20.634 C 105.083 20.888 104.505 21.014 103.852 21.014 C 102.995 21.014 102.221 20.796 101.535 20.363 C 100.86 19.93 100.328 19.328 99.942 18.558 C 99.555 17.776 99.362 16.861 99.362 15.886 C 99.362 14.911 99.548 14.045 99.923 13.287 C 100.297 12.518 100.815 11.922 101.479 11.501 C 102.156 11.066 102.917 10.85 103.761 10.85 C 104.498 10.85 105.155 11.007 105.735 11.32 C 106.327 11.634 106.76 12.06 107.038 12.602 L 107.256 11.158 Z M 106.098 18.125 C 106.557 17.547 106.785 16.777 106.785 15.885 C 106.785 14.994 106.557 14.273 106.098 13.719 C 105.651 13.165 105.078 12.889 104.341 12.889 C 103.604 12.889 103.007 13.172 102.548 13.738 C 102.09 14.292 101.861 14.989 101.861 15.904 C 101.861 16.818 102.089 17.564 102.548 18.142 C 103.007 18.708 103.587 18.991 104.323 18.991 C 105.059 18.991 105.651 18.703 106.098 18.125 Z\" fill=\"rgb(158, 161, 174)\"></path><path d=\"M 113.549 7.368 L 111.086 7.368 L 111.086 20.671 L 113.549 20.671 Z\" fill=\"rgb(158, 161, 174)\"></path><path d=\"M 124.483 16.504 L 117.367 16.504 C 117.464 17.25 117.747 17.852 118.218 18.309 C 118.689 18.765 119.28 18.995 119.992 18.995 C 120.5 18.995 120.928 18.886 121.278 18.67 C 121.563 18.491 121.784 18.252 121.941 17.956 L 124.155 18.548 C 123.86 19.207 123.43 19.747 122.871 20.168 C 122.086 20.746 121.119 21.035 119.973 21.035 C 118.997 21.035 118.12 20.824 117.348 20.403 C 116.587 19.97 115.997 19.374 115.574 18.617 C 115.151 17.847 114.941 17.012 114.941 16 C 114.941 14.989 115.145 14.098 115.555 13.329 C 115.976 12.547 116.556 11.945 117.293 11.523 C 118.03 11.089 118.874 10.873 119.792 10.873 C 120.71 10.873 121.518 11.078 122.219 11.487 C 122.919 11.896 123.468 12.486 123.867 13.256 C 124.266 14.014 124.471 14.904 124.483 15.928 Z M 121.948 14.863 C 121.815 14.25 121.561 13.774 121.187 13.437 C 120.812 13.101 120.36 12.932 119.792 12.932 C 119.224 12.932 118.736 13.106 118.325 13.455 C 117.915 13.791 117.632 14.261 117.474 14.863 Z\" fill=\"rgb(158, 161, 174)\"></path></g></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsxs(SVG,{className:\"framer-ksl8hb\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 28 28\" overflow=\"visible\"><g><path d=\"M 14 0 C 21.732 0 28 6.268 28 14 C 28 21.732 21.732 28 14 28 C 6.268 28 0 21.732 0 14 C 0.002 6.267 6.268 0 14 0 Z\" fill=\"transparent\"></path><path d=\"M 12.195 12.6 L 12.193 10.293 C 12.193 10.155 12.138 10.024 12.041 9.927 L 10.044 7.927 L 8.652 9.464 L 11.908 12.721 C 12.014 12.826 12.195 12.75 12.195 12.6 Z\" fill=\"rgb(158, 161, 174)\"></path></g></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1il9q20\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 28 28\" overflow=\"visible\"><path d=\"M 14 0 C 21.732 0 28 6.268 28 14 C 28 21.732 21.732 28 14 28 C 6.268 28 0 21.732 0 14 C 0.002 6.267 6.268 0 14 0 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-171yhmc\",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.543 4.843\" overflow=\"visible\"><path d=\"M 3.543 4.674 L 3.541 2.366 C 3.541 2.228 3.486 2.097 3.39 2 L 1.393 0 L 0 1.538 L 3.257 4.794 C 3.362 4.9 3.543 4.824 3.543 4.674 Z\" fill=\"rgb(158, 161, 174)\"></path></svg>',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(SVG,{className:\"framer-1li3dse\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 28 28\" overflow=\"visible\"><g><path d=\"M 14 0 C 21.732 0 28 6.268 28 14 C 28 21.732 21.732 28 14 28 C 6.268 28 0 21.732 0 14 C 0.002 6.267 6.268 0 14 0 Z\" fill=\"transparent\"></path><path d=\"M 7.782 18.163 L 3.857 14.247 L 2.454 15.771 L 7.647 20.959 C 7.752 21.064 7.935 20.99 7.935 20.839 L 7.935 18.53 C 7.934 18.392 7.88 18.261 7.782 18.163 Z\" fill=\"rgb(158, 161, 174)\"></path></g></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1a3veoh\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 28 28\" overflow=\"visible\"><path d=\"M 14 0 C 21.732 0 28 6.268 28 14 C 28 21.732 21.732 28 14 28 C 6.268 28 0 21.732 0 14 C 0.002 6.267 6.268 0 14 0 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1n390uc\",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.481 6.761\" overflow=\"visible\"><path d=\"M 5.328 3.916 L 1.403 0 L 0 1.524 L 5.193 6.712 C 5.298 6.817 5.481 6.743 5.481 6.593 L 5.481 4.284 C 5.48 4.145 5.426 4.014 5.328 3.916 Z\" fill=\"rgb(158, 161, 174)\"></path></svg>',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(SVG,{className:\"framer-4iwhjq\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 28 28\" overflow=\"visible\"><g><path d=\"M 14 0 C 21.732 0 28 6.268 28 14 C 28 21.732 21.732 28 14 28 C 6.268 28 0 21.732 0 14 C 0.002 6.267 6.268 0 14 0 Z\" fill=\"transparent\"></path><path d=\"M 13.011 0.085 C 5.966 0.571 0.337 6.403 0.071 13.46 C -0.188 20.349 4.549 26.179 10.947 27.608 L 2.42 19.079 C 2.297 18.957 2.229 18.791 2.23 18.618 L 2.237 15.862 C 2.237 15.747 2.376 15.69 2.458 15.771 L 3.861 14.247 C 3.773 14.159 3.773 14.016 3.861 13.928 L 5.21 12.581 C 5.298 12.493 5.442 12.493 5.528 12.581 L 10.086 17.139 C 10.279 17.333 10.388 17.596 10.388 17.869 L 10.388 22.626 C 10.388 23.311 10.661 23.968 11.144 24.453 L 14.62 27.929 C 15.503 27.891 16.363 27.77 17.196 27.575 L 12.794 23.171 C 12.576 22.953 12.454 22.658 12.454 22.35 L 12.454 17.755 C 12.454 17.001 12.155 16.28 11.622 15.747 L 6.995 11.12 C 6.907 11.031 6.907 10.889 6.995 10.8 L 8.334 9.464 C 8.422 9.376 8.565 9.376 8.652 9.464 L 10.044 7.927 C 10.018 7.897 9.994 7.865 9.968 7.83 C 9.57 7.293 9.328 6.408 9.611 5.409 C 9.78 4.77 10.131 4.287 10.778 3.702 C 10.835 3.65 10.925 3.648 10.982 3.698 L 12.656 5.15 L 12.985 5.436 C 13.111 5.547 13.263 5.625 13.427 5.662 L 18.649 6.903 C 18.71 6.917 18.767 6.948 18.81 6.991 L 24.174 12.341 C 24.267 12.431 24.321 12.555 24.321 12.687 L 24.321 13.824 C 24.321 13.998 24.276 14.171 24.193 14.324 L 21.538 19.16 C 21.423 19.372 21.164 19.461 20.943 19.364 L 19.719 18.831 L 15.248 18.831 C 14.96 18.831 14.728 19.064 14.728 19.35 L 14.728 21.343 C 14.728 21.618 14.837 21.882 15.03 22.077 L 19.662 26.744 C 24.54 24.572 27.941 19.68 27.941 13.995 C 27.94 5.966 21.157 -0.478 13.011 0.085 Z\" fill=\"rgb(158, 161, 174)\"></path></g></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-6ysruz\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 28 28\" overflow=\"visible\"><path d=\"M 14 0 C 21.732 0 28 6.268 28 14 C 28 21.732 21.732 28 14 28 C 6.268 28 0 21.732 0 14 C 0.002 6.267 6.268 0 14 0 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-qxcubu\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 27.881 27.879\" overflow=\"visible\"><path d=\"M 12.95 0.034 C 5.906 0.521 0.276 6.353 0.01 13.409 C -0.249 20.299 4.489 26.129 10.886 27.558 L 2.359 19.029 C 2.236 18.907 2.168 18.741 2.169 18.568 L 2.176 15.812 C 2.176 15.696 2.316 15.639 2.397 15.72 L 3.8 14.196 C 3.712 14.108 3.712 13.965 3.8 13.877 L 5.15 12.531 C 5.238 12.443 5.381 12.443 5.467 12.531 L 10.025 17.089 C 10.219 17.283 10.327 17.545 10.327 17.819 L 10.327 22.575 C 10.327 23.261 10.6 23.918 11.083 24.403 L 14.559 27.879 C 15.443 27.841 16.302 27.72 17.136 27.525 L 12.733 23.121 C 12.515 22.903 12.393 22.607 12.393 22.299 L 12.393 17.705 C 12.393 16.951 12.094 16.23 11.561 15.696 L 6.934 11.069 C 6.846 10.981 6.846 10.838 6.934 10.75 L 8.273 9.414 C 8.361 9.326 8.505 9.326 8.591 9.414 L 9.984 7.876 C 9.958 7.847 9.934 7.814 9.908 7.78 C 9.509 7.243 9.268 6.358 9.551 5.358 C 9.72 4.72 10.07 4.237 10.717 3.652 C 10.774 3.6 10.864 3.598 10.921 3.648 L 12.595 5.1 L 12.925 5.386 C 13.051 5.497 13.202 5.574 13.366 5.612 L 18.589 6.853 C 18.649 6.867 18.706 6.898 18.749 6.941 L 24.113 12.291 C 24.206 12.381 24.26 12.505 24.26 12.636 L 24.26 13.774 C 24.26 13.948 24.215 14.121 24.132 14.274 L 21.478 19.11 C 21.362 19.322 21.104 19.41 20.882 19.314 L 19.659 18.78 L 15.187 18.78 C 14.899 18.78 14.668 19.013 14.668 19.3 L 14.668 21.293 C 14.668 21.568 14.776 21.832 14.97 22.027 L 19.602 26.693 C 24.479 24.522 27.881 19.629 27.881 13.944 C 27.879 5.916 21.096 -0.528 12.95 0.034 Z\" fill=\"rgb(158, 161, 174)\"></path></svg>',withExternalLayout:true})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-qhl4ow\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 2.851 2.842\" overflow=\"visible\"><path d=\"M 0.409 2.433 C 0.694 2.706 1.036 2.842 1.434 2.842 C 1.833 2.842 2.168 2.706 2.442 2.433 C 2.715 2.15 2.851 1.804 2.851 1.396 C 2.851 0.987 2.715 0.67 2.442 0.409 C 2.169 0.136 1.833 0 1.434 0 C 1.036 0 0.694 0.136 0.409 0.409 C 0.136 0.67 0 0.999 0 1.396 C 0 1.791 0.136 2.15 0.409 2.433 Z\" fill=\"rgb(158, 161, 174)\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-hhhidj\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 2.48 9.566\" overflow=\"visible\"><path d=\"M 2.48 0 L 0 0 L 0 9.566 L 2.48 9.566 Z\" fill=\"rgb(158, 161, 174)\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsxs(SVG,{className:\"framer-126ga3v\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 71.885 13.593\" overflow=\"visible\"><path d=\"M 3.881 13.303 L 3.881 2.219 L 0 2.219 L 0 0 L 10.26 0 L 10.26 2.219 L 6.379 2.219 L 6.379 13.303 Z M 16.273 13.303 L 16.273 3.736 L 18.265 3.736 L 18.446 5.019 C 18.736 4.549 19.159 4.17 19.713 3.881 C 20.268 3.581 20.895 3.429 21.595 3.429 C 22.296 3.429 22.857 3.579 23.352 3.881 C 23.848 4.182 24.227 4.61 24.493 5.164 C 24.771 4.658 25.194 4.244 25.76 3.918 C 26.34 3.593 26.997 3.431 27.734 3.431 C 28.725 3.431 29.515 3.755 30.106 4.406 C 30.71 5.045 31.012 5.899 31.012 6.969 L 31.012 13.304 L 28.549 13.304 L 28.549 7.078 C 28.549 6.608 28.411 6.235 28.133 5.959 C 27.867 5.671 27.505 5.526 27.047 5.526 C 26.407 5.526 25.882 5.713 25.472 6.085 C 25.073 6.458 24.875 6.934 24.875 7.511 L 24.875 13.304 L 22.412 13.304 L 22.412 7.078 C 22.412 6.608 22.274 6.235 21.996 5.959 C 21.73 5.671 21.368 5.526 20.91 5.526 C 20.27 5.526 19.752 5.713 19.354 6.085 C 18.955 6.458 18.756 6.934 18.756 7.511 L 18.756 13.304 Z M 41.788 8.484 L 41.788 9.061 L 34.672 9.061 C 34.769 9.806 35.052 10.409 35.523 10.866 C 35.992 11.321 36.584 11.551 37.297 11.551 C 37.804 11.551 38.233 11.442 38.583 11.227 C 38.863 11.051 39.092 10.805 39.246 10.512 L 41.46 11.104 C 41.165 11.763 40.737 12.303 40.176 12.725 C 39.392 13.303 38.426 13.591 37.28 13.591 C 36.303 13.591 35.428 13.38 34.655 12.959 C 33.894 12.526 33.304 11.931 32.881 11.173 C 32.458 10.403 32.247 9.568 32.247 8.557 C 32.247 7.545 32.453 6.655 32.863 5.885 C 33.286 5.103 33.864 4.501 34.601 4.08 C 35.338 3.645 36.182 3.429 37.1 3.429 C 38.019 3.429 38.826 3.635 39.527 4.044 C 40.228 4.453 40.776 5.043 41.175 5.813 C 41.574 6.57 41.779 7.461 41.791 8.484 Z M 39.258 7.419 C 39.125 6.807 38.871 6.33 38.497 5.994 C 38.122 5.657 37.67 5.488 37.102 5.488 C 36.534 5.488 36.046 5.662 35.635 6.011 C 35.224 6.348 34.941 6.817 34.784 7.419 Z M 43.879 12.726 C 43.36 12.326 43.008 11.803 42.818 11.159 L 45.074 10.557 C 45.155 10.859 45.317 11.102 45.562 11.282 C 45.9 11.511 46.347 11.625 46.903 11.625 C 47.374 11.625 47.735 11.541 47.989 11.373 C 48.242 11.192 48.368 10.945 48.368 10.633 C 48.368 10.428 48.315 10.272 48.206 10.163 C 48.109 10.043 47.996 9.958 47.863 9.911 C 47.73 9.851 47.464 9.754 47.065 9.623 L 45.852 9.226 C 45.2 9.021 44.658 8.81 44.223 8.595 C 43.8 8.367 43.457 8.072 43.191 7.711 C 42.937 7.338 42.811 6.874 42.811 6.322 C 42.811 5.443 43.137 4.746 43.79 4.228 C 44.44 3.698 45.358 3.434 46.542 3.434 C 47.726 3.434 48.636 3.73 49.349 4.318 C 49.897 4.756 50.274 5.34 50.476 6.07 L 48.311 6.648 C 48.241 6.26 48.068 5.964 47.79 5.763 C 47.476 5.523 47.06 5.402 46.541 5.402 C 46.13 5.402 45.809 5.48 45.581 5.637 C 45.352 5.794 45.238 6.009 45.238 6.286 C 45.238 6.479 45.298 6.641 45.419 6.772 C 45.552 6.893 45.69 6.983 45.835 7.043 C 45.98 7.104 46.233 7.193 46.596 7.314 L 47.7 7.694 C 48.449 7.934 49.041 8.175 49.475 8.415 C 49.91 8.643 50.241 8.938 50.47 9.299 C 50.712 9.647 50.833 10.105 50.833 10.671 C 50.833 11.586 50.501 12.302 49.837 12.82 C 49.173 13.337 48.254 13.593 47.084 13.593 C 45.697 13.593 44.628 13.304 43.879 12.726 Z M 54.259 12.942 C 53.498 12.497 52.912 11.882 52.505 11.104 C 52.107 10.321 51.908 9.461 51.908 8.45 C 51.908 7.438 52.119 6.553 52.541 5.795 C 52.976 5.036 53.567 4.453 54.316 4.044 C 55.075 3.635 55.94 3.429 56.904 3.429 C 57.798 3.429 58.589 3.598 59.276 3.935 C 59.963 4.271 60.506 4.746 60.905 5.36 C 61.102 5.659 61.255 5.98 61.364 6.323 L 59.031 6.946 C 58.91 6.589 58.694 6.272 58.406 6.028 C 57.995 5.668 57.489 5.486 56.885 5.486 C 56.138 5.486 55.534 5.757 55.075 6.299 C 54.616 6.829 54.386 7.509 54.386 8.448 C 54.386 9.387 54.621 10.132 55.092 10.686 C 55.563 11.24 56.178 11.517 56.939 11.517 C 57.531 11.517 58.019 11.342 58.406 10.994 C 58.644 10.778 58.827 10.517 58.958 10.212 L 61.267 10.828 C 61.026 11.48 60.646 12.034 60.126 12.492 C 59.293 13.225 58.23 13.593 56.939 13.593 C 55.912 13.593 55.02 13.375 54.259 12.942 Z M 71.885 3.736 L 71.885 13.303 L 69.422 13.303 L 69.422 12.165 C 69.132 12.611 68.733 12.961 68.226 13.213 C 67.718 13.467 67.14 13.593 66.488 13.593 C 65.63 13.593 64.857 13.375 64.17 12.942 C 63.495 12.509 62.964 11.907 62.577 11.137 C 62.191 10.355 61.997 9.44 61.997 8.465 C 61.997 7.49 62.184 6.624 62.558 5.866 C 62.933 5.096 63.45 4.501 64.115 4.08 C 64.791 3.645 65.553 3.429 66.396 3.429 C 67.133 3.429 67.791 3.586 68.371 3.899 C 68.963 4.213 69.396 4.639 69.674 5.181 L 69.891 3.736 Z M 68.733 10.704 C 69.192 10.125 69.42 9.356 69.42 8.464 C 69.42 7.573 69.192 6.852 68.733 6.298 C 68.286 5.744 67.713 5.467 66.976 5.467 C 66.239 5.467 65.642 5.75 65.183 6.317 C 64.726 6.871 64.496 7.568 64.496 8.482 C 64.496 9.397 64.724 10.143 65.183 10.721 C 65.642 11.287 66.222 11.57 66.959 11.57 C 67.694 11.57 68.286 11.282 68.733 10.704 Z\" fill=\"rgb(158, 161, 174)\"></path></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-iu43nf\",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.26 13.303\" overflow=\"visible\"><path d=\"M 3.88 13.303 L 6.379 13.303 L 6.379 2.219 L 10.26 2.219 L 10.26 0 L 0 0 L 0 2.219 L 3.881 2.219 L 3.881 13.303 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-126iek\",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.739 9.875\" overflow=\"visible\"><path d=\"M 0 9.874 L 0 0.307 L 1.992 0.307 L 2.173 1.589 C 2.463 1.12 2.886 0.74 3.44 0.452 C 3.995 0.152 4.622 0 5.322 0 C 6.023 0 6.584 0.15 7.079 0.452 C 7.575 0.752 7.954 1.18 8.22 1.734 C 8.498 1.229 8.921 0.815 9.487 0.488 C 10.067 0.164 10.724 0.002 11.461 0.002 C 12.452 0.002 13.242 0.326 13.833 0.977 C 14.437 1.615 14.739 2.47 14.739 3.54 L 14.739 9.875 L 12.276 9.875 L 12.276 3.648 C 12.276 3.179 12.138 2.806 11.86 2.53 C 11.594 2.242 11.232 2.097 10.774 2.097 C 10.134 2.097 9.609 2.283 9.199 2.656 C 8.8 3.029 8.602 3.505 8.602 4.082 L 8.602 9.875 L 6.139 9.875 L 6.139 3.648 C 6.139 3.179 6.001 2.806 5.723 2.53 C 5.457 2.242 5.095 2.097 4.637 2.097 C 3.997 2.097 3.479 2.283 3.081 2.656 C 2.682 3.029 2.483 3.505 2.483 4.082 L 2.483 9.875 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-xwh96j\",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.544 10.162\" overflow=\"visible\"><path d=\"M 9.544 5.055 C 9.532 4.032 9.326 3.141 8.928 2.383 C 8.529 1.614 7.98 1.023 7.28 0.614 C 6.579 0.205 5.771 0 4.853 0 C 3.935 0 3.091 0.216 2.354 0.651 C 1.617 1.072 1.039 1.674 0.616 2.456 C 0.205 3.226 0 4.116 0 5.127 C 0 6.139 0.211 6.974 0.633 7.744 C 1.056 8.501 1.646 9.097 2.408 9.53 C 3.181 9.951 4.056 10.162 5.033 10.162 C 6.179 10.162 7.145 9.874 7.929 9.295 C 8.489 8.874 8.917 8.334 9.213 7.675 L 6.998 7.083 C 6.844 7.375 6.616 7.622 6.336 7.797 C 5.985 8.013 5.557 8.122 5.05 8.122 C 4.337 8.122 3.745 7.892 3.276 7.437 C 2.804 6.979 2.521 6.377 2.425 5.631 L 9.54 5.631 L 9.54 5.055 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-5ruy71\",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.473 1.931\" overflow=\"visible\"><path d=\"M 0 1.931 C 0.157 1.329 0.44 0.859 0.851 0.523 C 1.262 0.174 1.75 0 2.318 0 C 2.886 0 3.338 0.169 3.712 0.506 C 4.087 0.842 4.34 1.319 4.473 1.931 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-mf2cam\",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.022 10.158\" overflow=\"visible\"><path d=\"M 4.273 10.158 C 2.886 10.158 1.817 9.87 1.068 9.292 C 0.549 8.892 0.197 8.369 0.007 7.725 L 2.263 7.123 C 2.344 7.425 2.506 7.668 2.751 7.847 C 3.089 8.077 3.536 8.191 4.092 8.191 C 4.563 8.191 4.924 8.106 5.178 7.939 C 5.431 7.758 5.557 7.511 5.557 7.198 C 5.557 6.993 5.504 6.838 5.395 6.729 C 5.298 6.608 5.184 6.524 5.052 6.477 C 4.919 6.417 4.653 6.32 4.254 6.189 L 3.041 5.792 C 2.389 5.587 1.847 5.376 1.412 5.16 C 0.989 4.932 0.645 4.637 0.38 4.277 C 0.126 3.904 0 3.44 0 2.887 C 0 2.009 0.326 1.312 0.979 0.794 C 1.629 0.264 2.547 0 3.731 0 C 4.915 0 5.825 0.295 6.537 0.884 C 7.086 1.322 7.463 1.905 7.664 2.635 L 5.5 3.214 C 5.429 2.825 5.257 2.53 4.979 2.328 C 4.665 2.088 4.249 1.967 3.73 1.967 C 3.319 1.967 2.998 2.045 2.77 2.202 C 2.54 2.359 2.427 2.575 2.427 2.851 C 2.427 3.044 2.487 3.207 2.608 3.338 C 2.741 3.459 2.879 3.548 3.024 3.609 C 3.169 3.669 3.422 3.759 3.785 3.88 L 4.889 4.259 C 5.638 4.499 6.23 4.741 6.663 4.981 C 7.098 5.209 7.43 5.504 7.659 5.864 C 7.901 6.213 8.022 6.67 8.022 7.236 C 8.022 8.151 7.69 8.867 7.026 9.385 C 6.361 9.903 5.443 10.158 4.273 10.158\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-sbkdtz\",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.456 10.163\" overflow=\"visible\"><path d=\"M 2.351 9.513 C 3.112 9.946 4.004 10.163 5.031 10.163 C 6.322 10.163 7.385 9.796 8.218 9.062 C 8.738 8.605 9.118 8.051 9.359 7.399 L 7.05 6.783 C 6.919 7.088 6.736 7.349 6.498 7.564 C 6.111 7.913 5.623 8.087 5.031 8.087 C 4.27 8.087 3.655 7.811 3.184 7.257 C 2.713 6.703 2.478 5.958 2.478 5.019 C 2.478 4.08 2.708 3.4 3.167 2.87 C 3.626 2.328 4.23 2.057 4.977 2.057 C 5.581 2.057 6.087 2.238 6.498 2.599 C 6.786 2.842 7.002 3.16 7.123 3.517 L 9.456 2.894 C 9.347 2.551 9.194 2.23 8.997 1.931 C 8.598 1.317 8.054 0.842 7.368 0.506 C 6.681 0.169 5.89 0 4.996 0 C 4.032 0 3.167 0.205 2.408 0.614 C 1.659 1.023 1.068 1.607 0.633 2.366 C 0.211 3.124 0 4.009 0 5.02 C 0 6.032 0.198 6.891 0.597 7.675 C 1.004 8.453 1.589 9.068 2.351 9.513\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-xgxzzi\",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.887 10.163\" overflow=\"visible\"><path d=\"M 7.894 0.307 L 7.677 1.752 C 7.399 1.21 6.965 0.784 6.374 0.469 C 5.794 0.157 5.136 0 4.399 0 C 3.555 0 2.794 0.216 2.118 0.651 C 1.453 1.072 0.935 1.667 0.561 2.437 C 0.186 3.195 0 4.061 0 5.036 C 0 6.011 0.193 6.926 0.58 7.708 C 0.966 8.477 1.498 9.08 2.173 9.513 C 2.86 9.946 3.633 10.163 4.491 10.163 C 5.143 10.163 5.721 10.037 6.229 9.784 C 6.736 9.532 7.135 9.181 7.425 8.736 L 7.425 9.874 L 9.887 9.874 L 9.887 0.307 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-cc3683\",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.924 6.103\" overflow=\"visible\"><path d=\"M 4.237 5.236 C 3.79 5.814 3.198 6.103 2.463 6.103 C 1.726 6.103 1.146 5.82 0.687 5.253 C 0.228 4.675 0 3.93 0 3.015 C 0 2.1 0.23 1.403 0.687 0.849 C 1.146 0.283 1.743 0 2.48 0 C 3.217 0 3.79 0.276 4.237 0.83 C 4.696 1.384 4.924 2.106 4.924 2.996 C 4.924 3.888 4.696 4.658 4.237 5.236\" fill=\"transparent\"></path></svg>',withExternalLayout:true})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-ynog5a\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 2.463 13.303\" overflow=\"visible\"><path d=\"M 2.463 0 L 0 0 L 0 13.303 L 2.463 13.303 Z\" fill=\"rgb(158, 161, 174)\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsxs(SVG,{className:\"framer-rhe51b\",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.542 10.162\" overflow=\"visible\"><path d=\"M 9.542 5.631 L 2.427 5.631 C 2.523 6.377 2.806 6.979 3.277 7.437 C 3.749 7.892 4.339 8.122 5.052 8.122 C 5.559 8.122 5.987 8.013 6.337 7.797 C 6.622 7.618 6.843 7.38 7 7.083 L 9.214 7.675 C 8.919 8.334 8.489 8.874 7.93 9.295 C 7.145 9.874 6.179 10.162 5.033 10.162 C 4.056 10.162 3.179 9.951 2.408 9.53 C 1.646 9.097 1.056 8.501 0.633 7.744 C 0.211 6.974 0 6.139 0 5.127 C 0 4.116 0.204 3.226 0.614 2.456 C 1.036 1.674 1.615 1.072 2.352 0.651 C 3.089 0.216 3.933 0 4.851 0 C 5.769 0 6.577 0.205 7.278 0.614 C 7.979 1.023 8.527 1.614 8.926 2.383 C 9.325 3.141 9.53 4.032 9.542 5.055 Z M 7.007 3.99 C 6.874 3.377 6.62 2.901 6.246 2.565 C 5.871 2.228 5.419 2.059 4.851 2.059 C 4.284 2.059 3.795 2.233 3.384 2.582 C 2.974 2.918 2.691 3.388 2.534 3.99 Z\" fill=\"rgb(158, 161, 174)\"></path></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1ptcmnh\",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.542 10.162\" overflow=\"visible\"><path d=\"M 9.542 5.055 C 9.53 4.032 9.325 3.141 8.926 2.383 C 8.527 1.614 7.979 1.023 7.278 0.614 C 6.577 0.205 5.769 0 4.851 0 C 3.933 0 3.089 0.216 2.352 0.651 C 1.615 1.072 1.036 1.674 0.614 2.456 C 0.204 3.226 0 4.116 0 5.127 C 0 6.139 0.211 6.974 0.633 7.744 C 1.056 8.501 1.646 9.097 2.408 9.53 C 3.179 9.951 4.056 10.162 5.033 10.162 C 6.179 10.162 7.145 9.874 7.93 9.295 C 8.489 8.874 8.919 8.334 9.214 7.675 L 7 7.083 C 6.843 7.38 6.622 7.618 6.337 7.797 C 5.987 8.013 5.559 8.122 5.052 8.122 C 4.339 8.122 3.749 7.892 3.277 7.437 C 2.806 6.979 2.523 6.377 2.427 5.631 L 9.542 5.631 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1ju06ps\",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.473 1.931\" overflow=\"visible\"><path d=\"M 0 1.931 C 0.157 1.329 0.44 0.859 0.851 0.523 C 1.262 0.174 1.75 0 2.318 0 C 2.886 0 3.338 0.169 3.712 0.506 C 4.087 0.842 4.34 1.319 4.473 1.931 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true})]})]})})],speed:20,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1lnb8su-container\",isModuleExternal:true,nodeId:\"NMCrv805x\",scopeId:\"i9mMX8Wmo\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"right\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:60,height:\"100%\",hoverFactor:1,id:\"NMCrv805x\",layoutId:\"NMCrv805x\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-cl4kgj\",\"data-framer-name\":\"Deloitte\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-6gb99i\",\"data-framer-name\":\"graphic\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 83 24\"><path d=\"M 77.221 14.34 C 77.201 13.572 77.6 12.853 78.263 12.464 C 78.927 12.074 79.75 12.074 80.414 12.464 C 81.077 12.853 81.476 13.572 81.456 14.34 C 81.426 15.485 80.487 16.397 79.339 16.397 C 78.19 16.397 77.251 15.485 77.221 14.34\" fill=\"rgb(158, 162, 175)\"></path><path d=\"M 9.67 8.744 C 9.67 7.405 9.41 6.412 8.892 5.765 C 8.373 5.12 7.586 4.797 6.529 4.797 L 5.404 4.797 L 5.404 12.981 L 6.265 12.981 C 7.439 12.981 8.3 12.634 8.847 11.937 C 9.395 11.241 9.67 10.176 9.67 8.744 M 13.68 8.605 C 13.68 11.043 13.023 12.922 11.709 14.24 C 10.395 15.56 8.548 16.22 6.167 16.22 L 1.54 16.22 L 1.54 1.609 L 6.49 1.609 C 8.786 1.609 10.558 2.208 11.807 3.408 C 13.056 4.607 13.68 6.339 13.68 8.605 M 26.496 16.22 L 30.178 16.22 L 30.178 1.548 L 26.496 1.548 Z M 35.35 10.747 C 35.35 11.682 35.472 12.395 35.717 12.886 C 35.962 13.377 36.373 13.622 36.95 13.622 C 37.521 13.622 37.925 13.377 38.161 12.886 C 38.396 12.395 38.513 11.682 38.513 10.747 C 38.513 9.816 38.394 9.114 38.156 8.64 C 37.917 8.165 37.509 7.927 36.931 7.927 C 36.366 7.927 35.962 8.164 35.717 8.635 C 35.472 9.106 35.35 9.81 35.35 10.747 M 42.26 10.747 C 42.26 12.529 41.792 13.919 40.853 14.916 C 39.915 15.913 38.601 16.412 36.913 16.412 C 35.293 16.412 34.004 15.902 33.048 14.882 C 32.09 13.862 31.611 12.485 31.611 10.747 C 31.611 8.97 32.08 7.589 33.019 6.605 C 33.958 5.621 35.274 5.128 36.97 5.128 C 38.017 5.128 38.944 5.356 39.747 5.812 C 40.55 6.268 41.17 6.92 41.606 7.77 C 42.043 8.618 42.26 9.611 42.26 10.747 M 43.722 16.22 L 47.405 16.22 L 47.405 5.321 L 43.722 5.321 L 43.722 16.22 Z M 43.722 4.003 L 47.405 4.003 L 47.405 1.547 L 43.722 1.547 Z M 54.864 13.44 C 55.362 13.44 55.954 13.314 56.644 13.064 L 56.644 15.806 C 56.148 16.023 55.676 16.179 55.227 16.272 C 54.779 16.365 54.252 16.412 53.65 16.412 C 52.414 16.412 51.522 16.102 50.975 15.483 C 50.43 14.864 50.157 13.914 50.157 12.632 L 50.157 8.14 L 48.868 8.14 L 48.868 5.322 L 50.157 5.322 L 50.157 2.539 L 53.867 1.895 L 53.867 5.322 L 56.217 5.322 L 56.217 8.14 L 53.867 8.14 L 53.867 12.381 C 53.867 13.087 54.2 13.44 54.865 13.44 M 63.387 13.44 C 63.884 13.44 64.475 13.314 65.167 13.064 L 65.167 15.806 C 64.671 16.023 64.198 16.179 63.75 16.272 C 63.3 16.365 62.775 16.412 62.172 16.412 C 60.936 16.412 60.044 16.102 59.499 15.483 C 58.953 14.864 58.679 13.914 58.679 12.632 L 58.679 8.14 L 57.389 8.14 L 57.389 5.322 L 58.679 5.322 L 58.679 2.496 L 62.389 1.895 L 62.389 5.322 L 64.739 5.322 L 64.739 8.14 L 62.389 8.14 L 62.389 12.381 C 62.389 13.087 62.722 13.44 63.387 13.44 M 69.812 9.419 C 69.863 8.822 70.034 8.385 70.326 8.106 C 70.619 7.827 70.98 7.688 71.413 7.688 C 71.885 7.688 72.26 7.844 72.538 8.16 C 72.818 8.473 72.964 8.893 72.976 9.419 Z M 75.005 6.413 C 74.13 5.557 72.888 5.129 71.282 5.129 C 69.593 5.129 68.294 5.621 67.383 6.605 C 66.473 7.59 66.017 9.002 66.017 10.842 C 66.017 12.625 66.51 13.999 67.492 14.964 C 68.474 15.929 69.854 16.412 71.63 16.412 C 72.483 16.412 73.218 16.354 73.833 16.238 C 74.453 16.121 75.053 15.912 75.611 15.619 L 75.046 13.163 C 74.628 13.333 74.231 13.464 73.856 13.549 C 73.314 13.675 72.72 13.738 72.072 13.738 C 71.363 13.738 70.802 13.565 70.392 13.219 C 69.981 12.872 69.762 12.394 69.737 11.785 L 76.318 11.785 L 76.318 10.112 C 76.318 8.502 75.881 7.269 75.005 6.413 M 18.566 9.419 C 18.617 8.822 18.788 8.385 19.08 8.106 C 19.372 7.827 19.734 7.688 20.168 7.688 C 20.638 7.688 21.014 7.844 21.293 8.16 C 21.572 8.473 21.718 8.893 21.73 9.419 L 18.567 9.419 Z M 23.76 6.413 C 22.884 5.557 21.643 5.129 20.036 5.129 C 18.347 5.129 17.048 5.621 16.138 6.605 C 15.228 7.59 14.772 9.002 14.772 10.842 C 14.772 12.625 15.263 13.999 16.246 14.964 C 17.228 15.929 18.608 16.412 20.384 16.412 C 21.238 16.412 21.972 16.354 22.587 16.238 C 23.208 16.121 23.807 15.912 24.366 15.619 L 23.799 13.163 C 23.382 13.333 22.985 13.464 22.61 13.549 C 22.068 13.675 21.473 13.738 20.826 13.738 C 20.117 13.738 19.556 13.565 19.146 13.219 C 18.735 12.872 18.516 12.394 18.491 11.785 L 25.072 11.785 L 25.072 10.112 C 25.072 8.502 24.635 7.269 23.76 6.413\" fill=\"rgb(158, 161, 174)\"></path></svg>',svgContentId:10467928892,withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1nro9bc\",\"data-framer-name\":\"Accenture\",children:/*#__PURE__*/_jsxs(SVG,{className:\"framer-ip4brl\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 106.4 27.935\" overflow=\"visible\"><g><path d=\"M 61.86 3.191 L 61.86 0 L 72.344 4.233 L 72.344 6.837 L 61.86 11.07 L 61.86 7.814 L 67.981 5.535 Z\" fill=\"rgb(158, 161, 174)\"></path><path d=\"M 4.037 27.935 C 1.823 27.935 0 26.828 0 24.353 L 0 24.223 C 0 21.228 2.605 20.186 5.795 20.186 L 7.293 20.186 L 7.293 19.6 C 7.293 18.363 6.772 17.647 5.47 17.647 C 4.298 17.647 3.712 18.298 3.647 19.209 L 0.391 19.209 C 0.651 16.474 2.8 15.172 5.665 15.172 C 8.595 15.172 10.744 16.409 10.744 19.47 L 10.744 27.674 L 7.423 27.674 L 7.423 26.242 C 6.772 27.153 5.665 27.935 4.037 27.935 Z M 7.293 23.637 L 7.293 22.465 L 5.926 22.465 C 4.233 22.465 3.386 22.921 3.386 24.028 L 3.386 24.158 C 3.386 25.005 3.907 25.591 5.079 25.591 C 6.251 25.526 7.293 24.874 7.293 23.637 Z M 18.493 27.935 C 15.107 27.935 12.633 25.851 12.633 21.684 L 12.633 21.488 C 12.633 17.321 15.237 15.107 18.493 15.107 C 21.293 15.107 23.572 16.54 23.833 19.73 L 20.577 19.73 C 20.381 18.558 19.73 17.777 18.558 17.777 C 17.126 17.777 16.084 18.949 16.084 21.358 L 16.084 21.749 C 16.084 24.223 16.995 25.33 18.558 25.33 C 19.73 25.33 20.577 24.484 20.772 23.116 L 23.898 23.116 C 23.702 25.981 21.814 27.935 18.493 27.935 Z M 31.256 27.935 C 27.87 27.935 25.395 25.851 25.395 21.684 L 25.395 21.488 C 25.395 17.321 28 15.107 31.256 15.107 C 34.056 15.107 36.335 16.54 36.595 19.73 L 33.34 19.73 C 33.144 18.558 32.493 17.777 31.321 17.777 C 29.888 17.777 28.847 18.949 28.847 21.358 L 28.847 21.749 C 28.847 24.223 29.758 25.33 31.321 25.33 C 32.493 25.33 33.34 24.484 33.535 23.116 L 36.66 23.116 C 36.465 25.981 34.577 27.935 31.256 27.935 Z M 44.084 27.935 C 40.567 27.935 38.158 25.851 38.158 21.749 L 38.158 21.488 C 38.158 17.386 40.698 15.107 44.019 15.107 C 47.079 15.107 49.619 16.8 49.619 20.902 L 49.619 22.4 L 41.609 22.4 C 41.74 24.614 42.716 25.46 44.149 25.46 C 45.451 25.46 46.167 24.744 46.428 23.898 L 49.619 23.898 C 49.228 26.177 47.274 27.935 44.084 27.935 Z M 41.674 20.121 L 46.233 20.121 C 46.167 18.298 45.321 17.516 43.953 17.516 C 42.912 17.581 41.935 18.167 41.674 20.121 Z M 51.702 15.433 L 55.153 15.433 L 55.153 17.256 C 55.74 16.084 56.977 15.172 58.865 15.172 C 61.079 15.172 62.577 16.54 62.577 19.47 L 62.577 27.674 L 59.126 27.674 L 59.126 19.991 C 59.126 18.558 58.54 17.907 57.302 17.907 C 56.13 17.907 55.153 18.623 55.153 20.186 L 55.153 27.674 L 51.702 27.674 Z M 68.893 11.721 L 68.893 15.433 L 71.237 15.433 L 71.237 17.972 L 68.893 17.972 L 68.893 23.767 C 68.893 24.679 69.284 25.135 70.13 25.135 C 70.651 25.135 70.977 25.07 71.302 24.94 L 71.302 27.609 C 70.912 27.74 70.195 27.87 69.349 27.87 C 66.679 27.87 65.442 26.633 65.442 24.158 L 65.442 17.972 L 64.009 17.972 L 64.009 15.433 L 65.442 15.433 L 65.442 13.153 Z M 84.13 27.674 L 80.744 27.674 L 80.744 25.851 C 80.158 27.023 78.986 27.935 77.163 27.935 C 74.949 27.935 73.321 26.567 73.321 23.702 L 73.321 15.433 L 76.772 15.433 L 76.772 23.247 C 76.772 24.679 77.358 25.33 78.53 25.33 C 79.702 25.33 80.679 24.549 80.679 23.051 L 80.679 15.433 L 84.13 15.433 Z M 86.67 15.433 L 90.121 15.433 L 90.121 17.712 C 90.837 16.084 92.009 15.302 93.833 15.302 L 93.833 18.688 C 91.488 18.688 90.121 19.405 90.121 21.423 L 90.121 27.74 L 86.67 27.74 Z M 100.8 27.935 C 97.284 27.935 94.874 25.851 94.874 21.749 L 94.874 21.488 C 94.874 17.386 97.414 15.107 100.735 15.107 C 103.795 15.107 106.335 16.8 106.335 20.902 L 106.335 22.4 L 98.391 22.4 C 98.521 24.614 99.498 25.46 100.93 25.46 C 102.233 25.46 102.949 24.744 103.209 23.898 L 106.4 23.898 C 105.879 26.177 103.991 27.935 100.8 27.935 Z M 98.326 20.121 L 102.949 20.121 C 102.884 18.298 102.037 17.516 100.67 17.516 C 99.628 17.581 98.651 18.167 98.326 20.121 Z\" fill=\"rgb(158, 161, 174)\"></path></g></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-rl6p0p\",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.484 11.07\" overflow=\"visible\"><path d=\"M 0 3.191 L 0 0 L 10.484 4.233 L 10.484 6.837 L 0 11.07 L 0 7.814 L 6.121 5.535 Z\" fill=\"rgb(158, 161, 174)\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsxs(SVG,{className:\"framer-18b0kct\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 106.4 16.214\" overflow=\"visible\"><path d=\"M 4.037 16.214 C 1.823 16.214 0 15.107 0 12.633 L 0 12.502 C 0 9.507 2.605 8.465 5.795 8.465 L 7.293 8.465 L 7.293 7.879 C 7.293 6.642 6.772 5.926 5.47 5.926 C 4.298 5.926 3.712 6.577 3.647 7.488 L 0.391 7.488 C 0.651 4.753 2.8 3.451 5.665 3.451 C 8.595 3.451 10.744 4.688 10.744 7.749 L 10.744 15.953 L 7.423 15.953 L 7.423 14.521 C 6.772 15.433 5.665 16.214 4.037 16.214 Z M 7.293 11.916 L 7.293 10.744 L 5.926 10.744 C 4.233 10.744 3.386 11.2 3.386 12.307 L 3.386 12.437 C 3.386 13.284 3.907 13.87 5.079 13.87 C 6.251 13.805 7.293 13.153 7.293 11.916 Z M 18.493 16.214 C 15.107 16.214 12.633 14.13 12.633 9.963 L 12.633 9.767 C 12.633 5.6 15.237 3.386 18.493 3.386 C 21.293 3.386 23.572 4.819 23.833 8.009 L 20.577 8.009 C 20.381 6.837 19.73 6.056 18.558 6.056 C 17.126 6.056 16.084 7.228 16.084 9.637 L 16.084 10.028 C 16.084 12.502 16.995 13.609 18.558 13.609 C 19.73 13.609 20.577 12.763 20.772 11.395 L 23.898 11.395 C 23.702 14.26 21.814 16.214 18.493 16.214 Z M 31.256 16.214 C 27.87 16.214 25.395 14.13 25.395 9.963 L 25.395 9.767 C 25.395 5.6 28 3.386 31.256 3.386 C 34.056 3.386 36.335 4.819 36.595 8.009 L 33.34 8.009 C 33.144 6.837 32.493 6.056 31.321 6.056 C 29.888 6.056 28.847 7.228 28.847 9.637 L 28.847 10.028 C 28.847 12.502 29.758 13.609 31.321 13.609 C 32.493 13.609 33.34 12.763 33.535 11.395 L 36.66 11.395 C 36.465 14.26 34.577 16.214 31.256 16.214 Z M 44.084 16.214 C 40.567 16.214 38.158 14.13 38.158 10.028 L 38.158 9.767 C 38.158 5.665 40.698 3.386 44.019 3.386 C 47.079 3.386 49.619 5.079 49.619 9.181 L 49.619 10.679 L 41.609 10.679 C 41.74 12.893 42.716 13.74 44.149 13.74 C 45.451 13.74 46.167 13.023 46.428 12.177 L 49.619 12.177 C 49.228 14.456 47.274 16.214 44.084 16.214 Z M 41.674 8.4 L 46.233 8.4 C 46.167 6.577 45.321 5.795 43.953 5.795 C 42.912 5.86 41.935 6.447 41.674 8.4 Z M 51.702 3.712 L 55.153 3.712 L 55.153 5.535 C 55.74 4.363 56.977 3.451 58.865 3.451 C 61.079 3.451 62.577 4.819 62.577 7.749 L 62.577 15.953 L 59.126 15.953 L 59.126 8.27 C 59.126 6.837 58.54 6.186 57.302 6.186 C 56.13 6.186 55.153 6.902 55.153 8.465 L 55.153 15.953 L 51.702 15.953 Z M 68.893 0 L 68.893 3.712 L 71.237 3.712 L 71.237 6.251 L 68.893 6.251 L 68.893 12.047 C 68.893 12.958 69.284 13.414 70.13 13.414 C 70.651 13.414 70.977 13.349 71.302 13.219 L 71.302 15.888 C 70.912 16.019 70.195 16.149 69.349 16.149 C 66.679 16.149 65.442 14.912 65.442 12.437 L 65.442 6.251 L 64.009 6.251 L 64.009 3.712 L 65.442 3.712 L 65.442 1.433 Z M 84.13 15.953 L 80.744 15.953 L 80.744 14.13 C 80.158 15.302 78.986 16.214 77.163 16.214 C 74.949 16.214 73.321 14.847 73.321 11.981 L 73.321 3.712 L 76.772 3.712 L 76.772 11.526 C 76.772 12.958 77.358 13.609 78.53 13.609 C 79.702 13.609 80.679 12.828 80.679 11.33 L 80.679 3.712 L 84.13 3.712 Z M 86.67 3.712 L 90.121 3.712 L 90.121 5.991 C 90.837 4.363 92.009 3.581 93.833 3.581 L 93.833 6.967 C 91.488 6.967 90.121 7.684 90.121 9.702 L 90.121 16.019 L 86.67 16.019 Z M 100.8 16.214 C 97.284 16.214 94.874 14.13 94.874 10.028 L 94.874 9.767 C 94.874 5.665 97.414 3.386 100.735 3.386 C 103.795 3.386 106.335 5.079 106.335 9.181 L 106.335 10.679 L 98.391 10.679 C 98.521 12.893 99.498 13.74 100.93 13.74 C 102.233 13.74 102.949 13.023 103.209 12.177 L 106.4 12.177 C 105.879 14.456 103.991 16.214 100.8 16.214 Z M 98.326 8.4 L 102.949 8.4 C 102.884 6.577 102.037 5.795 100.67 5.795 C 99.628 5.86 98.651 6.447 98.326 8.4 Z\" fill=\"rgb(158, 161, 174)\"></path></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1lj21h5\",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.744 12.763\" overflow=\"visible\"><path d=\"M 4.037 12.763 C 1.823 12.763 0 11.656 0 9.181 L 0 9.051 C 0 6.056 2.605 5.014 5.795 5.014 L 7.293 5.014 L 7.293 4.428 C 7.293 3.191 6.772 2.474 5.47 2.474 C 4.298 2.474 3.712 3.126 3.647 4.037 L 0.391 4.037 C 0.651 1.302 2.8 0 5.665 0 C 8.595 0 10.744 1.237 10.744 4.298 L 10.744 12.502 L 7.423 12.502 L 7.423 11.07 C 6.772 11.981 5.665 12.763 4.037 12.763 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-we8bmv\",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.907 3.126\" overflow=\"visible\"><path d=\"M 3.907 1.172 L 3.907 0 L 2.54 0 C 0.847 0 0 0.456 0 1.563 L 0 1.693 C 0 2.54 0.521 3.126 1.693 3.126 C 2.865 3.06 3.907 2.409 3.907 1.172 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-mbo9sn\",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.265 12.828\" overflow=\"visible\"><path d=\"M 5.86 12.828 C 2.474 12.828 0 10.744 0 6.577 L 0 6.381 C 0 2.214 2.605 0 5.86 0 C 8.66 0 10.94 1.433 11.2 4.623 L 7.944 4.623 C 7.749 3.451 7.098 2.67 5.926 2.67 C 4.493 2.67 3.451 3.842 3.451 6.251 L 3.451 6.642 C 3.451 9.116 4.363 10.223 5.926 10.223 C 7.098 10.223 7.944 9.377 8.14 8.009 L 11.265 8.009 C 11.07 10.874 9.181 12.828 5.86 12.828 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-hhcwde\",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.265 12.828\" overflow=\"visible\"><path d=\"M 5.86 12.828 C 2.474 12.828 0 10.744 0 6.577 L 0 6.381 C 0 2.214 2.605 0 5.86 0 C 8.66 0 10.94 1.433 11.2 4.623 L 7.944 4.623 C 7.749 3.451 7.098 2.67 5.926 2.67 C 4.493 2.67 3.451 3.842 3.451 6.251 L 3.451 6.642 C 3.451 9.116 4.363 10.223 5.926 10.223 C 7.098 10.223 7.944 9.377 8.14 8.009 L 11.265 8.009 C 11.07 10.874 9.181 12.828 5.86 12.828 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-xva824\",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.46 12.828\" overflow=\"visible\"><path d=\"M 5.926 12.828 C 2.409 12.828 0 10.744 0 6.642 L 0 6.381 C 0 2.279 2.54 0 5.86 0 C 8.921 0 11.46 1.693 11.46 5.795 L 11.46 7.293 L 3.451 7.293 C 3.581 9.507 4.558 10.353 5.991 10.353 C 7.293 10.353 8.009 9.637 8.27 8.791 L 11.46 8.791 C 11.07 11.07 9.116 12.828 5.926 12.828 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-18372lf\",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.558 2.605\" overflow=\"visible\"><path d=\"M 0 2.605 L 4.558 2.605 C 4.493 0.781 3.647 0 2.279 0 C 1.237 0.065 0.26 0.651 0 2.605 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-ih1uyy\",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.874 12.502\" overflow=\"visible\"><path d=\"M 0 0.26 L 3.451 0.26 L 3.451 2.084 C 4.037 0.912 5.274 0 7.163 0 C 9.377 0 10.874 1.367 10.874 4.298 L 10.874 12.502 L 7.423 12.502 L 7.423 4.819 C 7.423 3.386 6.837 2.735 5.6 2.735 C 4.428 2.735 3.451 3.451 3.451 5.014 L 3.451 12.502 L 0 12.502 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-19wphgu\",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.293 16.149\" overflow=\"visible\"><path d=\"M 4.884 0 L 4.884 3.712 L 7.228 3.712 L 7.228 6.251 L 4.884 6.251 L 4.884 12.047 C 4.884 12.958 5.274 13.414 6.121 13.414 C 6.642 13.414 6.967 13.349 7.293 13.219 L 7.293 15.888 C 6.902 16.019 6.186 16.149 5.34 16.149 C 2.67 16.149 1.433 14.912 1.433 12.437 L 1.433 6.251 L 0 6.251 L 0 3.712 L 1.433 3.712 L 1.433 1.433 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-61wpqb\",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.809 12.502\" overflow=\"visible\"><path d=\"M 10.809 12.242 L 7.423 12.242 L 7.423 10.419 C 6.837 11.591 5.665 12.502 3.842 12.502 C 1.628 12.502 0 11.135 0 8.27 L 0 0 L 3.451 0 L 3.451 7.814 C 3.451 9.247 4.037 9.898 5.209 9.898 C 6.381 9.898 7.358 9.116 7.358 7.619 L 7.358 0 L 10.809 0 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-nro979\",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.163 12.437\" overflow=\"visible\"><path d=\"M 0 0.13 L 3.451 0.13 L 3.451 2.409 C 4.167 0.781 5.34 0 7.163 0 L 7.163 3.386 C 4.819 3.386 3.451 4.102 3.451 6.121 L 3.451 12.437 L 0 12.437 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-eq5c1i\",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.526 12.828\" overflow=\"visible\"><path d=\"M 5.926 12.828 C 2.409 12.828 0 10.744 0 6.642 L 0 6.381 C 0 2.279 2.54 0 5.86 0 C 8.921 0 11.46 1.693 11.46 5.795 L 11.46 7.293 L 3.516 7.293 C 3.647 9.507 4.623 10.353 6.056 10.353 C 7.358 10.353 8.074 9.637 8.335 8.791 L 11.526 8.791 C 11.005 11.07 9.116 12.828 5.926 12.828 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-j7vhmh\",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.623 2.605\" overflow=\"visible\"><path d=\"M 0 2.605 L 4.623 2.605 C 4.558 0.781 3.712 0 2.344 0 C 1.302 0.065 0.326 0.651 0 2.605 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true})]})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-z870s0\",\"data-framer-name\":\"CBRE\",children:/*#__PURE__*/_jsxs(SVG,{className:\"framer-17xj9um\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 80.462 20\" overflow=\"visible\"><g><g transform=\"translate(21.666 0)\"><path d=\"M 14.793 9.677 C 17.336 8.83 17.797 6.697 17.792 4.957 C 17.786 2.298 15.911 0.002 10.361 0.002 L 0 0 L 0 19.962 L 10.333 19.962 C 15.917 19.962 17.971 17.096 17.971 14.224 C 17.971 10.746 14.793 9.677 14.793 9.677 M 4.917 4.343 L 11.893 4.343 L 11.918 4.348 C 12.698 4.478 13.272 5.15 13.278 5.941 C 13.278 6.746 12.664 7.503 11.852 7.613 L 4.921 7.625 Z M 11.557 15.309 L 4.917 15.309 L 4.917 11.969 L 11.719 11.969 L 11.735 11.971 C 12.581 12.067 13.223 12.771 13.223 13.606 C 13.223 14.518 12.463 15.297 11.557 15.309\" fill=\"rgb(158, 161, 174)\"></path></g><g transform=\"translate(62.95 0)\"><path d=\"M 0 0 L 17.508 0 L 17.497 4.355 L 4.865 4.355 L 4.878 7.573 L 16.266 7.573 L 16.266 11.952 L 4.878 11.952 L 4.878 15.434 L 17.512 15.434 L 17.509 20 L 0 20\" fill=\"rgb(158, 161, 174)\"></path></g><g transform=\"translate(42.104 0)\"><path d=\"M 10.587 0 L 0 0 L 0 19.969 L 4.861 19.969 L 4.861 11.889 L 10.216 11.884 C 11.749 11.907 12.942 13.162 12.942 14.712 L 12.942 19.951 L 17.7 19.949 L 17.691 13.506 C 17.691 10.52 14.807 9.637 14.807 9.637 C 14.807 9.637 17.756 8.756 17.756 5.226 C 17.756 0.906 14.045 0 10.587 0 M 13.241 6.195 C 13.153 6.852 12.497 7.564 11.677 7.564 L 4.844 7.566 L 4.844 4.37 L 11.68 4.37 C 12.497 4.37 13.137 4.97 13.241 5.76\" fill=\"rgb(158, 161, 174)\"></path></g><g transform=\"translate(0 0)\"><path d=\"M 18.642 15.169 C 18.573 15.17 11.996 15.297 9.726 15.076 C 6.071 14.719 4.775 12.01 4.775 9.8 C 4.775 7.042 6.655 5.015 9.565 4.634 C 10.951 4.452 18.521 4.538 18.602 4.538 L 18.76 4.541 L 18.777 0 L 18.616 0 L 10.047 0.016 C 9.092 0.075 7.51 0.171 5.889 0.833 C 4.337 1.544 2.989 2.635 1.969 4.004 C 0.686 5.722 -0.004 7.81 0 9.955 C 0 10.635 0.054 11.309 0.164 11.955 C 0.78 14.982 2.765 17.489 5.611 18.836 C 6.572 19.259 8.055 19.765 11.043 19.934 L 12.653 19.967 L 18.627 19.972 L 18.785 19.972 L 18.801 15.167\" fill=\"rgb(158, 161, 174)\"></path></g></g></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-18jmejf\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 17.971 19.962\" overflow=\"visible\"><g><path d=\"M 14.793 9.677 C 17.336 8.83 17.797 6.697 17.792 4.957 C 17.786 2.298 15.911 0.002 10.361 0.002 L 0 0 L 0 19.962 L 10.333 19.962 C 15.917 19.962 17.971 17.096 17.971 14.224 C 17.971 10.746 14.793 9.677 14.793 9.677 M 4.917 4.343 L 11.893 4.343 L 11.918 4.348 C 12.698 4.478 13.272 5.15 13.278 5.941 C 13.278 6.746 12.664 7.503 11.852 7.613 L 4.921 7.625 Z M 11.557 15.309 L 4.917 15.309 L 4.917 11.969 L 11.719 11.969 L 11.735 11.971 C 12.581 12.067 13.223 12.771 13.223 13.606 C 13.223 14.518 12.463 15.297 11.557 15.309\" fill=\"rgb(158, 161, 174)\"></path></g></svg>',withExternalLayout:true,children:/*#__PURE__*/_jsxs(SVG,{className:\"framer-uhdgwt\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 17.971 19.962\" overflow=\"visible\"><path d=\"M 14.793 9.677 C 17.336 8.83 17.797 6.697 17.792 4.957 C 17.786 2.298 15.911 0.002 10.361 0.002 L 0 0 L 0 19.962 L 10.333 19.962 C 15.917 19.962 17.971 17.096 17.971 14.224 C 17.971 10.746 14.793 9.677 14.793 9.677 M 4.917 4.343 L 11.893 4.343 L 11.918 4.348 C 12.698 4.478 13.272 5.15 13.278 5.941 C 13.278 6.746 12.664 7.503 11.852 7.613 L 4.921 7.625 Z M 11.557 15.309 L 4.917 15.309 L 4.917 11.969 L 11.719 11.969 L 11.735 11.971 C 12.581 12.067 13.223 12.771 13.223 13.606 C 13.223 14.518 12.463 15.297 11.557 15.309\" fill=\"rgb(158, 161, 174)\"></path></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-ogt2d6\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 17.971 19.962\" overflow=\"visible\"><path d=\"M 14.793 9.677 C 17.336 8.83 17.797 6.697 17.792 4.957 C 17.786 2.298 15.911 0.002 10.361 0.002 L 0 0 L 0 19.962 L 10.333 19.962 C 15.917 19.962 17.971 17.096 17.971 14.224 C 17.971 10.746 14.793 9.677 14.793 9.677\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1sat7rq\",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.36 3.281\" overflow=\"visible\"><path d=\"M 0 0 L 6.976 0 L 7 0.005 C 7.78 0.135 8.354 0.807 8.36 1.598 C 8.36 2.403 7.746 3.16 6.935 3.27 L 0.003 3.281 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-vcasp6\",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.305 3.341\" overflow=\"visible\"><path d=\"M 6.639 3.341 L 0 3.341 L 0 0 L 6.802 0 L 6.817 0.002 C 7.663 0.098 8.305 0.802 8.305 1.637 C 8.305 2.55 7.546 3.328 6.639 3.341\" fill=\"transparent\"></path></svg>',withExternalLayout:true})]})}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1329bvm\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 17.512 20\" overflow=\"visible\"><g><path d=\"M 0 0 L 17.508 0 L 17.497 4.355 L 4.865 4.355 L 4.878 7.573 L 16.266 7.573 L 16.266 11.952 L 4.878 11.952 L 4.878 15.434 L 17.512 15.434 L 17.509 20 L 0 20\" fill=\"rgb(158, 161, 174)\"></path></g></svg>',withExternalLayout:true,children:/*#__PURE__*/_jsx(SVG,{className:\"framer-14xesfj\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 17.512 20\" overflow=\"visible\"><path d=\"M 0 0 L 17.508 0 L 17.497 4.355 L 4.865 4.355 L 4.878 7.573 L 16.266 7.573 L 16.266 11.952 L 4.878 11.952 L 4.878 15.434 L 17.512 15.434 L 17.509 20 L 0 20\" fill=\"rgb(158, 161, 174)\"></path></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(SVG,{className:\"framer-5kkoe8\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 17.756 19.969\" overflow=\"visible\"><g><path d=\"M 10.587 0 L 0 0 L 0 19.969 L 4.861 19.969 L 4.861 11.889 L 10.216 11.884 C 11.749 11.907 12.942 13.162 12.942 14.712 L 12.942 19.951 L 17.7 19.949 L 17.691 13.506 C 17.691 10.52 14.807 9.637 14.807 9.637 C 14.807 9.637 17.756 8.756 17.756 5.226 C 17.756 0.906 14.045 0 10.587 0 M 13.241 6.195 C 13.153 6.852 12.497 7.564 11.677 7.564 L 4.844 7.566 L 4.844 4.37 L 11.68 4.37 C 12.497 4.37 13.137 4.97 13.241 5.76\" fill=\"rgb(158, 161, 174)\"></path></g></svg>',withExternalLayout:true,children:/*#__PURE__*/_jsxs(SVG,{className:\"framer-1d50i5x\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 17.756 19.969\" overflow=\"visible\"><path d=\"M 10.587 0 L 0 0 L 0 19.969 L 4.861 19.969 L 4.861 11.889 L 10.216 11.884 C 11.749 11.907 12.942 13.162 12.942 14.712 L 12.942 19.951 L 17.7 19.949 L 17.691 13.506 C 17.691 10.52 14.807 9.637 14.807 9.637 C 14.807 9.637 17.756 8.756 17.756 5.226 C 17.756 0.906 14.045 0 10.587 0 M 13.241 6.195 C 13.153 6.852 12.497 7.564 11.677 7.564 L 4.844 7.566 L 4.844 4.37 L 11.68 4.37 C 12.497 4.37 13.137 4.97 13.241 5.76\" fill=\"rgb(158, 161, 174)\"></path></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-18xrdcg\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 17.756 19.969\" overflow=\"visible\"><path d=\"M 10.587 0 L 0 0 L 0 19.969 L 4.861 19.969 L 4.861 11.889 L 10.216 11.884 C 11.749 11.907 12.942 13.162 12.942 14.712 L 12.942 19.951 L 17.7 19.949 L 17.691 13.506 C 17.691 10.52 14.807 9.637 14.807 9.637 C 14.807 9.637 17.756 8.756 17.756 5.226 C 17.756 0.906 14.045 0 10.587 0\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-8l8yj6\",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.397 3.197\" overflow=\"visible\"><path d=\"M 8.397 1.825 C 8.309 2.482 7.653 3.195 6.834 3.195 L 0 3.197 L 0 0 L 6.836 0 C 7.653 0 8.293 0.6 8.397 1.39\" fill=\"transparent\"></path></svg>',withExternalLayout:true})]})}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1jjc04o\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 18.801 19.972\" overflow=\"visible\"><g><path d=\"M 18.642 15.169 C 18.573 15.17 11.996 15.297 9.726 15.076 C 6.071 14.719 4.775 12.01 4.775 9.8 C 4.775 7.042 6.655 5.015 9.565 4.634 C 10.951 4.452 18.521 4.538 18.602 4.538 L 18.76 4.541 L 18.777 0 L 18.616 0 L 10.047 0.016 C 9.092 0.075 7.51 0.171 5.889 0.833 C 4.337 1.544 2.989 2.635 1.969 4.004 C 0.686 5.722 -0.004 7.81 0 9.955 C 0 10.635 0.054 11.309 0.164 11.955 C 0.78 14.982 2.765 17.489 5.611 18.836 C 6.572 19.259 8.055 19.765 11.043 19.934 L 12.653 19.967 L 18.627 19.972 L 18.785 19.972 L 18.801 15.167\" fill=\"rgb(158, 161, 174)\"></path></g></svg>',withExternalLayout:true,children:/*#__PURE__*/_jsx(SVG,{className:\"framer-zp0wqo\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 18.801 19.972\" overflow=\"visible\"><path d=\"M 18.642 15.169 C 18.573 15.17 11.996 15.297 9.726 15.076 C 6.071 14.719 4.775 12.01 4.775 9.8 C 4.775 7.042 6.655 5.015 9.565 4.634 C 10.951 4.452 18.521 4.538 18.602 4.538 L 18.76 4.541 L 18.777 0 L 18.616 0 L 10.047 0.016 C 9.092 0.075 7.51 0.171 5.889 0.833 C 4.337 1.544 2.989 2.635 1.969 4.004 C 0.686 5.722 -0.004 7.81 0 9.955 C 0 10.635 0.054 11.309 0.164 11.955 C 0.78 14.982 2.765 17.489 5.611 18.836 C 6.572 19.259 8.055 19.765 11.043 19.934 L 12.653 19.967 L 18.627 19.972 L 18.785 19.972 L 18.801 15.167\" fill=\"rgb(158, 161, 174)\"></path></svg>',withExternalLayout:true})})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-qxgxee\",\"data-framer-name\":\"Photoroom\",children:/*#__PURE__*/_jsxs(SVG,{className:\"framer-jd578i\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 131.94 24.034\" overflow=\"visible\"><g><path d=\"M 0 7.21 C 0 4.97 0 3.85 0.366 2.967 C 0.854 1.789 1.789 0.854 2.967 0.366 C 3.85 0 4.97 0 7.21 0 L 16.824 0 C 19.063 0 20.183 0 21.066 0.366 C 22.244 0.854 23.18 1.79 23.668 2.967 C 24.034 3.85 24.034 4.97 24.034 7.21 L 24.034 16.824 C 24.034 19.063 24.034 20.183 23.668 21.066 C 23.18 22.244 22.244 23.18 21.066 23.668 C 20.183 24.034 19.063 24.034 16.823 24.034 L 7.21 24.034 C 4.97 24.034 3.85 24.034 2.967 23.668 C 1.789 23.18 0.854 22.244 0.366 21.066 C 0 20.183 0 19.063 0 16.823 Z M 14.504 8.424 C 15.258 8.437 15.861 9.052 15.861 9.805 C 15.861 10.559 15.258 11.174 14.504 11.187 L 7.042 11.187 C 6.602 11.187 6.18 11.362 5.869 11.673 C 5.558 11.984 5.383 12.406 5.383 12.846 L 5.383 17.268 C 5.383 18.184 6.126 18.926 7.042 18.926 C 7.957 18.926 8.7 18.184 8.7 17.268 L 8.7 14.504 L 14.504 14.504 C 17.099 14.504 19.203 12.4 19.203 9.806 C 19.203 7.21 17.099 5.107 14.504 5.107 L 7.042 5.107 C 6.126 5.107 5.383 5.849 5.383 6.765 C 5.383 7.681 6.126 8.424 7.042 8.424 Z M 14.504 15.886 L 13.817 15.886 L 16.372 18.44 C 17.019 19.088 18.069 19.088 18.717 18.44 C 19.364 17.793 19.364 16.743 18.717 16.095 L 17.638 15.017 C 16.692 15.587 15.609 15.888 14.504 15.886 Z M 30.643 4.807 L 36.533 4.807 C 39.477 4.807 41.508 6.837 41.508 9.681 C 41.508 12.524 39.477 14.555 36.533 14.555 L 33.689 14.555 L 33.689 19.023 L 30.643 19.023 Z M 33.689 11.814 L 36.228 11.814 C 37.649 11.814 38.462 11.001 38.462 9.681 C 38.462 8.361 37.65 7.549 36.228 7.549 L 33.689 7.549 Z\" fill=\"rgb(158, 161, 174)\"></path><path d=\"M 45.636 18.971 L 42.792 18.971 L 42.792 4.755 L 45.636 4.755 L 45.636 9.324 L 45.738 9.324 C 46.448 8.511 47.261 8.004 48.479 8.004 C 50.815 8.004 52.44 9.629 52.44 12.37 L 52.44 18.971 L 49.596 18.971 L 49.596 12.776 C 49.596 11.355 48.885 10.542 47.667 10.542 C 46.448 10.542 45.636 11.456 45.636 12.777 L 45.636 18.971 Z M 70.108 18.971 L 72.139 18.971 L 72.139 16.331 L 70.616 16.331 C 70.006 16.331 69.6 15.925 69.6 15.315 L 69.6 10.847 L 72.139 10.847 L 72.139 8.207 L 69.6 8.207 L 69.6 5.363 L 67.163 5.363 L 66.757 8.207 L 65.03 8.207 L 65.03 10.847 L 66.757 10.847 L 66.757 15.823 C 66.757 17.854 67.874 18.971 70.108 18.971 Z\" fill=\"rgb(158, 161, 174)\"></path><path d=\"M 78.413 7.925 C 81.662 7.925 83.693 9.955 83.693 13.51 C 83.693 17.064 81.662 19.095 78.413 19.095 C 75.163 19.095 73.132 17.064 73.132 13.51 C 73.132 9.955 75.163 7.925 78.413 7.925 Z M 78.413 10.463 C 77.093 10.463 75.975 11.377 75.975 13.51 C 75.975 15.642 77.093 16.556 78.413 16.556 C 79.733 16.556 80.85 15.643 80.85 13.51 C 80.85 11.377 79.733 10.463 78.413 10.463 Z M 97.805 19.095 C 94.556 19.095 92.525 17.064 92.525 13.51 C 92.525 9.955 94.556 7.925 97.805 7.925 C 101.055 7.925 103.086 9.955 103.086 13.51 C 103.086 17.064 101.055 19.095 97.805 19.095 Z M 97.805 16.556 C 99.125 16.556 100.243 15.642 100.243 13.51 C 100.243 11.377 99.125 10.463 97.805 10.463 C 96.485 10.463 95.368 11.377 95.368 13.51 C 95.368 15.643 96.485 16.556 97.805 16.556 Z M 109.582 19.095 C 106.332 19.095 104.301 17.064 104.301 13.51 C 104.301 9.955 106.332 7.925 109.582 7.925 C 112.832 7.925 114.863 9.955 114.863 13.51 C 114.863 17.064 112.832 19.095 109.582 19.095 Z M 109.582 16.556 C 110.902 16.556 112.019 15.642 112.019 13.51 C 112.019 11.377 110.902 10.463 109.582 10.463 C 108.262 10.463 107.145 11.377 107.145 13.51 C 107.145 15.643 108.262 16.556 109.582 16.556 Z\" fill=\"rgb(158, 161, 174)\"></path><path d=\"M 116.302 18.892 L 119.145 18.892 L 119.145 12.596 C 119.145 11.174 119.957 10.464 120.871 10.464 C 121.887 10.464 122.699 11.073 122.699 12.596 L 122.699 18.892 L 125.543 18.892 L 125.543 12.596 C 125.543 11.174 126.355 10.464 127.269 10.464 C 128.285 10.464 129.097 11.073 129.097 12.596 L 129.097 18.892 L 131.94 18.892 L 131.94 12.19 C 131.94 9.55 130.315 7.925 127.98 7.925 C 126.599 7.925 125.238 8.656 124.73 9.651 L 124.629 9.651 C 124.101 8.595 122.963 7.925 121.684 7.925 C 120.566 7.925 119.754 8.433 119.145 9.347 L 119.044 9.347 L 118.739 8.128 L 116.302 8.128 Z M 87.976 18.892 L 85.132 18.892 L 85.132 8.128 L 87.57 8.128 L 87.874 9.346 L 87.976 9.346 C 88.585 8.433 89.499 8.128 90.514 8.128 L 91.834 8.128 L 91.834 10.87 L 90.717 10.87 C 88.991 10.87 87.976 11.885 87.976 13.51 Z\" fill=\"rgb(158, 161, 174)\"></path><path d=\"M 59.167 19.095 C 55.918 19.095 53.887 17.064 53.887 13.51 C 53.887 9.955 55.918 7.925 59.167 7.925 C 62.417 7.925 64.448 9.955 64.448 13.51 C 64.448 17.064 62.417 19.095 59.167 19.095 Z M 59.167 16.556 C 60.487 16.556 61.604 15.642 61.604 13.51 C 61.604 11.377 60.487 10.463 59.167 10.463 C 57.847 10.463 56.73 11.377 56.73 13.51 C 56.73 15.643 57.847 16.556 59.167 16.556 Z\" fill=\"rgb(158, 161, 174)\"></path></g></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsxs(SVG,{className:\"framer-863gwo\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 41.508 24.034\" overflow=\"visible\"><path d=\"M 0 7.21 C 0 4.97 0 3.85 0.366 2.967 C 0.854 1.789 1.789 0.854 2.967 0.366 C 3.85 0 4.97 0 7.21 0 L 16.824 0 C 19.063 0 20.183 0 21.066 0.366 C 22.244 0.854 23.18 1.79 23.668 2.967 C 24.034 3.85 24.034 4.97 24.034 7.21 L 24.034 16.824 C 24.034 19.063 24.034 20.183 23.668 21.066 C 23.18 22.244 22.244 23.18 21.066 23.668 C 20.183 24.034 19.063 24.034 16.823 24.034 L 7.21 24.034 C 4.97 24.034 3.85 24.034 2.967 23.668 C 1.789 23.18 0.854 22.244 0.366 21.066 C 0 20.183 0 19.063 0 16.823 Z M 14.504 8.424 C 15.258 8.437 15.861 9.052 15.861 9.805 C 15.861 10.559 15.258 11.174 14.504 11.187 L 7.042 11.187 C 6.602 11.187 6.18 11.362 5.869 11.673 C 5.558 11.984 5.383 12.406 5.383 12.846 L 5.383 17.268 C 5.383 18.184 6.126 18.926 7.042 18.926 C 7.957 18.926 8.7 18.184 8.7 17.268 L 8.7 14.504 L 14.504 14.504 C 17.099 14.504 19.203 12.4 19.203 9.806 C 19.203 7.21 17.099 5.107 14.504 5.107 L 7.042 5.107 C 6.126 5.107 5.383 5.849 5.383 6.765 C 5.383 7.681 6.126 8.424 7.042 8.424 Z M 14.504 15.886 L 13.817 15.886 L 16.372 18.44 C 17.019 19.088 18.069 19.088 18.717 18.44 C 19.364 17.793 19.364 16.743 18.717 16.095 L 17.638 15.017 C 16.692 15.587 15.609 15.888 14.504 15.886 Z M 30.643 4.807 L 36.533 4.807 C 39.477 4.807 41.508 6.837 41.508 9.681 C 41.508 12.524 39.477 14.555 36.533 14.555 L 33.689 14.555 L 33.689 19.023 L 30.643 19.023 Z M 33.689 11.814 L 36.228 11.814 C 37.649 11.814 38.462 11.001 38.462 9.681 C 38.462 8.361 37.65 7.549 36.228 7.549 L 33.689 7.549 Z\" fill=\"rgb(158, 161, 174)\"></path></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1d3snvj\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24.034 24.034\" overflow=\"visible\"><path d=\"M 0 7.21 C 0 4.97 0 3.85 0.366 2.967 C 0.854 1.789 1.789 0.854 2.967 0.366 C 3.85 0 4.97 0 7.21 0 L 16.824 0 C 19.063 0 20.183 0 21.066 0.366 C 22.244 0.854 23.18 1.79 23.668 2.967 C 24.034 3.85 24.034 4.97 24.034 7.21 L 24.034 16.824 C 24.034 19.063 24.034 20.183 23.668 21.066 C 23.18 22.244 22.244 23.18 21.066 23.668 C 20.183 24.034 19.063 24.034 16.823 24.034 L 7.21 24.034 C 4.97 24.034 3.85 24.034 2.967 23.668 C 1.789 23.18 0.854 22.244 0.366 21.066 C 0 20.183 0 19.063 0 16.823 L 0 7.21 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-h7f2vw\",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.819 13.819\" overflow=\"visible\"><path d=\"M 1.658 3.317 C 0.742 3.317 0 2.574 0 1.658 C 0 0.742 0.742 0 1.658 0 L 9.121 0 C 11.716 0 13.819 2.103 13.819 4.699 C 13.819 7.293 11.716 9.397 9.121 9.397 L 3.317 9.397 L 3.317 12.161 C 3.317 13.077 2.574 13.819 1.658 13.819 C 0.742 13.819 0 13.077 0 12.161 L 0 7.739 C 0 7.299 0.175 6.877 0.486 6.566 C 0.797 6.255 1.218 6.08 1.658 6.08 L 9.121 6.08 C 9.874 6.067 10.478 5.452 10.478 4.698 C 10.478 3.945 9.874 3.33 9.121 3.317 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1asavi5\",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.386 3.909\" overflow=\"visible\"><path d=\"M 0.687 0.869 L 0 0.869 L 2.555 3.423 C 3.202 4.071 4.252 4.071 4.9 3.423 C 5.548 2.775 5.548 1.725 4.9 1.078 L 3.821 0 C 2.876 0.57 1.792 0.87 0.687 0.869 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1wc5lqs\",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.866 14.217\" overflow=\"visible\"><path d=\"M 0 14.217 L 3.046 14.217 L 3.046 9.749 L 5.89 9.749 C 8.835 9.749 10.866 7.718 10.866 4.874 C 10.866 2.03 8.835 0 5.89 0 L 0 0 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-gnrlg0\",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.773 4.265\" overflow=\"visible\"><path d=\"M 0 4.265 L 0 0 L 2.539 0 C 3.961 0 4.773 0.812 4.773 2.132 C 4.773 3.452 3.96 4.265 2.539 4.265 L 0 4.265 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(SVG,{className:\"framer-txcskb\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 29.347 14.217\" overflow=\"visible\"><path d=\"M 2.843 14.216 L 0 14.216 L 0 0 L 2.843 0 L 2.843 4.569 L 2.945 4.569 C 3.656 3.757 4.468 3.249 5.687 3.249 C 8.022 3.249 9.647 4.874 9.647 7.616 L 9.647 14.216 L 6.804 14.216 L 6.804 8.021 C 6.804 6.6 6.093 5.788 4.874 5.788 C 3.656 5.788 2.843 6.701 2.843 8.022 L 2.843 14.217 Z M 27.316 14.216 L 29.347 14.216 L 29.347 11.576 L 27.823 11.576 C 27.214 11.576 26.808 11.17 26.808 10.56 L 26.808 6.092 L 29.347 6.092 L 29.347 3.452 L 26.808 3.452 L 26.808 0.609 L 24.37 0.609 L 23.964 3.452 L 22.238 3.452 L 22.238 6.092 L 23.964 6.092 L 23.964 11.068 C 23.964 13.099 25.081 14.216 27.316 14.216 Z\" fill=\"rgb(158, 161, 174)\"></path></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1nq6uj5\",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.647 14.217\" overflow=\"visible\"><path d=\"M 2.843 14.216 L 0 14.216 L 0 0 L 2.843 0 L 2.843 4.569 L 2.945 4.569 C 3.656 3.757 4.468 3.249 5.687 3.249 C 8.022 3.249 9.647 4.874 9.647 7.616 L 9.647 14.216 L 6.804 14.216 L 6.804 8.021 C 6.804 6.6 6.093 5.788 4.874 5.788 C 3.656 5.788 2.843 6.701 2.843 8.022 L 2.843 14.217 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-ep5tza\",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.109 13.608\" overflow=\"visible\"><path d=\"M 5.078 13.608 L 7.109 13.608 L 7.109 10.968 L 5.585 10.968 C 4.976 10.968 4.57 10.561 4.57 9.952 L 4.57 5.484 L 7.109 5.484 L 7.109 2.844 L 4.57 2.844 L 4.57 0 L 2.132 0 L 1.726 2.844 L 0 2.844 L 0 5.484 L 1.726 5.484 L 1.726 10.459 C 1.726 12.491 2.843 13.608 5.078 13.608 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(SVG,{className:\"framer-gopfne\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 41.731 11.17\" overflow=\"visible\"><path d=\"M 5.28 0 C 8.53 0 10.561 2.03 10.561 5.585 C 10.561 9.139 8.53 11.17 5.28 11.17 C 2.031 11.17 0 9.139 0 5.585 C 0 2.031 2.031 0 5.28 0 Z M 5.28 2.539 C 3.96 2.539 2.843 3.452 2.843 5.585 C 2.843 7.718 3.96 8.632 5.28 8.632 C 6.601 8.632 7.718 7.718 7.718 5.585 C 7.718 3.452 6.601 2.539 5.28 2.539 Z M 24.673 11.17 C 21.424 11.17 19.393 9.139 19.393 5.585 C 19.393 2.03 21.424 0 24.673 0 C 27.923 0 29.954 2.031 29.954 5.585 C 29.954 9.139 27.923 11.17 24.673 11.17 Z M 24.673 8.632 C 25.993 8.632 27.11 7.718 27.11 5.585 C 27.11 3.452 25.993 2.539 24.673 2.539 C 23.353 2.539 22.236 3.452 22.236 5.585 C 22.236 7.718 23.353 8.632 24.673 8.632 Z M 36.45 11.17 C 33.2 11.17 31.169 9.139 31.169 5.585 C 31.169 2.03 33.2 0 36.45 0 C 39.7 0 41.731 2.031 41.731 5.585 C 41.731 9.139 39.7 11.17 36.45 11.17 Z M 36.45 8.632 C 37.77 8.632 38.887 7.718 38.887 5.585 C 38.887 3.452 37.77 2.539 36.45 2.539 C 35.13 2.539 34.013 3.452 34.013 5.585 C 34.013 7.718 35.13 8.632 36.45 8.632 Z\" fill=\"rgb(158, 161, 174)\"></path></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1ahcdjo\",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.561 11.17\" overflow=\"visible\"><path d=\"M 0 5.585 C 0 9.139 2.031 11.17 5.28 11.17 C 8.53 11.17 10.561 9.139 10.561 5.585 C 10.561 2.03 8.53 0 5.28 0 C 2.031 0 0 2.031 0 5.585 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-prvexg\",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.874 6.093\" overflow=\"visible\"><path d=\"M 4.874 3.047 C 4.874 5.179 3.758 6.093 2.437 6.093 C 1.117 6.093 0 5.179 0 3.047 C 0 0.914 1.117 0 2.437 0 C 3.758 0 4.874 0.914 4.874 3.047 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-dz4176\",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.561 11.17\" overflow=\"visible\"><path d=\"M 5.28 11.17 C 2.031 11.17 0 9.139 0 5.585 C 0 2.03 2.031 0 5.28 0 C 8.53 0 10.561 2.031 10.561 5.585 C 10.561 9.139 8.53 11.17 5.28 11.17 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-sya75t\",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.874 6.093\" overflow=\"visible\"><path d=\"M 2.437 6.093 C 3.757 6.093 4.874 5.179 4.874 3.047 C 4.874 0.914 3.757 0 2.437 0 C 1.117 0 0 0.914 0 3.047 C 0 5.179 1.117 6.093 2.437 6.093 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1s2i9ma\",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.561 11.17\" overflow=\"visible\"><path d=\"M 5.281 11.17 C 2.031 11.17 0 9.139 0 5.585 C 0 2.03 2.031 0 5.281 0 C 8.53 0 10.561 2.031 10.561 5.585 C 10.561 9.139 8.53 11.17 5.281 11.17 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-18bsc4v\",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.875 6.093\" overflow=\"visible\"><path d=\"M 2.438 6.093 C 3.758 6.093 4.875 5.179 4.875 3.047 C 4.875 0.914 3.758 0 2.438 0 C 1.117 0 0 0.914 0 3.047 C 0 5.179 1.117 6.093 2.438 6.093 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(SVG,{className:\"framer-h8lmt8\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 46.808 10.968\" overflow=\"visible\"><path d=\"M 31.17 10.968 L 34.013 10.968 L 34.013 4.672 C 34.013 3.25 34.825 2.539 35.739 2.539 C 36.755 2.539 37.567 3.149 37.567 4.672 L 37.567 10.968 L 40.411 10.968 L 40.411 4.672 C 40.411 3.25 41.223 2.539 42.137 2.539 C 43.152 2.539 43.965 3.149 43.965 4.672 L 43.965 10.968 L 46.808 10.968 L 46.808 4.266 C 46.808 1.625 45.183 0 42.848 0 C 41.467 0 40.106 0.731 39.598 1.727 L 39.497 1.727 C 38.969 0.671 37.831 0 36.552 0 C 35.434 0 34.622 0.508 34.013 1.422 L 33.912 1.422 L 33.607 0.203 L 31.17 0.203 Z M 2.844 10.968 L 0 10.968 L 0 0.204 L 2.438 0.204 L 2.742 1.422 L 2.844 1.422 C 3.453 0.508 4.367 0.204 5.382 0.204 L 6.702 0.204 L 6.702 2.945 L 5.585 2.945 C 3.859 2.945 2.844 3.961 2.844 5.585 Z\" fill=\"rgb(158, 161, 174)\"></path></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1u3sxg7\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 15.638 10.968\" overflow=\"visible\"><path d=\"M 0 10.968 L 2.843 10.968 L 2.843 4.672 C 2.843 3.25 3.656 2.539 4.57 2.539 C 5.585 2.539 6.398 3.149 6.398 4.672 L 6.398 10.968 L 9.241 10.968 L 9.241 4.672 C 9.241 3.25 10.053 2.539 10.967 2.539 C 11.983 2.539 12.795 3.149 12.795 4.672 L 12.795 10.968 L 15.638 10.968 L 15.638 4.266 C 15.638 1.625 14.014 0 11.678 0 C 10.297 0 8.936 0.731 8.429 1.727 L 8.327 1.727 C 7.799 0.671 6.662 0 5.382 0 C 4.265 0 3.452 0.508 2.843 1.422 L 2.742 1.422 L 2.437 0.203 L 0 0.203 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-wv1pvq\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 6.702 10.764\" overflow=\"visible\"><path d=\"M 2.844 10.764 L 0 10.764 L 0 0 L 2.438 0 L 2.742 1.218 L 2.844 1.218 C 3.453 0.304 4.367 0 5.382 0 L 6.702 0 L 6.702 2.741 L 5.585 2.741 C 3.859 2.741 2.844 3.757 2.844 5.381 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(SVG,{className:\"framer-4ppgno\",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.561 11.17\" overflow=\"visible\"><path d=\"M 5.28 11.17 C 2.031 11.17 0 9.139 0 5.585 C 0 2.03 2.031 0 5.28 0 C 8.53 0 10.561 2.031 10.561 5.585 C 10.561 9.139 8.53 11.17 5.28 11.17 Z M 5.28 8.632 C 6.6 8.632 7.718 7.718 7.718 5.585 C 7.718 3.452 6.6 2.539 5.28 2.539 C 3.96 2.539 2.843 3.452 2.843 5.585 C 2.843 7.718 3.96 8.632 5.28 8.632 Z\" fill=\"rgb(158, 161, 174)\"></path></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-vc980m\",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.561 11.17\" overflow=\"visible\"><path d=\"M 5.28 11.17 C 2.031 11.17 0 9.139 0 5.585 C 0 2.03 2.031 0 5.28 0 C 8.53 0 10.561 2.031 10.561 5.585 C 10.561 9.139 8.53 11.17 5.28 11.17 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1yxgkjs\",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.874 6.093\" overflow=\"visible\"><path d=\"M 2.437 6.093 C 3.757 6.093 4.874 5.179 4.874 3.047 C 4.874 0.914 3.757 0 2.437 0 C 1.117 0 0 0.914 0 3.047 C 0 5.179 1.117 6.093 2.437 6.093 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true})]})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1fiyyjz\",\"data-framer-name\":\"Superside\",children:/*#__PURE__*/_jsxs(SVG,{className:\"framer-17iu485\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 116.152 24\" overflow=\"visible\"><g><path d=\"M 43.66 20.489 C 41.745 20.489 40.564 19.596 39.734 18.574 L 39.702 24 L 36.096 24 L 36.191 7.564 L 39.798 7.596 L 39.798 9.415 C 40.691 8.234 41.904 7.372 43.755 7.372 C 46.723 7.372 49.5 9.702 49.5 13.947 L 49.5 13.979 C 49.436 18.191 46.66 20.489 43.66 20.489 Z M 45.862 13.915 C 45.862 11.809 44.457 10.404 42.798 10.404 C 41.106 10.404 39.702 11.777 39.702 13.883 L 39.702 13.915 C 39.702 16.021 41.074 17.426 42.766 17.426 C 44.457 17.426 45.862 16.085 45.894 13.947 L 45.894 13.915 Z M 62.681 15.255 L 53.872 15.223 C 54.223 16.851 55.34 17.713 56.968 17.713 C 58.181 17.713 59.043 17.33 60.032 16.436 L 62.074 18.255 C 60.894 19.723 59.17 20.617 56.872 20.585 C 53.074 20.553 50.266 17.872 50.298 14.011 L 50.298 13.947 C 50.33 10.34 52.915 7.372 56.585 7.372 C 60.83 7.404 62.745 10.691 62.713 14.266 L 62.713 14.298 C 62.745 14.713 62.713 14.936 62.681 15.255 Z M 56.585 10.277 C 55.085 10.277 54.128 11.33 53.84 12.957 L 59.266 12.989 C 59.043 11.394 58.117 10.309 56.585 10.277 Z M 71.681 11.234 C 69.287 11.234 67.819 12.67 67.819 15.67 L 67.787 20.362 L 64.181 20.33 L 64.245 7.66 L 67.851 7.691 L 67.851 10.245 C 68.585 8.489 69.766 7.372 71.904 7.468 L 71.872 11.234 Z M 77.362 20.649 C 75.574 20.649 73.596 20.043 71.936 18.702 L 73.5 16.34 C 74.872 17.33 76.309 17.872 77.489 17.872 C 78.543 17.872 78.989 17.489 79.021 16.947 L 79.021 16.915 C 79.021 16.149 77.809 15.862 76.404 15.447 C 74.649 14.904 72.638 14.074 72.638 11.617 L 72.638 11.553 C 72.638 8.968 74.745 7.532 77.298 7.564 C 78.894 7.564 80.649 8.138 82.021 9.064 L 80.649 11.553 C 79.404 10.819 78.16 10.372 77.234 10.34 C 76.372 10.34 75.894 10.723 75.894 11.202 L 75.894 11.234 C 75.894 11.936 77.106 12.287 78.447 12.766 C 80.202 13.372 82.277 14.234 82.245 16.532 L 82.245 16.564 C 82.213 19.404 80.074 20.681 77.362 20.649 Z M 83.745 6.383 L 83.777 3.191 L 87.543 3.223 L 87.543 6.415 Z M 83.745 20.457 L 83.809 7.787 L 87.415 7.819 L 87.351 20.489 Z M 98.681 20.521 L 98.681 18.702 C 97.787 19.883 96.574 20.745 94.723 20.745 C 91.755 20.745 88.979 18.383 88.979 14.17 L 88.979 14.106 C 89.011 9.862 91.787 7.564 94.787 7.596 C 96.702 7.596 97.883 8.489 98.713 9.511 L 98.745 3.255 L 102.351 3.287 L 102.255 20.553 Z M 98.777 14.17 C 98.777 12.064 97.404 10.66 95.713 10.66 C 94.021 10.66 92.617 12 92.585 14.138 L 92.585 14.17 C 92.585 16.277 93.989 17.681 95.649 17.681 C 97.34 17.681 98.713 16.309 98.745 14.202 L 98.745 14.17 Z M 116.106 15.543 L 107.298 15.511 C 107.649 17.138 108.766 18 110.394 18 C 111.606 18 112.468 17.617 113.457 16.723 L 115.5 18.543 C 114.319 20.011 112.596 20.904 110.298 20.872 C 106.5 20.84 103.691 18.16 103.723 14.298 L 103.723 14.234 C 103.755 10.628 106.34 7.66 110.011 7.66 C 114.255 7.691 116.17 10.979 116.138 14.553 L 116.138 14.585 C 116.17 15 116.138 15.191 116.106 15.543 Z M 110.011 10.564 C 108.511 10.564 107.553 11.617 107.266 13.245 L 112.691 13.277 C 112.468 11.649 111.543 10.564 110.011 10.564 Z M 30.574 7.5 L 30.543 14.553 C 30.543 16.245 29.649 17.138 28.277 17.106 C 26.904 17.106 26.106 16.213 26.106 14.521 L 26.138 10.851 C 25.628 10.979 25.053 11.043 24.511 11.043 C 23.84 11.043 23.17 10.947 22.532 10.755 L 22.5 15.67 C 22.5 18.574 24.064 20.394 26.777 20.394 C 28.596 20.394 29.681 19.436 30.511 18.383 L 30.511 20.17 L 34.117 20.202 L 34.181 7.532 Z M 30.574 7.5\" fill=\"rgb(158, 161, 174)\"></path><path d=\"M 28.192 0.287 L 27.873 0 L 22.128 0 L 25.671 3.096 C 26.022 3.383 26.214 3.798 26.245 4.245 C 26.277 4.691 26.118 5.138 25.831 5.457 C 25.511 5.809 25.033 6.032 24.554 6.032 C 24.139 6.032 23.756 5.872 23.437 5.617 L 18.554 1.34 C 17.533 0.479 16.288 0 14.948 0 C 13.384 0 11.884 0.67 10.831 1.851 C 8.852 4.117 9.075 7.564 11.309 9.574 L 16.192 13.883 C 16.543 14.17 16.735 14.585 16.767 15.032 C 16.799 15.479 16.639 15.926 16.352 16.245 C 16.033 16.596 15.554 16.819 15.075 16.819 C 14.66 16.819 14.277 16.66 13.958 16.404 L 9.075 12.096 C 7.99 11.17 6.554 10.66 5.118 10.755 C 3.65 10.851 2.309 11.521 1.352 12.606 C 0.426 13.723 -0.084 15.128 0.011 16.596 C 0.107 18.032 0.745 19.372 1.831 20.33 L 2.15 20.617 L 7.894 20.617 L 4.352 17.521 C 4.001 17.234 3.809 16.819 3.777 16.372 C 3.745 15.926 3.905 15.479 4.192 15.16 C 4.48 14.809 4.894 14.617 5.341 14.585 C 5.788 14.553 6.235 14.713 6.554 15 L 11.501 19.277 C 12.426 20.106 13.639 20.553 14.884 20.617 L 15.299 20.617 C 16.799 20.553 18.203 19.883 19.192 18.766 C 21.171 16.5 20.948 13.053 18.714 11.043 L 13.831 6.734 C 13.48 6.447 13.288 6.032 13.256 5.585 C 13.224 5.138 13.384 4.691 13.671 4.372 C 14.277 3.67 15.362 3.606 16.065 4.213 L 20.948 8.521 C 21.937 9.383 23.214 9.862 24.522 9.862 C 26.086 9.862 27.586 9.191 28.639 8.011 C 29.533 7.021 30.011 5.713 30.011 4.404 C 30.011 2.809 29.373 1.309 28.192 0.287 Z M 28.192 0.287\" fill=\"rgb(158, 161, 174)\"></path></g></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsxs(SVG,{className:\"framer-1dmx3rr\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 93.652 20.809\" overflow=\"visible\"><path d=\"M 21.16 17.298 C 19.245 17.298 18.064 16.404 17.234 15.383 L 17.202 20.809 L 13.596 20.809 L 13.691 4.372 L 17.298 4.404 L 17.298 6.223 C 18.191 5.043 19.404 4.181 21.255 4.181 C 24.223 4.181 27 6.511 27 10.755 L 27 10.787 C 26.936 15 24.16 17.298 21.16 17.298 Z M 23.362 10.723 C 23.362 8.617 21.957 7.213 20.298 7.213 C 18.606 7.213 17.202 8.585 17.202 10.691 L 17.202 10.723 C 17.202 12.83 18.574 14.234 20.266 14.234 C 21.957 14.234 23.362 12.894 23.394 10.755 L 23.394 10.723 Z M 40.181 12.064 L 31.372 12.032 C 31.723 13.66 32.84 14.521 34.468 14.521 C 35.681 14.521 36.543 14.138 37.532 13.245 L 39.574 15.064 C 38.394 16.532 36.67 17.426 34.372 17.394 C 30.574 17.362 27.766 14.681 27.798 10.819 L 27.798 10.755 C 27.83 7.149 30.415 4.181 34.085 4.181 C 38.33 4.213 40.245 7.5 40.213 11.074 L 40.213 11.106 C 40.245 11.521 40.213 11.745 40.181 12.064 Z M 34.085 7.085 C 32.585 7.085 31.628 8.138 31.34 9.766 L 36.766 9.798 C 36.543 8.202 35.617 7.117 34.085 7.085 Z M 49.181 8.043 C 46.787 8.043 45.319 9.479 45.319 12.479 L 45.287 17.17 L 41.681 17.138 L 41.745 4.468 L 45.351 4.5 L 45.351 7.053 C 46.085 5.298 47.266 4.181 49.404 4.277 L 49.372 8.043 Z M 54.862 17.457 C 53.074 17.457 51.096 16.851 49.436 15.511 L 51 13.149 C 52.372 14.138 53.809 14.681 54.989 14.681 C 56.043 14.681 56.489 14.298 56.521 13.755 L 56.521 13.723 C 56.521 12.957 55.309 12.67 53.904 12.255 C 52.149 11.713 50.138 10.883 50.138 8.426 L 50.138 8.362 C 50.138 5.777 52.245 4.34 54.798 4.372 C 56.394 4.372 58.149 4.947 59.521 5.872 L 58.149 8.362 C 56.904 7.628 55.66 7.181 54.734 7.149 C 53.872 7.149 53.394 7.532 53.394 8.011 L 53.394 8.043 C 53.394 8.745 54.606 9.096 55.947 9.574 C 57.702 10.181 59.777 11.043 59.745 13.34 L 59.745 13.372 C 59.713 16.213 57.574 17.489 54.862 17.457 Z M 61.245 3.191 L 61.277 0 L 65.043 0.032 L 65.043 3.223 Z M 61.245 17.266 L 61.309 4.596 L 64.915 4.628 L 64.851 17.298 Z M 76.181 17.33 L 76.181 15.511 C 75.287 16.691 74.074 17.553 72.223 17.553 C 69.255 17.553 66.479 15.191 66.479 10.979 L 66.479 10.915 C 66.511 6.67 69.287 4.372 72.287 4.404 C 74.202 4.404 75.383 5.298 76.213 6.319 L 76.245 0.064 L 79.851 0.096 L 79.755 17.362 Z M 76.277 10.979 C 76.277 8.872 74.904 7.468 73.213 7.468 C 71.521 7.468 70.117 8.809 70.085 10.947 L 70.085 10.979 C 70.085 13.085 71.489 14.489 73.149 14.489 C 74.84 14.489 76.213 13.117 76.245 11.011 L 76.245 10.979 Z M 93.606 12.351 L 84.798 12.319 C 85.149 13.947 86.266 14.809 87.894 14.809 C 89.106 14.809 89.968 14.426 90.957 13.532 L 93 15.351 C 91.819 16.819 90.096 17.713 87.798 17.681 C 84 17.649 81.191 14.968 81.223 11.106 L 81.223 11.043 C 81.255 7.436 83.84 4.468 87.511 4.468 C 91.755 4.5 93.67 7.787 93.638 11.362 L 93.638 11.394 C 93.67 11.809 93.638 12 93.606 12.351 Z M 87.511 7.372 C 86.011 7.372 85.053 8.426 84.766 10.053 L 90.191 10.085 C 89.968 8.457 89.043 7.372 87.511 7.372 Z M 8.074 4.309 L 8.043 11.362 C 8.043 13.053 7.149 13.947 5.777 13.915 C 4.404 13.915 3.606 13.021 3.606 11.33 L 3.638 7.66 C 3.128 7.787 2.553 7.851 2.011 7.851 C 1.34 7.851 0.67 7.755 0.032 7.564 L 0 12.479 C 0 15.383 1.564 17.202 4.277 17.202 C 6.096 17.202 7.181 16.245 8.011 15.191 L 8.011 16.979 L 11.617 17.011 L 11.681 4.34 Z M 8.074 4.309\" fill=\"rgb(158, 161, 174)\"></path></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-3n7nmc\",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.404 16.628\" overflow=\"visible\"><path d=\"M 7.564 13.117 C 5.649 13.117 4.468 12.223 3.638 11.202 L 3.606 16.628 L 0 16.628 L 0.096 0.191 L 3.702 0.223 L 3.702 2.043 C 4.596 0.862 5.809 0 7.66 0 C 10.628 0 13.404 2.33 13.404 6.574 L 13.404 6.606 C 13.34 10.819 10.564 13.117 7.564 13.117 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-yo7m0y\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 6.191 7.021\" overflow=\"visible\"><path d=\"M 6.16 3.511 C 6.16 1.404 4.755 0 3.096 0 C 1.404 0 0 1.372 0 3.479 L 0 3.511 C 0 5.617 1.372 7.021 3.064 7.021 C 4.755 7.021 6.16 5.681 6.191 3.543 L 6.191 3.511 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-ytoo26\",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.428 13.214\" overflow=\"visible\"><path d=\"M 12.383 7.883 L 3.575 7.851 C 3.926 9.479 5.043 10.34 6.67 10.34 C 7.883 10.34 8.745 9.957 9.734 9.064 L 11.777 10.883 C 10.596 12.351 8.873 13.245 6.575 13.213 C 2.777 13.181 -0.032 10.5 0 6.638 L 0 6.574 C 0.032 2.968 2.617 0 6.288 0 C 10.532 0.032 12.447 3.319 12.415 6.894 L 12.415 6.926 C 12.447 7.34 12.415 7.564 12.383 7.883 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-q1a6a1\",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.426 2.713\" overflow=\"visible\"><path d=\"M 2.745 0 C 1.245 0 0.287 1.053 0 2.681 L 5.426 2.713 C 5.202 1.117 4.277 0.032 2.745 0 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-h9nj9z\",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.723 12.899\" overflow=\"visible\"><path d=\"M 7.5 3.772 C 5.106 3.772 3.638 5.208 3.638 8.208 L 3.606 12.899 L 0 12.867 L 0.064 0.197 L 3.67 0.229 L 3.67 2.782 C 4.404 1.027 5.585 -0.09 7.723 0.006 L 7.691 3.772 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1rmrdz7\",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.309 13.086\" overflow=\"visible\"><path d=\"M 5.426 13.086 C 3.638 13.086 1.66 12.479 0 11.139 L 1.564 8.777 C 2.936 9.766 4.372 10.309 5.553 10.309 C 6.606 10.309 7.053 9.926 7.085 9.383 L 7.085 9.352 C 7.085 8.586 5.872 8.298 4.468 7.883 C 2.713 7.341 0.702 6.511 0.702 4.054 L 0.702 3.99 C 0.702 1.405 2.809 -0.031 5.362 0.001 C 6.957 0.001 8.713 0.575 10.085 1.501 L 8.713 3.99 C 7.468 3.256 6.223 2.809 5.298 2.777 C 4.436 2.777 3.957 3.16 3.957 3.639 L 3.957 3.671 C 3.957 4.373 5.17 4.724 6.511 5.203 C 8.266 5.809 10.34 6.671 10.309 8.969 L 10.309 9.001 C 10.277 11.841 8.138 13.118 5.426 13.086 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-7ui1e8\",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.798 3.223\" overflow=\"visible\"><path d=\"M 0 3.191 L 0.032 0 L 3.798 0.032 L 3.798 3.223 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1n1uxw6\",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.67 12.702\" overflow=\"visible\"><path d=\"M 0 12.67 L 0.064 0 L 3.67 0.032 L 3.606 12.702 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1liut6k\",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.372 17.489\" overflow=\"visible\"><path d=\"M 9.702 17.266 L 9.702 15.447 C 8.809 16.628 7.596 17.489 5.745 17.489 C 2.777 17.489 0 15.128 0 10.915 L 0 10.851 C 0.032 6.606 2.809 4.309 5.809 4.34 C 7.723 4.34 8.904 5.234 9.734 6.255 L 9.766 0 L 13.372 0.032 L 13.277 17.298 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-c3qapd\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 6.191 7.021\" overflow=\"visible\"><path d=\"M 6.191 3.511 C 6.191 1.404 4.819 0 3.128 0 C 1.436 0 0.032 1.34 0 3.479 L 0 3.511 C 0 5.617 1.404 7.021 3.064 7.021 C 4.755 7.021 6.128 5.649 6.16 3.543 L 6.16 3.511 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-11fmymx\",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.428 13.214\" overflow=\"visible\"><path d=\"M 12.383 7.883 L 3.575 7.851 C 3.926 9.479 5.043 10.34 6.67 10.34 C 7.883 10.34 8.745 9.957 9.734 9.064 L 11.777 10.883 C 10.596 12.351 8.873 13.245 6.575 13.213 C 2.777 13.181 -0.032 10.5 0 6.638 L 0 6.574 C 0.032 2.968 2.617 0 6.288 0 C 10.532 0.032 12.447 3.319 12.415 6.894 L 12.415 6.926 C 12.447 7.34 12.415 7.532 12.383 7.883 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-5qwine\",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.426 2.713\" overflow=\"visible\"><path d=\"M 2.745 0 C 1.245 0 0.287 1.053 0 2.681 L 5.426 2.713 C 5.202 1.085 4.277 0 2.745 0 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1sr2sic\",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.681 12.894\" overflow=\"visible\"><path d=\"M 8.074 0 L 8.043 7.053 C 8.043 8.745 7.149 9.638 5.777 9.606 C 4.404 9.606 3.606 8.713 3.606 7.021 L 3.638 3.351 C 3.128 3.479 2.553 3.543 2.011 3.543 C 1.34 3.543 0.67 3.447 0.032 3.255 L 0 8.17 C 0 11.074 1.564 12.894 4.277 12.894 C 6.096 12.894 7.181 11.936 8.011 10.883 L 8.011 12.67 L 11.617 12.702 L 11.681 0.032 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1ezz1hc\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 0 0\" overflow=\"visible\"><path d=\"M 0 0\" fill=\"transparent\"></path></svg>',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(SVG,{className:\"framer-1rrrg7j\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 30.011 20.617\" overflow=\"visible\"><path d=\"M 28.192 0.287 L 27.873 0 L 22.128 0 L 25.671 3.096 C 26.022 3.383 26.214 3.798 26.245 4.245 C 26.277 4.691 26.118 5.138 25.831 5.457 C 25.511 5.809 25.033 6.032 24.554 6.032 C 24.139 6.032 23.756 5.872 23.437 5.617 L 18.554 1.34 C 17.533 0.479 16.288 0 14.948 0 C 13.384 0 11.884 0.67 10.831 1.851 C 8.852 4.117 9.075 7.564 11.309 9.574 L 16.192 13.883 C 16.543 14.17 16.735 14.585 16.767 15.032 C 16.799 15.479 16.639 15.926 16.352 16.245 C 16.033 16.596 15.554 16.819 15.075 16.819 C 14.66 16.819 14.277 16.66 13.958 16.404 L 9.075 12.096 C 7.99 11.17 6.554 10.66 5.118 10.755 C 3.65 10.851 2.309 11.521 1.352 12.606 C 0.426 13.723 -0.084 15.128 0.011 16.596 C 0.107 18.032 0.745 19.372 1.831 20.33 L 2.15 20.617 L 7.894 20.617 L 4.352 17.521 C 4.001 17.234 3.809 16.819 3.777 16.372 C 3.745 15.926 3.905 15.479 4.192 15.16 C 4.48 14.809 4.894 14.617 5.341 14.585 C 5.788 14.553 6.235 14.713 6.554 15 L 11.501 19.277 C 12.426 20.106 13.639 20.553 14.884 20.617 L 15.299 20.617 C 16.799 20.553 18.203 19.883 19.192 18.766 C 21.171 16.5 20.948 13.053 18.714 11.043 L 13.831 6.734 C 13.48 6.447 13.288 6.032 13.256 5.585 C 13.224 5.138 13.384 4.691 13.671 4.372 C 14.277 3.67 15.362 3.606 16.065 4.213 L 20.948 8.521 C 21.937 9.383 23.214 9.862 24.522 9.862 C 26.086 9.862 27.586 9.191 28.639 8.011 C 29.533 7.021 30.011 5.713 30.011 4.404 C 30.011 2.809 29.373 1.309 28.192 0.287 Z M 28.192 0.287\" fill=\"rgb(158, 161, 174)\"></path></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-112xeqw\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 30.011 20.617\" overflow=\"visible\"><path d=\"M 28.192 0.287 L 27.873 0 L 22.128 0 L 25.671 3.096 C 26.022 3.383 26.214 3.798 26.245 4.245 C 26.277 4.691 26.118 5.138 25.831 5.457 C 25.511 5.809 25.033 6.032 24.554 6.032 C 24.139 6.032 23.756 5.872 23.437 5.617 L 18.554 1.34 C 17.533 0.479 16.288 0 14.948 0 C 13.384 0 11.884 0.67 10.831 1.851 C 8.852 4.117 9.075 7.564 11.309 9.574 L 16.192 13.883 C 16.543 14.17 16.735 14.585 16.767 15.032 C 16.799 15.479 16.639 15.926 16.352 16.245 C 16.033 16.596 15.554 16.819 15.075 16.819 C 14.66 16.819 14.277 16.66 13.958 16.404 L 9.075 12.096 C 7.99 11.17 6.554 10.66 5.118 10.755 C 3.65 10.851 2.309 11.521 1.352 12.606 C 0.426 13.723 -0.084 15.128 0.011 16.596 C 0.107 18.032 0.745 19.372 1.831 20.33 L 2.15 20.617 L 7.894 20.617 L 4.352 17.521 C 4.001 17.234 3.809 16.819 3.777 16.372 C 3.745 15.926 3.905 15.479 4.192 15.16 C 4.48 14.809 4.894 14.617 5.341 14.585 C 5.788 14.553 6.235 14.713 6.554 15 L 11.501 19.277 C 12.426 20.106 13.639 20.553 14.884 20.617 L 15.299 20.617 C 16.799 20.553 18.203 19.883 19.192 18.766 C 21.171 16.5 20.948 13.053 18.714 11.043 L 13.831 6.734 C 13.48 6.447 13.288 6.032 13.256 5.585 C 13.224 5.138 13.384 4.691 13.671 4.372 C 14.277 3.67 15.362 3.606 16.065 4.213 L 20.948 8.521 C 21.937 9.383 23.214 9.862 24.522 9.862 C 26.086 9.862 27.586 9.191 28.639 8.011 C 29.533 7.021 30.011 5.713 30.011 4.404 C 30.011 2.809 29.373 1.309 28.192 0.287 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-16aenva\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 0 0\" overflow=\"visible\"><path d=\"M 0 0\" fill=\"transparent\"></path></svg>',withExternalLayout:true})]})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-j8jg0l\",\"data-framer-name\":\"Vercel\",children:/*#__PURE__*/_jsxs(SVG,{className:\"framer-sxhut3\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 106.02 24\" overflow=\"visible\"><path d=\"M 52.89 6 C 48.75 6 45.765 8.7 45.765 12.75 C 45.765 16.8 49.125 19.5 53.265 19.5 C 55.766 19.5 57.971 18.51 59.336 16.841 L 56.467 15.184 C 55.71 16.013 54.559 16.496 53.265 16.496 C 51.469 16.496 49.942 15.559 49.376 14.059 L 59.884 14.059 C 59.966 13.639 60.015 13.204 60.015 12.746 C 60.015 8.7 57.03 6 52.89 6 Z M 49.343 11.438 C 49.811 9.941 51.094 9 52.886 9 C 54.683 9 55.965 9.941 56.43 11.438 Z M 93.27 6 C 89.13 6 86.145 8.7 86.145 12.75 C 86.145 16.8 89.505 19.5 93.645 19.5 C 96.146 19.5 98.351 18.51 99.716 16.841 L 96.847 15.184 C 96.09 16.013 94.939 16.496 93.645 16.496 C 91.849 16.496 90.322 15.559 89.756 14.059 L 100.264 14.059 C 100.346 13.639 100.395 13.204 100.395 12.746 C 100.395 8.7 97.41 6 93.27 6 Z M 89.726 11.438 C 90.195 9.941 91.477 9 93.27 9 C 95.066 9 96.349 9.941 96.814 11.438 Z M 75.09 12.75 C 75.09 15 76.56 16.5 78.84 16.5 C 80.385 16.5 81.544 15.799 82.14 14.655 L 85.02 16.316 C 83.828 18.304 81.593 19.5 78.84 19.5 C 74.696 19.5 71.715 16.8 71.715 12.75 C 71.715 8.7 74.7 6 78.84 6 C 81.593 6 83.824 7.196 85.02 9.184 L 82.14 10.845 C 81.544 9.701 80.385 9 78.84 9 C 76.564 9 75.09 10.5 75.09 12.75 Z M 106.02 1.875 L 106.02 19.125 L 102.645 19.125 L 102.645 1.875 Z M 13.856 0 L 27.713 24 L 0 24 Z M 48.499 1.875 L 38.107 19.875 L 27.716 1.875 L 31.612 1.875 L 38.107 13.125 L 44.602 1.875 Z M 70.59 6.375 L 70.59 10.009 C 70.215 9.9 69.817 9.825 69.39 9.825 C 67.211 9.825 65.64 11.325 65.64 13.575 L 65.64 19.125 L 62.265 19.125 L 62.265 6.375 L 65.64 6.375 L 65.64 9.825 C 65.64 7.92 67.856 6.375 70.59 6.375 Z\" fill=\"rgb(158, 161, 174)\"></path></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1ms4ryu\",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.25 13.5\" overflow=\"visible\"><path d=\"M 7.125 0 C 2.985 0 0 2.7 0 6.75 C 0 10.8 3.36 13.5 7.5 13.5 C 10.001 13.5 12.206 12.51 13.571 10.841 L 10.702 9.184 C 9.945 10.013 8.794 10.496 7.5 10.496 C 5.704 10.496 4.178 9.559 3.611 8.059 L 14.119 8.059 C 14.201 7.639 14.25 7.204 14.25 6.746 C 14.25 2.7 11.265 0 7.125 0 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1f5qdty\",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.088 2.438\" overflow=\"visible\"><path d=\"M 0 2.438 C 0.469 0.941 1.751 0 3.544 0 C 5.34 0 6.623 0.941 7.088 2.438 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-sn3y8h\",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.25 13.5\" overflow=\"visible\"><path d=\"M 7.125 0 C 2.985 0 0 2.7 0 6.75 C 0 10.8 3.36 13.5 7.5 13.5 C 10.001 13.5 12.206 12.51 13.571 10.841 L 10.702 9.184 C 9.945 10.013 8.794 10.496 7.5 10.496 C 5.704 10.496 4.178 9.559 3.611 8.059 L 14.119 8.059 C 14.201 7.639 14.25 7.204 14.25 6.746 C 14.25 2.7 11.265 0 7.125 0 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-j4dwjw\",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.088 2.438\" overflow=\"visible\"><path d=\"M 0 2.438 C 0.469 0.941 1.751 0 3.544 0 C 5.34 0 6.623 0.941 7.088 2.438 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-oft09x\",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.305 13.5\" overflow=\"visible\"><path d=\"M 3.375 6.75 C 3.375 9 4.845 10.5 7.125 10.5 C 8.67 10.5 9.829 9.799 10.425 8.655 L 13.305 10.316 C 12.113 12.304 9.877 13.5 7.125 13.5 C 2.981 13.5 0 10.8 0 6.75 C 0 2.7 2.985 0 7.125 0 C 9.877 0 12.109 1.196 13.305 3.184 L 10.425 4.845 C 9.829 3.701 8.67 3 7.125 3 C 4.849 3 3.375 4.5 3.375 6.75 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-r5xqq4\",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.375 17.25\" overflow=\"visible\"><path d=\"M 3.375 0 L 3.375 17.25 L 0 17.25 L 0 0 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-j6me0t\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 27.713 24\" overflow=\"visible\"><path d=\"M 13.856 0 L 27.713 24 L 0 24 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1or6qht\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20.783 18\" overflow=\"visible\"><path d=\"M 20.783 0 L 10.391 18 L 0 0 L 3.896 0 L 10.391 11.25 L 16.886 0 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-175lbsn\",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.325 12.75\" overflow=\"visible\"><path d=\"M 8.325 0 L 8.325 3.634 C 7.95 3.525 7.553 3.45 7.125 3.45 C 4.946 3.45 3.375 4.95 3.375 7.2 L 3.375 12.75 L 0 12.75 L 0 0 L 3.375 0 L 3.375 3.45 C 3.375 1.545 5.591 0 8.325 0 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-bkym4i\",\"data-framer-name\":\"Make\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-c8xq27\",\"data-framer-name\":\"Vrstva_1\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:183,intrinsicWidth:883,svg:'<svg width=\"883\" height=\"183\" viewBox=\"0 0 883 183\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_1093_11261)\">\\n<path d=\"M302.28 94.98V174.48C302.28 177.06 300.18 179.16 297.6 179.16H263.25C260.66 179.16 258.57 177.06 258.57 174.48V48.94C258.57 46.36 260.67 44.26 263.25 44.26H297.6C300.18 44.26 302.28 46.36 302.28 48.94V58.83C310.91 48.04 323.05 41.29 340.05 41.29C355.97 41.29 369.73 47.77 378.09 59.91C388.34 47.77 402.91 41.29 420.72 41.29C450.94 41.29 471.71 59.1 471.71 93.09V174.48C471.71 177.06 469.61 179.16 467.03 179.16H432.68C430.09 179.16 428 177.06 428 174.48V102.27C428 87.43 419.64 80.15 408.3 80.15C398.86 80.15 391.3 86.09 386.98 94.99V174.49C386.98 177.07 384.88 179.17 382.3 179.17H347.95C345.36 179.17 343.27 177.07 343.27 174.49V102.28C343.27 87.44 334.91 80.16 323.57 80.16C313.86 80.16 306.57 86.1 302.25 95\" fill=\"#9EA1AD\"/>\\n<path d=\"M529.16 181.86C503.8 181.86 482.48 165.13 482.48 139.23C482.48 115.49 498.13 104.42 527.27 96.87L564.51 87.16C563.43 78.26 556.41 73.94 545.08 73.94C535.04 73.94 527.82 77.7799 524.49 85.4599C523.56 87.5999 521.33 88.86 519.05 88.32L489.54 81.3C486.82 80.65 485.23 77.7499 486.2 75.1299C494.67 52.2099 518.21 40.2 546.69 40.2C585 40.2 607.13 58.28 607.13 90.11V174.47C607.13 177.06 605.03 179.15 602.45 179.15H569.88C567.34 179.15 565.26 177.12 565.2 174.58L565.04 167.55L564.77 167.82C553.71 177.26 542.92 181.85 529.15 181.85M540.21 148.12C545.88 148.12 550.19 146.5 556.67 142.72L564.22 138.13L564.49 116.27L545.06 121.67C531.84 125.45 525.9 128.69 525.9 136.24C525.9 144.6 533.18 148.11 540.2 148.11\" fill=\"#9EA1AD\"/>\\n<path d=\"M676.92 115.49L663.7 127.63V174.48C663.7 177.07 661.6 179.16 659.02 179.16H625.48C622.89 179.16 620.8 177.06 620.8 174.48V4.68C620.8 2.1 622.9 0 625.48 0H659.02C661.6 0 663.7 2.1 663.7 4.68V81.49L702.83 45.49C703.69 44.7 704.83 44.25 706 44.25H747.41C751.69 44.25 753.72 49.51 750.57 52.39L710.39 89.04L756.21 172.22C757.93 175.34 755.67 179.16 752.11 179.16H712.96C711.22 179.16 709.61 178.19 708.81 176.64L676.93 115.48L676.92 115.49Z\" fill=\"#9EA1AD\"/>\\n<path d=\"M819.25 182.13C781.75 182.13 747.48 158.66 747.48 111.17C747.48 66.38 780.4 40.48 816.55 40.48C852.7 40.48 881.31 66.65 882.38 107.93C882.5 112.29 882.57 115.33 882.61 117.49C882.65 120.11 880.54 122.23 877.93 122.23H790.65C792 138.42 804.95 148.67 821.41 148.67C833.12 148.67 842.72 143.8 849.45 135C850.94 133.05 853.69 132.6 855.73 133.97L877.53 148.57C879.71 150.03 880.25 152.99 878.78 155.16C867.1 172.35 847.84 182.13 819.26 182.13M791.47 95.79H838.69C838.42 80.41 827.09 73.67 815.22 73.67C804.16 73.67 792.83 80.15 791.48 95.79\" fill=\"#9EA1AD\"/>\\n<mask id=\"mask0_1093_11261\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"151\" y=\"44\" width=\"44\" height=\"135\">\\n<path d=\"M156.04 44.3401H189.92C192.5 44.3401 194.6 46.4401 194.6 49.0201V174.09C194.6 176.67 192.5 178.77 189.92 178.77H156.04C153.46 178.77 151.36 176.67 151.36 174.09V49.0201C151.36 46.4401 153.46 44.3401 156.04 44.3401Z\" fill=\"white\"/>\\n</mask>\\n<g mask=\"url(#mask0_1093_11261)\">\\n<path d=\"M189.437 30.2987L107.734 60.4243L156.545 192.802L238.248 162.677L189.437 30.2987Z\" fill=\"#9EA1AD\"/>\\n</g>\\n<mask id=\"mask1_1093_11261\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"0\" y=\"43\" width=\"96\" height=\"137\">\\n<path d=\"M56.66 45.9899L0.499964 157.74C-0.660036 160.05 0.269964 162.86 2.57996 164.02L32.85 179.23C35.16 180.39 37.97 179.46 39.13 177.15L95.29 65.3999C96.45 63.0899 95.52 60.2799 93.21 59.1199L62.94 43.9099C62.26 43.5699 61.55 43.4099 60.84 43.4099C59.13 43.4099 57.48 44.3499 56.66 45.9899Z\" fill=\"white\"/>\\n</mask>\\n<g mask=\"url(#mask1_1093_11261)\">\\n<path d=\"M81.1595 8.04518L-50.5674 64.9939L14.6234 215.785L146.35 158.837L81.1595 8.04518Z\" fill=\"#9EA1AD\"/>\\n</g>\\n<mask id=\"mask2_1093_11261\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"79\" y=\"42\" width=\"68\" height=\"139\">\\n<path d=\"M103.9 46.3901L79.87 168.2C79.37 170.73 81.01 173.18 83.54 173.69L116.75 180.39C119.29 180.9 121.77 179.25 122.27 176.71L146.3 54.9001C146.8 52.3701 145.16 49.9201 142.63 49.4101L109.42 42.7101C109.11 42.6501 108.8 42.6201 108.49 42.6201C106.3 42.6201 104.34 44.1601 103.9 46.3901Z\" fill=\"white\"/>\\n</mask>\\n<g mask=\"url(#mask2_1093_11261)\">\\n<path d=\"M138.75 20.7627L34.5369 59.1262L87.4202 202.782L191.633 164.418L138.75 20.7627Z\" fill=\"#9EA1AD\"/>\\n</g>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_1093_11261\">\\n<rect width=\"882.62\" height=\"182.13\" fill=\"white\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1s1u9sx\",\"data-framer-name\":\"Harvard\",children:/*#__PURE__*/_jsxs(SVG,{className:\"framer-mz39ab\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 111.492 28\" overflow=\"visible\"><g><path d=\"M 45.071 19.391 C 45.071 19.153 44.912 18.994 44.593 18.914 L 44.593 18.755 C 44.753 18.755 45.349 18.795 45.508 18.795 C 45.628 18.795 46.224 18.755 46.383 18.755 L 46.383 18.914 C 46.105 18.994 45.946 19.153 45.946 19.391 L 45.946 22.374 C 45.946 23.329 46.463 23.846 47.537 23.846 C 48.491 23.846 49.207 23.408 49.207 22.414 L 49.207 19.351 C 49.207 19.113 49.048 18.954 48.73 18.874 L 48.73 18.755 C 48.849 18.755 49.326 18.795 49.485 18.795 C 49.644 18.795 50.122 18.755 50.241 18.755 L 50.241 18.914 C 49.883 18.994 49.764 19.153 49.764 19.391 L 49.764 22.295 C 49.764 23.607 49.008 24.363 47.377 24.363 C 45.866 24.363 45.071 23.687 45.071 22.454 Z M 51.593 24.124 C 51.951 24.045 52.071 23.885 52.071 23.647 L 52.071 19.511 C 52.071 19.153 51.872 18.994 51.554 18.914 L 51.554 18.755 L 52.707 18.755 L 56.287 22.971 L 56.287 19.391 C 56.287 19.152 56.128 18.993 55.809 18.914 L 55.809 18.755 C 55.929 18.755 56.406 18.794 56.565 18.794 C 56.724 18.794 57.201 18.755 57.321 18.755 L 57.321 18.914 C 56.963 18.993 56.804 19.152 56.804 19.391 L 56.804 24.363 L 56.605 24.363 C 56.486 24.323 56.207 24.203 55.809 23.766 L 52.588 20.027 L 52.588 23.686 C 52.588 23.925 52.707 24.084 53.065 24.164 L 53.065 24.323 C 52.946 24.323 52.468 24.283 52.309 24.283 C 52.15 24.283 51.673 24.323 51.554 24.323 Z M 79.911 23.01 L 80.07 23.01 C 80.15 23.329 80.309 23.607 80.587 23.766 C 80.826 23.965 81.264 24.045 81.582 24.045 C 82.298 24.045 82.775 23.687 82.775 23.13 C 82.775 22.533 82.178 22.255 81.502 21.897 C 80.985 21.618 79.951 21.221 79.951 20.226 C 79.951 19.312 80.667 18.715 81.781 18.715 C 82.536 18.715 82.855 18.914 83.372 18.874 L 83.372 19.988 L 83.213 19.988 C 83.014 19.311 82.417 19.113 81.741 19.113 C 80.985 19.113 80.747 19.55 80.747 19.948 C 80.747 20.544 81.343 20.863 82.019 21.181 C 82.775 21.499 83.61 21.937 83.61 22.891 C 83.61 23.806 82.894 24.442 81.622 24.442 C 80.866 24.442 80.389 24.204 79.991 24.164 Z M 95.303 21.976 L 93.832 19.63 C 93.593 19.232 93.394 18.993 93.116 18.914 L 93.116 18.755 C 93.315 18.755 93.872 18.794 93.991 18.794 C 94.15 18.794 94.707 18.755 94.945 18.755 L 94.945 18.914 C 94.747 18.954 94.667 19.033 94.667 19.192 C 94.667 19.311 94.747 19.471 94.826 19.63 C 94.906 19.749 95.9 21.419 95.9 21.419 L 96.934 19.63 C 97.053 19.431 97.093 19.272 97.093 19.152 C 97.093 19.033 97.014 18.954 96.855 18.954 L 96.855 18.755 C 97.014 18.755 97.411 18.794 97.531 18.794 C 97.65 18.794 98.088 18.755 98.247 18.755 L 98.247 18.914 C 97.849 19.073 97.61 19.431 97.372 19.829 L 96.059 22.056 M 96.139 21.777 L 96.139 23.647 C 96.139 23.846 96.298 24.084 96.616 24.124 L 96.616 24.283 C 96.457 24.283 95.86 24.243 95.701 24.243 C 95.542 24.243 94.985 24.283 94.787 24.283 L 94.787 24.124 C 95.105 24.045 95.264 23.846 95.264 23.647 L 95.264 21.857 M 68.179 18.755 L 71.6 18.755 C 71.719 18.755 71.878 18.755 71.997 18.675 L 72.157 18.675 L 72.117 19.789 L 71.958 19.789 C 71.839 19.431 71.679 19.152 71.043 19.152 L 69.571 19.152 L 69.571 21.141 L 70.725 21.141 C 70.884 21.141 71.083 21.141 71.162 21.101 C 71.401 21.062 71.52 20.902 71.6 20.664 L 71.759 20.664 L 71.759 22.056 L 71.6 22.056 C 71.52 21.817 71.441 21.658 71.162 21.618 C 71.083 21.579 70.884 21.579 70.725 21.579 L 69.571 21.579 L 69.571 23.846 L 71.202 23.846 C 71.918 23.846 72.117 23.567 72.276 23.13 L 72.435 23.13 L 72.276 24.283 C 71.759 24.243 71.441 24.243 70.844 24.243 L 69.134 24.243 C 68.975 24.243 68.378 24.283 68.179 24.283 L 68.179 24.124 C 68.498 24.045 68.656 23.925 68.656 23.607 L 68.656 19.391 C 68.656 19.113 68.497 18.954 68.179 18.914 Z M 59.429 19.431 C 59.429 19.152 59.27 18.993 58.952 18.914 L 58.952 18.755 C 59.151 18.755 59.708 18.794 59.906 18.794 C 60.066 18.794 60.662 18.755 60.861 18.755 L 60.861 18.914 C 60.543 18.993 60.344 19.113 60.344 19.431 L 60.344 23.607 C 60.344 23.885 60.503 24.044 60.861 24.124 L 60.861 24.283 C 60.662 24.283 60.105 24.243 59.906 24.243 C 59.747 24.243 59.151 24.283 58.952 24.283 L 58.952 24.124 C 59.31 24.044 59.469 23.925 59.469 23.607 Z M 85.401 19.431 C 85.401 19.152 85.242 18.993 84.924 18.914 L 84.924 18.755 C 85.123 18.755 85.719 18.794 85.878 18.794 C 86.037 18.794 86.634 18.755 86.833 18.755 L 86.833 18.914 C 86.515 18.993 86.356 19.113 86.356 19.431 L 86.356 23.607 C 86.356 23.885 86.515 24.044 86.833 24.124 L 86.833 24.283 C 86.634 24.283 86.077 24.243 85.878 24.243 C 85.719 24.243 85.123 24.283 84.924 24.283 L 84.924 24.124 C 85.282 24.044 85.401 23.925 85.401 23.607 Z M 90.174 18.794 C 88.304 18.794 87.986 18.755 87.628 18.715 L 87.628 19.829 L 87.787 19.829 C 87.946 19.312 88.225 19.192 88.583 19.192 L 89.776 19.192 L 89.776 23.567 C 89.776 23.845 89.617 24.005 89.259 24.084 L 89.259 24.243 C 89.458 24.243 90.054 24.203 90.214 24.203 C 90.373 24.203 90.969 24.243 91.168 24.243 L 91.168 24.084 C 90.85 24.005 90.651 23.845 90.651 23.567 L 90.651 19.192 L 91.804 19.192 C 92.162 19.192 92.441 19.311 92.6 19.829 L 92.759 19.829 L 92.759 18.715 C 92.321 18.755 92.043 18.794 90.174 18.794 Z M 75.179 23.607 C 75.179 23.885 75.339 24.044 75.697 24.124 L 75.697 24.283 C 75.498 24.283 74.901 24.243 74.742 24.243 C 74.583 24.243 74.026 24.283 73.827 24.283 L 73.827 24.124 C 74.145 24.044 74.304 23.925 74.304 23.607 L 74.304 19.391 C 74.304 19.113 74.145 18.954 73.827 18.914 L 73.827 18.755 C 74.026 18.755 74.583 18.794 74.742 18.794 C 75.021 18.794 75.776 18.755 76.094 18.755 C 77.407 18.755 78.123 19.311 78.123 20.226 C 78.123 20.942 77.566 21.459 76.731 21.658 C 76.731 21.658 76.93 21.777 77.128 21.976 C 77.367 22.255 78.003 23.13 78.242 23.448 C 78.481 23.766 78.839 24.124 79.197 24.124 L 79.197 24.243 C 79.038 24.283 78.759 24.323 78.56 24.323 C 78.123 24.323 77.765 24.164 77.407 23.766 C 77.089 23.408 76.611 22.652 76.293 22.255 C 76.094 22.016 75.856 21.817 75.458 21.738 C 75.378 21.738 75.299 21.698 75.219 21.698 Z M 75.179 21.38 C 75.339 21.419 75.617 21.419 75.856 21.419 C 76.89 21.419 77.208 20.823 77.208 20.306 C 77.208 19.55 76.731 19.112 75.816 19.112 C 75.617 19.112 75.378 19.152 75.179 19.192 Z M 62.134 19.431 C 62.015 19.152 61.816 18.953 61.498 18.914 L 61.498 18.754 C 61.697 18.754 62.373 18.794 62.532 18.794 C 62.651 18.794 63.248 18.754 63.447 18.754 L 63.447 18.914 C 63.288 18.953 63.049 19.033 63.049 19.232 C 63.049 19.351 63.128 19.55 63.288 19.868 L 64.719 23.09 L 66.072 19.868 C 66.191 19.59 66.271 19.391 66.271 19.272 C 66.271 19.112 66.112 18.993 65.873 18.953 L 65.873 18.754 C 66.032 18.754 66.469 18.794 66.628 18.794 C 66.748 18.794 67.265 18.754 67.464 18.754 L 67.464 18.914 C 67.145 18.993 66.907 19.192 66.748 19.629 L 64.759 24.283 L 64.322 24.283 Z M 67.225 4.755 C 66.986 4.238 66.628 3.88 66.072 3.76 L 66.072 3.482 C 66.43 3.482 67.662 3.522 67.941 3.522 C 68.18 3.522 69.373 3.482 69.77 3.482 L 69.77 3.76 C 69.452 3.84 69.055 3.999 69.055 4.357 C 69.055 4.595 69.214 4.953 69.492 5.55 L 72.197 11.675 L 74.742 5.55 C 74.941 5.073 75.1 4.675 75.1 4.397 C 75.1 4.078 74.782 3.84 74.384 3.76 L 74.384 3.482 C 74.742 3.482 75.538 3.522 75.816 3.522 C 76.055 3.522 77.009 3.482 77.407 3.482 L 77.407 3.76 C 76.771 3.919 76.373 4.317 76.015 5.113 L 72.276 13.942 L 71.441 13.942 Z M 31.031 13.584 C 31.508 13.465 31.866 13.266 31.866 12.709 L 31.866 4.635 C 31.866 4.118 31.548 3.88 31.031 3.76 L 31.031 3.442 C 31.27 3.442 32.383 3.482 32.662 3.482 C 32.98 3.482 34.133 3.442 34.372 3.442 L 34.372 3.721 C 33.895 3.84 33.537 4.039 33.537 4.595 L 33.537 8.016 L 39.582 8.016 L 39.582 4.635 C 39.582 4.078 39.264 3.84 38.747 3.76 L 38.747 3.442 C 38.986 3.442 40.139 3.482 40.457 3.482 C 40.736 3.482 41.849 3.442 42.127 3.442 L 42.127 3.721 C 41.65 3.84 41.292 4.039 41.292 4.595 L 41.292 12.669 C 41.292 13.186 41.611 13.425 42.127 13.544 L 42.127 13.823 C 41.889 13.823 40.736 13.783 40.457 13.783 C 40.139 13.783 39.025 13.823 38.747 13.823 L 38.747 13.584 C 39.224 13.465 39.582 13.266 39.582 12.709 L 39.582 8.891 L 33.537 8.891 L 33.537 12.709 C 33.537 13.266 33.855 13.465 34.372 13.584 L 34.372 13.863 C 34.133 13.863 32.94 13.823 32.662 13.823 C 32.383 13.823 31.309 13.863 31.031 13.863 Z M 100.714 13.584 C 101.35 13.465 101.668 13.226 101.668 12.67 L 101.668 4.635 C 101.668 4.078 101.31 3.84 100.714 3.76 L 100.714 3.442 C 101.072 3.442 102.185 3.482 102.503 3.482 C 103.02 3.482 104.412 3.362 105.526 3.362 C 109.225 3.362 111.492 5.431 111.492 8.572 C 111.492 11.635 109.145 13.902 105.327 13.902 C 104.214 13.902 102.941 13.823 102.424 13.823 C 102.106 13.823 101.072 13.862 100.714 13.862 Z M 103.339 13.067 C 103.736 13.147 104.412 13.186 104.969 13.186 C 108.072 13.186 109.702 11.317 109.702 8.692 C 109.702 5.988 107.992 4.079 105.089 4.079 C 104.492 4.079 103.736 4.118 103.339 4.198 Z M 58.754 12.63 C 58.754 13.147 59.112 13.465 59.708 13.584 L 59.708 13.863 C 59.35 13.863 58.237 13.823 57.879 13.823 C 57.6 13.823 56.487 13.863 56.129 13.863 L 56.129 13.584 C 56.725 13.465 57.044 13.186 57.044 12.63 L 57.044 4.675 C 57.044 4.198 56.765 3.88 56.129 3.76 L 56.129 3.442 C 56.487 3.442 57.561 3.482 57.879 3.482 C 58.396 3.482 59.828 3.402 60.424 3.402 C 62.93 3.402 64.322 4.436 64.322 6.187 C 64.322 7.578 63.288 8.493 61.697 8.891 C 61.697 8.891 62.055 9.09 62.413 9.527 C 62.85 10.044 64.083 11.795 64.561 12.391 C 65.038 12.988 65.674 13.664 66.351 13.664 L 66.351 13.902 C 66.032 13.982 65.515 14.022 65.118 14.022 C 64.282 14.022 63.606 13.704 62.93 12.908 C 62.373 12.232 61.379 10.76 60.822 10.044 C 60.464 9.567 60.027 9.209 59.231 9.09 C 59.072 9.05 58.913 9.05 58.754 9.01 Z M 58.754 8.414 C 59.072 8.454 59.589 8.493 60.066 8.493 C 62.015 8.493 62.612 7.38 62.612 6.385 C 62.612 4.993 61.657 4.118 59.987 4.118 C 59.629 4.118 59.112 4.158 58.754 4.238 Z M 91.606 12.63 C 91.606 13.147 91.964 13.465 92.561 13.584 L 92.561 13.863 C 92.203 13.863 91.089 13.823 90.771 13.823 C 90.493 13.823 89.379 13.863 89.021 13.863 L 89.021 13.584 C 89.618 13.465 89.936 13.186 89.936 12.63 L 89.936 4.675 C 89.936 4.198 89.657 3.88 89.021 3.76 L 89.021 3.442 C 89.379 3.442 90.453 3.482 90.771 3.482 C 91.288 3.482 92.72 3.402 93.277 3.402 C 95.783 3.402 97.175 4.436 97.175 6.187 C 97.175 7.578 96.141 8.493 94.55 8.891 C 94.55 8.891 94.908 9.09 95.266 9.527 C 95.703 10.044 96.936 11.795 97.413 12.391 C 97.891 12.988 98.527 13.664 99.203 13.664 L 99.203 13.902 C 98.885 13.982 98.368 14.022 97.97 14.022 C 97.135 14.022 96.459 13.704 95.783 12.908 C 95.226 12.232 94.231 10.76 93.675 10.044 C 93.317 9.567 92.879 9.209 92.084 9.09 C 91.925 9.05 91.765 9.05 91.606 9.01 Z M 91.606 8.414 C 91.925 8.454 92.442 8.493 92.919 8.493 C 94.868 8.493 95.464 7.38 95.464 6.385 C 95.464 4.993 94.51 4.118 92.839 4.118 C 92.481 4.118 91.964 4.158 91.606 4.238 Z M 43.64 13.584 C 44.316 13.425 44.674 12.988 44.913 12.431 L 48.254 4.397 C 48.413 4.079 48.572 3.402 48.572 3.402 L 49.526 3.402 C 49.526 3.402 49.685 4.079 49.845 4.437 L 53.384 12.471 C 53.623 13.027 53.901 13.425 54.617 13.584 L 54.617 13.863 C 54.22 13.863 53.066 13.823 52.788 13.823 C 52.509 13.823 51.396 13.863 50.998 13.863 L 50.998 13.584 C 51.515 13.465 51.674 13.186 51.674 12.948 C 51.674 12.749 51.595 12.471 51.475 12.232 L 50.72 10.522 L 46.822 10.522 L 46.146 12.272 C 46.066 12.471 45.986 12.749 45.986 12.948 C 45.986 13.226 46.146 13.465 46.702 13.624 L 46.702 13.902 C 46.344 13.902 45.43 13.863 45.231 13.863 L 43.719 13.902 Z M 50.282 9.686 L 48.611 5.828 L 47.06 9.686 Z M 76.73 13.584 C 77.406 13.425 77.764 12.988 78.003 12.431 L 81.344 4.397 C 81.503 4.079 81.662 3.402 81.662 3.402 L 82.617 3.402 C 82.617 3.402 82.776 4.079 82.935 4.437 L 86.475 12.471 C 86.713 13.027 86.992 13.425 87.708 13.584 L 87.708 13.863 C 87.31 13.863 86.157 13.823 85.878 13.823 C 85.6 13.823 84.486 13.863 84.088 13.863 L 84.088 13.584 C 84.605 13.465 84.765 13.186 84.765 12.948 C 84.765 12.749 84.685 12.471 84.566 12.232 L 83.81 10.522 L 79.912 10.522 L 79.236 12.272 C 79.156 12.471 79.077 12.749 79.077 12.948 C 79.077 13.226 79.236 13.465 79.793 13.624 L 79.793 13.902 C 79.435 13.902 78.52 13.863 78.321 13.863 L 76.81 13.902 L 76.81 13.584 Z M 83.332 9.686 L 81.662 5.828 L 80.111 9.686 Z\" fill=\"rgb(158, 161, 174)\"></path><path d=\"M 0.193 0.192 L 23.459 0.192 L 23.459 8.982 C 23.459 12.999 21.948 21.55 11.925 27.914 C 11.925 27.914 1.027 23.38 0.192 8.982 Z\" fill=\"rgb(158, 161, 174)\"></path><path d=\"M 7.8 14.018 C 7.742 14.016 7.691 14.045 7.65 14.08 C 7.597 14.129 7.553 14.186 7.52 14.25 C 7.432 14.374 7.245 14.405 7.075 14.4 C 6.906 14.396 6.76 14.357 6.76 14.357 L 6.751 14.354 L 6.741 14.358 C 6.497 14.439 6.389 14.543 6.344 14.632 C 6.326 14.667 6.317 14.706 6.316 14.746 C 6.316 14.769 6.319 14.779 6.321 14.786 L 6.321 15.697 C 6.315 15.739 6.292 15.776 6.257 15.799 C 6.224 15.821 6.18 15.833 6.136 15.838 C 6.048 15.847 5.963 15.828 5.963 15.828 L 5.962 15.828 C 5.656 15.767 5.446 15.839 5.316 15.928 C 5.187 16.015 5.136 16.117 5.134 16.12 C 5.003 16.297 5.09 16.546 5.09 16.546 L 5.09 16.548 C 5.098 16.57 5.108 16.592 5.119 16.611 L 5.121 16.616 C 5.24 16.934 5.678 16.934 5.678 16.934 C 5.837 17.053 6.115 16.973 6.115 16.973 C 6.197 16.973 6.244 17.007 6.274 17.05 C 6.288 17.109 6.281 17.167 6.281 17.167 L 6.281 17.174 L 6.282 17.18 C 6.285 17.191 6.29 17.246 6.293 17.322 C 6.296 17.398 6.297 17.497 6.298 17.612 C 6.3 17.843 6.299 18.137 6.296 18.425 C 6.291 19.002 6.281 19.558 6.281 19.558 C 6.281 19.753 6.243 19.867 6.243 19.867 L 6.242 19.871 L 6.242 19.877 C 6.242 19.886 6.238 19.891 6.228 19.9 C 6.211 19.912 6.192 19.92 6.173 19.925 C 6.122 19.938 6.049 19.944 5.976 19.944 C 5.83 19.944 5.682 19.924 5.682 19.924 L 5.678 19.923 L 5.674 19.924 C 5.26 19.966 5.131 20.337 5.13 20.341 L 5.13 20.342 C 5.1 20.414 5.097 20.494 5.122 20.568 C 5.133 20.604 5.15 20.637 5.168 20.669 C 5.242 20.85 5.439 20.991 5.439 20.991 C 5.439 21.07 6.195 21.11 6.195 21.11 C 6.241 21.121 6.272 21.153 6.295 21.192 C 6.298 21.199 6.3 21.206 6.302 21.213 C 6.321 21.282 6.321 21.348 6.321 21.348 C 6.315 21.369 6.313 21.393 6.312 21.427 C 6.31 21.466 6.309 21.514 6.31 21.567 C 6.312 21.674 6.318 21.805 6.326 21.932 C 6.34 22.186 6.36 22.425 6.36 22.425 L 6.361 22.426 L 6.361 22.428 C 6.366 22.452 6.377 22.475 6.393 22.495 L 6.394 22.502 C 6.434 22.74 7.189 22.661 7.189 22.661 C 7.189 22.661 9.838 22.6 10.554 22.611 C 10.656 22.613 10.719 22.616 10.729 22.621 C 10.808 22.621 11.007 22.582 11.007 22.582 L 11.285 22.78 C 11.38 22.856 11.499 22.894 11.62 22.885 C 11.641 22.884 11.662 22.881 11.682 22.878 C 11.887 22.841 12.041 22.701 12.041 22.701 L 12.439 22.621 C 12.519 22.621 15.741 22.582 15.741 22.582 C 16.019 22.661 16.138 22.541 16.138 22.541 L 16.655 22.502 C 16.675 22.502 16.693 22.5 16.711 22.497 C 16.837 22.474 16.902 22.373 16.936 22.274 C 16.946 22.254 16.957 22.235 16.964 22.215 C 17.006 22.099 17.005 21.985 17.005 21.985 L 17.005 21.312 C 17.011 21.267 17.022 21.223 17.038 21.18 C 17.11 21.053 17.212 21.03 17.212 21.03 L 17.689 20.95 L 17.928 20.832 C 18.02 20.808 18.068 20.744 18.096 20.667 C 18.103 20.656 18.11 20.645 18.116 20.633 C 18.149 20.563 18.159 20.482 18.159 20.404 C 18.159 20.249 18.118 20.107 18.118 20.107 L 18.117 20.104 L 18.116 20.1 C 18.029 19.926 17.828 19.855 17.655 19.825 C 17.481 19.794 17.328 19.804 17.328 19.804 L 17.328 19.804 C 17.136 19.824 17.064 19.769 17.031 19.715 C 16.998 19.661 17.005 19.603 17.005 19.603 L 17.005 19.601 L 17.046 17.136 C 17.061 17.044 17.088 16.97 17.115 16.91 C 17.146 16.85 17.172 16.814 17.172 16.814 C 17.291 16.854 17.689 16.734 17.689 16.734 C 17.917 16.711 18.013 16.571 18.054 16.455 C 18.058 16.449 18.063 16.442 18.066 16.435 C 18.119 16.325 18.118 16.224 18.118 16.221 C 18.14 16.065 18.031 15.936 17.923 15.849 C 17.855 15.794 17.781 15.748 17.702 15.711 L 17.696 15.707 L 17.137 15.707 C 17.12 15.704 17.106 15.693 17.096 15.679 C 17.08 15.656 17.068 15.63 17.06 15.603 C 17.041 15.538 17.032 15.452 17.03 15.366 C 17.025 15.195 17.045 15.028 17.045 15.028 L 17.046 15.026 L 17.046 14.706 C 17.046 14.551 16.935 14.443 16.831 14.375 C 16.727 14.308 16.625 14.277 16.625 14.277 L 16.62 14.276 L 15.911 14.276 C 15.895 14.249 15.877 14.223 15.85 14.206 C 15.814 14.184 15.775 14.166 15.735 14.153 C 15.686 14.137 15.636 14.125 15.585 14.117 C 15.456 14.077 15.263 14.077 15.263 14.077 L 15.253 14.077 L 15.244 14.082 C 14.997 14.254 14.562 14.326 14.192 14.35 C 13.821 14.375 13.515 14.356 13.515 14.356 L 12.267 14.275 L 12.257 14.285 C 12.26 14.282 12.252 14.288 12.239 14.292 C 12.222 14.298 12.205 14.302 12.187 14.306 C 12.146 14.315 12.093 14.323 12.041 14.331 C 11.938 14.346 11.839 14.356 11.839 14.356 L 11.818 14.357 L 11.811 14.378 C 11.777 14.48 11.673 14.516 11.673 14.516 L 11.564 14.553 C 11.491 14.491 11.378 14.445 11.27 14.412 C 11.2 14.39 11.129 14.372 11.058 14.357 L 11.055 14.356 C 11.052 14.354 11.048 14.353 11.045 14.353 C 11.038 14.351 11.031 14.35 11.024 14.349 C 11.003 14.348 10.982 14.347 10.961 14.347 C 10.909 14.347 10.839 14.348 10.756 14.351 C 10.589 14.357 10.372 14.367 10.155 14.38 C 9.723 14.405 9.296 14.435 9.295 14.435 C 8.802 14.455 8.469 14.376 8.26 14.293 C 8.05 14.21 7.968 14.127 7.968 14.127 C 7.915 14.055 7.857 14.02 7.8 14.018 Z M 7.798 14.083 C 7.832 14.085 7.873 14.104 7.919 14.169 L 7.92 14.17 L 7.921 14.173 C 7.921 14.173 8.018 14.268 8.236 14.354 C 8.454 14.44 8.796 14.521 9.298 14.501 L 9.3 14.501 C 9.3 14.501 9.727 14.47 10.159 14.445 C 10.375 14.433 10.593 14.422 10.758 14.417 C 10.841 14.414 10.911 14.412 10.961 14.413 C 10.986 14.413 11.005 14.414 11.018 14.415 C 11.024 14.416 11.027 14.416 11.03 14.417 L 11.031 14.418 L 11.041 14.421 C 11.041 14.421 11.14 14.44 11.252 14.474 C 11.365 14.509 11.492 14.561 11.542 14.61 L 11.556 14.624 L 11.694 14.578 C 11.694 14.578 11.779 14.528 11.836 14.442 C 11.792 14.55 11.683 14.587 11.683 14.587 L 11.564 14.667 C 11.445 14.548 11.047 14.468 11.047 14.468 C 11.007 14.428 9.297 14.547 9.297 14.547 C 8.303 14.587 7.945 14.23 7.945 14.23 C 7.746 13.951 7.547 14.348 7.547 14.348 C 7.348 14.627 6.751 14.468 6.751 14.468 C 6.531 14.541 6.433 14.631 6.387 14.707 C 6.391 14.691 6.396 14.676 6.403 14.661 C 6.438 14.592 6.531 14.499 6.758 14.422 C 6.771 14.425 6.904 14.461 7.074 14.466 C 7.253 14.471 7.464 14.442 7.574 14.288 L 7.576 14.286 L 7.577 14.284 C 7.577 14.284 7.625 14.188 7.693 14.129 C 7.727 14.1 7.763 14.082 7.798 14.083 Z M 15.272 14.143 C 15.286 14.143 15.467 14.146 15.571 14.181 L 15.574 14.181 L 15.577 14.182 C 15.577 14.182 15.644 14.192 15.716 14.215 C 15.751 14.227 15.788 14.242 15.816 14.26 C 15.82 14.263 15.823 14.267 15.827 14.27 C 15.731 14.211 15.581 14.189 15.581 14.189 C 15.462 14.149 15.263 14.149 15.263 14.149 C 14.746 14.507 13.513 14.428 13.513 14.428 L 12.28 14.348 C 12.241 14.388 11.856 14.427 11.847 14.427 C 11.849 14.425 11.851 14.423 11.853 14.42 C 11.858 14.419 11.95 14.41 12.052 14.396 C 12.104 14.388 12.158 14.38 12.202 14.37 C 12.224 14.365 12.244 14.36 12.261 14.355 C 12.27 14.351 12.277 14.346 12.285 14.342 L 13.511 14.421 C 13.511 14.421 13.822 14.441 14.197 14.416 C 14.568 14.391 15.002 14.325 15.272 14.143 Z M 15.895 14.341 L 16.61 14.341 C 16.612 14.342 16.669 14.364 16.735 14.398 C 16.668 14.365 16.615 14.348 16.615 14.348 L 15.899 14.348 C 15.898 14.346 15.896 14.344 15.895 14.341 Z M 16.748 14.405 C 16.765 14.414 16.779 14.419 16.797 14.431 C 16.802 14.434 16.806 14.438 16.811 14.441 C 16.791 14.428 16.77 14.416 16.748 14.405 Z M 17.032 15.695 C 17.036 15.703 17.04 15.711 17.045 15.718 C 17.065 15.745 17.093 15.766 17.126 15.772 L 17.13 15.773 L 17.681 15.773 C 17.686 15.775 17.785 15.821 17.883 15.9 C 17.952 15.956 18.013 16.026 18.04 16.103 C 17.969 15.989 17.837 15.901 17.757 15.855 C 17.735 15.842 17.712 15.831 17.689 15.82 L 17.133 15.82 C 17.084 15.811 17.052 15.762 17.032 15.695 Z M 6.334 15.816 C 6.234 16.006 5.956 15.939 5.956 15.939 C 5.359 15.82 5.161 16.218 5.161 16.218 C 5.155 16.225 5.152 16.233 5.147 16.241 C 5.156 16.211 5.169 16.183 5.188 16.157 L 5.191 16.153 C 5.191 16.153 5.236 16.061 5.354 15.981 C 5.472 15.901 5.66 15.834 5.95 15.892 C 5.95 15.892 6.043 15.912 6.144 15.902 C 6.194 15.897 6.248 15.884 6.294 15.854 C 6.309 15.844 6.322 15.831 6.334 15.816 Z M 16.981 19.754 C 17.029 19.827 17.133 19.89 17.334 19.87 C 17.334 19.87 17.48 19.86 17.645 19.889 C 17.809 19.918 17.985 19.986 18.057 20.129 C 18.057 20.13 18.062 20.15 18.064 20.156 C 17.877 19.881 17.332 19.916 17.332 19.916 C 17.072 19.942 17 19.833 16.981 19.754 Z M 6.278 19.941 L 6.274 19.956 C 6.274 19.976 6.265 19.994 6.249 20.006 C 6.229 20.02 6.206 20.031 6.181 20.036 C 6.013 20.081 5.678 20.036 5.678 20.036 C 5.39 20.065 5.249 20.259 5.192 20.365 C 5.192 20.365 5.303 20.028 5.681 19.989 C 5.688 19.99 5.828 20.009 5.977 20.009 C 6.053 20.009 6.129 20.004 6.19 19.988 C 6.22 19.98 6.248 19.969 6.27 19.951 C 6.273 19.949 6.275 19.944 6.278 19.941 Z M 9.049 2.978 L 9.038 2.988 C 8.417 3.493 7.515 3.26 7.515 3.26 L 7.511 3.259 L 7.507 3.259 C 6.631 3.259 6.349 3.299 6.349 3.299 L 6.337 3.301 L 6.329 3.311 C 6.238 3.419 6.127 3.418 6.03 3.39 C 5.969 3.372 5.911 3.344 5.859 3.307 C 5.841 3.281 5.812 3.266 5.781 3.255 C 5.744 3.243 5.706 3.234 5.667 3.23 C 5.59 3.22 5.519 3.219 5.519 3.219 L 5.517 3.219 L 5.516 3.22 C 4.643 3.279 4.099 3.229 3.775 3.165 C 3.612 3.133 3.505 3.098 3.439 3.071 C 3.373 3.044 3.35 3.026 3.35 3.026 L 3.354 3.03 C 3.343 3.02 3.329 3.012 3.314 3.009 C 3.298 3.004 3.281 3 3.264 2.998 C 3.222 2.992 3.181 2.988 3.139 2.986 C 3.054 2.981 2.973 2.981 2.973 2.981 L 2.953 2.981 L 2.944 2.998 C 2.909 3.068 2.802 3.213 2.794 3.224 C 2.782 3.227 2.771 3.23 2.759 3.231 C 2.731 3.234 2.702 3.235 2.674 3.236 C 2.608 3.238 2.526 3.237 2.447 3.235 C 2.289 3.23 2.14 3.22 2.14 3.22 L 2.139 3.219 L 2.138 3.219 C 1.972 3.219 1.872 3.273 1.816 3.329 C 1.784 3.36 1.76 3.4 1.748 3.444 L 1.747 3.447 L 1.708 4.207 L 1.708 4.21 C 1.727 4.446 1.704 4.541 1.688 4.567 C 1.679 4.58 1.679 4.577 1.679 4.577 L 1.652 4.559 L 1.633 4.586 C 1.623 4.602 1.583 4.623 1.527 4.635 C 1.462 4.648 1.397 4.655 1.332 4.656 C 1.195 4.661 1.067 4.652 1.067 4.652 L 1.064 4.651 L 1.061 4.652 C 0.964 4.66 0.875 4.709 0.815 4.786 C 0.759 4.857 0.725 4.944 0.704 5.029 C 0.663 5.199 0.674 5.363 0.674 5.363 L 0.674 5.366 C 0.695 5.474 0.757 5.55 0.834 5.599 C 0.911 5.647 1.003 5.671 1.09 5.681 C 1.26 5.701 1.41 5.672 1.419 5.671 L 1.42 5.671 C 1.631 5.69 1.708 5.756 1.737 5.808 C 1.765 5.861 1.749 5.907 1.749 5.907 L 1.747 5.912 L 1.747 5.917 C 1.747 5.999 1.758 6.653 1.767 7.29 L 1.787 8.538 C 1.777 8.623 1.755 8.677 1.728 8.71 C 1.706 8.738 1.674 8.757 1.639 8.763 C 1.577 8.776 1.514 8.751 1.514 8.751 L 1.508 8.748 L 1.502 8.748 C 1.057 8.748 0.852 8.903 0.767 9.063 C 0.716 9.161 0.697 9.273 0.714 9.382 C 0.736 9.67 0.918 9.804 1.089 9.855 C 1.261 9.908 1.426 9.887 1.426 9.887 L 1.422 9.887 C 1.635 9.887 1.722 9.944 1.759 9.993 C 1.796 10.042 1.788 10.088 1.788 10.088 L 1.786 10.098 L 1.791 10.108 C 1.789 10.105 1.795 10.128 1.797 10.158 C 1.799 10.189 1.799 10.229 1.799 10.275 C 1.797 10.367 1.79 10.484 1.783 10.598 C 1.768 10.826 1.748 11.045 1.748 11.045 L 1.748 11.049 L 1.749 11.053 C 1.79 11.282 1.923 11.376 2.042 11.403 C 2.152 11.428 2.243 11.402 2.257 11.398 L 2.258 11.398 L 5.433 11.478 C 5.886 11.809 6.179 11.818 6.355 11.728 C 6.522 11.641 6.566 11.487 6.572 11.469 L 6.627 11.477 C 6.663 11.483 6.732 11.486 6.834 11.489 C 6.936 11.492 7.067 11.494 7.219 11.495 C 7.523 11.496 7.905 11.495 8.283 11.493 C 8.661 11.491 9.035 11.487 9.318 11.484 C 9.6 11.481 9.793 11.478 9.812 11.478 L 9.814 11.478 C 9.945 11.507 10.047 11.501 10.125 11.471 C 10.196 11.443 10.255 11.393 10.294 11.329 C 10.338 11.256 10.362 11.174 10.364 11.089 L 10.364 11.088 L 10.404 10.14 C 10.42 10.078 10.488 10.032 10.558 10.004 C 10.626 9.977 10.687 9.968 10.691 9.967 C 11.133 10.026 11.349 9.87 11.444 9.696 C 11.539 9.522 11.518 9.337 11.518 9.335 L 11.518 9.334 C 11.497 9.045 11.325 8.902 11.164 8.84 C 11.002 8.777 10.847 8.788 10.847 8.788 L 10.849 8.787 C 10.638 8.787 10.542 8.714 10.493 8.643 C 10.464 8.602 10.447 8.553 10.444 8.503 L 10.444 8.503 C 10.455 8.433 10.461 8.262 10.467 8.029 C 10.473 7.794 10.476 7.503 10.478 7.22 C 10.484 6.653 10.484 6.116 10.484 6.116 C 10.484 6.067 10.512 5.989 10.541 5.926 C 10.566 5.871 10.585 5.839 10.591 5.829 C 10.836 5.854 11.023 5.839 11.154 5.792 C 11.291 5.743 11.376 5.663 11.424 5.58 C 11.52 5.415 11.477 5.241 11.476 5.238 C 11.494 5.088 11.472 4.975 11.419 4.897 C 11.366 4.816 11.286 4.771 11.207 4.747 C 11.052 4.701 10.899 4.729 10.889 4.731 C 10.617 4.731 10.523 4.656 10.49 4.59 C 10.457 4.523 10.482 4.457 10.482 4.457 L 10.483 4.453 L 10.483 4.45 C 10.543 4.069 10.524 3.806 10.488 3.638 C 10.452 3.469 10.398 3.392 10.398 3.392 L 10.395 3.387 L 10.389 3.384 C 10.349 3.357 10.29 3.346 10.219 3.338 C 10.143 3.331 10.066 3.328 9.989 3.328 C 9.833 3.328 9.693 3.338 9.693 3.338 L 9.683 3.339 L 9.676 3.345 C 9.648 3.366 9.617 3.364 9.574 3.342 C 9.532 3.321 9.484 3.28 9.441 3.234 C 9.354 3.143 9.285 3.035 9.285 3.035 L 9.278 3.024 Z M 20.305 2.978 L 20.294 2.988 C 19.673 3.493 18.771 3.26 18.771 3.26 L 18.767 3.259 L 18.763 3.259 C 17.926 3.259 17.645 3.299 17.645 3.299 L 17.632 3.301 L 17.624 3.311 C 17.534 3.419 17.423 3.418 17.325 3.39 C 17.265 3.372 17.207 3.344 17.155 3.308 C 17.137 3.281 17.108 3.266 17.077 3.255 C 17.04 3.243 17.001 3.234 16.963 3.23 C 16.885 3.22 16.814 3.219 16.814 3.219 L 16.813 3.219 L 16.812 3.22 C 15.939 3.279 15.395 3.229 15.07 3.165 C 14.908 3.133 14.801 3.098 14.735 3.071 C 14.669 3.044 14.645 3.026 14.645 3.026 L 14.649 3.03 C 14.638 3.02 14.624 3.012 14.609 3.009 C 14.593 3.004 14.576 3 14.559 2.998 C 14.518 2.992 14.476 2.988 14.434 2.986 C 14.348 2.981 14.269 2.981 14.269 2.981 L 14.249 2.981 L 14.239 2.998 C 14.205 3.068 14.096 3.214 14.088 3.225 C 14.077 3.228 14.065 3.23 14.053 3.231 C 14.026 3.234 13.998 3.235 13.97 3.236 C 13.904 3.238 13.822 3.237 13.743 3.235 C 13.584 3.23 13.435 3.22 13.435 3.22 L 13.434 3.219 L 13.434 3.219 C 13.249 3.219 13.14 3.271 13.079 3.327 C 13.017 3.383 13.003 3.444 13.003 3.444 L 13.003 4.249 C 13.023 4.465 12.998 4.551 12.984 4.571 C 12.977 4.581 12.977 4.577 12.976 4.577 L 12.974 4.577 L 12.947 4.559 L 12.929 4.586 C 12.918 4.602 12.879 4.623 12.822 4.635 C 12.758 4.648 12.692 4.655 12.626 4.656 C 12.489 4.661 12.362 4.652 12.362 4.652 L 12.359 4.651 L 12.356 4.652 C 12.239 4.662 12.151 4.714 12.088 4.784 C 12.026 4.855 11.988 4.943 11.965 5.028 C 11.918 5.199 11.929 5.362 11.929 5.362 L 11.929 5.364 L 11.93 5.366 C 11.951 5.474 12.013 5.55 12.09 5.598 C 12.166 5.647 12.258 5.671 12.345 5.681 C 12.455 5.693 12.566 5.689 12.675 5.671 L 12.675 5.671 C 12.887 5.69 12.963 5.756 12.992 5.808 C 13.02 5.861 13.005 5.907 13.005 5.907 L 13.004 5.908 L 13.004 5.909 C 12.996 5.939 12.994 5.991 12.992 6.074 C 12.988 6.181 12.987 6.287 12.986 6.394 C 12.984 6.693 12.985 6.991 12.988 7.29 C 12.993 7.924 13.003 8.533 13.003 8.538 C 12.994 8.623 12.97 8.677 12.943 8.71 C 12.922 8.738 12.89 8.757 12.855 8.763 C 12.792 8.776 12.731 8.751 12.731 8.751 L 12.724 8.748 L 12.717 8.748 C 12.273 8.748 12.068 8.903 11.982 9.063 C 11.931 9.161 11.913 9.272 11.93 9.382 C 11.951 9.67 12.133 9.804 12.305 9.855 C 12.477 9.907 12.642 9.887 12.642 9.887 L 12.638 9.887 C 12.83 9.887 12.918 9.943 12.96 9.994 C 13.003 10.046 13.003 10.093 13.003 10.093 L 13.003 10.101 L 13.006 10.108 C 13.005 10.105 13.011 10.128 13.012 10.158 C 13.014 10.189 13.014 10.229 13.013 10.275 C 13.011 10.367 13.005 10.484 12.998 10.598 C 12.983 10.826 12.964 11.045 12.964 11.045 L 12.963 11.049 L 12.964 11.053 C 13.005 11.282 13.138 11.376 13.257 11.403 C 13.367 11.428 13.458 11.403 13.472 11.399 L 13.474 11.399 L 16.649 11.479 C 17.102 11.809 17.394 11.819 17.569 11.728 C 17.738 11.641 17.793 11.476 17.798 11.46 L 17.798 11.459 C 17.81 11.437 17.833 11.422 17.858 11.419 C 17.866 11.419 17.865 11.421 17.864 11.418 C 17.862 11.416 17.865 11.418 17.858 11.432 L 17.839 11.471 L 17.882 11.478 C 17.918 11.484 17.987 11.487 18.089 11.49 C 18.191 11.493 18.323 11.494 18.474 11.495 C 18.778 11.497 19.16 11.496 19.538 11.494 C 19.916 11.491 20.289 11.487 20.572 11.484 C 20.856 11.481 21.052 11.479 21.07 11.479 C 21.209 11.508 21.316 11.501 21.397 11.47 C 21.478 11.44 21.532 11.385 21.565 11.327 C 21.631 11.212 21.619 11.084 21.619 11.084 L 21.619 11.089 L 21.659 10.14 C 21.675 10.078 21.742 10.032 21.812 10.004 C 21.881 9.976 21.943 9.969 21.947 9.968 C 22.388 10.026 22.604 9.87 22.699 9.696 C 22.794 9.522 22.772 9.337 22.772 9.336 L 22.772 9.334 C 22.751 9.045 22.581 8.902 22.419 8.839 C 22.257 8.777 22.101 8.788 22.101 8.788 L 22.104 8.787 C 21.873 8.787 21.778 8.713 21.734 8.644 C 21.691 8.574 21.699 8.506 21.699 8.506 L 21.699 8.502 C 21.699 8.267 21.739 6.116 21.739 6.116 L 21.739 6.116 C 21.739 6.067 21.767 5.988 21.796 5.925 C 21.821 5.87 21.841 5.838 21.847 5.828 C 22.092 5.853 22.279 5.839 22.41 5.792 C 22.547 5.743 22.632 5.663 22.68 5.58 C 22.776 5.415 22.733 5.241 22.732 5.237 C 22.75 5.088 22.727 4.975 22.674 4.896 C 22.621 4.816 22.541 4.771 22.461 4.747 C 22.307 4.701 22.152 4.729 22.144 4.731 C 21.872 4.731 21.779 4.655 21.746 4.589 C 21.713 4.523 21.737 4.457 21.737 4.457 L 21.739 4.45 C 21.799 4.069 21.779 3.806 21.744 3.637 C 21.708 3.469 21.654 3.392 21.654 3.392 L 21.65 3.387 L 21.645 3.384 C 21.605 3.356 21.546 3.346 21.475 3.338 C 21.398 3.331 21.321 3.328 21.244 3.328 C 21.089 3.328 20.948 3.338 20.948 3.338 L 20.939 3.339 L 20.931 3.345 C 20.903 3.366 20.873 3.364 20.83 3.342 C 20.788 3.321 20.739 3.28 20.696 3.234 C 20.609 3.143 20.541 3.035 20.541 3.035 L 20.534 3.024 Z\" fill=\"rgb(0, 0, 0)\"></path><path d=\"M 11.852 28 L 11.773 27.96 C 11.693 27.92 0.835 23.227 0 8.949 L 0 0 L 23.545 0 L 23.545 8.909 C 23.545 12.409 22.432 21.318 11.931 27.92 Z M 0.278 0.278 L 0.278 8.908 C 1.074 22.431 10.938 27.283 11.852 27.681 C 22.153 21.119 23.267 12.369 23.267 8.908 L 23.267 0.278 Z\" fill=\"rgb(0, 0, 0)\"></path><path d=\"M 3.481 3.362 C 3.481 3.362 3.243 3.362 3.283 3.522 L 3.203 9.567 C 3.203 9.567 3.203 9.846 3.641 9.885 C 3.641 9.885 4.197 9.925 4.316 9.885 L 5.59 9.885 C 5.59 9.885 5.828 10.124 5.828 9.845 C 5.828 9.845 5.987 4.954 5.907 3.92 C 5.907 3.92 5.907 3.481 5.549 3.481 C 5.549 3.481 4.118 3.601 3.999 3.481 Z M 9.002 3.372 C 8.95 3.367 8.865 3.382 8.731 3.442 C 8.731 3.442 8.772 3.601 6.982 3.522 C 6.942 3.522 6.266 3.521 6.226 3.8 C 6.226 3.8 6.186 6.664 6.186 6.743 L 6.146 9.129 L 6.106 9.965 C 6.106 9.965 6.226 10.123 6.305 10.004 C 6.305 10.004 6.902 9.845 7.3 9.925 C 7.3 9.925 8.493 10.044 8.772 9.845 C 8.772 9.845 8.97 9.925 9.01 9.646 C 9.01 9.646 9.09 4.356 9.05 4.277 C 9.05 4.277 9.129 3.521 9.089 3.442 C 9.089 3.442 9.09 3.38 9.002 3.372 Z M 2.445 3.52 C 2.367 3.523 2.253 3.571 2.089 3.721 L 2.05 4.516 C 2.05 4.516 2.05 4.953 1.652 4.914 C 1.652 4.914 1.214 4.914 0.976 5.113 C 0.976 5.113 0.856 5.51 1.294 5.47 C 1.294 5.47 1.97 5.47 2.01 5.749 L 1.97 8.612 C 1.97 8.612 2.13 9.09 1.612 9.09 C 1.612 9.09 0.976 9.05 0.976 9.447 C 0.976 9.447 1.095 9.766 1.652 9.686 C 1.652 9.686 2.05 9.766 2.01 10.124 L 2.01 10.839 C 2.01 10.839 1.97 11.118 2.368 11.158 L 5.311 11.158 C 5.311 11.158 5.47 11.158 5.47 10.998 C 5.47 10.998 5.47 10.839 5.232 10.839 L 2.805 10.76 C 2.805 10.76 2.407 10.88 2.367 10.283 C 2.367 10.283 2.406 5.176 2.407 4.951 L 2.408 4.953 L 2.407 4.932 L 2.408 4.874 L 2.406 4.87 C 2.402 4.675 2.401 3.983 2.607 3.641 C 2.607 3.641 2.575 3.516 2.445 3.52 Z M 9.976 3.535 C 9.806 3.55 9.805 3.76 9.805 3.76 C 9.885 3.84 9.925 4.118 9.925 4.118 C 9.964 4.755 9.925 5.47 9.925 6.147 C 9.885 8.414 9.805 10.482 9.805 10.482 C 9.805 10.919 9.567 10.8 9.567 10.8 L 6.941 10.8 C 6.663 10.8 6.663 10.959 6.663 10.959 C 6.703 11.198 6.941 11.118 6.941 11.118 C 7.18 11.158 9.805 11.118 9.805 11.118 C 10.203 11.158 10.163 10.64 10.163 10.64 C 10.203 9.726 10.282 9.646 10.282 9.646 C 10.362 9.606 10.8 9.606 10.8 9.606 C 11.516 9.646 11.197 9.169 11.197 9.169 C 11.118 9.05 10.64 9.05 10.64 9.05 C 10.203 9.089 10.243 8.612 10.243 8.612 L 10.282 5.868 C 10.203 5.629 10.402 5.51 10.402 5.51 L 10.839 5.51 C 11.436 5.55 11.277 5.152 11.277 5.152 C 11.277 4.953 10.76 4.874 10.76 4.874 C 10.283 4.953 10.322 4.675 10.322 4.675 L 10.322 3.998 C 10.401 3.561 10.123 3.561 10.123 3.561 C 10.063 3.539 10.015 3.531 9.976 3.535 Z M 9.415 3.623 C 9.364 3.63 9.308 3.671 9.249 3.76 L 9.249 9.726 C 9.249 9.726 9.408 10.243 9.646 10.203 C 9.646 10.203 9.686 10.084 9.686 9.885 L 9.766 4.198 C 9.766 4.198 9.635 3.594 9.415 3.623 Z M 3.005 3.68 C 2.647 3.68 2.607 4.357 2.607 4.357 L 2.566 10.004 C 2.606 10.283 2.686 10.243 2.686 10.243 C 3.044 10.004 3.005 9.607 3.005 9.607 C 3.005 9.607 3.044 4.238 3.044 4.158 C 3.044 4.078 3.005 3.68 3.005 3.68 Z M 3.17 10.041 C 3.151 10.042 3.132 10.045 3.114 10.051 C 3.035 10.073 2.937 10.142 2.854 10.307 L 2.852 10.31 L 2.851 10.313 C 2.851 10.313 2.828 10.388 2.846 10.46 C 2.855 10.501 2.883 10.536 2.921 10.555 C 2.962 10.574 3.015 10.575 3.086 10.556 L 5.028 10.556 L 5.549 10.676 L 5.556 10.675 C 5.556 10.675 5.593 10.666 5.639 10.649 C 5.685 10.632 5.741 10.607 5.782 10.566 C 5.804 10.545 5.82 10.519 5.828 10.49 C 5.835 10.456 5.83 10.422 5.815 10.391 C 5.784 10.324 5.709 10.255 5.566 10.174 L 5.559 10.169 L 3.684 10.169 C 3.681 10.168 3.597 10.15 3.499 10.126 C 3.4 10.101 3.287 10.068 3.258 10.053 L 3.256 10.053 L 3.255 10.053 C 3.255 10.053 3.221 10.039 3.17 10.042 Z M 9.079 10.146 C 8.967 10.141 8.811 10.164 8.811 10.164 C 8.493 10.362 6.624 10.203 6.624 10.203 C 6.504 10.203 6.345 10.402 6.345 10.402 C 6.305 10.76 6.902 10.601 6.862 10.601 L 9.089 10.601 C 9.447 10.68 9.447 10.522 9.447 10.522 C 9.447 10.402 9.169 10.163 9.169 10.163 C 9.149 10.154 9.116 10.148 9.079 10.146 Z M 6.137 10.592 C 6.126 10.593 6.116 10.596 6.106 10.601 C 6.106 10.601 5.748 10.601 5.748 11.079 C 5.748 11.079 5.788 11.436 6.146 11.436 C 6.146 11.436 6.464 11.356 6.464 10.998 C 6.464 10.998 6.29 10.579 6.137 10.592 Z M 14.697 3.362 C 14.697 3.362 14.458 3.362 14.498 3.522 L 14.419 9.567 C 14.419 9.567 14.419 9.845 14.856 9.885 C 14.856 9.885 15.414 9.925 15.533 9.885 L 16.805 9.885 C 16.805 9.885 17.044 10.123 17.044 9.805 C 17.044 9.805 17.204 4.913 17.124 3.879 C 17.124 3.879 17.124 3.442 16.766 3.442 C 16.766 3.442 15.334 3.561 15.215 3.442 Z M 20.202 3.411 C 20.155 3.413 20.087 3.432 19.987 3.481 C 19.987 3.481 20.027 3.641 18.237 3.561 C 18.197 3.561 17.481 3.521 17.481 3.839 C 17.481 3.839 17.442 6.703 17.442 6.783 L 17.402 9.169 L 17.323 10.004 C 17.323 10.004 17.442 10.163 17.522 10.044 C 17.522 10.044 18.118 9.885 18.516 9.965 C 18.516 9.965 19.709 10.084 19.987 9.885 C 19.987 9.885 20.186 9.965 20.226 9.686 C 20.226 9.686 20.305 4.397 20.265 4.317 C 20.265 4.317 20.345 3.561 20.306 3.481 C 20.306 3.481 20.306 3.407 20.202 3.411 Z M 13.621 3.52 C 13.543 3.523 13.429 3.571 13.266 3.721 L 13.266 4.476 C 13.266 4.476 13.266 4.913 12.868 4.874 C 12.868 4.874 12.43 4.874 12.192 5.072 C 12.192 5.072 12.072 5.47 12.51 5.43 C 12.51 5.43 13.186 5.431 13.226 5.709 L 13.186 8.572 C 13.186 8.572 13.345 9.05 12.788 9.05 C 12.788 9.05 12.152 9.01 12.152 9.408 C 12.152 9.408 12.271 9.726 12.828 9.646 C 12.828 9.646 13.226 9.726 13.226 10.084 L 13.226 10.8 C 13.226 10.8 13.186 11.078 13.544 11.118 L 16.487 11.118 C 16.487 11.118 16.646 11.118 16.646 10.959 C 16.646 10.959 16.646 10.8 16.407 10.8 L 14.021 10.76 C 14.021 10.76 13.623 10.88 13.584 10.283 C 13.584 10.283 13.623 4.953 13.584 4.873 L 13.584 4.953 C 13.584 4.953 13.544 4.038 13.782 3.641 C 13.782 3.641 13.751 3.516 13.621 3.52 Z M 21.192 3.535 C 21.021 3.55 21.021 3.76 21.021 3.76 C 21.061 3.84 21.141 4.118 21.141 4.118 C 21.18 4.755 21.141 5.47 21.141 6.147 C 21.114 7.592 21.074 9.037 21.021 10.482 C 21.021 10.919 20.783 10.8 20.783 10.8 L 18.158 10.8 C 17.879 10.8 17.879 10.959 17.879 10.959 C 17.919 11.198 18.197 11.118 18.197 11.078 C 18.436 11.118 21.061 11.078 21.061 11.078 C 21.459 11.118 21.419 10.601 21.419 10.601 C 21.459 9.686 21.538 9.606 21.538 9.606 C 21.618 9.567 22.055 9.567 22.055 9.567 C 22.731 9.607 22.413 9.129 22.413 9.129 C 22.334 9.01 21.856 9.01 21.856 9.01 C 21.419 9.05 21.459 8.572 21.459 8.572 L 21.499 5.828 C 21.419 5.589 21.618 5.47 21.618 5.47 L 22.055 5.47 C 22.652 5.51 22.493 5.113 22.493 5.113 C 22.493 4.914 21.976 4.834 21.976 4.834 C 21.498 4.913 21.538 4.635 21.538 4.635 L 21.538 3.999 C 21.618 3.561 21.34 3.561 21.34 3.561 C 21.28 3.539 21.231 3.532 21.192 3.535 Z M 20.63 3.638 C 20.58 3.642 20.524 3.678 20.464 3.76 L 20.464 9.726 C 20.464 9.726 20.623 10.243 20.862 10.203 C 20.862 10.203 20.902 10.084 20.902 9.885 L 20.982 4.198 C 20.982 4.198 20.85 3.62 20.63 3.638 Z M 14.22 3.68 C 13.862 3.68 13.822 4.357 13.822 4.357 L 13.783 10.004 C 13.823 10.283 13.902 10.243 13.902 10.243 C 14.26 10.004 14.22 9.607 14.22 9.607 C 14.22 9.607 14.26 4.238 14.26 4.158 C 14.26 4.078 14.22 3.68 14.22 3.68 Z M 14.448 10.035 C 14.378 10.033 14.25 10.064 14.141 10.283 C 14.141 10.283 14.061 10.562 14.34 10.482 L 16.288 10.482 L 16.805 10.601 C 16.805 10.601 17.362 10.482 16.805 10.164 L 14.936 10.164 C 14.936 10.164 14.578 10.084 14.498 10.044 C 14.498 10.044 14.479 10.036 14.448 10.035 Z M 20.317 10.106 C 20.216 10.108 20.107 10.124 20.107 10.124 C 19.789 10.323 17.919 10.163 17.919 10.163 C 17.8 10.163 17.64 10.362 17.64 10.362 C 17.561 10.72 18.158 10.561 18.158 10.561 L 20.385 10.561 C 20.743 10.641 20.743 10.482 20.743 10.482 C 20.743 10.363 20.464 10.124 20.464 10.124 C 20.434 10.109 20.377 10.105 20.317 10.106 Z M 17.393 10.553 C 17.382 10.553 17.372 10.556 17.362 10.561 C 17.362 10.561 17.004 10.561 17.044 11.038 C 17.044 11.038 17.084 11.396 17.442 11.396 C 17.442 11.396 17.76 11.357 17.76 10.959 C 17.76 10.959 17.55 10.54 17.393 10.553 Z M 11.476 18.277 C 11.476 18.277 11.476 18.715 11.436 19.152 C 11.397 19.391 11.516 20.505 11.436 21.061 C 11.436 21.061 11.436 21.26 11.039 21.101 C 11.039 21.101 8.612 21.141 8.573 21.061 C 8.573 21.061 7.896 21.101 7.857 20.743 C 7.857 20.743 7.936 18.158 7.896 18.078 C 7.896 18.078 7.857 16.686 7.896 16.527 C 7.896 16.527 7.936 15.215 7.896 15.056 C 7.896 15.056 7.896 14.737 7.857 14.618 C 7.857 14.618 7.857 14.419 8.175 14.538 C 8.175 14.538 8.294 14.737 8.891 14.658 C 8.891 14.658 9.328 14.737 9.766 14.658 C 9.766 14.658 10.72 14.578 10.959 14.658 C 10.959 14.658 11.357 14.578 11.436 15.016 L 11.436 16.169 L 11.555 16.567 L 11.675 16.487 L 11.715 16.209 L 11.715 14.976 C 11.715 14.976 11.794 14.737 12.112 14.698 C 12.112 14.698 12.59 14.658 12.669 14.698 C 12.749 14.737 13.783 14.777 14.061 14.737 C 14.34 14.698 14.379 14.936 15.254 14.499 C 15.254 14.499 15.493 14.499 15.493 14.658 C 15.493 14.658 15.414 16.249 15.493 16.567 C 15.493 16.567 15.493 19.51 15.414 19.709 L 15.453 20.664 C 15.453 20.664 15.493 21.061 14.817 21.101 C 14.817 21.101 15.215 21.141 12.629 21.061 C 12.629 21.061 12.232 21.022 11.754 21.26 C 11.754 21.26 11.675 21.22 11.675 20.982 C 11.675 20.982 11.754 20.107 11.675 19.232 L 11.635 18.277 Z M 15.652 20.862 C 15.652 20.862 15.891 21.3 15.97 21.34 C 15.97 21.34 16.169 21.578 16.129 21.141 L 16.169 15.692 C 16.169 15.692 16.129 15.493 16.169 15.215 L 15.931 14.817 C 15.931 14.817 15.692 14.618 15.692 14.936 L 15.692 20.703 Z M 7.737 21.101 C 7.737 21.101 8.016 21.38 8.453 21.38 L 10.999 21.419 C 10.999 21.419 11.277 21.459 11.277 21.578 C 11.277 21.578 11.237 21.817 10.88 21.737 L 7.777 21.698 L 7.419 21.737 C 7.419 21.737 7.181 21.698 7.538 21.26 Z M 7.181 14.857 C 7.181 14.857 6.942 15.255 6.982 15.374 L 6.982 21.658 C 6.982 21.658 6.942 22.095 7.3 21.976 C 7.3 21.976 10.601 21.897 10.84 21.976 C 10.84 21.976 11.158 22.016 11.039 22.175 C 11.039 22.175 11.039 22.294 10.84 22.255 C 10.84 22.255 9.289 22.414 7.857 22.334 C 7.857 22.334 6.902 22.374 6.862 22.294 C 6.862 22.294 6.703 22.255 6.703 21.737 C 6.703 21.737 6.703 21.22 6.664 21.141 C 6.664 21.141 6.703 20.862 6.226 20.823 C 6.226 20.823 5.55 20.942 5.55 20.544 C 5.55 20.544 5.629 20.266 6.306 20.306 C 6.306 20.306 6.783 20.385 6.664 19.987 L 6.703 17.203 C 6.703 17.203 6.783 16.726 6.425 16.686 L 6.027 16.686 C 6.027 16.686 5.47 16.686 5.51 16.368 C 5.51 16.368 5.709 16.05 6.266 16.09 C 6.266 16.09 6.664 16.169 6.703 15.692 C 6.703 15.692 6.703 14.737 6.902 14.698 C 6.862 14.698 7.34 14.737 7.181 14.857 M 7.499 14.817 C 7.499 14.817 7.618 14.817 7.618 15.056 L 7.578 20.743 C 7.578 20.743 7.618 21.101 7.3 21.379 C 7.3 21.379 7.141 21.578 7.141 21.26 L 7.22 15.453 C 7.22 15.453 7.22 15.016 7.499 14.817 M 11.953 21.499 C 11.953 21.499 12.271 21.26 12.43 21.3 C 12.43 21.3 14.141 21.419 14.658 21.34 C 15.175 21.26 14.857 21.3 14.857 21.3 C 14.857 21.3 15.294 21.3 15.453 21.141 C 15.453 21.141 15.572 21.101 15.652 21.22 L 15.931 21.538 C 15.931 21.538 15.931 21.737 15.612 21.698 C 15.612 21.698 12.55 21.698 12.43 21.737 C 12.47 21.737 11.913 21.817 11.953 21.499 M 12.152 22.016 C 12.152 22.016 12.391 21.897 12.55 21.936 C 12.709 21.976 14.896 21.896 14.896 21.896 C 14.896 21.896 15.851 21.976 16.01 21.817 L 16.249 21.737 C 16.249 21.737 16.328 21.618 16.328 21.459 L 16.328 20.783 L 16.368 20.584 L 16.368 15.374 C 16.368 15.374 16.448 14.976 16.209 14.737 C 16.209 14.737 16.209 14.578 16.289 14.618 C 16.368 14.658 16.328 14.618 16.328 14.618 C 16.328 14.618 16.646 14.538 16.726 14.658 C 16.726 14.658 16.885 15.095 16.726 15.374 C 16.726 15.374 16.686 15.931 16.965 15.931 C 16.965 15.931 17.084 16.05 17.283 15.97 C 17.283 15.97 17.76 16.01 17.76 16.169 C 17.76 16.169 17.76 16.527 17.442 16.448 L 17.004 16.487 C 17.004 16.487 16.686 16.567 16.726 16.885 C 16.766 17.243 16.726 19.828 16.726 19.828 C 16.726 19.828 16.726 20.147 17.203 20.107 C 17.203 20.107 17.8 20.067 17.8 20.266 C 17.8 20.266 17.959 20.624 17.521 20.664 C 17.521 20.664 16.726 20.624 16.806 20.862 C 16.806 20.862 16.766 21.38 16.726 21.499 C 16.726 21.499 16.806 21.936 16.726 22.016 C 16.726 22.016 16.686 22.255 16.169 22.215 C 16.169 22.215 12.948 22.215 12.43 22.255 C 12.391 22.334 12.073 22.294 12.152 22.016 M 11.595 21.658 C 11.595 21.658 11.913 21.698 11.913 22.016 C 11.913 22.334 11.913 22.493 11.754 22.533 C 11.555 22.573 11.357 22.493 11.317 22.255 C 11.237 22.016 11.317 21.737 11.595 21.658\" fill=\"rgb(255,255,255)\"></path><path d=\"M 5.691 5.549 L 5.532 5.907 C 5.532 5.907 5.135 7.737 4.896 8.095 C 4.896 8.095 4.856 8.492 4.538 8.174 C 4.538 8.174 3.782 5.867 3.742 5.788 L 3.504 5.629 C 3.504 5.629 3.345 5.43 3.623 5.39 L 4.339 5.39 C 4.339 5.39 4.578 5.589 4.26 5.788 C 4.26 5.788 4.299 6.106 4.697 7.259 C 4.697 7.259 4.816 7.697 4.936 7.378 L 5.333 6.026 L 5.214 5.629 C 5.214 5.629 5.095 5.43 5.254 5.43 C 5.254 5.43 5.652 5.39 5.691 5.549 M 6.765 5.867 L 6.765 7.856 L 6.725 8.015 C 6.725 8.015 6.527 8.254 6.686 8.293 C 6.686 8.293 6.527 8.413 7.879 8.413 C 7.879 8.413 8.396 8.492 8.277 7.816 C 8.277 7.816 8.237 7.577 8.038 7.935 C 8.038 7.935 7.998 8.254 7.282 8.134 C 7.282 8.134 7.123 8.015 7.123 7.856 L 7.123 7.021 C 7.123 7.021 7.123 6.822 7.441 6.822 C 7.441 6.822 7.799 7.06 7.839 6.941 C 7.839 6.941 7.958 6.623 7.839 6.464 C 7.839 6.464 7.68 6.464 7.64 6.504 C 7.64 6.504 7.521 6.742 7.203 6.583 C 7.203 6.583 7.044 6.265 7.163 6.026 C 7.163 6.026 7.123 5.549 7.441 5.589 C 7.441 5.589 7.839 5.668 7.839 5.788 C 7.839 5.788 7.919 6.026 8.038 5.748 L 7.958 5.469 C 7.958 5.469 7.919 5.35 7.799 5.39 C 7.799 5.39 7.163 5.469 7.083 5.39 L 6.567 5.43 C 6.567 5.43 6.487 5.629 6.725 5.708 C 6.725 5.748 6.765 5.788 6.765 5.867 M 18.18 5.549 C 18.14 5.39 18.498 5.39 18.498 5.39 L 18.697 5.43 C 18.816 5.43 18.976 5.469 18.976 5.469 C 19.095 5.668 18.896 5.788 18.896 5.788 L 18.816 6.026 L 18.816 8.015 C 18.856 8.095 19.015 8.294 19.015 8.294 C 19.015 8.453 18.816 8.413 18.816 8.413 L 18.26 8.413 C 18.101 8.413 18.14 8.214 18.14 8.214 C 18.339 8.134 18.379 7.776 18.379 7.776 L 18.379 5.907 Z M 15.635 7.299 L 15.595 7.896 L 15.754 8.174 C 15.873 8.333 15.675 8.453 15.675 8.453 L 15.078 8.373 C 14.959 8.333 15.078 8.134 15.078 8.134 C 15.237 8.055 15.237 7.816 15.237 7.816 L 15.237 5.907 C 15.237 5.827 15.078 5.629 15.078 5.629 C 14.959 5.629 14.998 5.43 14.998 5.43 C 15.038 5.35 15.356 5.39 15.356 5.39 L 16.152 5.39 C 16.908 5.629 16.788 6.185 16.788 6.185 C 16.828 6.742 16.271 6.941 16.271 6.941 L 16.231 7.259 L 16.788 8.134 C 16.868 8.214 16.868 8.293 16.868 8.293 C 16.788 8.492 16.47 8.293 16.47 8.293 L 15.794 7.22 C 15.714 7.14 15.635 7.299 15.635 7.299 M 15.635 5.788 L 15.635 6.782 C 15.993 7.061 16.192 6.663 16.192 6.663 C 16.669 6.225 16.192 5.788 16.112 5.668 C 16.032 5.549 15.675 5.668 15.675 5.668 Z M 9.828 16.924 C 9.828 16.924 9.868 18.316 9.828 18.515 L 9.828 18.833 C 9.828 18.833 9.908 19.032 10.027 19.112 C 10.027 19.112 10.106 19.39 9.908 19.35 C 9.908 19.35 9.43 19.31 9.311 19.35 C 9.311 19.35 9.033 19.35 9.311 19.032 C 9.311 19.032 9.39 18.913 9.39 18.555 C 9.39 18.555 9.39 16.964 9.43 16.884 C 9.43 16.884 9.47 16.685 9.351 16.606 L 9.112 16.606 L 8.834 16.884 C 8.834 16.884 8.754 17.163 8.635 16.884 L 8.635 16.725 L 8.794 16.288 L 8.913 16.288 C 8.913 16.288 9.072 16.407 9.231 16.447 L 10.106 16.447 L 10.425 16.288 C 10.425 16.288 10.544 16.288 10.504 16.487 C 10.504 16.487 10.544 16.924 10.305 16.964 C 10.305 16.964 10.146 16.924 10.067 16.685 C 10.067 16.646 9.828 16.487 9.828 16.924 M 13.964 16.407 C 13.964 16.407 13.248 16.327 13.248 17.123 C 13.248 17.123 13.169 17.64 13.964 17.998 C 13.964 17.998 14.561 18.277 14.521 18.634 C 14.521 18.634 14.442 19.271 13.805 18.953 C 13.805 18.953 13.487 18.793 13.527 18.634 C 13.527 18.634 13.447 18.435 13.328 18.475 C 13.328 18.475 13.209 18.515 13.248 19.151 C 13.248 19.151 13.248 19.39 13.527 19.151 L 13.686 19.191 C 13.686 19.191 14.203 19.589 14.64 19.112 C 14.64 19.112 15.118 18.674 14.76 18.157 C 14.76 18.157 14.521 17.759 14.084 17.6 C 14.084 17.6 13.686 17.401 13.567 17.083 C 13.567 17.083 13.686 16.526 14.203 16.805 C 14.203 16.805 14.402 17.043 14.521 17.083 C 14.521 17.083 14.68 17.083 14.64 16.725 L 14.601 16.447 C 14.601 16.447 14.561 16.248 14.282 16.447 C 14.282 16.407 14.044 16.526 13.964 16.407 M 11.697 16.009 C 11.816 16.089 11.856 16.288 11.856 16.288 C 12.254 17.282 12.572 18.754 12.572 18.754 C 12.652 18.953 12.851 19.072 12.851 19.072 C 13.169 19.191 12.851 19.271 12.851 19.271 C 12.731 19.31 12.294 19.271 12.294 19.271 C 12.055 19.231 12.174 19.152 12.174 19.152 C 12.254 19.072 12.174 18.674 12.174 18.674 C 12.174 18.515 11.976 18.276 11.976 18.276 C 11.896 18.237 11.777 18.396 11.777 18.396 C 11.777 18.396 11.578 18.475 11.538 18.396 C 11.498 18.316 11.379 18.237 11.379 18.237 C 11.14 18.237 11.061 18.793 11.061 18.793 C 11.18 19.271 11.061 19.191 11.061 19.191 C 10.941 19.35 10.584 19.231 10.584 19.231 C 10.424 19.191 10.544 19.072 10.544 19.072 C 10.743 19.032 10.822 18.793 10.822 18.793 C 10.902 18.674 11.538 16.208 11.538 16.208 C 11.498 16.168 11.538 15.93 11.697 16.009 M 11.379 17.282 C 11.379 17.362 11.22 17.918 11.22 17.918 L 11.339 18.117 L 11.737 18.117 C 11.816 18.117 11.856 18.038 11.856 17.918 C 11.856 17.839 11.657 17.242 11.657 17.242 L 11.578 17.123 Z\" fill=\"rgb(0, 0, 0)\"></path></g></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsxs(SVG,{className:\"framer-ap9ce3\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 80.461 21.08\" overflow=\"visible\"><path d=\"M 14.04 16.029 C 14.04 15.79 13.881 15.631 13.562 15.551 L 13.562 15.392 C 13.721 15.392 14.318 15.432 14.477 15.432 C 14.597 15.432 15.193 15.392 15.352 15.392 L 15.352 15.551 C 15.074 15.631 14.915 15.79 14.915 16.029 L 14.915 19.012 C 14.915 19.966 15.432 20.483 16.506 20.483 C 17.46 20.483 18.176 20.046 18.176 19.052 L 18.176 15.989 C 18.176 15.75 18.017 15.591 17.699 15.512 L 17.699 15.393 C 17.818 15.393 18.295 15.432 18.454 15.432 C 18.613 15.432 19.091 15.392 19.21 15.392 L 19.21 15.551 C 18.852 15.631 18.733 15.79 18.733 16.029 L 18.733 18.932 C 18.733 20.245 17.977 21 16.346 21 C 14.835 21 14.039 20.324 14.039 19.091 Z M 20.562 20.762 C 20.92 20.682 21.04 20.523 21.04 20.284 L 21.04 16.148 C 21.04 15.79 20.841 15.631 20.523 15.551 L 20.523 15.392 L 21.676 15.392 L 25.256 19.608 L 25.256 16.029 C 25.256 15.79 25.097 15.631 24.778 15.551 L 24.778 15.392 C 24.897 15.392 25.375 15.432 25.534 15.432 C 25.693 15.432 26.17 15.392 26.29 15.392 L 26.29 15.551 C 25.932 15.631 25.773 15.79 25.773 16.029 L 25.773 21 L 25.574 21 C 25.454 20.96 25.176 20.841 24.778 20.403 L 21.557 16.665 L 21.557 20.324 C 21.557 20.563 21.676 20.722 22.034 20.801 L 22.034 20.96 C 21.915 20.96 21.437 20.921 21.278 20.921 C 21.119 20.921 20.642 20.96 20.523 20.96 Z M 48.88 19.648 L 49.039 19.648 C 49.119 19.966 49.278 20.245 49.556 20.404 C 49.795 20.603 50.233 20.682 50.551 20.682 C 51.267 20.682 51.744 20.324 51.744 19.767 C 51.744 19.171 51.147 18.892 50.471 18.534 C 49.954 18.256 48.92 17.858 48.92 16.864 C 48.92 15.949 49.636 15.353 50.75 15.353 C 51.505 15.353 51.824 15.551 52.341 15.512 L 52.341 16.625 L 52.182 16.625 C 51.983 15.949 51.386 15.75 50.71 15.75 C 49.954 15.75 49.716 16.188 49.716 16.586 C 49.716 17.182 50.312 17.5 50.988 17.818 C 51.744 18.137 52.579 18.574 52.579 19.529 C 52.579 20.443 51.863 21.08 50.591 21.08 C 49.835 21.08 49.358 20.841 48.96 20.801 Z M 64.272 18.614 L 62.801 16.267 C 62.562 15.869 62.363 15.631 62.085 15.551 L 62.085 15.392 C 62.284 15.392 62.84 15.432 62.96 15.432 C 63.119 15.432 63.676 15.392 63.914 15.392 L 63.914 15.551 C 63.715 15.591 63.636 15.671 63.636 15.83 C 63.636 15.949 63.715 16.108 63.795 16.267 C 63.875 16.387 64.869 18.057 64.869 18.057 L 65.903 16.267 C 66.022 16.068 66.062 15.909 66.062 15.79 C 66.062 15.671 65.983 15.591 65.823 15.591 L 65.823 15.392 C 65.983 15.392 66.38 15.432 66.5 15.432 C 66.619 15.432 67.056 15.392 67.216 15.392 L 67.216 15.551 C 66.818 15.71 66.579 16.068 66.341 16.466 L 65.028 18.693 M 65.108 18.415 L 65.108 20.285 C 65.108 20.483 65.267 20.722 65.585 20.762 L 65.585 20.921 C 65.426 20.921 64.829 20.881 64.67 20.881 C 64.511 20.881 63.954 20.921 63.755 20.921 L 63.755 20.762 C 64.073 20.682 64.233 20.483 64.233 20.284 L 64.233 18.495 M 37.148 15.392 L 40.569 15.392 C 40.688 15.392 40.847 15.392 40.966 15.313 L 41.125 15.313 L 41.086 16.426 L 40.927 16.426 C 40.807 16.068 40.648 15.79 40.012 15.79 L 38.54 15.79 L 38.54 17.779 L 39.694 17.779 C 39.853 17.779 40.052 17.779 40.131 17.739 C 40.37 17.699 40.489 17.54 40.569 17.301 L 40.728 17.301 L 40.728 18.693 L 40.569 18.693 C 40.489 18.455 40.41 18.296 40.131 18.256 C 40.052 18.216 39.853 18.216 39.694 18.216 L 38.54 18.216 L 38.54 20.483 L 40.171 20.483 C 40.887 20.483 41.086 20.205 41.245 19.767 L 41.404 19.767 L 41.245 20.921 C 40.728 20.881 40.41 20.881 39.813 20.881 L 38.103 20.881 C 37.944 20.881 37.347 20.921 37.148 20.921 L 37.148 20.762 C 37.466 20.682 37.625 20.563 37.625 20.245 L 37.625 16.029 C 37.625 15.75 37.466 15.591 37.148 15.551 Z M 28.398 16.069 C 28.398 15.79 28.239 15.631 27.921 15.551 L 27.921 15.392 C 28.12 15.392 28.677 15.432 28.875 15.432 C 29.034 15.432 29.631 15.392 29.83 15.392 L 29.83 15.551 C 29.512 15.631 29.313 15.75 29.313 16.068 L 29.313 20.244 C 29.313 20.523 29.472 20.682 29.83 20.761 L 29.83 20.921 C 29.631 20.921 29.074 20.881 28.875 20.881 C 28.716 20.881 28.12 20.921 27.921 20.921 L 27.921 20.761 C 28.279 20.682 28.438 20.563 28.438 20.245 Z M 54.37 16.069 C 54.37 15.79 54.211 15.631 53.893 15.551 L 53.893 15.392 C 54.092 15.392 54.688 15.432 54.847 15.432 C 55.006 15.432 55.603 15.392 55.802 15.392 L 55.802 15.551 C 55.484 15.631 55.325 15.75 55.325 16.068 L 55.325 20.244 C 55.325 20.523 55.484 20.682 55.802 20.761 L 55.802 20.921 C 55.603 20.921 55.046 20.881 54.847 20.881 C 54.688 20.881 54.092 20.921 53.893 20.921 L 53.893 20.761 C 54.251 20.682 54.37 20.563 54.37 20.245 Z M 59.143 15.432 C 57.273 15.432 56.955 15.392 56.597 15.352 L 56.597 16.466 L 56.756 16.466 C 56.915 15.949 57.194 15.83 57.552 15.83 L 58.745 15.83 L 58.745 20.205 C 58.745 20.483 58.586 20.642 58.228 20.722 L 58.228 20.881 C 58.427 20.881 59.023 20.841 59.182 20.841 C 59.342 20.841 59.938 20.881 60.137 20.881 L 60.137 20.722 C 59.819 20.642 59.62 20.483 59.62 20.205 L 59.62 15.83 L 60.773 15.83 C 61.131 15.83 61.41 15.949 61.569 16.466 L 61.728 16.466 L 61.728 15.352 C 61.29 15.392 61.012 15.432 59.142 15.432 Z M 44.148 20.244 C 44.148 20.523 44.308 20.682 44.665 20.761 L 44.665 20.921 C 44.467 20.921 43.87 20.881 43.711 20.881 C 43.552 20.881 42.995 20.921 42.796 20.921 L 42.796 20.761 C 43.114 20.682 43.273 20.563 43.273 20.245 L 43.273 16.029 C 43.273 15.75 43.114 15.591 42.796 15.551 L 42.796 15.392 C 42.995 15.392 43.552 15.432 43.711 15.432 C 43.99 15.432 44.745 15.392 45.063 15.392 C 46.376 15.392 47.092 15.949 47.092 16.864 C 47.092 17.58 46.535 18.097 45.7 18.296 C 45.7 18.296 45.898 18.415 46.097 18.614 C 46.336 18.892 46.972 19.767 47.211 20.085 C 47.45 20.404 47.808 20.762 48.166 20.762 L 48.166 20.881 C 48.006 20.921 47.728 20.96 47.529 20.96 C 47.092 20.96 46.734 20.801 46.376 20.404 C 46.058 20.046 45.58 19.29 45.262 18.892 C 45.063 18.654 44.825 18.455 44.427 18.375 C 44.347 18.375 44.268 18.335 44.188 18.335 Z M 44.148 18.017 C 44.308 18.057 44.586 18.057 44.825 18.057 C 45.859 18.057 46.177 17.46 46.177 16.943 C 46.177 16.187 45.7 15.75 44.785 15.75 C 44.586 15.75 44.347 15.79 44.148 15.83 Z M 31.103 16.068 C 30.984 15.79 30.785 15.591 30.467 15.551 L 30.467 15.392 C 30.666 15.392 31.342 15.432 31.501 15.432 C 31.62 15.432 32.217 15.392 32.416 15.392 L 32.416 15.551 C 32.257 15.591 32.018 15.67 32.018 15.869 C 32.018 15.989 32.097 16.187 32.257 16.506 L 33.688 19.727 L 35.041 16.506 C 35.16 16.227 35.24 16.028 35.24 15.909 C 35.24 15.75 35.08 15.631 34.842 15.591 L 34.842 15.392 C 35.001 15.392 35.438 15.432 35.597 15.432 C 35.717 15.432 36.234 15.392 36.433 15.392 L 36.433 15.551 C 36.114 15.631 35.876 15.83 35.717 16.267 L 33.728 20.92 L 33.291 20.92 Z M 36.194 1.392 C 35.955 0.875 35.597 0.517 35.04 0.398 L 35.04 0.119 C 35.398 0.119 36.631 0.159 36.91 0.159 C 37.148 0.159 38.342 0.119 38.739 0.119 L 38.739 0.398 C 38.421 0.477 38.024 0.636 38.024 0.994 C 38.024 1.233 38.183 1.591 38.461 2.188 L 41.166 8.312 L 43.711 2.188 C 43.91 1.71 44.069 1.313 44.069 1.034 C 44.069 0.716 43.751 0.477 43.353 0.398 L 43.353 0.119 C 43.711 0.119 44.507 0.159 44.785 0.159 C 45.024 0.159 45.978 0.119 46.376 0.119 L 46.376 0.398 C 45.74 0.557 45.342 0.955 44.984 1.75 L 41.245 10.58 L 40.41 10.58 Z M 0 10.222 C 0.477 10.102 0.835 9.903 0.835 9.347 L 0.835 1.273 C 0.835 0.756 0.517 0.517 0 0.398 L 0 0.08 C 0.239 0.08 1.352 0.119 1.631 0.119 C 1.949 0.119 3.102 0.08 3.341 0.08 L 3.341 0.358 C 2.864 0.477 2.506 0.676 2.506 1.233 L 2.506 4.654 L 8.551 4.654 L 8.551 1.273 C 8.551 0.716 8.233 0.477 7.716 0.398 L 7.716 0.08 C 7.955 0.08 9.108 0.119 9.426 0.119 C 9.705 0.119 10.818 0.08 11.096 0.08 L 11.096 0.358 C 10.619 0.477 10.261 0.676 10.261 1.233 L 10.261 9.307 C 10.261 9.824 10.58 10.063 11.096 10.182 L 11.096 10.46 C 10.858 10.46 9.705 10.42 9.426 10.42 C 9.108 10.42 7.994 10.46 7.716 10.46 L 7.716 10.222 C 8.193 10.102 8.551 9.903 8.551 9.347 L 8.551 5.528 L 2.506 5.528 L 2.506 9.347 C 2.506 9.903 2.824 10.102 3.341 10.222 L 3.341 10.5 C 3.102 10.5 1.909 10.46 1.631 10.46 C 1.352 10.46 0.278 10.5 0 10.5 Z M 69.682 10.222 C 70.319 10.102 70.637 9.864 70.637 9.307 L 70.637 1.273 C 70.637 0.716 70.279 0.477 69.682 0.398 L 69.682 0.079 C 70.04 0.079 71.154 0.119 71.472 0.119 C 71.989 0.119 73.381 0 74.495 0 C 78.194 0 80.461 2.068 80.461 5.21 C 80.461 8.273 78.114 10.539 74.296 10.539 C 73.183 10.539 71.91 10.46 71.393 10.46 C 71.075 10.46 70.04 10.5 69.683 10.5 Z M 72.308 9.705 C 72.705 9.784 73.381 9.824 73.938 9.824 C 77.041 9.824 78.671 7.955 78.671 5.33 C 78.671 2.625 76.961 0.716 74.058 0.716 C 73.461 0.716 72.705 0.756 72.308 0.835 Z M 27.723 9.267 C 27.723 9.784 28.081 10.102 28.677 10.222 L 28.677 10.5 C 28.319 10.5 27.206 10.46 26.848 10.46 C 26.569 10.46 25.456 10.5 25.098 10.5 L 25.098 10.222 C 25.694 10.102 26.012 9.824 26.012 9.267 L 26.012 1.313 C 26.012 0.835 25.734 0.517 25.098 0.398 L 25.098 0.08 C 25.456 0.08 26.53 0.12 26.848 0.12 C 27.365 0.12 28.797 0.04 29.393 0.04 C 31.899 0.04 33.291 1.074 33.291 2.824 C 33.291 4.216 32.257 5.131 30.666 5.529 C 30.666 5.529 31.024 5.728 31.382 6.165 C 31.819 6.682 33.052 8.432 33.53 9.029 C 34.007 9.625 34.643 10.301 35.319 10.301 L 35.319 10.54 C 35.001 10.62 34.484 10.659 34.086 10.659 C 33.251 10.659 32.575 10.341 31.899 9.546 C 31.342 8.87 30.348 7.398 29.791 6.682 C 29.433 6.205 28.996 5.847 28.2 5.727 C 28.041 5.688 27.882 5.688 27.723 5.648 Z M 27.723 5.051 C 28.041 5.091 28.558 5.131 29.035 5.131 C 30.984 5.131 31.581 4.017 31.581 3.023 C 31.581 1.631 30.626 0.756 28.956 0.756 C 28.598 0.756 28.081 0.795 27.723 0.875 Z M 60.575 9.267 C 60.575 9.784 60.933 10.102 61.53 10.222 L 61.53 10.5 C 61.172 10.5 60.058 10.46 59.74 10.46 C 59.462 10.46 58.348 10.5 57.99 10.5 L 57.99 10.222 C 58.587 10.102 58.905 9.824 58.905 9.267 L 58.905 1.313 C 58.905 0.835 58.626 0.517 57.99 0.398 L 57.99 0.08 C 58.348 0.08 59.422 0.12 59.74 0.12 C 60.257 0.12 61.689 0.04 62.246 0.04 C 64.752 0.04 66.144 1.074 66.144 2.824 C 66.144 4.216 65.109 5.131 63.519 5.529 C 63.519 5.529 63.877 5.728 64.234 6.165 C 64.672 6.682 65.905 8.432 66.382 9.029 C 66.86 9.625 67.496 10.301 68.172 10.301 L 68.172 10.54 C 67.854 10.62 67.337 10.659 66.939 10.659 C 66.104 10.659 65.428 10.341 64.752 9.546 C 64.195 8.87 63.2 7.398 62.644 6.682 C 62.286 6.205 61.848 5.847 61.053 5.727 C 60.893 5.688 60.734 5.688 60.575 5.648 Z M 60.575 5.051 C 60.893 5.091 61.411 5.131 61.888 5.131 C 63.837 5.131 64.433 4.017 64.433 3.023 C 64.433 1.631 63.479 0.756 61.808 0.756 C 61.45 0.756 60.933 0.795 60.575 0.875 Z M 12.609 10.222 C 13.285 10.063 13.643 9.625 13.882 9.068 L 17.223 1.034 C 17.382 0.716 17.541 0.04 17.541 0.04 L 18.495 0.04 C 18.495 0.04 18.654 0.716 18.813 1.074 L 22.353 9.108 C 22.592 9.665 22.87 10.063 23.586 10.222 L 23.586 10.5 C 23.189 10.5 22.035 10.46 21.757 10.46 C 21.478 10.46 20.365 10.5 19.967 10.5 L 19.967 10.222 C 20.484 10.102 20.643 9.824 20.643 9.585 C 20.643 9.387 20.564 9.108 20.444 8.87 L 19.688 7.159 L 15.791 7.159 L 15.115 8.909 C 15.035 9.108 14.955 9.387 14.955 9.585 C 14.955 9.864 15.115 10.102 15.671 10.261 L 15.671 10.54 C 15.313 10.54 14.399 10.5 14.2 10.5 L 12.688 10.54 Z M 19.251 6.324 L 17.58 2.466 L 16.029 6.324 Z M 45.699 10.222 C 46.375 10.063 46.733 9.625 46.972 9.068 L 50.313 1.034 C 50.472 0.716 50.631 0.04 50.631 0.04 L 51.586 0.04 C 51.586 0.04 51.745 0.716 51.904 1.074 L 55.444 9.108 C 55.682 9.665 55.961 10.063 56.677 10.222 L 56.677 10.5 C 56.279 10.5 55.126 10.46 54.847 10.46 C 54.569 10.46 53.455 10.5 53.057 10.5 L 53.057 10.222 C 53.574 10.102 53.733 9.824 53.733 9.585 C 53.733 9.387 53.654 9.108 53.535 8.87 L 52.779 7.159 L 48.881 7.159 L 48.205 8.909 C 48.125 9.108 48.046 9.387 48.046 9.585 C 48.046 9.864 48.205 10.102 48.762 10.261 L 48.762 10.54 C 48.404 10.54 47.489 10.5 47.29 10.5 L 45.779 10.54 L 45.779 10.222 Z M 52.301 6.324 L 50.631 2.466 L 49.08 6.324 Z\" fill=\"rgb(158, 161, 174)\"></path></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-vcgps\",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.648 5.608\" overflow=\"visible\"><path d=\"M 0.477 0.636 C 0.477 0.398 0.318 0.239 0 0.159 L 0 0 C 0.159 0 0.756 0.04 0.915 0.04 C 1.034 0.04 1.631 0 1.79 0 L 1.79 0.159 C 1.511 0.239 1.352 0.398 1.352 0.636 L 1.352 3.619 C 1.352 4.574 1.869 5.091 2.943 5.091 C 3.898 5.091 4.614 4.654 4.614 3.659 L 4.614 0.597 C 4.614 0.358 4.454 0.199 4.136 0.119 L 4.136 0 C 4.256 0 4.733 0.04 4.892 0.04 C 5.051 0.04 5.528 0 5.648 0 L 5.648 0.159 C 5.29 0.239 5.17 0.398 5.17 0.636 L 5.17 3.54 C 5.17 4.852 4.415 5.608 2.784 5.608 C 1.273 5.608 0.477 4.932 0.477 3.699 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1gnign1\",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.767 5.608\" overflow=\"visible\"><path d=\"M 0.04 5.369 C 0.398 5.29 0.517 5.131 0.517 4.892 L 0.517 0.756 C 0.517 0.398 0.318 0.239 0 0.159 L 0 0 L 1.153 0 L 4.733 4.216 L 4.733 0.636 C 4.733 0.398 4.574 0.239 4.256 0.159 L 4.256 0 C 4.375 0 4.852 0.04 5.011 0.04 C 5.171 0.04 5.648 0 5.767 0 L 5.767 0.159 C 5.409 0.239 5.25 0.398 5.25 0.636 L 5.25 5.608 L 5.051 5.608 C 4.932 5.568 4.654 5.449 4.256 5.011 L 1.034 1.273 L 1.034 4.932 C 1.034 5.17 1.153 5.329 1.511 5.409 L 1.511 5.568 C 1.392 5.568 0.915 5.528 0.756 5.528 C 0.597 5.528 0.119 5.568 0 5.568 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-185k1lq\",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.699 5.727\" overflow=\"visible\"><path d=\"M 0 4.295 L 0.159 4.295 C 0.239 4.614 0.398 4.892 0.676 5.051 C 0.915 5.25 1.352 5.329 1.67 5.329 C 2.386 5.329 2.864 4.972 2.864 4.415 C 2.864 3.818 2.267 3.54 1.591 3.182 C 1.074 2.903 0.04 2.506 0.04 1.511 C 0.04 0.597 0.756 0 1.869 0 C 2.625 0 2.943 0.199 3.46 0.159 L 3.46 1.273 L 3.301 1.273 C 3.102 0.596 2.506 0.398 1.829 0.398 C 1.074 0.398 0.835 0.835 0.835 1.233 C 0.835 1.829 1.432 2.148 2.108 2.466 C 2.864 2.784 3.699 3.221 3.699 4.176 C 3.699 5.091 2.983 5.727 1.71 5.727 C 0.955 5.727 0.477 5.489 0.08 5.449 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-q8p1kq\",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.131 3.301\" overflow=\"visible\"><path d=\"M 2.188 3.222 L 0.716 0.875 C 0.477 0.477 0.278 0.239 0 0.159 L 0 0 C 0.199 0 0.756 0.04 0.875 0.04 C 1.034 0.04 1.591 0 1.83 0 L 1.83 0.159 C 1.631 0.199 1.551 0.278 1.551 0.438 C 1.551 0.557 1.631 0.716 1.71 0.875 C 1.79 0.994 2.784 2.665 2.784 2.665 L 3.818 0.875 C 3.937 0.676 3.977 0.517 3.977 0.398 C 3.977 0.279 3.898 0.199 3.739 0.199 L 3.739 0 C 3.898 0 4.296 0.04 4.415 0.04 C 4.534 0.04 4.972 0 5.131 0 L 5.131 0.159 C 4.733 0.318 4.494 0.676 4.256 1.074 L 2.943 3.301\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-s6a5q4\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 1.829 2.506\" overflow=\"visible\"><path d=\"M 1.352 0 L 1.352 1.87 C 1.352 2.068 1.511 2.307 1.829 2.347 L 1.829 2.506 C 1.67 2.506 1.074 2.466 0.915 2.466 C 0.756 2.466 0.199 2.506 0 2.506 L 0 2.347 C 0.318 2.267 0.477 2.068 0.477 1.869 L 0.477 0.08\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-942hc6\",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.256 5.608\" overflow=\"visible\"><path d=\"M 0 0.08 L 3.421 0.08 C 3.54 0.08 3.699 0.08 3.818 0 L 3.977 0 L 3.938 1.114 L 3.778 1.114 C 3.659 0.756 3.5 0.477 2.864 0.477 L 1.392 0.477 L 1.392 2.466 L 2.546 2.466 C 2.705 2.466 2.903 2.466 2.983 2.426 C 3.222 2.386 3.341 2.227 3.421 1.989 L 3.58 1.989 L 3.58 3.381 L 3.421 3.381 C 3.341 3.142 3.261 2.983 2.983 2.943 C 2.903 2.903 2.705 2.903 2.546 2.903 L 1.392 2.903 L 1.392 5.171 L 3.023 5.171 C 3.739 5.171 3.938 4.892 4.097 4.455 L 4.256 4.455 L 4.097 5.608 C 3.58 5.568 3.261 5.568 2.665 5.568 L 0.955 5.568 C 0.795 5.568 0.199 5.608 0 5.608 L 0 5.449 C 0.318 5.369 0.477 5.25 0.477 4.932 L 0.477 0.716 C 0.477 0.438 0.318 0.279 0 0.239 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-13m1ayx\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 1.909 5.528\" overflow=\"visible\"><path d=\"M 0.477 0.676 C 0.477 0.398 0.318 0.239 0 0.159 L 0 0 C 0.199 0 0.756 0.04 0.955 0.04 C 1.114 0.04 1.71 0 1.909 0 L 1.909 0.159 C 1.591 0.239 1.392 0.358 1.392 0.676 L 1.392 4.852 C 1.392 5.131 1.551 5.29 1.909 5.369 L 1.909 5.528 C 1.71 5.528 1.153 5.489 0.955 5.489 C 0.795 5.489 0.199 5.528 0 5.528 L 0 5.369 C 0.358 5.29 0.517 5.17 0.517 4.852 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-5elytm\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 1.909 5.528\" overflow=\"visible\"><path d=\"M 0.477 0.676 C 0.477 0.398 0.318 0.239 0 0.159 L 0 0 C 0.199 0 0.795 0.04 0.955 0.04 C 1.114 0.04 1.71 0 1.909 0 L 1.909 0.159 C 1.591 0.239 1.432 0.358 1.432 0.676 L 1.432 4.852 C 1.432 5.131 1.591 5.29 1.909 5.369 L 1.909 5.528 C 1.71 5.528 1.153 5.489 0.955 5.489 C 0.795 5.489 0.199 5.528 0 5.528 L 0 5.369 C 0.358 5.29 0.477 5.17 0.477 4.852 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-oao0q8\",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.131 5.528\" overflow=\"visible\"><path d=\"M 2.546 0.08 C 0.676 0.08 0.358 0.04 0 0 L 0 1.114 L 0.159 1.114 C 0.318 0.597 0.597 0.477 0.955 0.477 L 2.148 0.477 L 2.148 4.852 C 2.148 5.131 1.989 5.29 1.631 5.369 L 1.631 5.528 C 1.83 5.528 2.426 5.489 2.585 5.489 C 2.744 5.489 3.341 5.528 3.54 5.528 L 3.54 5.369 C 3.222 5.29 3.023 5.131 3.023 4.852 L 3.023 0.477 L 4.176 0.477 C 4.534 0.477 4.812 0.597 4.972 1.114 L 5.131 1.114 L 5.131 0 C 4.693 0.04 4.415 0.08 2.545 0.08 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-2mwt7d\",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.369 5.568\" overflow=\"visible\"><path d=\"M 1.352 4.852 C 1.352 5.131 1.511 5.29 1.869 5.369 L 1.869 5.528 C 1.67 5.528 1.074 5.489 0.915 5.489 C 0.756 5.489 0.199 5.528 0 5.528 L 0 5.369 C 0.318 5.29 0.477 5.17 0.477 4.852 L 0.477 0.636 C 0.477 0.358 0.318 0.199 0 0.159 L 0 0 C 0.199 0 0.756 0.04 0.915 0.04 C 1.193 0.04 1.949 0 2.267 0 C 3.579 0 4.296 0.557 4.296 1.472 C 4.296 2.188 3.739 2.705 2.903 2.903 C 2.903 2.903 3.102 3.023 3.301 3.222 C 3.54 3.5 4.176 4.375 4.415 4.693 C 4.654 5.011 5.011 5.369 5.369 5.369 L 5.369 5.489 C 5.21 5.529 4.932 5.568 4.733 5.568 C 4.296 5.568 3.938 5.409 3.58 5.011 C 3.261 4.654 2.784 3.898 2.466 3.5 C 2.267 3.261 2.028 3.063 1.631 2.983 C 1.551 2.983 1.472 2.943 1.392 2.943 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-giqf08\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 2.028 2.307\" overflow=\"visible\"><path d=\"M 0 2.267 C 0.159 2.307 0.438 2.307 0.676 2.307 C 1.71 2.307 2.028 1.71 2.028 1.193 C 2.028 0.438 1.551 0 0.636 0 C 0.438 0 0.199 0.04 0 0.08 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-imza2t\",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.966 5.528\" overflow=\"visible\"><path d=\"M 0.636 0.676 C 0.517 0.398 0.318 0.199 0 0.159 L 0 0 C 0.199 0 0.875 0.04 1.034 0.04 C 1.153 0.04 1.75 0 1.949 0 L 1.949 0.159 C 1.79 0.199 1.551 0.278 1.551 0.477 C 1.551 0.597 1.631 0.795 1.79 1.114 L 3.222 4.335 L 4.574 1.114 C 4.693 0.835 4.773 0.636 4.773 0.517 C 4.773 0.358 4.614 0.239 4.375 0.199 L 4.375 0 C 4.534 0 4.972 0.04 5.131 0.04 C 5.25 0.04 5.767 0 5.966 0 L 5.966 0.159 C 5.648 0.239 5.409 0.438 5.25 0.875 L 3.261 5.528 L 2.824 5.528 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-jtpp86\",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.335 10.46\" overflow=\"visible\"><path d=\"M 1.153 1.273 C 0.915 0.756 0.557 0.398 0 0.278 L 0 0 C 0.358 0 1.591 0.04 1.869 0.04 C 2.108 0.04 3.301 0 3.699 0 L 3.699 0.279 C 3.381 0.358 2.983 0.517 2.983 0.875 C 2.983 1.114 3.142 1.472 3.421 2.068 L 6.125 8.193 L 8.671 2.068 C 8.87 1.591 9.029 1.193 9.029 0.915 C 9.029 0.597 8.71 0.358 8.313 0.278 L 8.313 0 C 8.671 0 9.466 0.04 9.745 0.04 C 9.983 0.04 10.938 0 11.335 0 L 11.335 0.279 C 10.699 0.438 10.301 0.835 9.943 1.631 L 6.205 10.46 L 5.369 10.46 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-tpdv87\",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.096 10.421\" overflow=\"visible\"><path d=\"M 0 10.142 C 0.477 10.023 0.835 9.824 0.835 9.267 L 0.835 1.193 C 0.835 0.676 0.517 0.438 0 0.318 L 0 0 C 0.239 0 1.352 0.04 1.631 0.04 C 1.949 0.04 3.102 0 3.341 0 L 3.341 0.279 C 2.864 0.398 2.506 0.597 2.506 1.153 L 2.506 4.574 L 8.551 4.574 L 8.551 1.193 C 8.551 0.636 8.233 0.398 7.716 0.318 L 7.716 0 C 7.955 0 9.108 0.04 9.426 0.04 C 9.705 0.04 10.818 0 11.096 0 L 11.096 0.279 C 10.619 0.398 10.261 0.597 10.261 1.153 L 10.261 9.227 C 10.261 9.744 10.58 9.983 11.096 10.102 L 11.096 10.381 C 10.858 10.381 9.705 10.341 9.426 10.341 C 9.108 10.341 7.994 10.381 7.716 10.381 L 7.716 10.142 C 8.193 10.023 8.551 9.824 8.551 9.267 L 8.551 5.449 L 2.506 5.449 L 2.506 9.267 C 2.506 9.824 2.824 10.023 3.341 10.142 L 3.341 10.421 C 3.102 10.421 1.909 10.381 1.631 10.381 C 1.352 10.381 0.278 10.42 0 10.42 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-qx0kjz\",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.778 10.539\" overflow=\"visible\"><path d=\"M 0 10.222 C 0.636 10.102 0.955 9.864 0.955 9.307 L 0.955 1.273 C 0.955 0.716 0.597 0.477 0 0.398 L 0 0.079 C 0.358 0.079 1.472 0.119 1.79 0.119 C 2.307 0.119 3.699 0 4.813 0 C 8.511 0 10.778 2.068 10.778 5.21 C 10.778 8.273 8.432 10.539 4.614 10.539 C 3.5 10.539 2.227 10.46 1.71 10.46 C 1.392 10.46 0.358 10.5 0 10.5 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-d5heco\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 6.364 9.108\" overflow=\"visible\"><path d=\"M 0 8.988 C 0.398 9.068 1.074 9.108 1.631 9.108 C 4.733 9.108 6.364 7.238 6.364 4.613 C 6.364 1.909 4.654 0 1.75 0 C 1.153 0 0.398 0.04 0 0.119 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-4qknv2\",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.222 10.619\" overflow=\"visible\"><path d=\"M 2.625 9.227 C 2.625 9.744 2.983 10.062 3.58 10.182 L 3.58 10.46 C 3.222 10.46 2.108 10.42 1.75 10.42 C 1.472 10.42 0.358 10.46 0 10.46 L 0 10.182 C 0.597 10.063 0.915 9.784 0.915 9.227 L 0.915 1.273 C 0.915 0.795 0.636 0.477 0 0.358 L 0 0.04 C 0.358 0.04 1.432 0.08 1.75 0.08 C 2.267 0.08 3.699 0 4.296 0 C 6.801 0 8.193 1.034 8.193 2.784 C 8.193 4.176 7.159 5.091 5.568 5.489 C 5.568 5.489 5.926 5.688 6.284 6.125 C 6.722 6.642 7.955 8.392 8.432 8.989 C 8.909 9.585 9.546 10.261 10.222 10.261 L 10.222 10.5 C 9.904 10.58 9.387 10.619 8.989 10.619 C 8.154 10.619 7.477 10.301 6.801 9.506 C 6.244 8.83 5.25 7.358 4.693 6.642 C 4.335 6.165 3.898 5.807 3.103 5.687 C 2.943 5.648 2.784 5.648 2.625 5.608 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-diu3y7\",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.858 4.375\" overflow=\"visible\"><path d=\"M 0 4.296 C 0.318 4.335 0.835 4.375 1.312 4.375 C 3.261 4.375 3.858 3.262 3.858 2.267 C 3.858 0.875 2.903 0 1.233 0 C 0.875 0 0.358 0.04 0 0.119 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-3k0ggw\",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.182 10.619\" overflow=\"visible\"><path d=\"M 2.585 9.227 C 2.585 9.744 2.943 10.062 3.54 10.182 L 3.54 10.46 C 3.182 10.46 2.068 10.42 1.75 10.42 C 1.472 10.42 0.358 10.46 0 10.46 L 0 10.182 C 0.597 10.063 0.915 9.784 0.915 9.227 L 0.915 1.273 C 0.915 0.795 0.636 0.477 0 0.358 L 0 0.04 C 0.358 0.04 1.432 0.08 1.75 0.08 C 2.267 0.08 3.699 0 4.256 0 C 6.762 0 8.154 1.034 8.154 2.784 C 8.154 4.176 7.119 5.091 5.529 5.489 C 5.529 5.489 5.886 5.688 6.244 6.125 C 6.682 6.642 7.915 8.392 8.392 8.989 C 8.87 9.585 9.506 10.261 10.182 10.261 L 10.182 10.5 C 9.864 10.58 9.347 10.619 8.949 10.619 C 8.114 10.619 7.438 10.301 6.762 9.506 C 6.205 8.83 5.21 7.358 4.654 6.642 C 4.296 6.165 3.858 5.807 3.063 5.687 C 2.903 5.648 2.744 5.648 2.585 5.608 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1ybrlbp\",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.858 4.375\" overflow=\"visible\"><path d=\"M 0 4.296 C 0.318 4.335 0.835 4.375 1.312 4.375 C 3.261 4.375 3.858 3.262 3.858 2.267 C 3.858 0.875 2.903 0 1.233 0 C 0.875 0 0.358 0.04 0 0.119 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-gcf14w\",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.977 10.5\" overflow=\"visible\"><path d=\"M 0 10.182 C 0.676 10.023 1.034 9.585 1.273 9.028 L 4.614 0.994 C 4.773 0.676 4.932 0 4.932 0 L 5.886 0 C 5.886 0 6.046 0.676 6.205 1.034 L 9.745 9.068 C 9.983 9.625 10.261 10.023 10.977 10.182 L 10.977 10.46 C 10.58 10.46 9.426 10.42 9.148 10.42 C 8.87 10.42 7.756 10.46 7.358 10.46 L 7.358 10.182 C 7.875 10.063 8.034 9.784 8.034 9.545 C 8.034 9.347 7.955 9.068 7.835 8.83 L 7.08 7.119 L 3.182 7.119 L 2.506 8.869 C 2.426 9.068 2.347 9.347 2.347 9.545 C 2.347 9.824 2.506 10.062 3.063 10.221 L 3.063 10.5 C 2.705 10.5 1.79 10.46 1.591 10.46 L 0.08 10.5 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-lp1dbl\",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.222 3.858\" overflow=\"visible\"><path d=\"M 3.222 3.858 L 1.551 0 L 0 3.858 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-jlct4t\",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.977 10.5\" overflow=\"visible\"><path d=\"M 0 10.182 C 0.676 10.023 1.034 9.585 1.273 9.028 L 4.614 0.994 C 4.773 0.676 4.932 0 4.932 0 L 5.886 0 C 5.886 0 6.046 0.676 6.205 1.034 L 9.745 9.068 C 9.983 9.625 10.261 10.023 10.977 10.182 L 10.977 10.46 C 10.58 10.46 9.426 10.42 9.148 10.42 C 8.87 10.42 7.756 10.46 7.358 10.46 L 7.358 10.182 C 7.875 10.063 8.034 9.784 8.034 9.545 C 8.034 9.347 7.955 9.068 7.835 8.83 L 7.08 7.119 L 3.182 7.119 L 2.506 8.869 C 2.426 9.068 2.347 9.347 2.347 9.545 C 2.347 9.824 2.506 10.062 3.063 10.221 L 3.063 10.5 C 2.705 10.5 1.79 10.46 1.591 10.46 L 0.08 10.5 L 0.08 10.182 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-yyfoi2\",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.222 3.858\" overflow=\"visible\"><path d=\"M 3.222 3.858 L 1.551 0 L 0 3.858 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-14doi0n\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 23.267 27.722\" overflow=\"visible\"><path d=\"M 0.001 0 L 23.267 0 L 23.267 8.79 C 23.267 12.807 21.756 21.358 11.733 27.722 C 11.733 27.722 0.835 23.188 0 8.79 Z\" fill=\"rgb(158, 161, 174)\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsxs(SVG,{className:\"framer-103eb6s\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 22.102 19.908\" overflow=\"visible\"><path d=\"M 7.128 11.04 C 7.069 11.038 7.018 11.067 6.978 11.102 C 6.925 11.15 6.881 11.208 6.848 11.271 C 6.759 11.396 6.572 11.427 6.403 11.422 C 6.233 11.417 6.087 11.379 6.087 11.379 L 6.078 11.376 L 6.069 11.379 C 5.825 11.461 5.716 11.564 5.672 11.654 C 5.654 11.689 5.644 11.728 5.644 11.768 C 5.644 11.791 5.647 11.801 5.648 11.807 L 5.648 12.719 C 5.643 12.761 5.619 12.798 5.584 12.821 C 5.551 12.843 5.508 12.855 5.464 12.859 C 5.376 12.869 5.29 12.85 5.29 12.85 L 5.289 12.85 C 4.984 12.789 4.774 12.86 4.643 12.949 C 4.515 13.037 4.463 13.139 4.462 13.142 C 4.331 13.319 4.417 13.568 4.417 13.568 L 4.417 13.569 C 4.426 13.592 4.436 13.613 4.447 13.633 L 4.448 13.638 C 4.568 13.956 5.005 13.955 5.005 13.955 C 5.164 14.074 5.443 13.995 5.443 13.995 C 5.524 13.995 5.572 14.029 5.601 14.072 C 5.616 14.13 5.609 14.189 5.609 14.189 L 5.608 14.196 L 5.61 14.202 C 5.612 14.213 5.618 14.268 5.621 14.344 C 5.623 14.419 5.624 14.519 5.625 14.634 C 5.627 14.865 5.626 15.159 5.624 15.447 C 5.619 16.023 5.609 16.58 5.609 16.58 C 5.609 16.775 5.571 16.889 5.571 16.889 L 5.569 16.893 L 5.569 16.899 C 5.569 16.908 5.566 16.913 5.555 16.922 C 5.539 16.934 5.52 16.942 5.5 16.947 C 5.449 16.96 5.377 16.965 5.304 16.965 C 5.157 16.965 5.009 16.946 5.009 16.946 L 5.005 16.945 L 5.001 16.946 C 4.587 16.987 4.459 17.359 4.458 17.363 L 4.458 17.364 C 4.428 17.436 4.425 17.516 4.45 17.59 C 4.461 17.625 4.477 17.659 4.496 17.691 C 4.57 17.872 4.767 18.013 4.767 18.013 C 4.767 18.092 5.523 18.131 5.523 18.131 C 5.568 18.143 5.599 18.175 5.623 18.214 C 5.625 18.221 5.628 18.228 5.63 18.235 C 5.648 18.304 5.648 18.37 5.648 18.37 C 5.643 18.391 5.641 18.415 5.639 18.449 C 5.637 18.488 5.637 18.535 5.637 18.589 C 5.639 18.696 5.646 18.827 5.653 18.954 C 5.668 19.208 5.688 19.447 5.688 19.447 L 5.689 19.448 L 5.689 19.45 C 5.694 19.474 5.705 19.497 5.721 19.516 L 5.721 19.523 C 5.761 19.762 6.517 19.683 6.517 19.683 C 6.517 19.683 9.166 19.621 9.881 19.633 C 9.984 19.634 10.046 19.638 10.056 19.643 C 10.136 19.643 10.335 19.603 10.335 19.603 L 10.613 19.802 C 10.707 19.878 10.826 19.916 10.947 19.907 C 10.968 19.906 10.99 19.903 11.01 19.899 C 11.214 19.863 11.369 19.722 11.369 19.722 L 11.767 19.643 C 11.846 19.643 15.068 19.603 15.068 19.603 C 15.347 19.683 15.466 19.563 15.466 19.563 L 15.982 19.523 C 16.002 19.523 16.021 19.522 16.038 19.519 C 16.165 19.496 16.23 19.395 16.264 19.296 C 16.274 19.276 16.284 19.257 16.292 19.237 C 16.334 19.121 16.333 19.007 16.333 19.007 L 16.333 18.334 C 16.338 18.289 16.349 18.245 16.365 18.202 C 16.438 18.074 16.539 18.052 16.539 18.052 L 17.016 17.972 L 17.256 17.853 C 17.347 17.83 17.396 17.766 17.423 17.689 C 17.43 17.678 17.438 17.667 17.443 17.655 C 17.477 17.585 17.486 17.503 17.486 17.426 C 17.486 17.271 17.445 17.129 17.445 17.129 L 17.444 17.125 L 17.443 17.122 C 17.356 16.948 17.156 16.877 16.982 16.846 C 16.809 16.816 16.656 16.826 16.656 16.826 L 16.655 16.826 C 16.464 16.845 16.391 16.791 16.358 16.737 C 16.325 16.683 16.333 16.625 16.333 16.625 L 16.333 16.623 L 16.373 14.158 C 16.389 14.066 16.416 13.992 16.442 13.932 C 16.473 13.872 16.5 13.836 16.5 13.836 C 16.619 13.876 17.016 13.756 17.016 13.756 C 17.245 13.733 17.34 13.593 17.381 13.477 C 17.385 13.471 17.391 13.464 17.394 13.457 C 17.446 13.347 17.446 13.246 17.446 13.243 C 17.467 13.087 17.359 12.958 17.251 12.871 C 17.183 12.816 17.108 12.77 17.029 12.732 L 17.023 12.729 L 16.465 12.729 C 16.448 12.725 16.433 12.715 16.424 12.7 C 16.407 12.677 16.395 12.652 16.388 12.624 C 16.369 12.56 16.36 12.474 16.357 12.388 C 16.353 12.217 16.372 12.05 16.372 12.05 L 16.373 12.048 L 16.373 11.728 C 16.373 11.573 16.263 11.465 16.159 11.397 C 16.055 11.329 15.952 11.299 15.952 11.299 L 15.947 11.298 L 15.238 11.298 C 15.222 11.271 15.204 11.245 15.178 11.228 C 15.142 11.205 15.103 11.188 15.063 11.175 C 15.014 11.159 14.964 11.147 14.913 11.139 C 14.783 11.098 14.59 11.099 14.59 11.099 L 14.58 11.099 L 14.572 11.104 C 14.324 11.276 13.89 11.347 13.519 11.372 C 13.148 11.397 12.842 11.378 12.842 11.378 L 11.595 11.297 L 11.584 11.307 C 11.588 11.303 11.58 11.31 11.567 11.314 C 11.55 11.32 11.532 11.324 11.515 11.328 C 11.473 11.337 11.421 11.345 11.369 11.353 C 11.265 11.368 11.166 11.378 11.166 11.378 L 11.146 11.379 L 11.139 11.399 C 11.105 11.502 11.001 11.538 11.001 11.538 L 10.891 11.575 C 10.818 11.513 10.705 11.466 10.597 11.433 C 10.528 11.412 10.457 11.394 10.385 11.379 L 10.383 11.378 C 10.379 11.376 10.375 11.375 10.372 11.374 C 10.365 11.373 10.358 11.372 10.351 11.371 C 10.33 11.37 10.309 11.369 10.288 11.369 C 10.237 11.369 10.166 11.37 10.083 11.373 C 9.917 11.379 9.699 11.389 9.483 11.402 C 9.05 11.427 8.624 11.457 8.623 11.457 C 8.13 11.476 7.797 11.397 7.587 11.315 C 7.378 11.232 7.295 11.148 7.295 11.148 C 7.243 11.077 7.185 11.042 7.128 11.04 Z M 7.125 11.105 C 7.16 11.107 7.2 11.126 7.246 11.191 L 7.247 11.192 L 7.249 11.195 C 7.249 11.195 7.345 11.289 7.563 11.376 C 7.782 11.462 8.124 11.542 8.625 11.522 L 8.628 11.522 C 8.628 11.522 9.055 11.492 9.487 11.467 C 9.703 11.455 9.92 11.444 10.086 11.438 C 10.168 11.436 10.239 11.434 10.288 11.435 C 10.313 11.435 10.333 11.436 10.346 11.437 C 10.351 11.437 10.355 11.438 10.357 11.438 L 10.359 11.44 L 10.368 11.442 C 10.368 11.442 10.467 11.462 10.58 11.496 C 10.692 11.53 10.82 11.583 10.869 11.632 L 10.883 11.646 L 11.022 11.6 C 11.022 11.6 11.107 11.55 11.164 11.464 C 11.12 11.572 11.011 11.609 11.011 11.609 L 10.892 11.689 C 10.773 11.569 10.375 11.49 10.375 11.49 C 10.335 11.45 8.624 11.569 8.624 11.569 C 7.63 11.609 7.272 11.251 7.272 11.251 C 7.073 10.973 6.874 11.37 6.874 11.37 C 6.675 11.649 6.079 11.49 6.079 11.49 C 5.859 11.563 5.76 11.653 5.714 11.729 C 5.718 11.713 5.724 11.698 5.731 11.683 C 5.765 11.614 5.858 11.521 6.086 11.444 C 6.099 11.447 6.232 11.482 6.402 11.487 C 6.58 11.492 6.791 11.464 6.902 11.31 L 6.903 11.308 L 6.905 11.306 C 6.905 11.306 6.953 11.21 7.02 11.151 C 7.054 11.122 7.09 11.104 7.125 11.105 Z M 14.6 11.165 C 14.614 11.165 14.794 11.167 14.899 11.202 L 14.902 11.203 L 14.904 11.204 C 14.904 11.204 14.972 11.213 15.043 11.237 C 15.079 11.249 15.115 11.264 15.144 11.282 C 15.148 11.285 15.15 11.289 15.154 11.292 C 15.059 11.233 14.909 11.211 14.909 11.211 C 14.79 11.171 14.59 11.171 14.59 11.171 C 14.073 11.529 12.84 11.45 12.84 11.45 L 11.608 11.37 C 11.568 11.409 11.184 11.448 11.175 11.449 C 11.176 11.447 11.179 11.444 11.18 11.442 C 11.186 11.441 11.277 11.432 11.379 11.418 C 11.432 11.41 11.486 11.401 11.53 11.392 C 11.552 11.387 11.572 11.382 11.588 11.376 C 11.597 11.373 11.604 11.368 11.612 11.364 L 12.839 11.442 C 12.839 11.442 13.149 11.463 13.525 11.438 C 13.896 11.413 14.33 11.347 14.6 11.165 Z M 15.223 11.363 L 15.937 11.363 C 15.94 11.364 15.996 11.386 16.062 11.42 C 15.996 11.387 15.943 11.37 15.943 11.37 L 15.227 11.37 C 15.226 11.368 15.224 11.365 15.223 11.363 Z M 16.076 11.427 C 16.093 11.436 16.107 11.441 16.125 11.452 C 16.129 11.456 16.134 11.46 16.139 11.463 C 16.118 11.45 16.097 11.438 16.076 11.427 Z M 16.359 12.717 C 16.364 12.725 16.367 12.733 16.372 12.74 C 16.393 12.767 16.42 12.787 16.454 12.794 L 16.457 12.795 L 17.008 12.795 C 17.013 12.797 17.112 12.843 17.211 12.922 C 17.279 12.978 17.34 13.048 17.367 13.125 C 17.296 13.01 17.165 12.923 17.085 12.877 C 17.063 12.864 17.04 12.852 17.016 12.842 L 16.46 12.842 C 16.411 12.832 16.38 12.784 16.359 12.717 Z M 5.662 12.838 C 5.562 13.027 5.284 12.961 5.284 12.961 C 4.687 12.842 4.488 13.24 4.488 13.24 C 4.483 13.247 4.479 13.255 4.475 13.262 C 4.483 13.233 4.497 13.204 4.515 13.179 L 4.518 13.174 C 4.518 13.174 4.564 13.083 4.682 13.003 C 4.799 12.923 4.987 12.856 5.277 12.914 C 5.277 12.914 5.37 12.934 5.471 12.924 C 5.522 12.918 5.576 12.906 5.621 12.875 C 5.636 12.865 5.65 12.852 5.662 12.838 Z M 16.308 16.776 C 16.356 16.849 16.461 16.911 16.662 16.892 C 16.662 16.892 16.808 16.882 16.972 16.911 C 17.136 16.94 17.312 17.008 17.385 17.151 C 17.385 17.152 17.389 17.172 17.391 17.178 C 17.204 16.903 16.659 16.938 16.659 16.938 C 16.399 16.964 16.327 16.855 16.308 16.776 Z M 5.606 16.963 L 5.602 16.978 C 5.602 16.997 5.592 17.016 5.576 17.028 C 5.556 17.042 5.533 17.052 5.509 17.058 C 5.341 17.103 5.005 17.058 5.005 17.058 C 4.717 17.087 4.576 17.281 4.52 17.386 C 4.52 17.386 4.631 17.05 5.009 17.011 C 5.015 17.012 5.156 17.031 5.304 17.031 C 5.381 17.031 5.456 17.026 5.517 17.01 C 5.548 17.002 5.576 16.99 5.597 16.973 C 5.601 16.97 5.603 16.966 5.606 16.963 Z M 8.377 0 L 8.365 0.01 C 7.744 0.514 6.843 0.282 6.843 0.282 L 6.839 0.281 L 6.835 0.281 C 5.959 0.281 5.677 0.321 5.677 0.321 L 5.664 0.323 L 5.656 0.332 C 5.566 0.441 5.455 0.44 5.357 0.412 C 5.296 0.393 5.238 0.365 5.186 0.329 C 5.168 0.302 5.14 0.287 5.109 0.276 C 5.072 0.264 5.033 0.256 4.995 0.252 C 4.917 0.241 4.846 0.241 4.846 0.241 L 4.845 0.241 L 4.844 0.242 C 3.971 0.301 3.427 0.251 3.102 0.187 C 2.94 0.155 2.833 0.12 2.767 0.092 C 2.701 0.065 2.677 0.048 2.677 0.048 L 2.681 0.052 C 2.67 0.041 2.656 0.034 2.642 0.03 C 2.625 0.026 2.608 0.022 2.591 0.019 C 2.55 0.014 2.508 0.01 2.467 0.008 C 2.381 0.003 2.301 0.002 2.301 0.002 L 2.28 0.002 L 2.271 0.02 C 2.237 0.089 2.129 0.235 2.121 0.246 C 2.11 0.249 2.098 0.251 2.086 0.252 C 2.058 0.255 2.03 0.257 2.002 0.258 C 1.936 0.26 1.854 0.259 1.775 0.256 C 1.616 0.252 1.468 0.242 1.468 0.242 L 1.466 0.241 L 1.465 0.241 C 1.3 0.241 1.2 0.295 1.144 0.35 C 1.111 0.382 1.088 0.422 1.076 0.466 L 1.075 0.468 L 1.035 1.229 L 1.035 1.231 C 1.055 1.468 1.031 1.563 1.015 1.589 C 1.007 1.602 1.007 1.599 1.006 1.599 L 0.979 1.581 L 0.961 1.608 C 0.95 1.624 0.911 1.645 0.854 1.657 C 0.79 1.67 0.725 1.677 0.659 1.678 C 0.522 1.683 0.394 1.673 0.394 1.673 L 0.391 1.673 L 0.388 1.673 C 0.291 1.682 0.202 1.731 0.143 1.808 C 0.086 1.879 0.052 1.966 0.031 2.051 C -0.01 2.221 0.001 2.384 0.001 2.384 L 0.001 2.388 C 0.023 2.496 0.084 2.572 0.161 2.62 C 0.238 2.669 0.33 2.692 0.418 2.703 C 0.588 2.723 0.738 2.694 0.746 2.693 L 0.747 2.693 C 0.959 2.712 1.036 2.778 1.064 2.83 C 1.092 2.883 1.076 2.929 1.076 2.929 L 1.075 2.933 L 1.075 2.939 C 1.075 3.021 1.085 3.675 1.095 4.311 L 1.114 5.56 C 1.105 5.645 1.082 5.699 1.055 5.732 C 1.033 5.76 1.002 5.779 0.967 5.785 C 0.904 5.798 0.842 5.773 0.842 5.773 L 0.836 5.769 L 0.829 5.769 C 0.384 5.769 0.18 5.925 0.095 6.085 C 0.043 6.183 0.025 6.294 0.042 6.403 C 0.063 6.692 0.245 6.825 0.417 6.877 C 0.589 6.929 0.753 6.908 0.753 6.908 L 0.749 6.909 C 0.962 6.909 1.049 6.965 1.086 7.015 C 1.123 7.064 1.115 7.109 1.115 7.109 L 1.114 7.12 L 1.118 7.13 C 1.117 7.127 1.123 7.15 1.125 7.18 C 1.126 7.21 1.127 7.251 1.126 7.297 C 1.124 7.389 1.118 7.506 1.111 7.62 C 1.096 7.848 1.076 8.067 1.076 8.067 L 1.076 8.07 L 1.076 8.075 C 1.118 8.304 1.25 8.398 1.369 8.425 C 1.479 8.45 1.57 8.424 1.584 8.42 L 1.586 8.42 L 4.761 8.5 C 5.214 8.83 5.507 8.84 5.682 8.749 C 5.85 8.663 5.894 8.509 5.9 8.491 L 5.955 8.499 C 5.99 8.505 6.06 8.508 6.161 8.511 C 6.263 8.514 6.395 8.516 6.547 8.516 C 6.85 8.518 7.233 8.517 7.611 8.515 C 7.989 8.512 8.362 8.509 8.645 8.506 C 8.928 8.502 9.121 8.5 9.14 8.5 L 9.142 8.5 C 9.272 8.529 9.374 8.522 9.453 8.493 C 9.523 8.465 9.583 8.415 9.622 8.35 C 9.665 8.278 9.689 8.195 9.692 8.111 L 9.692 8.109 L 9.731 7.162 C 9.748 7.099 9.815 7.054 9.885 7.026 C 9.953 6.999 10.014 6.99 10.019 6.989 C 10.46 7.048 10.677 6.892 10.772 6.718 C 10.866 6.544 10.846 6.359 10.845 6.357 L 10.845 6.356 C 10.824 6.067 10.653 5.924 10.491 5.861 C 10.329 5.799 10.174 5.81 10.174 5.81 L 10.177 5.809 C 9.966 5.809 9.869 5.736 9.82 5.665 C 9.791 5.624 9.774 5.575 9.771 5.525 L 9.771 5.524 C 9.782 5.455 9.789 5.284 9.794 5.051 C 9.8 4.816 9.804 4.525 9.806 4.242 C 9.811 3.675 9.812 3.138 9.812 3.138 C 9.812 3.089 9.839 3.01 9.868 2.948 C 9.894 2.893 9.913 2.861 9.919 2.85 C 10.164 2.875 10.351 2.861 10.482 2.814 C 10.619 2.765 10.703 2.685 10.752 2.602 C 10.847 2.437 10.805 2.263 10.803 2.259 C 10.822 2.11 10.799 1.997 10.747 1.918 C 10.693 1.838 10.614 1.793 10.534 1.769 C 10.38 1.723 10.226 1.751 10.216 1.753 C 9.944 1.753 9.851 1.677 9.818 1.612 C 9.785 1.545 9.809 1.478 9.809 1.478 L 9.81 1.475 L 9.811 1.472 C 9.871 1.091 9.851 0.828 9.815 0.659 C 9.78 0.491 9.725 0.414 9.725 0.414 L 9.722 0.409 L 9.717 0.405 C 9.676 0.378 9.618 0.368 9.547 0.36 C 9.47 0.353 9.393 0.349 9.316 0.35 C 9.16 0.35 9.021 0.36 9.021 0.36 L 9.011 0.361 L 9.004 0.366 C 8.975 0.388 8.944 0.385 8.902 0.364 C 8.859 0.343 8.812 0.302 8.768 0.256 C 8.682 0.165 8.613 0.057 8.613 0.057 L 8.605 0.046 Z M 19.633 0 L 19.621 0.01 C 19 0.514 18.098 0.282 18.098 0.282 L 18.095 0.281 L 18.09 0.281 C 17.254 0.281 16.972 0.321 16.972 0.321 L 16.96 0.323 L 16.952 0.332 C 16.861 0.441 16.75 0.44 16.653 0.412 C 16.592 0.394 16.535 0.366 16.483 0.329 C 16.465 0.302 16.436 0.288 16.404 0.276 C 16.367 0.264 16.329 0.256 16.29 0.252 C 16.213 0.241 16.142 0.241 16.142 0.241 L 16.14 0.241 L 16.139 0.242 C 15.266 0.301 14.722 0.251 14.398 0.187 C 14.236 0.155 14.128 0.12 14.062 0.092 C 13.996 0.065 13.973 0.048 13.973 0.048 L 13.977 0.052 C 13.966 0.041 13.952 0.034 13.936 0.03 C 13.92 0.026 13.904 0.022 13.887 0.019 C 13.845 0.014 13.804 0.01 13.762 0.008 C 13.676 0.003 13.596 0.002 13.596 0.002 L 13.576 0.002 L 13.567 0.02 C 13.532 0.09 13.424 0.236 13.416 0.246 C 13.404 0.249 13.393 0.251 13.381 0.252 C 13.353 0.255 13.325 0.257 13.297 0.258 C 13.231 0.26 13.149 0.259 13.07 0.256 C 12.912 0.252 12.763 0.242 12.763 0.242 L 12.762 0.241 L 12.761 0.241 C 12.576 0.241 12.467 0.293 12.406 0.349 C 12.345 0.405 12.331 0.466 12.331 0.466 L 12.331 1.271 C 12.35 1.487 12.326 1.573 12.311 1.592 C 12.304 1.602 12.305 1.599 12.304 1.599 L 12.301 1.599 L 12.275 1.581 L 12.256 1.608 C 12.246 1.624 12.206 1.645 12.15 1.657 C 12.085 1.67 12.02 1.677 11.954 1.678 C 11.817 1.683 11.689 1.673 11.689 1.673 L 11.687 1.673 L 11.684 1.673 C 11.566 1.684 11.478 1.736 11.416 1.806 C 11.353 1.877 11.315 1.965 11.292 2.05 C 11.246 2.221 11.256 2.384 11.256 2.384 L 11.256 2.386 L 11.257 2.388 C 11.279 2.496 11.34 2.572 11.417 2.62 C 11.494 2.669 11.585 2.692 11.673 2.703 C 11.782 2.715 11.893 2.711 12.002 2.692 L 12.003 2.692 C 12.215 2.712 12.291 2.777 12.319 2.83 C 12.347 2.883 12.332 2.929 12.332 2.929 L 12.332 2.929 L 12.332 2.931 C 12.324 2.961 12.322 3.013 12.319 3.096 C 12.316 3.202 12.314 3.309 12.314 3.416 C 12.312 3.714 12.313 4.013 12.315 4.311 C 12.32 4.946 12.331 5.555 12.331 5.56 C 12.321 5.645 12.298 5.698 12.271 5.731 C 12.249 5.76 12.218 5.779 12.182 5.785 C 12.12 5.798 12.058 5.773 12.058 5.773 L 12.052 5.769 L 12.045 5.769 C 11.6 5.769 11.395 5.925 11.31 6.085 C 11.259 6.183 11.24 6.294 11.257 6.403 C 11.279 6.692 11.461 6.825 11.632 6.877 C 11.804 6.929 11.97 6.908 11.97 6.908 L 11.966 6.909 C 12.158 6.909 12.245 6.965 12.288 7.016 C 12.331 7.068 12.331 7.115 12.331 7.115 L 12.331 7.123 L 12.334 7.13 C 12.332 7.127 12.338 7.15 12.34 7.18 C 12.341 7.21 12.342 7.251 12.341 7.297 C 12.339 7.389 12.333 7.506 12.325 7.62 C 12.31 7.848 12.291 8.066 12.291 8.066 L 12.29 8.07 L 12.291 8.075 C 12.333 8.304 12.466 8.398 12.585 8.425 C 12.695 8.45 12.786 8.425 12.8 8.421 L 12.801 8.421 L 15.976 8.501 C 16.43 8.831 16.721 8.84 16.897 8.75 C 17.066 8.663 17.12 8.498 17.125 8.482 L 17.126 8.481 C 17.138 8.459 17.16 8.444 17.186 8.441 C 17.193 8.441 17.193 8.442 17.191 8.44 C 17.19 8.438 17.193 8.439 17.186 8.453 L 17.166 8.493 L 17.21 8.5 C 17.245 8.506 17.315 8.509 17.416 8.512 C 17.518 8.514 17.65 8.516 17.802 8.517 C 18.105 8.519 18.488 8.518 18.866 8.515 C 19.244 8.513 19.616 8.509 19.9 8.506 C 20.183 8.503 20.38 8.501 20.397 8.501 C 20.537 8.53 20.644 8.522 20.724 8.492 C 20.806 8.461 20.86 8.407 20.893 8.349 C 20.958 8.234 20.946 8.106 20.946 8.106 L 20.947 8.111 L 20.987 7.162 C 21.003 7.099 21.07 7.054 21.14 7.026 C 21.208 6.998 21.27 6.99 21.274 6.99 C 21.716 7.048 21.932 6.892 22.027 6.718 C 22.122 6.544 22.1 6.359 22.1 6.357 L 22.1 6.356 C 22.079 6.067 21.908 5.924 21.746 5.861 C 21.585 5.798 21.429 5.81 21.429 5.81 L 21.432 5.809 C 21.2 5.809 21.106 5.735 21.062 5.665 C 21.018 5.596 21.027 5.528 21.027 5.528 L 21.027 5.524 C 21.027 5.289 21.067 3.138 21.067 3.138 L 21.067 3.137 C 21.067 3.089 21.094 3.01 21.123 2.947 C 21.149 2.892 21.169 2.86 21.175 2.85 C 21.419 2.875 21.607 2.86 21.738 2.814 C 21.875 2.765 21.959 2.685 22.007 2.602 C 22.103 2.437 22.06 2.263 22.059 2.259 C 22.078 2.11 22.054 1.997 22.002 1.918 C 21.948 1.838 21.869 1.793 21.789 1.769 C 21.634 1.722 21.48 1.751 21.471 1.753 C 21.199 1.753 21.107 1.677 21.074 1.611 C 21.041 1.545 21.065 1.478 21.065 1.478 L 21.067 1.472 C 21.127 1.091 21.107 0.828 21.071 0.659 C 21.036 0.491 20.981 0.414 20.981 0.414 L 20.977 0.409 L 20.973 0.405 C 20.932 0.378 20.873 0.368 20.803 0.36 C 20.726 0.353 20.649 0.349 20.572 0.35 C 20.416 0.35 20.276 0.36 20.276 0.36 L 20.266 0.361 L 20.259 0.366 C 20.23 0.388 20.2 0.385 20.158 0.364 C 20.115 0.343 20.067 0.302 20.023 0.256 C 19.937 0.165 19.869 0.057 19.869 0.057 L 19.861 0.046 Z\" fill=\"rgb(0, 0, 0)\"></path></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1wp0n37\",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.097 8.869\" overflow=\"visible\"><path d=\"M 2.738 0 C 2.68 -0.002 2.629 0.027 2.588 0.062 C 2.535 0.111 2.492 0.168 2.459 0.232 C 2.37 0.356 2.183 0.388 2.014 0.383 C 1.844 0.378 1.698 0.339 1.698 0.339 L 1.689 0.337 L 1.68 0.34 C 1.436 0.421 1.327 0.525 1.283 0.614 C 1.265 0.649 1.255 0.689 1.255 0.728 C 1.255 0.751 1.257 0.761 1.259 0.768 L 1.259 1.679 C 1.254 1.721 1.23 1.758 1.195 1.782 C 1.162 1.803 1.118 1.815 1.074 1.82 C 0.987 1.829 0.901 1.81 0.901 1.81 L 0.9 1.81 C 0.595 1.749 0.385 1.821 0.254 1.91 C 0.125 1.997 0.074 2.099 0.072 2.102 C -0.059 2.28 0.028 2.528 0.028 2.528 L 0.028 2.53 C 0.036 2.552 0.046 2.574 0.058 2.593 L 0.059 2.598 C 0.178 2.916 0.616 2.916 0.616 2.916 C 0.775 3.035 1.053 2.955 1.053 2.955 C 1.135 2.955 1.183 2.989 1.212 3.032 C 1.226 3.091 1.22 3.149 1.22 3.149 L 1.219 3.157 L 1.22 3.163 C 1.223 3.173 1.229 3.229 1.231 3.304 C 1.234 3.38 1.235 3.479 1.236 3.595 C 1.238 3.826 1.237 4.119 1.234 4.407 C 1.229 4.984 1.22 5.541 1.22 5.541 C 1.22 5.735 1.182 5.849 1.182 5.849 L 1.18 5.854 L 1.18 5.859 C 1.18 5.869 1.177 5.874 1.166 5.882 C 1.149 5.894 1.131 5.903 1.111 5.907 C 1.06 5.921 0.988 5.926 0.914 5.926 C 0.768 5.926 0.62 5.906 0.62 5.906 L 0.616 5.906 L 0.612 5.906 C 0.198 5.948 0.07 6.32 0.068 6.323 L 0.068 6.324 C 0.038 6.396 0.036 6.477 0.061 6.55 C 0.072 6.586 0.088 6.62 0.106 6.651 C 0.18 6.832 0.377 6.973 0.377 6.973 C 0.377 7.053 1.133 7.092 1.133 7.092 C 1.179 7.103 1.21 7.135 1.234 7.174 C 1.236 7.181 1.239 7.188 1.241 7.195 C 1.259 7.265 1.259 7.33 1.259 7.33 C 1.253 7.351 1.252 7.375 1.25 7.41 C 1.248 7.448 1.247 7.496 1.248 7.549 C 1.25 7.657 1.256 7.788 1.264 7.914 C 1.279 8.169 1.299 8.407 1.299 8.407 L 1.3 8.409 L 1.3 8.41 C 1.304 8.435 1.315 8.458 1.331 8.477 L 1.332 8.484 C 1.372 8.723 2.128 8.643 2.128 8.643 C 2.128 8.643 4.776 8.582 5.492 8.593 C 5.594 8.595 5.657 8.599 5.667 8.603 C 5.746 8.603 5.946 8.564 5.946 8.564 L 6.224 8.763 C 6.318 8.839 6.437 8.876 6.558 8.868 C 6.579 8.866 6.6 8.864 6.621 8.86 C 6.825 8.823 6.98 8.683 6.98 8.683 L 7.377 8.603 C 7.457 8.603 10.679 8.564 10.679 8.564 C 10.957 8.643 11.077 8.523 11.077 8.523 L 11.593 8.484 C 11.613 8.484 11.632 8.482 11.649 8.479 C 11.775 8.456 11.84 8.355 11.874 8.256 C 11.884 8.237 11.895 8.217 11.902 8.197 C 11.945 8.081 11.943 7.967 11.943 7.967 L 11.943 7.295 C 11.949 7.25 11.96 7.205 11.976 7.163 C 12.049 7.035 12.15 7.013 12.15 7.013 L 12.627 6.933 L 12.866 6.814 C 12.958 6.791 13.007 6.727 13.034 6.649 C 13.041 6.638 13.049 6.628 13.054 6.616 C 13.087 6.546 13.097 6.464 13.097 6.386 C 13.097 6.232 13.056 6.089 13.056 6.089 L 13.055 6.086 L 13.054 6.083 C 12.967 5.908 12.766 5.837 12.593 5.807 C 12.419 5.776 12.267 5.787 12.267 5.787 L 12.266 5.787 C 12.074 5.806 12.002 5.751 11.969 5.697 C 11.936 5.644 11.943 5.585 11.943 5.585 L 11.943 5.583 L 11.984 3.118 C 12 3.026 12.026 2.952 12.053 2.892 C 12.084 2.833 12.111 2.797 12.111 2.797 C 12.23 2.836 12.627 2.717 12.627 2.717 C 12.856 2.694 12.951 2.554 12.992 2.438 C 12.996 2.431 13.001 2.424 13.005 2.418 C 13.057 2.307 13.057 2.206 13.057 2.203 C 13.078 2.047 12.97 1.918 12.862 1.831 C 12.793 1.777 12.719 1.73 12.64 1.693 L 12.634 1.69 L 12.075 1.69 C 12.059 1.686 12.044 1.675 12.034 1.661 C 12.018 1.638 12.006 1.612 11.999 1.585 C 11.979 1.521 11.971 1.434 11.968 1.348 C 11.963 1.178 11.983 1.011 11.983 1.011 L 11.984 1.008 L 11.984 0.688 C 11.984 0.534 11.873 0.425 11.769 0.357 C 11.665 0.29 11.563 0.259 11.563 0.259 L 11.558 0.258 L 10.849 0.258 C 10.833 0.231 10.815 0.205 10.788 0.188 C 10.752 0.166 10.714 0.148 10.673 0.135 C 10.625 0.119 10.574 0.107 10.524 0.1 C 10.394 0.059 10.201 0.059 10.201 0.059 L 10.191 0.059 L 10.182 0.065 C 9.935 0.236 9.5 0.308 9.13 0.333 C 8.759 0.357 8.453 0.338 8.453 0.338 L 7.206 0.257 L 7.195 0.267 C 7.199 0.264 7.191 0.27 7.178 0.274 C 7.161 0.28 7.143 0.285 7.126 0.288 C 7.084 0.297 7.032 0.306 6.98 0.313 C 6.876 0.328 6.777 0.338 6.777 0.338 L 6.757 0.34 L 6.75 0.36 C 6.715 0.463 6.611 0.498 6.611 0.498 L 6.502 0.535 C 6.429 0.474 6.316 0.427 6.208 0.394 C 6.138 0.373 6.068 0.354 5.996 0.34 L 5.994 0.338 C 5.99 0.336 5.986 0.336 5.983 0.335 C 5.976 0.333 5.969 0.332 5.962 0.332 C 5.941 0.33 5.92 0.329 5.899 0.329 C 5.848 0.329 5.777 0.33 5.694 0.333 C 5.528 0.339 5.31 0.35 5.094 0.362 C 4.661 0.387 4.234 0.417 4.234 0.417 C 3.741 0.437 3.407 0.358 3.198 0.275 C 2.989 0.192 2.906 0.109 2.906 0.109 C 2.854 0.037 2.796 0.002 2.738 0 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-t80g2v\",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.449 1\" overflow=\"visible\"><path d=\"M 1.411 0 C 1.445 0.002 1.486 0.021 1.532 0.085 L 1.533 0.087 L 1.534 0.089 C 1.534 0.089 1.631 0.184 1.849 0.27 C 2.067 0.357 2.409 0.437 2.911 0.417 L 2.913 0.417 C 2.913 0.417 3.34 0.387 3.772 0.362 C 3.988 0.35 4.206 0.339 4.371 0.333 C 4.454 0.331 4.524 0.329 4.574 0.329 C 4.599 0.329 4.618 0.33 4.631 0.332 C 4.637 0.332 4.64 0.333 4.643 0.333 L 4.644 0.335 L 4.654 0.337 C 4.654 0.337 4.753 0.356 4.865 0.391 C 4.978 0.425 5.105 0.477 5.155 0.527 L 5.169 0.541 L 5.307 0.495 C 5.307 0.495 5.392 0.445 5.449 0.359 C 5.405 0.467 5.296 0.504 5.296 0.504 L 5.177 0.583 C 5.058 0.464 4.66 0.385 4.66 0.385 C 4.62 0.345 2.91 0.464 2.91 0.464 C 1.916 0.504 1.558 0.146 1.558 0.146 C 1.359 -0.132 1.16 0.265 1.16 0.265 C 0.961 0.543 0.364 0.385 0.364 0.385 C 0.144 0.458 0.046 0.548 0 0.624 C 0.004 0.608 0.009 0.593 0.016 0.578 C 0.051 0.509 0.144 0.416 0.371 0.339 C 0.384 0.342 0.517 0.377 0.687 0.382 C 0.866 0.387 1.077 0.358 1.187 0.204 L 1.189 0.203 L 1.19 0.2 C 1.19 0.2 1.238 0.104 1.306 0.046 C 1.34 0.017 1.376 -0.001 1.411 0 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-qmn2vs\",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.979 1\" overflow=\"visible\"><path d=\"M 3.425 0 C 3.439 0 3.619 0.002 3.724 0.037 L 3.727 0.038 L 3.729 0.039 C 3.729 0.039 3.797 0.049 3.868 0.072 C 3.904 0.084 3.94 0.099 3.969 0.117 C 3.973 0.12 3.976 0.124 3.979 0.127 C 3.884 0.068 3.734 0.046 3.734 0.046 C 3.615 0.006 3.416 0.006 3.416 0.006 C 2.899 0.364 1.665 0.285 1.665 0.285 L 0.433 0.205 C 0.393 0.245 0.009 0.284 0 0.284 C 0.002 0.282 0.004 0.28 0.005 0.277 C 0.011 0.276 0.102 0.267 0.204 0.253 C 0.257 0.245 0.311 0.237 0.355 0.227 C 0.377 0.222 0.397 0.217 0.413 0.212 C 0.423 0.208 0.43 0.203 0.437 0.199 L 1.664 0.277 C 1.664 0.277 1.975 0.298 2.35 0.273 C 2.721 0.248 3.155 0.182 3.425 0 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1wmtzok\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 1 1\" overflow=\"visible\"><path d=\"M 0 0 L 0.715 0 C 0.717 0.001 0.774 0.022 0.84 0.057 C 0.773 0.023 0.72 0.007 0.72 0.007 L 0.004 0.007 C 0.003 0.005 0.001 0.002 0 0 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-csj3xn\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 1 1\" overflow=\"visible\"><path d=\"M 0 0 C 0.017 0.009 0.031 0.014 0.049 0.026 C 0.054 0.029 0.058 0.033 0.063 0.037 C 0.043 0.023 0.022 0.011 0 0 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-pa088y\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 1.008 1\" overflow=\"visible\"><path d=\"M 0 0 C 0.004 0.007 0.008 0.016 0.013 0.022 C 0.033 0.049 0.061 0.07 0.095 0.077 L 0.098 0.078 L 0.649 0.078 C 0.654 0.08 0.753 0.125 0.851 0.205 C 0.92 0.261 0.981 0.331 1.008 0.408 C 0.937 0.293 0.806 0.206 0.726 0.16 C 0.703 0.147 0.681 0.135 0.657 0.125 L 0.101 0.125 C 0.052 0.115 0.021 0.067 0 0 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1bl3iwe\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 1.187 1\" overflow=\"visible\"><path d=\"M 1.187 0 C 1.087 0.189 0.809 0.123 0.809 0.123 C 0.212 0.003 0.013 0.402 0.013 0.402 C 0.008 0.409 0.005 0.417 0 0.424 C 0.009 0.394 0.022 0.366 0.04 0.341 L 0.044 0.336 C 0.044 0.336 0.089 0.245 0.207 0.165 C 0.324 0.085 0.512 0.017 0.802 0.075 C 0.802 0.075 0.896 0.096 0.997 0.085 C 1.047 0.08 1.101 0.068 1.147 0.037 C 1.162 0.027 1.175 0.014 1.187 0 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1pabso7\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 1.083 1\" overflow=\"visible\"><path d=\"M 0 0 C 0.048 0.073 0.153 0.136 0.354 0.116 C 0.354 0.116 0.5 0.106 0.664 0.135 C 0.828 0.164 1.004 0.232 1.077 0.375 C 1.077 0.376 1.081 0.396 1.083 0.402 C 0.896 0.127 0.351 0.162 0.351 0.162 C 0.091 0.188 0.019 0.079 0 0 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1lp243r\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 1.086 1\" overflow=\"visible\"><path d=\"M 1.086 0 L 1.082 0.015 C 1.082 0.034 1.072 0.053 1.056 0.065 C 1.036 0.079 1.013 0.089 0.989 0.095 C 0.821 0.139 0.485 0.095 0.485 0.095 C 0.198 0.124 0.056 0.318 0 0.423 C 0 0.423 0.111 0.087 0.489 0.048 C 0.495 0.049 0.636 0.067 0.785 0.067 C 0.861 0.067 0.936 0.063 0.997 0.046 C 1.028 0.038 1.056 0.027 1.077 0.01 C 1.081 0.007 1.083 0.003 1.086 0 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1u2ralx\",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.848 8.798\" overflow=\"visible\"><path d=\"M 8.377 0 L 8.365 0.01 C 7.744 0.514 6.843 0.282 6.843 0.282 L 6.839 0.281 L 6.835 0.281 C 5.959 0.281 5.677 0.321 5.677 0.321 L 5.664 0.323 L 5.656 0.332 C 5.566 0.441 5.455 0.44 5.357 0.412 C 5.296 0.393 5.238 0.365 5.186 0.329 C 5.168 0.302 5.14 0.287 5.109 0.276 C 5.072 0.264 5.033 0.256 4.995 0.252 C 4.917 0.241 4.846 0.241 4.846 0.241 L 4.845 0.241 L 4.844 0.242 C 3.971 0.301 3.427 0.251 3.102 0.187 C 2.94 0.155 2.833 0.12 2.767 0.092 C 2.701 0.065 2.677 0.048 2.677 0.048 L 2.681 0.052 C 2.67 0.041 2.656 0.034 2.642 0.03 C 2.625 0.026 2.608 0.022 2.591 0.019 C 2.55 0.014 2.508 0.01 2.467 0.008 C 2.381 0.003 2.301 0.002 2.301 0.002 L 2.28 0.002 L 2.271 0.02 C 2.237 0.089 2.129 0.235 2.121 0.246 C 2.11 0.249 2.098 0.251 2.086 0.252 C 2.058 0.255 2.03 0.257 2.002 0.258 C 1.936 0.26 1.854 0.259 1.775 0.256 C 1.616 0.252 1.468 0.242 1.468 0.242 L 1.466 0.241 L 1.465 0.241 C 1.3 0.241 1.2 0.295 1.144 0.35 C 1.111 0.382 1.088 0.422 1.076 0.466 L 1.075 0.468 L 1.035 1.229 L 1.035 1.231 C 1.055 1.468 1.031 1.563 1.015 1.589 C 1.007 1.602 1.007 1.599 1.006 1.599 L 0.979 1.581 L 0.961 1.608 C 0.95 1.624 0.911 1.645 0.854 1.657 C 0.79 1.67 0.725 1.677 0.659 1.678 C 0.522 1.683 0.394 1.673 0.394 1.673 L 0.391 1.673 L 0.388 1.673 C 0.291 1.682 0.202 1.731 0.143 1.808 C 0.086 1.879 0.052 1.966 0.031 2.051 C -0.01 2.221 0.001 2.384 0.001 2.384 L 0.001 2.388 C 0.023 2.496 0.084 2.572 0.161 2.62 C 0.238 2.669 0.33 2.692 0.418 2.703 C 0.588 2.723 0.738 2.694 0.746 2.693 L 0.747 2.693 C 0.959 2.712 1.036 2.778 1.064 2.83 C 1.092 2.883 1.076 2.929 1.076 2.929 L 1.075 2.933 L 1.075 2.939 C 1.075 3.021 1.085 3.675 1.095 4.311 L 1.114 5.56 C 1.105 5.645 1.082 5.699 1.055 5.732 C 1.033 5.76 1.002 5.779 0.967 5.785 C 0.904 5.798 0.842 5.773 0.842 5.773 L 0.836 5.769 L 0.829 5.769 C 0.384 5.769 0.18 5.925 0.095 6.085 C 0.043 6.183 0.025 6.294 0.042 6.403 C 0.063 6.692 0.245 6.825 0.417 6.877 C 0.589 6.929 0.753 6.908 0.753 6.908 L 0.749 6.909 C 0.962 6.909 1.049 6.965 1.086 7.015 C 1.123 7.064 1.115 7.109 1.115 7.109 L 1.114 7.12 L 1.118 7.13 C 1.117 7.127 1.123 7.15 1.125 7.18 C 1.126 7.21 1.127 7.251 1.126 7.297 C 1.124 7.389 1.118 7.506 1.111 7.62 C 1.096 7.848 1.076 8.067 1.076 8.067 L 1.076 8.07 L 1.076 8.075 C 1.118 8.304 1.25 8.398 1.369 8.425 C 1.479 8.45 1.57 8.424 1.584 8.42 L 1.586 8.42 L 4.761 8.5 C 5.214 8.83 5.507 8.84 5.682 8.749 C 5.85 8.663 5.894 8.509 5.9 8.491 L 5.955 8.499 C 5.99 8.505 6.06 8.508 6.161 8.511 C 6.263 8.514 6.395 8.516 6.547 8.516 C 6.85 8.518 7.233 8.517 7.611 8.515 C 7.989 8.512 8.362 8.509 8.645 8.506 C 8.928 8.502 9.121 8.5 9.14 8.5 L 9.142 8.5 C 9.272 8.529 9.374 8.522 9.453 8.493 C 9.523 8.465 9.583 8.415 9.622 8.35 C 9.665 8.278 9.689 8.195 9.692 8.111 L 9.692 8.109 L 9.731 7.162 C 9.748 7.099 9.815 7.054 9.885 7.026 C 9.953 6.999 10.014 6.99 10.019 6.989 C 10.46 7.048 10.677 6.892 10.772 6.718 C 10.866 6.544 10.846 6.359 10.845 6.357 L 10.845 6.356 C 10.824 6.067 10.653 5.924 10.491 5.861 C 10.329 5.799 10.174 5.81 10.174 5.81 L 10.177 5.809 C 9.966 5.809 9.869 5.736 9.82 5.665 C 9.791 5.624 9.774 5.575 9.771 5.525 L 9.771 5.524 C 9.782 5.455 9.789 5.284 9.794 5.051 C 9.8 4.816 9.804 4.525 9.806 4.242 C 9.811 3.675 9.812 3.138 9.812 3.138 C 9.812 3.089 9.839 3.01 9.868 2.948 C 9.894 2.893 9.913 2.861 9.919 2.85 C 10.164 2.875 10.351 2.861 10.482 2.814 C 10.619 2.765 10.703 2.685 10.752 2.602 C 10.847 2.437 10.805 2.263 10.803 2.259 C 10.822 2.11 10.799 1.997 10.747 1.918 C 10.693 1.838 10.614 1.793 10.534 1.769 C 10.38 1.723 10.226 1.751 10.216 1.753 C 9.944 1.753 9.851 1.677 9.818 1.612 C 9.785 1.545 9.809 1.478 9.809 1.478 L 9.81 1.475 L 9.811 1.472 C 9.871 1.091 9.851 0.828 9.815 0.659 C 9.78 0.491 9.725 0.414 9.725 0.414 L 9.722 0.409 L 9.717 0.405 C 9.676 0.378 9.618 0.368 9.547 0.36 C 9.47 0.353 9.393 0.349 9.316 0.35 C 9.16 0.35 9.021 0.36 9.021 0.36 L 9.011 0.361 L 9.004 0.366 C 8.975 0.388 8.944 0.385 8.902 0.364 C 8.859 0.343 8.812 0.302 8.768 0.256 C 8.682 0.165 8.613 0.057 8.613 0.057 L 8.605 0.046 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-q5u6d2\",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.851 8.799\" overflow=\"visible\"><path d=\"M 8.381 0 L 8.37 0.01 C 7.749 0.514 6.847 0.282 6.847 0.282 L 6.843 0.281 L 6.839 0.281 C 6.002 0.281 5.721 0.321 5.721 0.321 L 5.709 0.323 L 5.701 0.332 C 5.61 0.441 5.499 0.44 5.402 0.412 C 5.341 0.394 5.283 0.366 5.232 0.329 C 5.214 0.302 5.185 0.288 5.153 0.276 C 5.116 0.264 5.078 0.256 5.039 0.252 C 4.962 0.241 4.891 0.241 4.891 0.241 L 4.889 0.241 L 4.888 0.242 C 4.015 0.301 3.471 0.251 3.147 0.187 C 2.984 0.155 2.877 0.12 2.811 0.092 C 2.745 0.065 2.722 0.048 2.722 0.048 L 2.726 0.052 C 2.714 0.041 2.7 0.034 2.685 0.03 C 2.669 0.026 2.652 0.022 2.636 0.019 C 2.594 0.014 2.552 0.01 2.511 0.008 C 2.425 0.003 2.345 0.002 2.345 0.002 L 2.325 0.002 L 2.315 0.02 C 2.281 0.09 2.173 0.236 2.165 0.246 C 2.153 0.249 2.142 0.251 2.13 0.252 C 2.102 0.255 2.074 0.257 2.046 0.258 C 1.98 0.26 1.898 0.259 1.819 0.256 C 1.661 0.252 1.512 0.242 1.512 0.242 L 1.511 0.241 L 1.51 0.241 C 1.325 0.241 1.216 0.293 1.155 0.349 C 1.094 0.405 1.08 0.466 1.08 0.466 L 1.08 1.271 C 1.099 1.487 1.074 1.573 1.06 1.592 C 1.053 1.602 1.054 1.599 1.053 1.599 L 1.05 1.599 L 1.024 1.581 L 1.005 1.608 C 0.995 1.624 0.955 1.645 0.899 1.657 C 0.834 1.67 0.769 1.677 0.703 1.678 C 0.566 1.683 0.438 1.673 0.438 1.673 L 0.436 1.673 L 0.432 1.673 C 0.315 1.684 0.227 1.736 0.164 1.806 C 0.102 1.877 0.064 1.965 0.041 2.05 C -0.005 2.221 0.005 2.384 0.005 2.384 L 0.005 2.386 L 0.006 2.388 C 0.028 2.496 0.089 2.572 0.166 2.62 C 0.243 2.669 0.334 2.692 0.422 2.703 C 0.531 2.715 0.642 2.711 0.751 2.692 L 0.752 2.692 C 0.964 2.712 1.04 2.777 1.068 2.83 C 1.096 2.883 1.081 2.929 1.081 2.929 L 1.08 2.929 L 1.08 2.931 C 1.073 2.961 1.071 3.013 1.068 3.096 C 1.065 3.202 1.063 3.309 1.062 3.416 C 1.061 3.714 1.061 4.013 1.064 4.311 C 1.069 4.946 1.079 5.555 1.079 5.56 C 1.07 5.645 1.047 5.698 1.02 5.731 C 0.998 5.76 0.966 5.779 0.931 5.785 C 0.869 5.798 0.807 5.773 0.807 5.773 L 0.801 5.769 L 0.794 5.769 C 0.349 5.769 0.144 5.925 0.059 6.085 C 0.008 6.183 -0.011 6.294 0.006 6.403 C 0.028 6.692 0.21 6.825 0.381 6.877 C 0.553 6.929 0.718 6.908 0.718 6.908 L 0.715 6.909 C 0.907 6.909 0.994 6.965 1.037 7.016 C 1.08 7.068 1.08 7.115 1.08 7.115 L 1.08 7.123 L 1.083 7.13 C 1.081 7.127 1.087 7.15 1.089 7.18 C 1.09 7.21 1.091 7.251 1.09 7.297 C 1.088 7.389 1.082 7.506 1.074 7.62 C 1.059 7.848 1.04 8.066 1.04 8.066 L 1.039 8.07 L 1.04 8.075 C 1.082 8.304 1.214 8.398 1.334 8.425 C 1.444 8.45 1.535 8.425 1.549 8.421 L 1.55 8.421 L 4.725 8.501 C 5.178 8.831 5.47 8.84 5.645 8.75 C 5.815 8.663 5.869 8.498 5.874 8.482 L 5.875 8.481 C 5.887 8.459 5.909 8.444 5.934 8.441 C 5.942 8.441 5.942 8.442 5.94 8.44 C 5.939 8.438 5.942 8.439 5.934 8.453 L 5.915 8.493 L 5.959 8.5 C 5.994 8.506 6.064 8.509 6.165 8.512 C 6.267 8.514 6.399 8.516 6.551 8.517 C 6.854 8.519 7.237 8.518 7.615 8.515 C 7.993 8.513 8.365 8.509 8.649 8.506 C 8.932 8.503 9.129 8.501 9.146 8.501 C 9.286 8.53 9.392 8.522 9.473 8.492 C 9.555 8.461 9.609 8.407 9.641 8.349 C 9.707 8.234 9.695 8.106 9.695 8.106 L 9.696 8.111 L 9.735 7.162 C 9.752 7.099 9.818 7.054 9.889 7.026 C 9.957 6.998 10.019 6.99 10.023 6.99 C 10.464 7.048 10.681 6.892 10.776 6.718 C 10.87 6.544 10.849 6.359 10.849 6.357 L 10.849 6.356 C 10.828 6.067 10.657 5.924 10.495 5.861 C 10.333 5.798 10.178 5.81 10.178 5.81 L 10.181 5.809 C 9.949 5.809 9.854 5.735 9.811 5.665 C 9.767 5.596 9.776 5.528 9.776 5.528 L 9.776 5.524 C 9.776 5.289 9.816 3.138 9.816 3.138 L 9.816 3.137 C 9.816 3.089 9.843 3.01 9.872 2.947 C 9.898 2.892 9.918 2.86 9.924 2.85 C 10.168 2.875 10.355 2.86 10.487 2.814 C 10.624 2.765 10.708 2.685 10.756 2.602 C 10.852 2.437 10.809 2.263 10.808 2.259 C 10.826 2.11 10.803 1.997 10.751 1.918 C 10.697 1.838 10.617 1.793 10.538 1.769 C 10.383 1.722 10.228 1.751 10.22 1.753 C 9.948 1.753 9.856 1.677 9.822 1.611 C 9.789 1.545 9.814 1.478 9.814 1.478 L 9.815 1.472 C 9.876 1.091 9.856 0.828 9.82 0.659 C 9.784 0.491 9.73 0.414 9.73 0.414 L 9.726 0.409 L 9.721 0.405 C 9.681 0.378 9.622 0.368 9.551 0.36 C 9.475 0.353 9.398 0.349 9.321 0.35 C 9.165 0.35 9.025 0.36 9.025 0.36 L 9.015 0.361 L 9.008 0.366 C 8.979 0.388 8.949 0.385 8.907 0.364 C 8.864 0.343 8.815 0.302 8.772 0.256 C 8.686 0.165 8.618 0.057 8.618 0.057 L 8.61 0.046 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(SVG,{className:\"framer-6a8m7\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 23.545 28\" overflow=\"visible\"><path d=\"M 11.852 28 L 11.773 27.96 C 11.693 27.92 0.835 23.227 0 8.949 L 0 0 L 23.545 0 L 23.545 8.909 C 23.545 12.409 22.432 21.318 11.931 27.92 Z M 0.278 0.278 L 0.278 8.908 C 1.074 22.431 10.938 27.283 11.852 27.681 C 22.153 21.119 23.267 12.369 23.267 8.908 L 23.267 0.278 Z\" fill=\"rgb(0, 0, 0)\"></path></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-pxg3vo\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 23.545 28\" overflow=\"visible\"><path d=\"M 11.852 28 L 11.773 27.96 C 11.693 27.92 0.835 23.227 0 8.949 L 0 0 L 23.545 0 L 23.545 8.909 C 23.545 12.409 22.432 21.318 11.931 27.92 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-l9fo9s\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 22.989 27.403\" overflow=\"visible\"><path d=\"M 0 0 L 0 8.631 C 0.795 22.153 10.659 27.006 11.574 27.403 C 21.875 20.841 22.989 12.091 22.989 8.631 L 22.989 0 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(SVG,{className:\"framer-16tbmxt\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 21.552 19.18\" overflow=\"visible\"><path d=\"M 2.521 0 C 2.521 0 2.282 0 2.322 0.159 L 2.243 6.204 C 2.243 6.204 2.243 6.483 2.68 6.523 C 2.68 6.523 3.236 6.563 3.356 6.523 L 4.629 6.523 C 4.629 6.523 4.868 6.761 4.868 6.483 C 4.868 6.483 5.026 1.591 4.947 0.557 C 4.947 0.557 4.947 0.119 4.589 0.119 C 4.589 0.119 3.157 0.238 3.038 0.119 Z M 8.042 0.009 C 7.989 0.005 7.905 0.02 7.77 0.079 C 7.77 0.079 7.811 0.239 6.021 0.159 C 5.981 0.159 5.305 0.159 5.265 0.437 C 5.265 0.437 5.226 3.301 5.226 3.381 L 5.185 5.767 L 5.146 6.602 C 5.146 6.602 5.265 6.761 5.344 6.642 C 5.344 6.642 5.941 6.483 6.339 6.562 C 6.339 6.562 7.532 6.681 7.811 6.483 C 7.811 6.483 8.009 6.562 8.049 6.284 C 8.049 6.284 8.129 0.994 8.089 0.914 C 8.089 0.914 8.168 0.159 8.129 0.079 C 8.129 0.079 8.129 0.017 8.042 0.009 Z M 1.484 0.158 C 1.406 0.16 1.293 0.209 1.129 0.358 L 1.089 1.154 C 1.089 1.154 1.089 1.591 0.691 1.551 C 0.691 1.551 0.253 1.551 0.015 1.75 C 0.015 1.75 -0.104 2.147 0.333 2.108 C 0.333 2.108 1.01 2.108 1.049 2.386 L 1.009 5.25 C 1.009 5.25 1.169 5.727 0.652 5.727 C 0.652 5.727 0.015 5.687 0.015 6.085 C 0.015 6.085 0.135 6.404 0.691 6.324 C 0.691 6.324 1.089 6.403 1.049 6.761 L 1.049 7.477 C 1.049 7.477 1.009 7.755 1.407 7.795 L 4.35 7.795 C 4.35 7.795 4.509 7.795 4.509 7.636 C 4.509 7.636 4.509 7.477 4.271 7.477 L 1.845 7.397 C 1.845 7.397 1.446 7.517 1.407 6.921 C 1.407 6.921 1.445 1.813 1.446 1.589 L 1.447 1.591 L 1.446 1.57 L 1.447 1.511 L 1.445 1.508 C 1.441 1.312 1.44 0.62 1.646 0.278 C 1.646 0.278 1.615 0.154 1.484 0.158 Z M 9.016 0.172 C 8.845 0.187 8.845 0.398 8.845 0.398 C 8.924 0.477 8.964 0.756 8.964 0.756 C 9.003 1.392 8.964 2.108 8.964 2.784 C 8.924 5.051 8.845 7.119 8.845 7.119 C 8.845 7.557 8.606 7.437 8.606 7.437 L 5.98 7.437 C 5.702 7.437 5.702 7.596 5.702 7.596 C 5.742 7.835 5.98 7.756 5.98 7.756 C 6.219 7.795 8.845 7.756 8.845 7.756 C 9.242 7.795 9.203 7.278 9.203 7.278 C 9.242 6.363 9.322 6.283 9.322 6.283 C 9.401 6.244 9.839 6.244 9.839 6.244 C 10.555 6.284 10.237 5.807 10.237 5.807 C 10.157 5.687 9.68 5.687 9.68 5.687 C 9.242 5.727 9.282 5.25 9.282 5.25 L 9.322 2.505 C 9.242 2.267 9.441 2.148 9.441 2.148 L 9.879 2.148 C 10.475 2.188 10.316 1.79 10.316 1.79 C 10.316 1.591 9.799 1.511 9.799 1.511 C 9.322 1.591 9.361 1.312 9.361 1.312 L 9.361 0.636 C 9.441 0.198 9.162 0.199 9.162 0.199 C 9.103 0.176 9.055 0.169 9.016 0.172 Z M 8.454 0.261 C 8.403 0.268 8.347 0.308 8.288 0.398 L 8.288 6.364 C 8.288 6.364 8.447 6.88 8.686 6.84 C 8.686 6.84 8.725 6.722 8.725 6.523 L 8.805 0.835 C 8.805 0.835 8.674 0.231 8.454 0.261 Z M 2.044 0.318 C 1.686 0.318 1.646 0.994 1.646 0.994 L 1.606 6.642 C 1.646 6.92 1.725 6.88 1.725 6.88 C 2.083 6.642 2.044 6.244 2.044 6.244 C 2.044 6.244 2.083 0.875 2.083 0.795 C 2.083 0.716 2.044 0.318 2.044 0.318 Z M 2.209 6.679 C 2.19 6.68 2.172 6.683 2.153 6.688 C 2.074 6.711 1.976 6.779 1.893 6.945 L 1.892 6.948 L 1.891 6.951 C 1.891 6.951 1.867 7.025 1.885 7.098 C 1.895 7.139 1.922 7.174 1.96 7.192 C 2.001 7.212 2.055 7.212 2.125 7.193 L 4.067 7.193 L 4.589 7.314 L 4.596 7.312 C 4.596 7.312 4.633 7.304 4.679 7.287 C 4.725 7.27 4.781 7.245 4.822 7.203 C 4.843 7.183 4.859 7.156 4.867 7.127 C 4.874 7.094 4.87 7.059 4.854 7.029 C 4.823 6.961 4.748 6.892 4.606 6.811 L 4.598 6.806 L 2.723 6.806 C 2.721 6.806 2.636 6.787 2.539 6.763 C 2.44 6.738 2.327 6.705 2.297 6.691 L 2.296 6.69 L 2.295 6.69 C 2.295 6.69 2.26 6.676 2.209 6.679 Z M 8.118 6.784 C 8.007 6.778 7.85 6.801 7.85 6.801 C 7.532 7 5.663 6.84 5.663 6.84 C 5.544 6.84 5.384 7.039 5.384 7.039 C 5.344 7.397 5.941 7.238 5.901 7.238 L 8.128 7.238 C 8.487 7.318 8.487 7.159 8.487 7.159 C 8.487 7.04 8.209 6.801 8.209 6.801 C 8.189 6.791 8.156 6.786 8.118 6.784 Z M 5.176 7.23 C 5.165 7.23 5.155 7.233 5.146 7.238 C 5.146 7.238 4.788 7.239 4.788 7.716 C 4.788 7.716 4.827 8.073 5.185 8.073 C 5.185 8.073 5.504 7.994 5.504 7.636 C 5.504 7.636 5.329 7.217 5.176 7.23 Z M 13.736 0 C 13.736 0 13.498 0 13.537 0.159 L 13.458 6.204 C 13.458 6.204 13.458 6.483 13.896 6.523 C 13.896 6.523 14.453 6.562 14.572 6.523 L 15.845 6.523 C 15.845 6.523 16.083 6.761 16.083 6.443 C 16.083 6.443 16.243 1.551 16.163 0.516 C 16.163 0.516 16.163 0.079 15.805 0.079 C 15.805 0.079 14.373 0.198 14.254 0.079 Z M 19.242 0.049 C 19.195 0.051 19.126 0.069 19.026 0.119 C 19.026 0.119 19.066 0.278 17.276 0.199 C 17.237 0.199 16.52 0.159 16.52 0.477 C 16.52 0.477 16.481 3.341 16.481 3.42 L 16.441 5.807 L 16.362 6.642 C 16.362 6.642 16.481 6.801 16.561 6.681 C 16.561 6.681 17.157 6.522 17.555 6.602 C 17.555 6.602 18.748 6.722 19.026 6.523 C 19.026 6.523 19.225 6.602 19.265 6.324 C 19.265 6.324 19.344 1.034 19.305 0.955 C 19.305 0.955 19.385 0.198 19.345 0.119 C 19.345 0.119 19.345 0.044 19.242 0.049 Z M 12.661 0.158 C 12.582 0.16 12.469 0.209 12.305 0.358 L 12.305 1.113 C 12.305 1.113 12.305 1.551 11.907 1.511 C 11.907 1.511 11.47 1.511 11.231 1.71 C 11.231 1.71 11.111 2.108 11.549 2.068 C 11.549 2.068 12.225 2.068 12.265 2.347 L 12.225 5.21 C 12.225 5.21 12.385 5.687 11.828 5.687 C 11.828 5.687 11.192 5.647 11.192 6.045 C 11.192 6.045 11.311 6.363 11.867 6.283 C 11.867 6.283 12.265 6.364 12.265 6.722 L 12.265 7.437 C 12.265 7.437 12.226 7.716 12.584 7.756 L 15.526 7.756 C 15.526 7.756 15.685 7.756 15.685 7.596 C 15.685 7.596 15.685 7.437 15.447 7.437 L 13.06 7.397 C 13.06 7.397 12.663 7.517 12.623 6.921 C 12.623 6.921 12.663 1.59 12.623 1.511 L 12.623 1.591 C 12.623 1.591 12.583 0.676 12.822 0.278 C 12.822 0.278 12.79 0.154 12.66 0.158 Z M 20.231 0.172 C 20.061 0.187 20.06 0.398 20.06 0.398 C 20.1 0.477 20.18 0.756 20.18 0.756 C 20.22 1.392 20.18 2.108 20.18 2.784 C 20.154 4.23 20.114 5.675 20.06 7.119 C 20.06 7.557 19.822 7.437 19.822 7.437 L 17.197 7.437 C 16.919 7.437 16.918 7.596 16.918 7.596 C 16.958 7.835 17.237 7.756 17.237 7.716 C 17.475 7.756 20.1 7.716 20.1 7.716 C 20.498 7.756 20.458 7.238 20.458 7.238 C 20.498 6.324 20.578 6.244 20.578 6.244 C 20.657 6.204 21.094 6.204 21.094 6.204 C 21.771 6.244 21.452 5.767 21.452 5.767 C 21.373 5.648 20.896 5.647 20.896 5.647 C 20.458 5.687 20.498 5.21 20.498 5.21 L 20.538 2.466 C 20.459 2.227 20.657 2.107 20.657 2.107 L 21.094 2.107 C 21.691 2.147 21.532 1.75 21.532 1.75 C 21.532 1.551 21.015 1.471 21.015 1.471 C 20.538 1.551 20.578 1.272 20.578 1.272 L 20.578 0.636 C 20.657 0.199 20.379 0.199 20.379 0.199 C 20.319 0.177 20.271 0.169 20.231 0.173 Z M 19.67 0.276 C 19.619 0.28 19.563 0.316 19.503 0.398 L 19.503 6.364 C 19.503 6.364 19.663 6.88 19.901 6.84 C 19.901 6.84 19.942 6.722 19.942 6.523 L 20.021 0.835 C 20.021 0.835 19.89 0.258 19.67 0.276 Z M 13.259 0.318 C 12.901 0.318 12.862 0.994 12.862 0.994 L 12.822 6.642 C 12.862 6.92 12.941 6.88 12.941 6.88 C 13.299 6.642 13.259 6.244 13.259 6.244 C 13.259 6.244 13.299 0.875 13.299 0.795 C 13.299 0.716 13.259 0.318 13.259 0.318 Z M 13.487 6.673 C 13.418 6.671 13.29 6.702 13.18 6.921 C 13.18 6.921 13.101 7.199 13.379 7.119 L 15.327 7.119 L 15.845 7.238 C 15.845 7.238 16.402 7.119 15.845 6.801 L 13.976 6.801 C 13.976 6.801 13.617 6.721 13.538 6.681 C 13.538 6.681 13.519 6.674 13.487 6.673 Z M 19.356 6.743 C 19.255 6.745 19.146 6.761 19.146 6.761 C 18.828 6.96 16.959 6.801 16.959 6.801 C 16.839 6.801 16.68 7 16.68 7 C 16.6 7.358 17.197 7.199 17.197 7.199 L 19.424 7.199 C 19.782 7.278 19.782 7.119 19.782 7.119 C 19.782 7 19.503 6.761 19.503 6.761 C 19.473 6.747 19.416 6.742 19.356 6.743 Z M 16.432 7.19 C 16.421 7.191 16.411 7.194 16.402 7.199 C 16.402 7.199 16.043 7.198 16.083 7.676 C 16.083 7.676 16.123 8.034 16.481 8.034 C 16.481 8.034 16.799 7.994 16.799 7.596 C 16.799 7.596 16.589 7.177 16.432 7.19 Z M 10.515 14.915 C 10.515 14.915 10.515 15.352 10.476 15.79 C 10.436 16.028 10.555 17.142 10.476 17.699 C 10.476 17.699 10.476 17.898 10.078 17.739 C 10.078 17.739 7.652 17.778 7.612 17.699 C 7.612 17.699 6.936 17.739 6.896 17.381 C 6.896 17.381 6.976 14.795 6.936 14.716 C 6.936 14.716 6.896 13.324 6.936 13.165 C 6.936 13.165 6.976 11.852 6.936 11.693 C 6.936 11.693 6.936 11.375 6.896 11.256 C 6.896 11.256 6.896 11.057 7.214 11.176 C 7.214 11.176 7.333 11.375 7.93 11.295 C 7.93 11.295 8.368 11.375 8.805 11.295 C 8.805 11.295 9.76 11.216 9.998 11.295 C 9.998 11.295 10.396 11.216 10.475 11.653 L 10.475 12.807 L 10.595 13.204 L 10.714 13.125 L 10.754 12.846 L 10.754 11.613 C 10.754 11.613 10.833 11.375 11.152 11.335 C 11.152 11.335 11.629 11.295 11.708 11.335 C 11.788 11.375 12.822 11.415 13.1 11.375 C 13.379 11.335 13.419 11.574 14.294 11.136 C 14.294 11.136 14.532 11.136 14.532 11.295 C 14.532 11.295 14.453 12.886 14.532 13.204 C 14.532 13.204 14.532 16.148 14.453 16.347 L 14.493 17.301 C 14.493 17.301 14.532 17.699 13.856 17.739 C 13.856 17.739 14.254 17.778 11.669 17.699 C 11.669 17.699 11.271 17.659 10.794 17.898 C 10.794 17.898 10.714 17.858 10.714 17.619 C 10.714 17.619 10.794 16.744 10.714 15.869 L 10.674 14.915 Z M 14.691 17.5 C 14.691 17.5 14.93 17.937 15.01 17.977 C 15.01 17.977 15.208 18.216 15.169 17.778 L 15.208 12.33 C 15.208 12.33 15.169 12.131 15.208 11.852 L 14.97 11.455 C 14.97 11.455 14.731 11.256 14.731 11.574 L 14.731 17.341 Z M 6.777 17.739 C 6.777 17.739 7.055 18.017 7.493 18.017 L 10.038 18.057 C 10.038 18.057 10.317 18.097 10.317 18.216 C 10.317 18.216 10.277 18.455 9.919 18.375 L 6.816 18.335 L 6.458 18.375 C 6.458 18.375 6.22 18.335 6.578 17.898 Z M 6.22 11.494 C 6.22 11.494 5.981 11.892 6.021 12.011 L 6.021 18.295 C 6.021 18.295 5.981 18.733 6.339 18.614 C 6.339 18.614 9.64 18.534 9.879 18.614 C 9.879 18.614 10.197 18.653 10.078 18.813 C 10.078 18.813 10.078 18.932 9.879 18.892 C 9.879 18.892 8.328 19.051 6.896 18.972 C 6.896 18.972 5.941 19.011 5.902 18.932 C 5.902 18.932 5.743 18.892 5.743 18.375 C 5.743 18.375 5.743 17.858 5.703 17.778 C 5.703 17.778 5.743 17.5 5.265 17.46 C 5.265 17.46 4.589 17.58 4.589 17.182 C 4.589 17.182 4.669 16.903 5.345 16.943 C 5.345 16.943 5.822 17.023 5.703 16.625 L 5.743 13.841 C 5.743 13.841 5.822 13.364 5.464 13.324 L 5.066 13.324 C 5.066 13.324 4.51 13.324 4.55 13.006 C 4.55 13.006 4.748 12.687 5.305 12.727 C 5.305 12.727 5.703 12.807 5.743 12.329 C 5.743 12.329 5.743 11.375 5.941 11.335 C 5.902 11.335 6.379 11.375 6.22 11.494 M 6.538 11.454 C 6.538 11.454 6.657 11.454 6.657 11.693 L 6.618 17.38 C 6.618 17.38 6.657 17.738 6.339 18.017 C 6.339 18.017 6.18 18.216 6.18 17.898 L 6.26 12.091 C 6.26 12.091 6.26 11.653 6.538 11.454 M 10.992 18.136 C 10.992 18.136 11.311 17.898 11.47 17.937 C 11.47 17.937 13.18 18.057 13.697 17.977 C 14.214 17.898 13.896 17.937 13.896 17.937 C 13.896 17.937 14.333 17.937 14.493 17.778 C 14.493 17.778 14.612 17.738 14.691 17.858 L 14.97 18.176 C 14.97 18.176 14.97 18.375 14.652 18.335 C 14.652 18.335 11.589 18.335 11.47 18.375 C 11.51 18.375 10.953 18.454 10.992 18.136 M 11.191 18.653 C 11.191 18.653 11.43 18.534 11.589 18.574 C 11.748 18.613 13.936 18.534 13.936 18.534 C 13.936 18.534 14.89 18.613 15.049 18.454 L 15.288 18.375 C 15.288 18.375 15.368 18.256 15.368 18.096 L 15.368 17.42 L 15.407 17.221 L 15.407 12.011 C 15.407 12.011 15.487 11.613 15.248 11.375 C 15.248 11.375 15.248 11.216 15.328 11.256 C 15.407 11.295 15.368 11.256 15.368 11.256 C 15.368 11.256 15.686 11.176 15.765 11.295 C 15.765 11.295 15.924 11.733 15.765 12.011 C 15.765 12.011 15.726 12.568 16.004 12.568 C 16.004 12.568 16.123 12.687 16.322 12.608 C 16.322 12.608 16.799 12.648 16.799 12.807 C 16.799 12.807 16.799 13.165 16.481 13.085 L 16.044 13.125 C 16.044 13.125 15.726 13.204 15.765 13.523 C 15.805 13.881 15.765 16.466 15.765 16.466 C 15.765 16.466 15.765 16.784 16.243 16.744 C 16.243 16.744 16.839 16.705 16.839 16.903 C 16.839 16.903 16.998 17.261 16.561 17.301 C 16.561 17.301 15.765 17.261 15.845 17.5 C 15.845 17.5 15.805 18.017 15.765 18.136 C 15.765 18.136 15.845 18.574 15.765 18.653 C 15.765 18.653 15.726 18.892 15.208 18.852 C 15.208 18.852 11.987 18.852 11.47 18.892 C 11.43 18.972 11.112 18.932 11.191 18.653 M 10.635 18.295 C 10.635 18.295 10.953 18.335 10.953 18.653 C 10.953 18.972 10.953 19.131 10.794 19.17 C 10.595 19.21 10.396 19.131 10.356 18.892 C 10.277 18.653 10.356 18.375 10.635 18.295\" fill=\"rgb(255,255,255)\"></path></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1ua38qs\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 2.726 6.618\" overflow=\"visible\"><path d=\"M 0.278 0 C 0.278 0 0.039 0 0.079 0.159 L 0 6.204 C 0 6.204 0 6.483 0.437 6.523 C 0.437 6.523 0.994 6.563 1.113 6.523 L 2.386 6.523 C 2.386 6.523 2.625 6.761 2.625 6.483 C 2.625 6.483 2.784 1.591 2.704 0.557 C 2.704 0.557 2.704 0.119 2.346 0.119 C 2.346 0.119 0.915 0.238 0.795 0.119 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-agy38p\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 2.994 6.678\" overflow=\"visible\"><path d=\"M 2.896 0.001 C 2.844 -0.004 2.759 0.011 2.625 0.071 C 2.625 0.071 2.665 0.23 0.876 0.151 C 0.836 0.151 0.159 0.15 0.12 0.429 C 0.12 0.429 0.08 3.293 0.08 3.372 L 0.04 5.759 L 0 6.594 C 0 6.594 0.119 6.752 0.199 6.633 C 0.199 6.633 0.795 6.474 1.193 6.554 C 1.193 6.554 2.387 6.673 2.665 6.474 C 2.665 6.474 2.864 6.554 2.904 6.275 C 2.904 6.275 2.983 0.986 2.943 0.906 C 2.943 0.906 3.023 0.15 2.983 0.071 C 2.983 0.071 2.983 0.009 2.896 0.001 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-17i93u0\",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.509 7.638\" overflow=\"visible\"><path d=\"M 1.484 0 C 1.406 0.002 1.293 0.051 1.129 0.2 L 1.089 0.996 C 1.089 0.996 1.089 1.433 0.691 1.394 C 0.691 1.394 0.253 1.394 0.015 1.593 C 0.015 1.593 -0.104 1.99 0.333 1.95 C 0.333 1.95 1.01 1.95 1.049 2.229 L 1.009 5.092 C 1.009 5.092 1.169 5.57 0.652 5.57 C 0.652 5.57 0.015 5.529 0.015 5.927 C 0.015 5.927 0.135 6.246 0.691 6.166 C 0.691 6.166 1.089 6.246 1.049 6.604 L 1.049 7.319 C 1.049 7.319 1.009 7.598 1.407 7.638 L 4.35 7.638 C 4.35 7.638 4.509 7.638 4.509 7.478 C 4.509 7.478 4.509 7.319 4.271 7.319 L 1.845 7.24 C 1.845 7.24 1.446 7.36 1.407 6.763 C 1.407 6.763 1.445 1.656 1.446 1.431 L 1.447 1.433 L 1.446 1.412 L 1.447 1.353 L 1.445 1.35 C 1.441 1.155 1.44 0.463 1.646 0.12 C 1.646 0.12 1.615 -0.004 1.484 0 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-p49otp\",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.633 7.602\" overflow=\"visible\"><path d=\"M 3.313 0.001 C 3.143 0.016 3.142 0.226 3.142 0.226 C 3.222 0.306 3.261 0.584 3.261 0.584 C 3.301 1.221 3.261 1.936 3.261 2.613 C 3.221 4.88 3.142 6.948 3.142 6.948 C 3.142 7.385 2.904 7.266 2.904 7.266 L 0.278 7.266 C 0 7.266 0 7.425 0 7.425 C 0.04 7.663 0.278 7.584 0.278 7.584 C 0.517 7.624 3.142 7.584 3.142 7.584 C 3.54 7.624 3.5 7.106 3.5 7.106 C 3.54 6.192 3.619 6.112 3.619 6.112 C 3.699 6.072 4.136 6.072 4.136 6.072 C 4.852 6.112 4.534 5.635 4.534 5.635 C 4.455 5.516 3.977 5.515 3.977 5.515 C 3.54 5.555 3.58 5.078 3.58 5.078 L 3.619 2.334 C 3.54 2.095 3.739 1.976 3.739 1.976 L 4.176 1.976 C 4.773 2.016 4.614 1.618 4.614 1.618 C 4.614 1.419 4.097 1.339 4.097 1.339 C 3.62 1.419 3.659 1.141 3.659 1.141 L 3.659 0.464 C 3.738 0.027 3.46 0.027 3.46 0.027 C 3.4 0.005 3.352 -0.003 3.313 0.001 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-u292fu\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 1 6.583\" overflow=\"visible\"><path d=\"M 0.166 0.001 C 0.115 0.008 0.06 0.048 0 0.138 L 0 6.104 C 0 6.104 0.159 6.621 0.398 6.581 C 0.398 6.581 0.437 6.462 0.437 6.263 L 0.517 0.575 C 0.517 0.575 0.386 -0.029 0.166 0.001 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1um45zs\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 1 6.564\" overflow=\"visible\"><path d=\"M 0.438 0 C 0.08 0 0.04 0.677 0.04 0.677 L 0 6.324 C 0.04 6.603 0.12 6.562 0.12 6.562 C 0.477 6.324 0.438 5.926 0.438 5.926 C 0.438 5.926 0.478 0.557 0.478 0.478 C 0.478 0.398 0.438 0 0.438 0 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-wgd0mk\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 2.992 1\" overflow=\"visible\"><path d=\"M 0.331 0 C 0.312 0.001 0.293 0.004 0.275 0.01 C 0.195 0.032 0.097 0.101 0.015 0.266 L 0.013 0.269 L 0.012 0.272 C 0.012 0.272 -0.011 0.346 0.007 0.419 C 0.016 0.46 0.044 0.495 0.081 0.514 C 0.122 0.533 0.176 0.534 0.247 0.515 L 2.189 0.515 L 2.71 0.635 L 2.717 0.633 C 2.717 0.633 2.754 0.625 2.8 0.608 C 2.846 0.591 2.902 0.566 2.943 0.525 C 2.965 0.504 2.981 0.478 2.988 0.449 C 2.995 0.415 2.991 0.38 2.976 0.35 C 2.944 0.282 2.869 0.214 2.727 0.132 L 2.72 0.128 L 0.845 0.128 C 0.842 0.127 0.757 0.109 0.66 0.084 C 0.561 0.06 0.448 0.027 0.419 0.012 L 0.417 0.011 L 0.416 0.011 C 0.416 0.011 0.382 -0.002 0.331 0 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1fxpp0i\",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.104 1\" overflow=\"visible\"><path d=\"M 2.736 0.001 C 2.624 -0.005 2.468 0.018 2.468 0.018 C 2.15 0.217 0.281 0.058 0.281 0.058 C 0.162 0.058 0.002 0.256 0.002 0.256 C -0.038 0.614 0.559 0.455 0.519 0.455 L 2.746 0.455 C 3.104 0.535 3.104 0.376 3.104 0.376 C 3.104 0.257 2.826 0.018 2.826 0.018 C 2.807 0.008 2.774 0.003 2.736 0.001 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-tfd56j\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 1 1\" overflow=\"visible\"><path d=\"M 0.388 0 C 0.378 0.001 0.367 0.004 0.358 0.009 C 0.358 0.009 0 0.009 0 0.487 C 0 0.487 0.04 0.844 0.398 0.844 C 0.398 0.844 0.716 0.764 0.716 0.406 C 0.716 0.406 0.541 -0.013 0.388 0 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-bfc0u9\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 2.727 6.608\" overflow=\"visible\"><path d=\"M 0.278 0 C 0.278 0 0.039 0 0.079 0.159 L 0 6.204 C 0 6.204 0 6.483 0.437 6.523 C 0.437 6.523 0.995 6.562 1.114 6.523 L 2.386 6.523 C 2.386 6.523 2.625 6.761 2.625 6.443 C 2.625 6.443 2.784 1.551 2.705 0.516 C 2.705 0.516 2.705 0.079 2.347 0.079 C 2.347 0.079 0.915 0.198 0.795 0.079 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-gx2rkm\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 2.994 6.677\" overflow=\"visible\"><path d=\"M 2.88 0 C 2.833 0.002 2.764 0.02 2.664 0.07 C 2.664 0.07 2.704 0.229 0.914 0.15 C 0.875 0.15 0.159 0.11 0.159 0.428 C 0.159 0.428 0.119 3.292 0.119 3.371 L 0.079 5.758 L 0 6.593 C 0 6.593 0.119 6.752 0.199 6.632 C 0.199 6.632 0.795 6.474 1.193 6.553 C 1.193 6.553 2.386 6.673 2.664 6.474 C 2.664 6.474 2.863 6.554 2.903 6.275 C 2.903 6.275 2.982 0.986 2.943 0.906 C 2.943 0.906 3.023 0.15 2.983 0.07 C 2.983 0.07 2.983 -0.005 2.88 0 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1pflygj\",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.494 7.598\" overflow=\"visible\"><path d=\"M 1.469 0 C 1.391 0.003 1.277 0.051 1.113 0.201 L 1.113 0.956 C 1.113 0.956 1.113 1.393 0.716 1.354 C 0.716 1.354 0.278 1.354 0.04 1.552 C 0.04 1.552 -0.08 1.95 0.357 1.91 C 0.357 1.91 1.034 1.911 1.074 2.189 L 1.034 5.052 C 1.034 5.052 1.193 5.53 0.636 5.53 C 0.636 5.53 0 5.49 0 5.888 C 0 5.888 0.119 6.206 0.676 6.126 C 0.676 6.126 1.074 6.206 1.074 6.564 L 1.074 7.28 C 1.074 7.28 1.034 7.558 1.392 7.598 L 4.334 7.598 C 4.334 7.598 4.494 7.598 4.494 7.439 C 4.494 7.439 4.494 7.28 4.255 7.28 L 1.869 7.24 C 1.869 7.24 1.471 7.36 1.431 6.763 C 1.431 6.763 1.471 1.433 1.431 1.353 L 1.431 1.433 C 1.431 1.433 1.391 0.518 1.63 0.121 C 1.63 0.121 1.599 -0.004 1.469 0 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1rijz7w\",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.633 7.589\" overflow=\"visible\"><path d=\"M 3.313 0.001 C 3.142 0.015 3.142 0.226 3.142 0.226 C 3.182 0.306 3.262 0.584 3.262 0.584 C 3.302 1.22 3.262 1.936 3.262 2.612 C 3.235 4.058 3.196 5.503 3.142 6.948 C 3.142 7.385 2.904 7.265 2.904 7.265 L 0.279 7.265 C 0 7.265 0 7.425 0 7.425 C 0.04 7.663 0.319 7.584 0.319 7.544 C 0.557 7.584 3.182 7.544 3.182 7.544 C 3.58 7.584 3.54 7.066 3.54 7.066 C 3.58 6.152 3.66 6.072 3.66 6.072 C 3.739 6.032 4.176 6.033 4.176 6.033 C 4.852 6.072 4.534 5.595 4.534 5.595 C 4.455 5.476 3.977 5.476 3.977 5.476 C 3.54 5.515 3.58 5.038 3.58 5.038 L 3.62 2.294 C 3.54 2.055 3.739 1.936 3.739 1.936 L 4.176 1.936 C 4.773 1.975 4.614 1.578 4.614 1.578 C 4.614 1.38 4.097 1.3 4.097 1.3 C 3.62 1.379 3.66 1.101 3.66 1.101 L 3.66 0.465 C 3.739 0.027 3.461 0.027 3.461 0.027 C 3.401 0.005 3.353 -0.003 3.313 0.001 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1bmnymt\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 1 6.567\" overflow=\"visible\"><path d=\"M 0.166 0 C 0.115 0.005 0.06 0.04 0 0.122 L 0 6.088 C 0 6.088 0.159 6.605 0.398 6.565 C 0.398 6.565 0.438 6.446 0.438 6.248 L 0.517 0.56 C 0.517 0.56 0.386 -0.018 0.166 0 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-h822cq\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 1 6.564\" overflow=\"visible\"><path d=\"M 0.437 0 C 0.079 0 0.04 0.677 0.04 0.677 L 0 6.324 C 0.04 6.603 0.119 6.562 0.119 6.562 C 0.477 6.324 0.437 5.926 0.437 5.926 C 0.437 5.926 0.477 0.557 0.477 0.478 C 0.477 0.398 0.437 0 0.437 0 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-wt99h9\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 2.922 1\" overflow=\"visible\"><path d=\"M 0.317 0 C 0.248 -0.002 0.12 0.029 0.011 0.248 C 0.011 0.248 -0.069 0.527 0.209 0.447 L 2.158 0.447 L 2.675 0.566 C 2.675 0.566 3.232 0.447 2.675 0.128 L 0.806 0.128 C 0.806 0.128 0.447 0.049 0.368 0.009 C 0.368 0.009 0.349 0.001 0.317 0 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-57xr0l\",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.11 1\" overflow=\"visible\"><path d=\"M 2.683 0 C 2.582 0.002 2.474 0.018 2.474 0.018 C 2.155 0.217 0.286 0.058 0.286 0.058 C 0.167 0.058 0.007 0.256 0.007 0.256 C -0.072 0.614 0.525 0.455 0.525 0.455 L 2.752 0.455 C 3.11 0.535 3.11 0.376 3.11 0.376 C 3.11 0.257 2.831 0.018 2.831 0.018 C 2.801 0.003 2.744 -0.001 2.683 0 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1pg4ugb\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 1 1\" overflow=\"visible\"><path d=\"M 0.352 0 C 0.341 0.001 0.331 0.004 0.322 0.009 C 0.322 0.009 -0.037 0.008 0.003 0.486 C 0.003 0.486 0.043 0.844 0.401 0.844 C 0.401 0.844 0.719 0.804 0.719 0.406 C 0.719 0.406 0.509 -0.013 0.352 0 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-18gcp5t\",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.636 6.762\" overflow=\"visible\"><path d=\"M 3.619 3.778 C 3.619 3.778 3.619 4.216 3.58 4.654 C 3.54 4.892 3.659 6.006 3.58 6.563 C 3.58 6.563 3.58 6.762 3.182 6.602 C 3.182 6.602 0.756 6.642 0.716 6.563 C 0.716 6.563 0.04 6.602 0 6.244 C 0 6.244 0.08 3.659 0.04 3.579 C 0.04 3.579 0 2.188 0.04 2.028 C 0.04 2.028 0.08 0.716 0.04 0.557 C 0.04 0.557 0.04 0.239 0 0.119 C 0 0.119 0 -0.08 0.318 0.04 C 0.318 0.04 0.437 0.239 1.034 0.159 C 1.034 0.159 1.472 0.239 1.909 0.159 C 1.909 0.159 2.864 0.08 3.102 0.159 C 3.102 0.159 3.5 0.08 3.579 0.517 L 3.579 1.67 L 3.699 2.068 L 3.818 1.989 L 3.858 1.71 L 3.858 0.477 C 3.858 0.477 3.937 0.239 4.256 0.199 C 4.256 0.199 4.733 0.159 4.812 0.199 C 4.892 0.239 5.926 0.278 6.204 0.239 C 6.483 0.199 6.523 0.438 7.398 0 C 7.398 0 7.636 0 7.636 0.159 C 7.636 0.159 7.557 1.75 7.636 2.068 C 7.636 2.068 7.636 5.011 7.557 5.21 L 7.597 6.165 C 7.597 6.165 7.636 6.563 6.96 6.602 C 6.96 6.602 7.358 6.642 4.773 6.563 C 4.773 6.563 4.375 6.523 3.898 6.762 C 3.898 6.762 3.818 6.722 3.818 6.483 C 3.818 6.483 3.898 5.608 3.818 4.733 L 3.778 3.778 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1i17h3f\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 1 6.649\" overflow=\"visible\"><path d=\"M 0 6.107 C 0 6.107 0.239 6.544 0.318 6.584 C 0.318 6.584 0.517 6.823 0.477 6.385 L 0.517 0.936 C 0.517 0.936 0.477 0.738 0.517 0.459 L 0.278 0.061 C 0.278 0.061 0.04 -0.137 0.04 0.181 L 0.04 5.948 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-bxr7kj\",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.936 1\" overflow=\"visible\"><path d=\"M 0.396 0 C 0.396 0 0.675 0.278 1.112 0.278 L 3.658 0.318 C 3.658 0.318 3.936 0.358 3.936 0.477 C 3.936 0.477 3.896 0.716 3.538 0.636 L 0.436 0.597 L 0.078 0.636 C 0.078 0.636 -0.161 0.597 0.197 0.159 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-z76l3x\",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.557 7.659\" overflow=\"visible\"><path d=\"M 1.672 0.159 C 1.672 0.159 1.434 0.557 1.473 0.676 L 1.473 6.96 C 1.473 6.96 1.434 7.398 1.792 7.279 C 1.792 7.279 5.093 7.199 5.332 7.279 C 5.332 7.279 5.65 7.318 5.53 7.477 C 5.53 7.477 5.53 7.597 5.332 7.557 C 5.332 7.557 3.78 7.716 2.348 7.637 C 2.348 7.637 1.394 7.676 1.354 7.597 C 1.354 7.597 1.195 7.557 1.195 7.04 C 1.195 7.04 1.195 6.523 1.155 6.443 C 1.155 6.443 1.195 6.165 0.718 6.125 C 0.718 6.125 0.042 6.244 0.042 5.847 C 0.042 5.847 0.121 5.568 0.797 5.608 C 0.797 5.608 1.275 5.688 1.155 5.29 L 1.195 2.506 C 1.195 2.506 1.275 2.028 0.917 1.989 L 0.519 1.989 C 0.519 1.989 -0.038 1.989 0.002 1.67 C 0.002 1.67 0.201 1.352 0.758 1.392 C 0.758 1.392 1.155 1.472 1.195 0.994 C 1.195 0.994 1.195 0.04 1.394 0 C 1.354 0 1.831 0.04 1.672 0.159\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1myx2ul\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 1 6.624\" overflow=\"visible\"><path d=\"M 0.358 0 C 0.358 0 0.477 0 0.477 0.239 L 0.438 5.926 C 0.438 5.926 0.477 6.284 0.159 6.562 C 0.159 6.562 0 6.761 0 6.443 L 0.08 0.636 C 0.08 0.636 0.08 0.199 0.358 0\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-s330pw\",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.979 1\" overflow=\"visible\"><path d=\"M 0.002 0.364 C 0.002 0.364 0.32 0.126 0.479 0.165 C 0.479 0.165 2.189 0.285 2.707 0.205 C 3.224 0.126 2.906 0.165 2.906 0.165 C 2.906 0.165 3.343 0.165 3.502 0.006 C 3.502 0.006 3.621 -0.033 3.701 0.086 L 3.979 0.404 C 3.979 0.404 3.979 0.603 3.661 0.563 C 3.661 0.563 0.598 0.563 0.479 0.603 C 0.519 0.603 -0.038 0.683 0.002 0.364\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-12d45y6\",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.689 7.699\" overflow=\"visible\"><path d=\"M 0.013 7.424 C 0.013 7.424 0.251 7.304 0.411 7.344 C 0.57 7.384 2.757 7.304 2.757 7.304 C 2.757 7.304 3.712 7.384 3.871 7.225 L 4.11 7.145 C 4.11 7.145 4.189 7.026 4.189 6.867 L 4.189 6.191 L 4.229 5.992 L 4.229 0.782 C 4.229 0.782 4.308 0.384 4.07 0.145 C 4.07 0.145 4.07 -0.014 4.149 0.026 C 4.229 0.066 4.189 0.026 4.189 0.026 C 4.189 0.026 4.507 -0.054 4.587 0.066 C 4.587 0.066 4.746 0.503 4.587 0.782 C 4.587 0.782 4.547 1.338 4.825 1.338 C 4.825 1.338 4.945 1.458 5.144 1.378 C 5.144 1.378 5.621 1.418 5.621 1.577 C 5.621 1.577 5.621 1.935 5.303 1.856 L 4.865 1.895 C 4.865 1.895 4.547 1.975 4.587 2.293 C 4.627 2.651 4.587 5.236 4.587 5.236 C 4.587 5.236 4.587 5.554 5.064 5.515 C 5.064 5.515 5.66 5.475 5.66 5.674 C 5.66 5.674 5.82 6.032 5.382 6.071 C 5.382 6.071 4.587 6.032 4.666 6.27 C 4.666 6.27 4.627 6.787 4.587 6.907 C 4.587 6.907 4.666 7.344 4.587 7.424 C 4.587 7.424 4.547 7.662 4.03 7.623 C 4.03 7.623 0.808 7.623 0.291 7.662 C 0.251 7.742 -0.067 7.702 0.013 7.424\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1v1iq7r\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 1 1\" overflow=\"visible\"><path d=\"M 0.308 0 C 0.308 0 0.626 0.04 0.626 0.358 C 0.626 0.676 0.626 0.835 0.467 0.875 C 0.268 0.915 0.069 0.835 0.029 0.597 C -0.05 0.358 0.029 0.08 0.308 0\" fill=\"transparent\"></path></svg>',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(SVG,{className:\"framer-kri8ok\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 15.557 13.974\" overflow=\"visible\"><path d=\"M 2.233 0.169 L 2.074 0.527 C 2.074 0.527 1.676 2.357 1.437 2.715 C 1.437 2.715 1.398 3.112 1.079 2.794 C 1.079 2.794 0.324 0.487 0.284 0.408 L 0.045 0.249 C 0.045 0.249 -0.114 0.05 0.165 0.01 L 0.88 0.01 C 0.88 0.01 1.119 0.209 0.801 0.408 C 0.801 0.408 0.841 0.726 1.238 1.879 C 1.238 1.879 1.358 2.317 1.477 1.998 L 1.875 0.646 L 1.756 0.249 C 1.756 0.249 1.636 0.05 1.795 0.05 C 1.795 0.05 2.193 0.01 2.233 0.169 M 3.307 0.487 L 3.307 2.476 L 3.267 2.635 C 3.267 2.635 3.068 2.874 3.227 2.913 C 3.227 2.913 3.068 3.033 4.42 3.033 C 4.42 3.033 4.937 3.112 4.818 2.436 C 4.818 2.436 4.778 2.197 4.579 2.555 C 4.579 2.555 4.54 2.874 3.824 2.754 C 3.824 2.754 3.665 2.635 3.665 2.476 L 3.665 1.641 C 3.665 1.641 3.665 1.442 3.983 1.442 C 3.983 1.442 4.341 1.68 4.381 1.561 C 4.381 1.561 4.5 1.243 4.381 1.084 C 4.381 1.084 4.221 1.084 4.182 1.124 C 4.182 1.124 4.062 1.362 3.744 1.203 C 3.744 1.203 3.585 0.885 3.704 0.646 C 3.704 0.646 3.665 0.169 3.983 0.209 C 3.983 0.209 4.381 0.288 4.381 0.408 C 4.381 0.408 4.46 0.646 4.579 0.368 L 4.5 0.089 C 4.5 0.089 4.46 -0.03 4.341 0.01 C 4.341 0.01 3.704 0.089 3.625 0.01 L 3.108 0.05 C 3.108 0.05 3.028 0.249 3.267 0.328 C 3.267 0.368 3.307 0.408 3.307 0.487 M 14.721 0.169 C 14.682 0.01 15.04 0.01 15.04 0.01 L 15.239 0.05 C 15.358 0.05 15.517 0.089 15.517 0.089 C 15.636 0.288 15.437 0.408 15.437 0.408 L 15.358 0.646 L 15.358 2.635 C 15.398 2.715 15.557 2.914 15.557 2.914 C 15.557 3.073 15.358 3.033 15.358 3.033 L 14.801 3.033 C 14.642 3.033 14.682 2.834 14.682 2.834 C 14.881 2.754 14.92 2.396 14.92 2.396 L 14.92 0.527 Z M 12.176 1.919 L 12.136 2.516 L 12.296 2.794 C 12.415 2.953 12.216 3.073 12.216 3.073 L 11.619 2.993 C 11.5 2.953 11.619 2.754 11.619 2.754 C 11.778 2.675 11.778 2.436 11.778 2.436 L 11.778 0.527 C 11.778 0.447 11.619 0.249 11.619 0.249 C 11.5 0.249 11.54 0.05 11.54 0.05 C 11.58 -0.03 11.898 0.01 11.898 0.01 L 12.693 0.01 C 13.449 0.249 13.33 0.805 13.33 0.805 C 13.369 1.362 12.813 1.561 12.813 1.561 L 12.773 1.879 L 13.33 2.754 C 13.409 2.834 13.409 2.913 13.409 2.913 C 13.33 3.112 13.011 2.913 13.011 2.913 L 12.335 1.84 C 12.256 1.76 12.176 1.919 12.176 1.919 M 12.176 0.408 L 12.176 1.402 C 12.534 1.681 12.733 1.283 12.733 1.283 C 13.21 0.845 12.733 0.408 12.653 0.288 C 12.574 0.169 12.216 0.288 12.216 0.288 Z M 6.37 11.544 C 6.37 11.544 6.409 12.936 6.37 13.135 L 6.37 13.453 C 6.37 13.453 6.449 13.652 6.568 13.732 C 6.568 13.732 6.648 14.01 6.449 13.97 C 6.449 13.97 5.972 13.93 5.852 13.97 C 5.852 13.97 5.574 13.97 5.852 13.652 C 5.852 13.652 5.932 13.533 5.932 13.175 C 5.932 13.175 5.932 11.584 5.972 11.504 C 5.972 11.504 6.011 11.305 5.892 11.226 L 5.654 11.226 L 5.375 11.504 C 5.375 11.504 5.296 11.783 5.176 11.504 L 5.176 11.345 L 5.335 10.908 L 5.455 10.908 C 5.455 10.908 5.614 11.027 5.773 11.067 L 6.648 11.067 L 6.966 10.908 C 6.966 10.908 7.085 10.908 7.046 11.107 C 7.046 11.107 7.085 11.544 6.847 11.584 C 6.847 11.584 6.688 11.544 6.608 11.305 C 6.608 11.266 6.369 11.107 6.369 11.544 M 10.506 11.027 C 10.506 11.027 9.79 10.947 9.79 11.743 C 9.79 11.743 9.71 12.26 10.506 12.618 C 10.506 12.618 11.102 12.897 11.063 13.254 C 11.063 13.254 10.983 13.891 10.347 13.573 C 10.347 13.573 10.028 13.413 10.068 13.254 C 10.068 13.254 9.989 13.055 9.869 13.095 C 9.869 13.095 9.75 13.135 9.79 13.771 C 9.79 13.771 9.79 14.01 10.068 13.771 L 10.227 13.811 C 10.227 13.811 10.744 14.209 11.182 13.732 C 11.182 13.732 11.659 13.294 11.301 12.777 C 11.301 12.777 11.063 12.379 10.625 12.22 C 10.625 12.22 10.227 12.021 10.108 11.703 C 10.108 11.703 10.227 11.146 10.744 11.425 C 10.744 11.425 10.943 11.663 11.063 11.703 C 11.063 11.703 11.222 11.703 11.182 11.345 L 11.142 11.067 C 11.142 11.067 11.102 10.868 10.824 11.067 C 10.824 11.027 10.585 11.146 10.506 11.027 M 8.239 10.629 C 8.358 10.709 8.398 10.908 8.398 10.908 C 8.795 11.902 9.114 13.374 9.114 13.374 C 9.193 13.573 9.392 13.692 9.392 13.692 C 9.71 13.811 9.392 13.891 9.392 13.891 C 9.273 13.93 8.835 13.891 8.835 13.891 C 8.597 13.851 8.716 13.772 8.716 13.772 C 8.795 13.692 8.716 13.294 8.716 13.294 C 8.716 13.135 8.517 12.896 8.517 12.896 C 8.437 12.857 8.318 13.016 8.318 13.016 C 8.318 13.016 8.119 13.095 8.08 13.016 C 8.04 12.936 7.92 12.857 7.92 12.857 C 7.682 12.857 7.602 13.413 7.602 13.413 C 7.722 13.891 7.602 13.811 7.602 13.811 C 7.483 13.97 7.125 13.851 7.125 13.851 C 6.966 13.811 7.085 13.692 7.085 13.692 C 7.284 13.652 7.364 13.413 7.364 13.413 C 7.443 13.294 8.08 10.828 8.08 10.828 C 8.04 10.788 8.08 10.55 8.239 10.629 M 7.92 11.902 C 7.92 11.982 7.761 12.538 7.761 12.538 L 7.88 12.737 L 8.278 12.737 C 8.358 12.737 8.398 12.658 8.398 12.538 C 8.398 12.459 8.199 11.862 8.199 11.862 L 8.119 11.743 Z\" fill=\"rgb(0, 0, 0)\"></path></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-y0ekre\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 2.233 2.908\" overflow=\"visible\"><path d=\"M 2.233 0.159 L 2.074 0.517 C 2.074 0.517 1.676 2.347 1.437 2.705 C 1.437 2.705 1.398 3.102 1.079 2.784 C 1.079 2.784 0.324 0.477 0.284 0.398 L 0.045 0.239 C 0.045 0.239 -0.114 0.04 0.165 0 L 0.88 0 C 0.88 0 1.119 0.199 0.801 0.398 C 0.801 0.398 0.841 0.716 1.238 1.869 C 1.238 1.869 1.358 2.307 1.477 1.988 L 1.875 0.636 L 1.756 0.239 C 1.756 0.239 1.636 0.04 1.795 0.04 C 1.795 0.04 2.193 0 2.233 0.159\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-rsf1tq\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 1.741 3.034\" overflow=\"visible\"><path d=\"M 0.211 0.485 L 0.211 2.474 L 0.172 2.633 C 0.172 2.633 -0.027 2.872 0.132 2.912 C 0.132 2.912 -0.027 3.031 1.325 3.031 C 1.325 3.031 1.842 3.11 1.723 2.434 C 1.723 2.434 1.683 2.196 1.484 2.554 C 1.484 2.554 1.444 2.872 0.729 2.752 C 0.729 2.752 0.569 2.633 0.569 2.474 L 0.569 1.639 C 0.569 1.639 0.569 1.44 0.888 1.44 C 0.888 1.44 1.246 1.679 1.285 1.559 C 1.285 1.559 1.404 1.241 1.285 1.082 C 1.285 1.082 1.126 1.082 1.086 1.122 C 1.086 1.122 0.967 1.36 0.649 1.201 C 0.649 1.201 0.49 0.883 0.609 0.644 C 0.609 0.644 0.569 0.167 0.888 0.207 C 0.888 0.207 1.285 0.286 1.285 0.406 C 1.285 0.406 1.365 0.644 1.484 0.366 L 1.405 0.088 C 1.405 0.088 1.365 -0.032 1.246 0.008 C 1.246 0.008 0.609 0.088 0.53 0.008 L 0.013 0.048 C 0.013 0.048 -0.067 0.247 0.172 0.326 C 0.172 0.366 0.211 0.406 0.211 0.485\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1t7f7mf\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 1 3.027\" overflow=\"visible\"><path d=\"M 0.044 0.159 C 0.004 0 0.362 0 0.362 0 L 0.561 0.04 C 0.68 0.04 0.84 0.08 0.84 0.08 C 0.959 0.278 0.76 0.398 0.76 0.398 L 0.68 0.636 L 0.68 2.625 C 0.72 2.705 0.879 2.904 0.879 2.904 C 0.879 3.063 0.68 3.023 0.68 3.023 L 0.124 3.023 C -0.035 3.023 0.004 2.824 0.004 2.824 C 0.203 2.744 0.243 2.386 0.243 2.386 L 0.243 0.517 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-ugnw4\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 1.876 3.073\" overflow=\"visible\"><path d=\"M 0.643 1.919 L 0.603 2.516 L 0.762 2.794 C 0.881 2.953 0.682 3.073 0.682 3.073 L 0.086 2.993 C -0.033 2.953 0.086 2.754 0.086 2.754 C 0.245 2.675 0.245 2.436 0.245 2.436 L 0.245 0.527 C 0.245 0.447 0.086 0.249 0.086 0.249 C -0.033 0.249 0.006 0.05 0.006 0.05 C 0.046 -0.03 0.364 0.01 0.364 0.01 L 1.16 0.01 C 1.915 0.249 1.796 0.805 1.796 0.805 C 1.836 1.362 1.279 1.561 1.279 1.561 L 1.239 1.879 L 1.796 2.754 C 1.876 2.834 1.876 2.913 1.876 2.913 C 1.796 3.112 1.478 2.913 1.478 2.913 L 0.802 1.84 C 0.722 1.76 0.643 1.919 0.643 1.919\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-3mms2s\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 1 1.266\" overflow=\"visible\"><path d=\"M 0 0.172 L 0 1.167 C 0.358 1.445 0.557 1.047 0.557 1.047 C 1.034 0.61 0.557 0.172 0.477 0.053 C 0.398 -0.066 0.04 0.053 0.04 0.053 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-ntwug5\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 1.877 3.066\" overflow=\"visible\"><path d=\"M 1.193 0.637 C 1.193 0.637 1.233 2.028 1.193 2.227 L 1.193 2.546 C 1.193 2.546 1.273 2.744 1.392 2.824 C 1.392 2.824 1.472 3.102 1.273 3.063 C 1.273 3.063 0.795 3.023 0.676 3.063 C 0.676 3.063 0.398 3.063 0.676 2.744 C 0.676 2.744 0.756 2.625 0.756 2.267 C 0.756 2.267 0.756 0.676 0.795 0.597 C 0.795 0.597 0.835 0.398 0.716 0.318 L 0.477 0.318 L 0.199 0.597 C 0.199 0.597 0.119 0.875 0 0.597 L 0 0.438 L 0.159 0 L 0.278 0 C 0.278 0 0.438 0.119 0.597 0.159 L 1.472 0.159 L 1.79 0 C 1.79 0 1.909 0 1.869 0.199 C 1.869 0.199 1.909 0.636 1.67 0.676 C 1.67 0.676 1.511 0.636 1.432 0.398 C 1.432 0.358 1.193 0.199 1.193 0.636\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-143m40n\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 1.653 2.988\" overflow=\"visible\"><path d=\"M 0.724 0.049 C 0.724 0.049 0.008 -0.031 0.008 0.765 C 0.008 0.765 -0.071 1.282 0.724 1.64 C 0.724 1.64 1.321 1.918 1.281 2.276 C 1.281 2.276 1.201 2.912 0.565 2.594 C 0.565 2.594 0.247 2.435 0.286 2.276 C 0.286 2.276 0.207 2.077 0.088 2.117 C 0.088 2.117 -0.032 2.157 0.008 2.793 C 0.008 2.793 0.008 3.032 0.287 2.793 L 0.446 2.833 C 0.446 2.833 0.962 3.23 1.4 2.753 C 1.4 2.753 1.877 2.316 1.519 1.799 C 1.519 1.799 1.281 1.401 0.843 1.242 C 0.843 1.242 0.446 1.043 0.326 0.725 C 0.326 0.725 0.446 0.168 0.963 0.446 C 0.963 0.446 1.161 0.685 1.281 0.725 C 1.281 0.725 1.44 0.725 1.4 0.367 L 1.36 0.088 C 1.36 0.088 1.321 -0.11 1.042 0.088 C 1.042 0.049 0.804 0.168 0.724 0.049\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1dat4ue\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 2.491 3.295\" overflow=\"visible\"><path d=\"M 1.196 0.016 C 1.316 0.096 1.355 0.295 1.355 0.295 C 1.753 1.289 2.071 2.76 2.071 2.76 C 2.151 2.959 2.35 3.079 2.35 3.079 C 2.668 3.198 2.35 3.278 2.35 3.278 C 2.231 3.317 1.793 3.278 1.793 3.278 C 1.554 3.238 1.674 3.158 1.674 3.158 C 1.753 3.079 1.674 2.681 1.674 2.681 C 1.674 2.522 1.475 2.283 1.475 2.283 C 1.395 2.243 1.276 2.403 1.276 2.403 C 1.276 2.403 1.077 2.482 1.037 2.403 C 0.998 2.323 0.878 2.243 0.878 2.243 C 0.64 2.243 0.56 2.8 0.56 2.8 C 0.679 3.278 0.56 3.198 0.56 3.198 C 0.441 3.357 0.083 3.238 0.083 3.238 C -0.076 3.198 0.043 3.079 0.043 3.079 C 0.242 3.039 0.322 2.8 0.322 2.8 C 0.401 2.681 1.037 0.215 1.037 0.215 C 0.998 0.175 1.037 -0.063 1.196 0.016\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-k2xgl3\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 1 1\" overflow=\"visible\"><path d=\"M 0.159 0.159 C 0.159 0.238 0 0.795 0 0.795 L 0.119 0.994 L 0.517 0.994 C 0.597 0.994 0.636 0.915 0.636 0.795 C 0.636 0.716 0.438 0.119 0.438 0.119 L 0.358 0 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true})]})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1drb1yu\",\"data-framer-name\":\"Stanford\",children:/*#__PURE__*/_jsxs(SVG,{className:\"framer-k8twiq\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 134.198 32\" overflow=\"visible\"><g><path d=\"M 6.455 21.492 C 6.375 21.534 6.299 21.584 6.229 21.641 L 0.01 21.641 L 0.01 28.039 L 3.94 32 L 17.171 32 L 21.024 28.151 L 21.024 16.197 L 17.031 12.338 L 12.04 12.338 C 12.023 11.972 12.1 11.649 12.1 11.649 C 12.634 11.386 13.179 12.048 13.179 12.048 C 13.433 12.026 13.755 12.211 13.755 12.211 C 14.134 12.086 15.27 12.38 15.321 12.297 C 15.365 11.618 15.088 11.205 14.861 10.984 L 21.026 10.984 L 21.026 4.493 L 16.634 0 L 4.58 0 L 0 4.549 L 0 16.25 L 3.978 20.228 L 7.596 20.228 C 7.513 20.44 7.427 20.616 7.427 20.616 Z M 13.133 9.907 C 13.003 9.846 12.83 9.845 12.83 9.845 L 12.591 9.587 C 12.591 9.051 12.008 9.197 12.008 9.197 L 12.056 8.905 C 12.216 8.905 12.66 8.968 13.135 9.034 L 13.135 9.906 L 13.133 9.906 Z M 12.684 22.318 L 13.488 22.35 L 13.488 24.288 L 11.577 24.288 L 11.576 23.96 L 11.596 22.2 C 11.629 21.776 11.946 22.028 11.946 22.028 C 12.214 22.298 12.684 22.318 12.684 22.318 Z M 13.133 8.007 C 13.11 7.999 13.087 7.987 13.064 7.977 L 13.133 7.977 Z M 4.192 19.71 L 0.525 16.043 L 0.525 4.784 L 4.788 0.541 L 16.407 0.541 L 20.548 4.787 L 20.548 10.463 L 14.217 10.463 C 14.172 10.39 14.142 10.332 14.142 10.332 C 14.03 10.129 13.833 10.054 13.656 10.028 L 13.656 9.105 C 14.157 9.171 14.589 9.217 14.64 9.165 C 14.875 8.929 14.27 8.55 13.656 8.248 L 13.656 7.462 L 11.943 7.462 C 11.517 7.175 11.451 6.928 11.451 6.928 C 11.305 6.003 12.326 6.381 12.326 6.381 C 12.867 6.422 12.979 6.115 12.979 6.115 C 12.77 5.511 12.007 5.317 11.885 5.265 C 11.741 5.205 11.718 5.15 11.774 5.039 C 11.812 4.963 12.223 5.149 12.356 5.018 C 12.661 4.712 11.601 4.035 11.601 4.035 C 12.291 3.997 11.529 3.291 11.529 3.291 C 11.07 2.928 11.23 2.609 11.23 2.609 C 11.715 2.658 11.714 2.15 11.638 2.131 C 10.924 1.968 11.046 1.689 11.046 1.689 C 11.046 1.446 10.927 1.194 10.927 1.194 C 11.024 0.757 10.827 0.844 10.827 0.844 C 10.535 0.844 10.704 1.105 10.704 1.105 C 10.598 1.545 10.295 1.849 10.295 1.849 C 9.637 1.836 9.98 2.455 9.98 2.455 L 10.389 2.418 L 10.294 2.818 C 9.344 3.233 9.604 3.916 10.145 3.979 C 10.193 4.102 10.116 4.212 10.116 4.212 C 9.553 4.237 9.665 4.453 9.189 4.685 C 8.82 4.868 8.829 5.056 8.857 5.19 C 8.912 5.456 9.268 5.202 9.268 5.202 L 8.917 5.678 C 7.745 6.2 8.779 6.541 8.779 6.541 C 9.702 5.989 10.062 6.2 10.062 6.2 C 10.208 6.78 9.919 7.19 9.582 7.459 L 7.768 7.459 L 7.768 8.274 C 7.2 8.667 6.993 9.194 6.993 9.194 C 6.604 9.584 6.798 9.778 6.798 9.778 C 6.991 9.875 7.401 9.718 7.766 9.537 L 7.766 10.646 C 7.736 10.66 7.716 10.67 7.716 10.67 C 7.473 11.156 6.548 11.547 6.548 11.547 C 5.429 12.031 5.964 12.667 5.964 12.667 C 6.143 12.697 7.072 12.505 7.767 12.355 L 7.767 12.877 L 9.404 12.877 C 9.198 13.227 8.837 13.591 8.837 13.591 C 8.689 14.077 8.107 14.273 8.107 14.273 C 6.549 14.661 6.645 15.196 6.645 15.196 L 7.813 15.099 C 8.154 14.808 8.399 15.099 8.399 15.099 L 8.788 15.196 C 8.984 15.488 8.695 16.353 8.695 16.353 L 7.917 16.353 C 7.868 16.646 7.333 16.643 7.333 16.643 C 7.09 16.548 6.797 16.84 6.797 16.84 C 6.699 17.035 6.262 17.23 6.262 17.23 C 5.873 17.325 6.165 17.521 6.165 17.521 C 6.506 17.277 6.506 17.811 6.506 17.811 C 6.409 18.056 5.617 18.045 5.63 18.25 C 5.654 18.613 8.307 17.518 8.307 17.518 C 8.647 17.23 8.89 17.375 8.89 17.375 C 9.134 17.764 8.404 18.25 8.404 18.25 C 8.113 18.59 7.637 18.778 7.637 18.778 C 6.514 18.96 6.387 19.61 6.376 19.707 C 5.103 19.71 4.192 19.71 4.192 19.71 Z M 8.453 9.149 C 8.99 8.612 9.379 9.149 9.379 9.149 C 10.304 9.49 9.672 9.829 9.672 9.829 C 9.551 9.829 8.836 10.151 8.305 10.396 L 8.305 9.242 C 8.397 9.187 8.453 9.149 8.453 9.149 Z M 8.305 8.004 L 8.305 7.977 L 8.383 7.977 C 8.355 7.985 8.33 7.996 8.305 8.004 Z M 8.545 12.179 C 9.421 11.84 9.47 12.328 9.47 12.328 C 9.473 12.331 9.474 12.332 9.477 12.336 L 8.305 12.336 L 8.305 12.236 C 8.385 12.218 8.465 12.199 8.545 12.179 Z M 10.181 22.284 C 10.34 22.611 10.37 23.502 10.37 23.502 L 10.37 23.684 L 10.352 24.291 L 8.598 24.291 L 8.598 22.696 C 8.984 22.415 9.244 21.887 9.244 21.887 C 9.739 21.681 10.022 21.957 10.181 22.284 Z M 6.438 19.71 L 7.631 19.465 C 7.726 19.478 7.751 19.575 7.74 19.71 Z M 7.623 23.098 C 7.769 22.851 8.013 22.855 8.013 22.855 C 8.03 22.858 8.045 22.857 8.061 22.859 L 8.061 24.833 L 10.377 24.833 L 10.335 25.754 C 10.324 26.167 10.297 27.05 10.263 27.301 C 10.165 28.048 9.994 28.153 9.889 28.222 C 9.74 28.315 9.522 28.354 9.201 28.491 C 8.412 28.824 8.48 29.655 8.1 29.897 C 7.634 30.193 7.762 30.098 7.349 30.19 C 6.934 30.282 6.71 30.741 6.71 30.741 L 15.162 30.741 C 15.129 30.48 15.187 30.244 14.197 29.916 C 13.231 29.596 13.719 29.423 12.475 28.79 C 12.027 28.564 11.791 27.759 11.668 27.157 C 11.575 26.699 11.63 26.49 11.63 26.49 L 11.582 25.103 L 11.581 24.833 L 14.009 24.833 C 14.009 24.446 14.011 23.422 14.011 22.377 C 14.589 22.477 15.555 23.242 15.555 23.242 C 16.578 23.828 16.384 23.192 16.384 23.192 C 16.092 21.102 14.874 20.907 14.874 20.907 C 14.145 20.711 14.631 20.272 14.631 20.272 C 15.508 19.592 14.473 19.405 14.473 19.405 C 13.792 19.499 13.07 19.039 13.07 19.039 C 11.852 18.113 12.297 17.519 12.297 17.519 C 12.394 16.887 13.841 17.825 13.841 17.825 C 14.23 18.166 14.619 17.871 14.619 17.871 C 14.667 17.677 15.121 17.324 15.121 17.324 C 15.949 16.691 13.952 16.547 13.952 16.547 C 13.002 15.953 12.419 15.752 12.137 15.008 C 12.057 14.799 12.053 14.66 12.053 14.66 C 12.053 14.66 13.549 14.799 13.632 14.818 C 13.716 14.836 14.255 14.896 14.241 14.707 C 14.231 14.569 13.968 14.161 13.357 13.886 C 12.822 13.647 12.364 13.177 12.18 12.873 L 16.799 12.873 L 20.549 16.473 L 20.549 27.875 L 16.885 31.541 L 4.212 31.541 L 0.534 27.821 L 0.534 22.183 L 5.724 22.183 C 5.126 23.006 4.769 24.158 4.769 24.158 C 4.72 24.742 5.535 24.256 5.535 24.256 C 5.535 24.256 5.617 24.11 5.644 24.061 C 5.933 23.573 6.716 23.526 6.716 23.526 C 7.104 23.619 7.623 23.098 7.623 23.098 Z\" fill=\"rgb(158, 161, 174)\"></path><path d=\"M 11.253 1.602 C 11.283 1.628 11.383 1.706 11.688 1.774 C 11.857 1.813 11.966 1.97 11.969 2.156 C 11.969 2.184 11.966 2.214 11.964 2.242 C 11.932 2.431 11.789 2.72 11.542 2.791 C 11.558 2.802 11.67 2.89 11.67 2.89 C 12.093 3.219 12.437 3.838 12.084 3.956 C 12.563 4.283 12.722 4.622 12.728 4.754 C 12.742 5.051 12.566 5.121 12.534 5.164 C 12.814 5.3 13.121 5.569 13.256 5.961 L 13.291 6.067 L 13.253 6.171 C 13.184 6.367 12.899 6.689 12.283 6.643 L 12.246 6.638 L 12.209 6.628 C 12.024 6.569 11.834 6.546 11.757 6.613 C 11.738 6.632 11.714 6.661 11.714 6.724 C 11.714 6.748 11.741 6.785 11.744 6.812 C 11.753 6.831 11.776 6.867 11.815 6.913 L 14.171 6.913 L 14.171 8.118 C 14.597 8.365 14.917 8.633 14.974 8.893 C 14.981 8.925 14.986 8.958 14.988 8.99 C 14.988 9.116 14.939 9.238 14.843 9.334 C 14.738 9.44 14.624 9.475 14.171 9.434 L 14.171 9.866 C 14.19 9.882 14.206 9.897 14.225 9.916 L 20.001 9.916 L 20.001 4.99 L 16.172 1.053 L 11.209 1.053 C 11.206 1.065 11.204 1.077 11.202 1.09 C 11.254 1.169 11.33 1.593 11.253 1.602 Z M 8.143 17.995 L 8.172 17.963 L 8.206 17.937 C 8.291 17.882 8.365 17.816 8.431 17.75 C 8.423 17.754 8.414 17.757 8.405 17.76 C 5.906 18.787 5.591 18.588 5.473 18.515 C 5.368 18.453 5.301 18.343 5.294 18.221 C 5.294 18.212 5.293 18.203 5.293 18.195 C 5.29 17.854 5.668 17.755 5.92 17.691 C 5.818 17.608 5.728 17.48 5.725 17.327 C 5.723 17.304 5.726 17.279 5.729 17.253 C 5.751 17.13 5.841 16.968 6.125 16.885 C 6.284 16.812 6.451 16.721 6.485 16.668 C 6.49 16.662 6.529 16.604 6.529 16.604 L 6.56 16.572 C 6.604 16.527 6.981 16.129 7.351 16.281 C 7.456 16.281 7.543 16.249 7.59 16.217 C 7.599 16.17 7.629 15.985 7.629 15.985 L 8.438 15.985 C 8.493 15.774 8.524 15.564 8.523 15.431 C 8.523 15.421 8.52 15.418 8.519 15.406 C 8.411 15.379 8.302 15.354 8.302 15.354 L 8.206 15.32 L 8.143 15.256 C 8.122 15.235 8.095 15.205 7.999 15.286 L 7.922 15.352 L 6.368 15.482 L 6.317 15.201 C 6.283 15.009 6.301 14.348 7.988 13.922 C 8.111 13.877 8.435 13.713 8.515 13.447 L 8.533 13.387 L 7.221 13.387 L 7.221 12.736 C 6.618 12.859 6.066 12.951 5.895 12.923 L 5.781 12.903 L 5.706 12.814 C 5.579 12.657 5.507 12.462 5.503 12.26 C 5.503 12.197 5.509 12.129 5.526 12.059 C 5.608 11.709 5.904 11.423 6.409 11.203 C 6.637 11.106 6.99 10.913 7.221 10.71 L 7.221 10.027 C 6.998 10.08 6.794 10.085 6.638 10.007 L 6.594 9.984 L 6.557 9.949 C 6.547 9.943 6.418 9.81 6.415 9.587 C 6.414 9.427 6.484 9.219 6.705 8.979 C 6.757 8.866 6.913 8.561 7.221 8.255 L 7.221 6.913 L 9.618 6.913 C 9.709 6.782 9.768 6.627 9.765 6.45 C 9.765 6.445 9.765 6.438 9.763 6.431 C 9.616 6.444 9.35 6.506 8.92 6.763 L 8.807 6.832 L 8.678 6.799 C 8.528 6.76 8.03 6.597 7.997 6.191 C 7.996 6.18 7.995 6.168 7.995 6.157 C 7.992 5.829 8.302 5.563 8.592 5.419 C 8.592 5.419 8.59 5.417 8.59 5.416 C 8.544 5.361 8.474 5.134 8.482 5.098 C 8.495 4.703 8.973 4.403 9.398 4.078 C 9.417 4.06 9.436 4.039 9.455 4.02 C 9.396 3.983 9.347 3.933 9.313 3.872 C 9.28 3.815 9.263 3.75 9.262 3.684 C 9.259 3.439 9.235 3.082 9.785 2.708 C 9.759 2.673 9.699 2.587 9.699 2.587 C 9.668 2.541 9.546 2.244 9.545 2.028 C 9.543 1.949 9.561 1.867 9.602 1.786 C 9.669 1.656 9.725 1.504 10.074 1.495 L 10.163 1.495 C 10.173 1.494 10.29 1.242 10.374 1.079 C 10.372 1.07 10.372 1.062 10.369 1.055 L 4.984 1.055 L 1.039 4.992 L 1.039 15.806 L 4.396 19.166 L 6.108 19.166 C 6.245 18.907 6.6 18.515 7.515 18.361 C 7.527 18.358 7.925 18.253 8.143 17.995 Z M 5.897 24.171 L 5.751 24.431 L 5.678 24.474 C 5.485 24.59 4.999 24.836 4.671 24.631 C 4.58 24.572 4.437 24.44 4.432 24.165 C 4.432 24.138 4.433 24.111 4.435 24.082 L 4.438 24.05 L 4.448 24.016 C 4.483 23.899 4.674 23.318 4.992 22.698 L 1.045 22.698 L 1.045 27.585 L 4.408 31.001 L 6.193 31.001 L 6.407 30.555 C 6.438 30.496 6.712 29.957 7.258 29.837 L 7.5 29.791 C 7.613 29.773 7.613 29.773 7.909 29.584 C 7.999 29.529 8.093 29.374 8.171 29.184 C 8.324 28.811 8.482 28.397 9.055 28.154 C 9.234 28.079 9.288 28.045 9.438 28.006 C 9.534 27.981 9.66 27.93 9.697 27.908 C 9.739 27.882 9.848 27.813 9.929 27.213 C 9.949 27.056 9.979 26.686 9.987 26.235 L 9.997 25.69 L 9.998 25.659 C 9.996 25.662 9.968 25.699 9.968 25.699 L 9.979 25.35 L 7.516 25.35 L 7.516 23.529 C 7.3 23.682 7.004 23.83 6.708 23.793 C 6.529 23.801 6.058 23.895 5.897 24.171 Z M 15.449 30.592 L 15.497 31 L 16.649 31 L 20.002 27.64 L 20.002 16.675 L 16.556 13.391 L 13.174 13.391 C 13.267 13.451 13.361 13.508 13.465 13.554 C 14.129 13.85 14.513 14.333 14.534 14.639 L 14.534 14.661 C 14.535 14.787 14.474 14.943 14.291 15.029 C 14.165 15.089 13.698 15.164 13.462 15.063 C 13.246 15.04 12.875 15.003 12.473 14.967 C 12.672 15.369 13.003 15.579 13.573 15.915 L 14.032 16.192 C 14.689 16.248 15.462 16.407 15.595 16.852 C 15.606 16.893 15.615 16.94 15.615 16.988 C 15.618 17.139 15.547 17.329 15.293 17.523 C 15.117 17.664 14.929 17.848 14.899 17.915 C 14.891 17.938 14.867 18.013 14.867 18.013 L 14.788 18.075 C 14.586 18.226 14.096 18.404 13.644 18.037 C 13.241 17.773 12.762 17.565 12.577 17.564 C 12.573 17.583 12.567 17.605 12.567 17.605 L 12.537 17.65 C 12.518 17.687 12.509 17.729 12.51 17.77 C 12.513 17.96 12.664 18.295 13.231 18.731 C 13.295 18.767 13.885 19.118 14.409 19.044 L 14.458 19.036 L 14.508 19.045 C 14.616 19.065 15.157 19.184 15.262 19.607 C 15.329 19.885 15.18 20.173 14.824 20.454 C 14.811 20.469 14.798 20.482 14.788 20.499 C 14.815 20.513 14.861 20.53 14.931 20.551 C 15.135 20.594 16.371 20.947 16.674 23.092 C 16.718 23.265 16.7 23.5 16.516 23.648 C 16.214 23.889 15.75 23.679 15.382 23.466 L 15.362 23.455 L 15.342 23.438 C 15.083 23.234 14.809 23.049 14.524 22.885 L 14.524 25.346 L 11.888 25.346 L 11.927 26.444 L 11.927 26.461 C 11.927 26.465 11.876 26.636 11.958 27.045 C 12.105 27.763 12.34 28.33 12.6 28.463 C 13.281 28.808 13.494 28.981 13.664 29.18 C 13.8 29.341 13.881 29.438 14.279 29.568 C 15.209 29.877 15.404 30.158 15.449 30.592 Z\" fill=\"rgb(158, 161, 174)\"></path><path d=\"M 12.514 17.696 L 12.522 17.685 L 12.522 17.683 Z M 56.005 19.649 C 53.635 20.521 53.359 22.324 53.359 23.342 C 53.359 24.208 53.644 27.034 57.366 27.034 C 59.092 27.034 60.197 26.246 60.802 25.616 C 61.055 26.488 61.813 27.005 62.904 27.005 C 64.164 27.005 64.871 26.372 65.615 25.477 L 65.765 25.282 L 65.313 24.767 L 65.092 24.957 C 64.98 25.052 64.844 25.094 64.642 25.094 C 63.837 25.094 63.682 24.343 63.682 23.372 C 63.682 22.986 63.697 22.353 63.714 21.624 C 63.738 20.566 63.767 19.247 63.767 18.067 C 63.767 16.722 63.723 15.436 63.146 14.506 C 62.372 13.334 61.127 12.788 59.212 12.788 C 56.265 12.788 54.92 14.603 54.583 15.672 L 54.514 15.883 L 55.202 16.296 L 55.351 16.015 C 55.356 16.001 56.118 14.585 57.974 14.585 C 59.236 14.585 60.166 15.194 60.493 16.164 C 60.655 16.671 60.655 16.867 60.655 17.685 L 60.655 18.121 C 58.974 18.646 58.451 18.75 56.005 19.649 Z M 60.658 24.465 C 59.922 24.992 59.081 25.099 58.493 25.099 C 56.71 25.099 56.444 23.852 56.444 23.11 C 56.444 22.16 56.857 21.352 57.643 20.952 C 58.209 20.669 58.83 20.363 60.658 19.814 L 60.658 24.465 Z M 30.108 26.348 C 31.501 26.801 32.856 26.996 34.638 26.996 C 36.631 26.996 41.267 26.46 41.267 21.484 C 41.267 18.547 39.599 17.433 37.827 16.251 L 35.748 14.874 C 33.935 13.677 33.107 13.128 33.107 11.512 C 33.107 10.336 33.462 8.766 36.509 8.766 C 37.806 8.766 39.031 9.028 39.585 9.582 C 39.987 9.988 40.2 10.513 40.25 11.242 L 40.267 11.512 L 40.964 11.512 L 40.942 11.082 C 40.919 10.506 40.93 9.947 40.93 9.304 C 40.93 8.492 40.949 7.742 40.949 7.735 L 40.958 7.49 L 40.71 7.446 C 40.635 7.437 38.815 7.126 36.452 7.126 C 30.698 7.126 30.253 10.991 30.253 12.173 C 30.253 14.591 31.415 15.804 33.696 17.313 L 35.338 18.409 L 35.587 18.58 C 37.142 19.627 38.268 20.387 38.268 22.206 C 38.268 24.334 37.05 25.323 34.433 25.323 C 33.185 25.323 31.841 24.929 31.257 24.269 C 30.876 23.84 30.67 23.231 30.635 22.612 L 30.621 22.324 L 29.81 22.323 L 29.85 23.01 C 29.879 23.435 29.907 23.954 29.907 25.285 L 29.907 26.281 Z M 52.017 14.887 L 52.017 13.188 L 47.344 13.188 L 47.344 10.099 L 46.745 10.099 L 46.436 10.625 C 46.42 10.648 45.507 12.378 44.187 13.401 C 43.814 13.689 43.492 13.927 42.649 14.276 L 42.471 14.349 L 42.471 14.887 L 44.285 14.887 L 44.273 15.844 C 44.25 17.884 44.231 19.643 44.231 21.837 C 44.231 22.633 44.231 23.957 44.448 24.633 C 44.967 26.328 46.146 27.084 48.268 27.084 C 50.763 27.084 51.821 25.704 51.87 25.65 L 51.989 25.517 L 51.748 24.957 L 51.465 25.102 C 51.459 25.111 50.731 25.477 49.785 25.477 C 47.744 25.477 47.344 24.25 47.344 22.094 L 47.344 14.888 L 52.017 14.888 L 52.017 14.887 Z M 77.474 23.362 C 77.442 24.274 77.415 25.329 76.971 25.775 C 76.734 26.011 76.365 26.161 75.833 26.245 L 75.586 26.275 L 75.586 26.911 L 75.903 26.882 C 77.128 26.765 78.005 26.765 79.019 26.765 C 79.907 26.765 80.757 26.812 81.744 26.862 L 82.425 26.897 L 82.425 26.256 L 82.153 26.236 C 81.76 26.211 81.306 26.049 81.092 25.851 C 80.666 25.454 80.578 24.817 80.578 22.552 L 80.578 18.546 C 80.578 17.875 80.532 16.61 80.399 16.09 C 79.94 13.992 78.325 12.837 75.848 12.837 C 73.957 12.837 72.563 13.64 71.87 14.154 L 71.87 13.068 L 71.601 12.909 L 71.443 12.979 C 71.275 13.059 70.806 13.339 69.999 13.466 C 68.943 13.672 67.942 13.727 67.518 13.727 C 67.431 13.727 67.364 13.727 67.31 13.72 L 66.999 13.697 L 66.999 14.48 L 67.258 14.509 C 67.292 14.51 67.331 14.516 67.371 14.518 C 67.702 14.54 68.323 14.583 68.603 14.988 C 68.85 15.354 68.875 16.079 68.875 17.766 L 68.875 21.688 C 68.875 24.028 68.85 25.197 68.425 25.672 C 68.019 26.129 67.438 26.22 67.208 26.239 L 66.945 26.259 L 66.945 26.912 L 67.252 26.882 C 68.482 26.767 69.412 26.767 70.406 26.767 C 71.266 26.767 72.093 26.812 73.043 26.859 L 73.775 26.898 L 73.775 26.257 L 73.505 26.238 C 73.107 26.211 72.66 26.049 72.444 25.851 C 72.02 25.457 71.928 24.819 71.928 22.553 L 71.928 15.346 C 72.505 15.048 73.273 14.768 74.499 14.768 C 76.281 14.768 77.206 15.594 77.412 17.368 C 77.524 18.417 77.524 19.481 77.524 20.507 C 77.524 21.296 77.524 22.374 77.5 22.887 C 77.485 23.054 77.477 23.211 77.474 23.362 Z M 89.741 7.306 C 90.104 6.94 90.693 6.811 91.123 6.811 C 92.158 6.811 92.914 7.266 93.437 8.431 L 93.509 8.602 L 93.837 8.598 L 95.198 6.706 L 95.157 6.415 L 95.051 6.33 C 94.31 5.728 93.04 5.283 91.702 5.283 C 88.588 5.283 86.736 6.72 86.193 9.553 C 86.028 10.405 85.992 11.976 85.989 13.192 C 85.637 13.468 85.156 13.722 84.379 14.042 L 84.201 14.12 L 84.201 14.888 L 85.989 14.888 L 85.989 21.691 C 85.989 24.03 85.969 25.187 85.543 25.662 C 85.138 26.12 84.558 26.211 84.324 26.225 L 84.057 26.249 L 84.057 26.915 L 84.374 26.884 C 85.602 26.77 86.76 26.77 87.777 26.77 C 88.59 26.77 89.712 26.806 91.224 26.884 L 91.528 26.902 L 91.528 26.169 L 91.238 26.169 C 90.894 26.169 89.725 26.127 89.345 25.549 C 89.103 25.194 89.045 24.314 89.045 22.501 L 89.045 14.889 L 92.104 14.889 L 92.104 13.19 L 89.045 13.19 L 89.045 10.537 C 89.045 8.784 89.146 7.897 89.741 7.306 Z M 99.841 27.141 C 104.993 27.141 106.822 23.183 106.822 19.786 C 106.822 15.419 104.319 12.809 100.13 12.809 C 94.976 12.809 93.152 16.769 93.152 20.165 C 93.152 24.534 95.654 27.141 99.841 27.141 Z M 98.071 15.018 C 98.549 14.605 99.204 14.396 100.013 14.396 C 103.39 14.396 103.56 19.009 103.56 19.934 C 103.56 22.328 103.005 24.013 101.904 24.935 C 101.418 25.348 100.761 25.558 99.959 25.558 C 96.578 25.558 96.408 20.943 96.408 20.021 C 96.412 17.627 96.968 15.941 98.071 15.018 Z M 114.634 15.145 C 115.88 15.145 116.524 15.745 116.844 16.248 L 116.93 16.381 L 117.486 16.381 L 118.643 14.266 L 118.643 13.834 L 118.549 13.745 C 117.983 13.239 117.207 12.982 116.25 12.982 C 114.779 12.982 113.735 13.639 113.077 14.259 L 113.077 13.067 L 112.835 12.94 L 112.676 13.011 C 112.444 13.122 111.873 13.293 111.206 13.403 C 110.15 13.611 109.152 13.664 108.726 13.664 C 108.639 13.664 108.551 13.662 108.501 13.657 L 108.207 13.649 L 108.207 14.48 L 108.475 14.509 C 108.503 14.51 108.542 14.515 108.581 14.517 C 108.915 14.54 109.533 14.583 109.814 14.988 C 110.059 15.354 110.078 16.079 110.078 17.766 L 110.078 21.688 C 110.078 24.027 110.061 25.155 109.635 25.63 C 109.234 26.088 108.648 26.18 108.417 26.196 L 108.148 26.217 L 108.148 26.912 L 108.466 26.881 C 109.693 26.767 110.846 26.767 111.869 26.767 C 112.676 26.767 113.803 26.803 115.313 26.881 L 115.618 26.899 L 115.618 26.138 L 115.331 26.138 C 114.984 26.138 113.824 26.094 113.436 25.52 C 113.2 25.165 113.14 24.311 113.14 22.5 L 113.14 15.584 C 113.572 15.287 114.064 15.145 114.634 15.145 Z M 133.824 25.692 C 133.499 25.665 132.901 25.599 132.619 25.189 C 132.376 24.859 132.354 23.823 132.354 22.149 L 132.354 10.965 C 132.354 9.15 132.365 6.734 132.457 5.601 L 132.468 5.467 L 132.233 5.326 L 132.097 5.379 C 131.817 5.481 131.281 5.601 130.739 5.689 C 129.451 5.943 127.866 6.076 127.8 6.076 L 127.51 6.076 L 127.45 6.69 L 127.711 6.715 C 127.741 6.719 127.778 6.721 127.82 6.723 C 128.147 6.749 128.749 6.794 129.027 7.195 C 129.27 7.561 129.293 8.475 129.293 10.186 L 129.293 13.101 C 128.703 12.974 127.716 12.84 126.613 12.84 C 123.601 12.84 121.213 14.266 120.065 16.757 C 119.577 17.831 119.316 19.107 119.316 20.448 C 119.316 24.499 121.752 27.111 125.518 27.111 C 127.322 27.111 128.672 26.326 129.353 25.823 L 129.353 26.982 L 129.721 27.105 L 129.845 27.05 C 130.088 26.938 130.577 26.841 131.245 26.732 C 132.407 26.534 133.602 26.452 133.91 26.452 L 134.198 26.452 L 134.198 25.714 L 133.938 25.703 C 133.9 25.697 133.862 25.693 133.824 25.692 Z M 129.292 24.591 C 128.505 25.08 127.599 25.152 127.116 25.152 L 126.99 25.152 C 123.006 25.152 122.573 21.603 122.573 20.077 C 122.573 16.314 123.879 14.482 126.553 14.482 C 128.236 14.482 129.068 15.18 129.292 15.403 Z\" fill=\"rgb(158, 161, 174)\"></path></g></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsxs(SVG,{className:\"framer-4bdfc\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 21.026 32\" overflow=\"visible\"><path d=\"M 6.455 21.492 C 6.375 21.534 6.299 21.584 6.229 21.641 L 0.01 21.641 L 0.01 28.039 L 3.94 32 L 17.171 32 L 21.024 28.151 L 21.024 16.197 L 17.031 12.338 L 12.04 12.338 C 12.023 11.972 12.1 11.649 12.1 11.649 C 12.634 11.386 13.179 12.048 13.179 12.048 C 13.433 12.026 13.755 12.211 13.755 12.211 C 14.134 12.086 15.27 12.38 15.321 12.297 C 15.365 11.618 15.088 11.205 14.861 10.984 L 21.026 10.984 L 21.026 4.493 L 16.634 0 L 4.58 0 L 0 4.549 L 0 16.25 L 3.978 20.228 L 7.596 20.228 C 7.513 20.44 7.427 20.616 7.427 20.616 Z M 13.133 9.907 C 13.003 9.846 12.83 9.845 12.83 9.845 L 12.591 9.587 C 12.591 9.051 12.008 9.197 12.008 9.197 L 12.056 8.905 C 12.216 8.905 12.66 8.968 13.135 9.034 L 13.135 9.906 L 13.133 9.906 Z M 12.684 22.318 L 13.488 22.35 L 13.488 24.288 L 11.577 24.288 L 11.576 23.96 L 11.596 22.2 C 11.629 21.776 11.946 22.028 11.946 22.028 C 12.214 22.298 12.684 22.318 12.684 22.318 Z M 13.133 8.007 C 13.11 7.999 13.087 7.987 13.064 7.977 L 13.133 7.977 Z M 4.192 19.71 L 0.525 16.043 L 0.525 4.784 L 4.788 0.541 L 16.407 0.541 L 20.548 4.787 L 20.548 10.463 L 14.217 10.463 C 14.172 10.39 14.142 10.332 14.142 10.332 C 14.03 10.129 13.833 10.054 13.656 10.028 L 13.656 9.105 C 14.157 9.171 14.589 9.217 14.64 9.165 C 14.875 8.929 14.27 8.55 13.656 8.248 L 13.656 7.462 L 11.943 7.462 C 11.517 7.175 11.451 6.928 11.451 6.928 C 11.305 6.003 12.326 6.381 12.326 6.381 C 12.867 6.422 12.979 6.115 12.979 6.115 C 12.77 5.511 12.007 5.317 11.885 5.265 C 11.741 5.205 11.718 5.15 11.774 5.039 C 11.812 4.963 12.223 5.149 12.356 5.018 C 12.661 4.712 11.601 4.035 11.601 4.035 C 12.291 3.997 11.529 3.291 11.529 3.291 C 11.07 2.928 11.23 2.609 11.23 2.609 C 11.715 2.658 11.714 2.15 11.638 2.131 C 10.924 1.968 11.046 1.689 11.046 1.689 C 11.046 1.446 10.927 1.194 10.927 1.194 C 11.024 0.757 10.827 0.844 10.827 0.844 C 10.535 0.844 10.704 1.105 10.704 1.105 C 10.598 1.545 10.295 1.849 10.295 1.849 C 9.637 1.836 9.98 2.455 9.98 2.455 L 10.389 2.418 L 10.294 2.818 C 9.344 3.233 9.604 3.916 10.145 3.979 C 10.193 4.102 10.116 4.212 10.116 4.212 C 9.553 4.237 9.665 4.453 9.189 4.685 C 8.82 4.868 8.829 5.056 8.857 5.19 C 8.912 5.456 9.268 5.202 9.268 5.202 L 8.917 5.678 C 7.745 6.2 8.779 6.541 8.779 6.541 C 9.702 5.989 10.062 6.2 10.062 6.2 C 10.208 6.78 9.919 7.19 9.582 7.459 L 7.768 7.459 L 7.768 8.274 C 7.2 8.667 6.993 9.194 6.993 9.194 C 6.604 9.584 6.798 9.778 6.798 9.778 C 6.991 9.875 7.401 9.718 7.766 9.537 L 7.766 10.646 C 7.736 10.66 7.716 10.67 7.716 10.67 C 7.473 11.156 6.548 11.547 6.548 11.547 C 5.429 12.031 5.964 12.667 5.964 12.667 C 6.143 12.697 7.072 12.505 7.767 12.355 L 7.767 12.877 L 9.404 12.877 C 9.198 13.227 8.837 13.591 8.837 13.591 C 8.689 14.077 8.107 14.273 8.107 14.273 C 6.549 14.661 6.645 15.196 6.645 15.196 L 7.813 15.099 C 8.154 14.808 8.399 15.099 8.399 15.099 L 8.788 15.196 C 8.984 15.488 8.695 16.353 8.695 16.353 L 7.917 16.353 C 7.868 16.646 7.333 16.643 7.333 16.643 C 7.09 16.548 6.797 16.84 6.797 16.84 C 6.699 17.035 6.262 17.23 6.262 17.23 C 5.873 17.325 6.165 17.521 6.165 17.521 C 6.506 17.277 6.506 17.811 6.506 17.811 C 6.409 18.056 5.617 18.045 5.63 18.25 C 5.654 18.613 8.307 17.518 8.307 17.518 C 8.647 17.23 8.89 17.375 8.89 17.375 C 9.134 17.764 8.404 18.25 8.404 18.25 C 8.113 18.59 7.637 18.778 7.637 18.778 C 6.514 18.96 6.387 19.61 6.376 19.707 C 5.103 19.71 4.192 19.71 4.192 19.71 Z M 8.453 9.149 C 8.99 8.612 9.379 9.149 9.379 9.149 C 10.304 9.49 9.672 9.829 9.672 9.829 C 9.551 9.829 8.836 10.151 8.305 10.396 L 8.305 9.242 C 8.397 9.187 8.453 9.149 8.453 9.149 Z M 8.305 8.004 L 8.305 7.977 L 8.383 7.977 C 8.355 7.985 8.33 7.996 8.305 8.004 Z M 8.545 12.179 C 9.421 11.84 9.47 12.328 9.47 12.328 C 9.473 12.331 9.474 12.332 9.477 12.336 L 8.305 12.336 L 8.305 12.236 C 8.385 12.218 8.465 12.199 8.545 12.179 Z M 10.181 22.284 C 10.34 22.611 10.37 23.502 10.37 23.502 L 10.37 23.684 L 10.352 24.291 L 8.598 24.291 L 8.598 22.696 C 8.984 22.415 9.244 21.887 9.244 21.887 C 9.739 21.681 10.022 21.957 10.181 22.284 Z M 6.438 19.71 L 7.631 19.465 C 7.726 19.478 7.751 19.575 7.74 19.71 Z M 7.623 23.098 C 7.769 22.851 8.013 22.855 8.013 22.855 C 8.03 22.858 8.045 22.857 8.061 22.859 L 8.061 24.833 L 10.377 24.833 L 10.335 25.754 C 10.324 26.167 10.297 27.05 10.263 27.301 C 10.165 28.048 9.994 28.153 9.889 28.222 C 9.74 28.315 9.522 28.354 9.201 28.491 C 8.412 28.824 8.48 29.655 8.1 29.897 C 7.634 30.193 7.762 30.098 7.349 30.19 C 6.934 30.282 6.71 30.741 6.71 30.741 L 15.162 30.741 C 15.129 30.48 15.187 30.244 14.197 29.916 C 13.231 29.596 13.719 29.423 12.475 28.79 C 12.027 28.564 11.791 27.759 11.668 27.157 C 11.575 26.699 11.63 26.49 11.63 26.49 L 11.582 25.103 L 11.581 24.833 L 14.009 24.833 C 14.009 24.446 14.011 23.422 14.011 22.377 C 14.589 22.477 15.555 23.242 15.555 23.242 C 16.578 23.828 16.384 23.192 16.384 23.192 C 16.092 21.102 14.874 20.907 14.874 20.907 C 14.145 20.711 14.631 20.272 14.631 20.272 C 15.508 19.592 14.473 19.405 14.473 19.405 C 13.792 19.499 13.07 19.039 13.07 19.039 C 11.852 18.113 12.297 17.519 12.297 17.519 C 12.394 16.887 13.841 17.825 13.841 17.825 C 14.23 18.166 14.619 17.871 14.619 17.871 C 14.667 17.677 15.121 17.324 15.121 17.324 C 15.949 16.691 13.952 16.547 13.952 16.547 C 13.002 15.953 12.419 15.752 12.137 15.008 C 12.057 14.799 12.053 14.66 12.053 14.66 C 12.053 14.66 13.549 14.799 13.632 14.818 C 13.716 14.836 14.255 14.896 14.241 14.707 C 14.231 14.569 13.968 14.161 13.357 13.886 C 12.822 13.647 12.364 13.177 12.18 12.873 L 16.799 12.873 L 20.549 16.473 L 20.549 27.875 L 16.885 31.541 L 4.212 31.541 L 0.534 27.821 L 0.534 22.183 L 5.724 22.183 C 5.126 23.006 4.769 24.158 4.769 24.158 C 4.72 24.742 5.535 24.256 5.535 24.256 C 5.535 24.256 5.617 24.11 5.644 24.061 C 5.933 23.573 6.716 23.526 6.716 23.526 C 7.104 23.619 7.623 23.098 7.623 23.098 Z\" fill=\"rgb(158, 161, 174)\"></path></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-161y0ao\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 21.026 32\" overflow=\"visible\"><path d=\"M 6.455 21.492 C 6.375 21.534 6.299 21.584 6.229 21.641 L 0.01 21.641 L 0.01 28.039 L 3.94 32 L 17.171 32 L 21.024 28.151 L 21.024 16.197 L 17.031 12.338 L 12.04 12.338 C 12.023 11.972 12.1 11.649 12.1 11.649 C 12.634 11.386 13.179 12.048 13.179 12.048 C 13.433 12.026 13.755 12.211 13.755 12.211 C 14.134 12.086 15.27 12.38 15.321 12.297 C 15.365 11.618 15.088 11.205 14.861 10.984 L 21.026 10.984 L 21.026 4.493 L 16.634 0 L 4.58 0 L 0 4.549 L 0 16.25 L 3.978 20.228 L 7.596 20.228 C 7.513 20.44 7.427 20.616 7.427 20.616 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1ah1c2c\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 1.127 1.002\" overflow=\"visible\"><path d=\"M 1.126 1.002 C 0.995 0.941 0.823 0.94 0.823 0.94 L 0.584 0.682 C 0.584 0.146 0 0.292 0 0.292 L 0.049 0 C 0.209 0 0.652 0.063 1.127 0.129 L 1.127 1.001 L 1.126 1.001 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1kf75ek\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 1.912 2.335\" overflow=\"visible\"><path d=\"M 1.108 0.364 L 1.912 0.396 L 1.912 2.335 L 0.001 2.335 L 0 2.007 L 0.021 0.246 C 0.054 -0.178 0.37 0.075 0.37 0.075 C 0.638 0.344 1.108 0.364 1.108 0.364 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1irztcu\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 1 1\" overflow=\"visible\"><path d=\"M 0.069 0.03 C 0.046 0.022 0.023 0.01 0 0 L 0.069 0 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-swg6cj\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20.023 19.169\" overflow=\"visible\"><path d=\"M 3.667 19.169 L 0 15.502 L 0 4.243 L 4.262 0 L 15.882 0 L 20.023 4.246 L 20.023 9.922 L 13.692 9.922 C 13.646 9.849 13.616 9.791 13.616 9.791 C 13.504 9.588 13.308 9.513 13.131 9.487 L 13.131 8.564 C 13.632 8.63 14.064 8.676 14.115 8.625 C 14.35 8.388 13.745 8.009 13.131 7.707 L 13.131 6.921 L 11.418 6.921 C 10.992 6.635 10.925 6.388 10.925 6.388 C 10.779 5.462 11.801 5.84 11.801 5.84 C 12.342 5.881 12.453 5.574 12.453 5.574 C 12.244 4.97 11.482 4.776 11.36 4.724 C 11.216 4.664 11.193 4.609 11.248 4.498 C 11.287 4.422 11.698 4.608 11.831 4.477 C 12.135 4.171 11.075 3.494 11.075 3.494 C 11.765 3.456 11.004 2.75 11.004 2.75 C 10.545 2.387 10.705 2.068 10.705 2.068 C 11.19 2.117 11.188 1.609 11.113 1.59 C 10.399 1.427 10.521 1.148 10.521 1.148 C 10.521 0.905 10.402 0.653 10.402 0.653 C 10.499 0.216 10.301 0.303 10.301 0.303 C 10.01 0.303 10.178 0.564 10.178 0.564 C 10.073 1.004 9.77 1.308 9.77 1.308 C 9.111 1.296 9.455 1.914 9.455 1.914 L 9.864 1.877 L 9.768 2.277 C 8.819 2.692 9.078 3.375 9.62 3.438 C 9.668 3.561 9.591 3.672 9.591 3.672 C 9.028 3.696 9.14 3.912 8.664 4.144 C 8.295 4.327 8.303 4.515 8.332 4.649 C 8.386 4.915 8.743 4.661 8.743 4.661 L 8.392 5.138 C 7.22 5.659 8.254 6 8.254 6 C 9.176 5.448 9.537 5.659 9.537 5.659 C 9.683 6.239 9.393 6.649 9.056 6.918 L 7.242 6.918 L 7.242 7.733 C 6.674 8.127 6.467 8.653 6.467 8.653 C 6.078 9.043 6.272 9.237 6.272 9.237 C 6.466 9.334 6.876 9.177 7.241 8.996 L 7.241 10.105 C 7.211 10.119 7.191 10.129 7.191 10.129 C 6.948 10.615 6.023 11.006 6.023 11.006 C 4.904 11.49 5.439 12.126 5.439 12.126 C 5.617 12.156 6.547 11.964 7.241 11.814 L 7.241 12.336 L 8.879 12.336 C 8.673 12.686 8.311 13.05 8.311 13.05 C 8.164 13.536 7.581 13.732 7.581 13.732 C 6.024 14.12 6.12 14.655 6.12 14.655 L 7.288 14.558 C 7.629 14.267 7.873 14.558 7.873 14.558 L 8.262 14.655 C 8.459 14.947 8.169 15.812 8.169 15.812 L 7.391 15.812 C 7.342 16.105 6.808 16.103 6.808 16.103 C 6.564 16.008 6.271 16.299 6.271 16.299 C 6.174 16.494 5.736 16.689 5.736 16.689 C 5.347 16.784 5.639 16.98 5.639 16.98 C 5.981 16.737 5.981 17.27 5.981 17.27 C 5.884 17.515 5.092 17.504 5.104 17.709 C 5.129 18.072 7.782 16.977 7.782 16.977 C 8.122 16.689 8.365 16.835 8.365 16.835 C 8.609 17.223 7.879 17.709 7.879 17.709 C 7.587 18.05 7.112 18.237 7.112 18.237 C 5.988 18.419 5.862 19.069 5.851 19.166 C 4.578 19.169 3.667 19.169 3.667 19.169 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-xhj9kx\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 1.578 1.485\" overflow=\"visible\"><path d=\"M 0.149 0.238 C 0.685 -0.298 1.074 0.238 1.074 0.238 C 1.999 0.58 1.367 0.919 1.367 0.919 C 1.246 0.919 0.531 1.241 0 1.485 L 0 0.331 C 0.093 0.277 0.149 0.238 0.149 0.238 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-k63pes\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 1 1\" overflow=\"visible\"><path d=\"M 0 0.027 L 0 0 L 0.078 0 C 0.051 0.008 0.026 0.019 0 0.027 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-mdcx7k\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 1.173 1\" overflow=\"visible\"><path d=\"M 0.24 0.12 C 1.117 -0.219 1.166 0.268 1.166 0.268 C 1.168 0.271 1.17 0.273 1.173 0.277 L 0 0.277 L 0 0.177 C 0.08 0.159 0.16 0.14 0.24 0.12 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-70rakn\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 1.772 2.475\" overflow=\"visible\"><path d=\"M 1.583 0.468 C 1.742 0.795 1.772 1.686 1.772 1.686 L 1.772 1.868 L 1.754 2.475 L 0 2.475 L 0 0.88 C 0.386 0.599 0.646 0.071 0.646 0.071 C 1.141 -0.135 1.424 0.141 1.583 0.468 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-xcthi0\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 1.304 1\" overflow=\"visible\"><path d=\"M 0 0.245 L 1.193 0 C 1.288 0.013 1.313 0.109 1.302 0.245 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1sdxqjz\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20.016 18.668\" overflow=\"visible\"><path d=\"M 7.09 10.225 C 7.236 9.978 7.479 9.982 7.479 9.982 C 7.496 9.985 7.512 9.983 7.528 9.986 L 7.528 11.96 L 9.843 11.96 L 9.802 12.88 C 9.79 13.294 9.763 14.176 9.73 14.428 C 9.631 15.175 9.461 15.28 9.355 15.348 C 9.207 15.442 8.988 15.481 8.667 15.618 C 7.879 15.95 7.947 16.781 7.566 17.023 C 7.101 17.319 7.229 17.224 6.815 17.316 C 6.4 17.408 6.177 17.868 6.177 17.868 L 14.629 17.868 C 14.596 17.607 14.653 17.371 13.663 17.042 C 12.698 16.722 13.185 16.549 11.941 15.917 C 11.494 15.69 11.258 14.886 11.135 14.284 C 11.042 13.826 11.097 13.616 11.097 13.616 L 11.049 12.229 L 11.047 11.96 L 13.476 11.96 C 13.476 11.573 13.477 10.549 13.477 9.504 C 14.055 9.603 15.022 10.369 15.022 10.369 C 16.044 10.954 15.85 10.318 15.85 10.318 C 15.558 8.229 14.341 8.033 14.341 8.033 C 13.612 7.837 14.098 7.399 14.098 7.399 C 14.975 6.719 13.939 6.532 13.939 6.532 C 13.258 6.625 12.536 6.166 12.536 6.166 C 11.319 5.24 11.764 4.646 11.764 4.646 C 11.861 4.013 13.307 4.952 13.307 4.952 C 13.696 5.293 14.085 4.998 14.085 4.998 C 14.133 4.804 14.587 4.45 14.587 4.45 C 15.415 3.817 13.418 3.674 13.418 3.674 C 12.468 3.08 11.885 2.879 11.603 2.134 C 11.524 1.925 11.519 1.786 11.519 1.786 C 11.519 1.786 13.015 1.925 13.098 1.944 C 13.182 1.962 13.721 2.023 13.708 1.834 C 13.698 1.696 13.435 1.288 12.823 1.013 C 12.289 0.774 11.831 0.304 11.647 0 L 16.265 0 L 20.016 3.599 L 20.016 15.001 L 16.351 18.668 L 3.678 18.668 L 0 14.947 L 0 9.31 L 5.19 9.31 C 4.593 10.133 4.235 11.285 4.235 11.285 C 4.186 11.869 5.002 11.383 5.002 11.383 C 5.002 11.383 5.083 11.236 5.11 11.187 C 5.399 10.7 6.183 10.652 6.183 10.652 C 6.57 10.746 7.09 10.225 7.09 10.225 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(SVG,{className:\"framer-c4r1ef\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 18.963 29.948\" overflow=\"visible\"><path d=\"M 10.213 0.55 C 10.243 0.576 10.344 0.653 10.648 0.722 C 10.817 0.76 10.927 0.917 10.93 1.104 C 10.93 1.131 10.927 1.161 10.924 1.19 C 10.893 1.378 10.75 1.667 10.503 1.739 C 10.519 1.75 10.631 1.837 10.631 1.837 C 11.053 2.166 11.398 2.785 11.044 2.903 C 11.524 3.23 11.683 3.569 11.688 3.701 C 11.702 3.999 11.526 4.068 11.495 4.112 C 11.774 4.247 12.082 4.516 12.216 4.908 L 12.252 5.014 L 12.214 5.118 C 12.144 5.314 11.86 5.637 11.243 5.59 L 11.206 5.585 L 11.17 5.575 C 10.984 5.517 10.794 5.493 10.718 5.561 C 10.699 5.579 10.674 5.608 10.674 5.671 C 10.674 5.695 10.702 5.732 10.704 5.759 C 10.714 5.778 10.737 5.814 10.776 5.861 L 13.131 5.861 L 13.131 7.065 C 13.558 7.313 13.878 7.58 13.935 7.841 C 13.942 7.872 13.947 7.905 13.948 7.938 C 13.948 8.063 13.899 8.185 13.804 8.281 C 13.699 8.387 13.585 8.422 13.131 8.381 L 13.131 8.813 C 13.15 8.829 13.167 8.844 13.186 8.863 L 18.962 8.863 L 18.962 3.938 L 15.132 0 L 10.169 0 C 10.167 0.012 10.164 0.025 10.162 0.037 C 10.215 0.117 10.291 0.54 10.213 0.55 Z M 7.104 16.942 L 7.133 16.91 L 7.167 16.885 C 7.251 16.829 7.325 16.763 7.392 16.698 C 7.383 16.701 7.375 16.705 7.366 16.708 C 4.867 17.734 4.552 17.536 4.433 17.462 C 4.329 17.4 4.262 17.29 4.255 17.168 C 4.255 17.159 4.253 17.15 4.253 17.142 C 4.251 16.801 4.628 16.702 4.881 16.638 C 4.778 16.556 4.688 16.427 4.685 16.275 C 4.684 16.251 4.687 16.226 4.69 16.201 C 4.711 16.078 4.801 15.916 5.086 15.832 C 5.245 15.76 5.412 15.669 5.446 15.616 C 5.45 15.609 5.489 15.552 5.489 15.552 L 5.521 15.519 C 5.565 15.475 5.941 15.076 6.312 15.229 C 6.416 15.229 6.504 15.196 6.55 15.165 C 6.56 15.117 6.589 14.933 6.589 14.933 L 7.399 14.933 C 7.453 14.722 7.485 14.512 7.483 14.378 C 7.483 14.368 7.481 14.365 7.479 14.354 C 7.372 14.326 7.263 14.301 7.263 14.301 L 7.167 14.268 L 7.104 14.203 C 7.083 14.182 7.055 14.152 6.96 14.233 L 6.883 14.3 L 5.329 14.43 L 5.278 14.149 C 5.244 13.956 5.262 13.295 6.948 12.869 C 7.071 12.825 7.396 12.66 7.476 12.394 L 7.493 12.334 L 6.182 12.334 L 6.182 11.683 C 5.578 11.806 5.027 11.898 4.856 11.871 L 4.741 11.85 L 4.667 11.762 C 4.539 11.604 4.468 11.409 4.463 11.207 C 4.463 11.144 4.47 11.077 4.487 11.007 C 4.568 10.656 4.864 10.371 5.369 10.15 C 5.598 10.053 5.951 9.86 6.182 9.657 L 6.182 8.975 C 5.959 9.028 5.754 9.032 5.599 8.954 L 5.555 8.931 L 5.518 8.896 C 5.508 8.89 5.379 8.758 5.376 8.534 C 5.375 8.374 5.445 8.167 5.665 7.926 C 5.718 7.813 5.874 7.509 6.181 7.202 L 6.181 5.861 L 8.578 5.861 C 8.67 5.729 8.729 5.575 8.725 5.397 C 8.725 5.392 8.725 5.386 8.724 5.378 C 8.577 5.392 8.31 5.453 7.88 5.71 L 7.767 5.779 L 7.639 5.746 C 7.489 5.708 6.991 5.545 6.958 5.139 C 6.956 5.127 6.955 5.116 6.955 5.104 C 6.953 4.777 7.262 4.511 7.553 4.366 C 7.553 4.366 7.55 4.365 7.55 4.363 C 7.504 4.309 7.434 4.082 7.443 4.045 C 7.456 3.651 7.934 3.35 8.358 3.026 C 8.377 3.008 8.396 2.986 8.416 2.967 C 8.357 2.931 8.308 2.88 8.274 2.82 C 8.241 2.762 8.223 2.697 8.223 2.631 C 8.219 2.387 8.196 2.029 8.746 1.655 C 8.72 1.62 8.66 1.534 8.66 1.534 C 8.628 1.488 8.507 1.191 8.505 0.976 C 8.504 0.896 8.522 0.815 8.563 0.733 C 8.63 0.603 8.686 0.451 9.035 0.442 L 9.124 0.442 C 9.133 0.441 9.251 0.189 9.335 0.026 C 9.332 0.017 9.332 0.009 9.33 0.002 L 3.945 0.002 L 0 3.94 L 0 14.754 L 3.356 18.113 L 5.069 18.113 C 5.206 17.855 5.561 17.462 6.476 17.308 C 6.487 17.305 6.886 17.201 7.104 16.942 Z M 4.858 23.119 L 4.712 23.378 L 4.638 23.422 C 4.446 23.538 3.96 23.784 3.631 23.578 C 3.541 23.52 3.397 23.387 3.392 23.112 C 3.392 23.085 3.394 23.059 3.396 23.03 L 3.398 22.997 L 3.408 22.964 C 3.444 22.847 3.634 22.265 3.953 21.645 L 0.006 21.645 L 0.006 26.533 L 3.369 29.948 L 5.154 29.948 L 5.368 29.502 C 5.398 29.444 5.673 28.905 6.219 28.784 L 6.46 28.738 C 6.574 28.72 6.574 28.72 6.87 28.532 C 6.96 28.476 7.054 28.321 7.132 28.131 C 7.285 27.758 7.443 27.344 8.016 27.102 C 8.194 27.026 8.248 26.992 8.398 26.953 C 8.495 26.928 8.62 26.877 8.657 26.856 C 8.699 26.829 8.809 26.761 8.889 26.16 C 8.909 26.004 8.939 25.634 8.948 25.182 L 8.958 24.638 L 8.959 24.607 C 8.956 24.61 8.929 24.646 8.929 24.646 L 8.939 24.297 L 6.476 24.297 L 6.476 22.477 C 6.26 22.629 5.965 22.777 5.668 22.741 C 5.489 22.749 5.019 22.842 4.858 23.119 Z M 14.41 29.54 L 14.457 29.947 L 15.61 29.947 L 18.963 26.587 L 18.963 15.622 L 15.517 12.339 L 12.135 12.339 C 12.227 12.399 12.322 12.456 12.425 12.501 C 13.09 12.797 13.474 13.281 13.494 13.586 L 13.494 13.608 C 13.496 13.735 13.434 13.89 13.251 13.976 C 13.126 14.036 12.659 14.112 12.423 14.01 C 12.207 13.987 11.835 13.95 11.433 13.915 C 11.632 14.316 11.964 14.526 12.533 14.862 L 12.993 15.139 C 13.649 15.195 14.423 15.354 14.556 15.8 C 14.567 15.84 14.576 15.888 14.576 15.935 C 14.578 16.086 14.508 16.276 14.254 16.47 C 14.078 16.611 13.889 16.796 13.859 16.863 C 13.852 16.885 13.828 16.96 13.828 16.96 L 13.749 17.022 C 13.547 17.173 13.057 17.352 12.605 16.984 C 12.201 16.721 11.722 16.512 11.538 16.511 C 11.534 16.531 11.527 16.553 11.527 16.553 L 11.497 16.598 C 11.478 16.635 11.469 16.676 11.471 16.718 C 11.473 16.907 11.625 17.243 12.191 17.678 C 12.256 17.715 12.845 18.066 13.37 17.991 L 13.418 17.983 L 13.469 17.993 C 13.577 18.012 14.118 18.131 14.222 18.554 C 14.289 18.832 14.141 19.12 13.784 19.402 C 13.772 19.416 13.758 19.43 13.749 19.447 C 13.776 19.461 13.821 19.477 13.892 19.498 C 14.095 19.542 15.332 19.894 15.635 22.039 C 15.678 22.212 15.661 22.447 15.477 22.595 C 15.175 22.837 14.711 22.626 14.342 22.413 L 14.322 22.402 L 14.303 22.385 C 14.044 22.182 13.77 21.997 13.484 21.832 L 13.484 24.294 L 10.849 24.294 L 10.887 25.392 L 10.887 25.408 C 10.887 25.412 10.837 25.583 10.919 25.992 C 11.066 26.71 11.301 27.277 11.561 27.41 C 12.241 27.755 12.455 27.928 12.625 28.128 C 12.761 28.289 12.841 28.385 13.24 28.515 C 14.17 28.825 14.364 29.105 14.41 29.54 Z\" fill=\"rgb(158, 161, 174)\"></path></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-epl9m4\",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.799 8.863\" overflow=\"visible\"><path d=\"M 0.051 0.55 C 0.081 0.576 0.181 0.653 0.486 0.722 C 0.655 0.76 0.765 0.917 0.768 1.104 C 0.768 1.131 0.765 1.161 0.762 1.19 C 0.731 1.378 0.587 1.667 0.34 1.739 C 0.356 1.75 0.469 1.837 0.469 1.837 C 0.891 2.166 1.235 2.785 0.882 2.903 C 1.361 3.23 1.52 3.569 1.526 3.701 C 1.54 3.999 1.364 4.068 1.333 4.112 C 1.612 4.247 1.919 4.516 2.054 4.908 L 2.089 5.014 L 2.052 5.118 C 1.982 5.314 1.698 5.637 1.081 5.59 L 1.044 5.585 L 1.008 5.575 C 0.822 5.517 0.632 5.493 0.556 5.561 C 0.536 5.579 0.512 5.608 0.512 5.671 C 0.512 5.695 0.539 5.732 0.542 5.759 C 0.552 5.778 0.575 5.814 0.613 5.861 L 2.969 5.861 L 2.969 7.065 C 3.396 7.313 3.716 7.58 3.773 7.841 C 3.78 7.872 3.785 7.905 3.786 7.938 C 3.786 8.063 3.737 8.185 3.642 8.281 C 3.537 8.387 3.422 8.422 2.969 8.381 L 2.969 8.813 C 2.988 8.829 3.005 8.844 3.024 8.863 L 8.799 8.863 L 8.799 3.938 L 4.97 0 L 0.007 0 C 0.004 0.012 0.002 0.025 0 0.037 C 0.053 0.117 0.128 0.54 0.051 0.55 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1uhwxub\",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.335 18.111\" overflow=\"visible\"><path d=\"M 7.104 16.94 L 7.133 16.908 L 7.167 16.883 C 7.251 16.827 7.325 16.761 7.392 16.696 C 7.383 16.699 7.375 16.703 7.366 16.706 C 4.867 17.732 4.552 17.534 4.433 17.46 C 4.329 17.398 4.262 17.288 4.255 17.166 C 4.255 17.157 4.253 17.148 4.253 17.14 C 4.251 16.799 4.628 16.7 4.881 16.636 C 4.778 16.554 4.688 16.425 4.685 16.273 C 4.684 16.249 4.687 16.224 4.69 16.199 C 4.711 16.076 4.801 15.914 5.086 15.83 C 5.245 15.758 5.412 15.667 5.446 15.614 C 5.45 15.607 5.489 15.549 5.489 15.549 L 5.521 15.517 C 5.565 15.473 5.941 15.074 6.312 15.227 C 6.416 15.227 6.504 15.194 6.55 15.163 C 6.56 15.115 6.589 14.931 6.589 14.931 L 7.399 14.931 C 7.453 14.72 7.485 14.509 7.483 14.376 C 7.483 14.366 7.481 14.363 7.479 14.352 C 7.372 14.324 7.263 14.299 7.263 14.299 L 7.167 14.266 L 7.104 14.201 C 7.083 14.18 7.055 14.15 6.96 14.231 L 6.883 14.298 L 5.329 14.428 L 5.278 14.147 C 5.244 13.954 5.262 13.293 6.948 12.867 C 7.071 12.823 7.396 12.658 7.476 12.392 L 7.493 12.332 L 6.182 12.332 L 6.182 11.681 C 5.578 11.804 5.027 11.896 4.856 11.869 L 4.741 11.848 L 4.667 11.76 C 4.539 11.602 4.468 11.407 4.463 11.205 C 4.463 11.142 4.47 11.075 4.487 11.005 C 4.568 10.654 4.864 10.369 5.369 10.148 C 5.598 10.051 5.951 9.858 6.182 9.655 L 6.182 8.972 C 5.959 9.025 5.754 9.03 5.599 8.952 L 5.555 8.929 L 5.518 8.894 C 5.508 8.888 5.379 8.755 5.376 8.532 C 5.375 8.372 5.445 8.165 5.665 7.924 C 5.718 7.811 5.874 7.507 6.181 7.2 L 6.181 5.859 L 8.578 5.859 C 8.67 5.727 8.729 5.573 8.725 5.395 C 8.725 5.39 8.725 5.383 8.724 5.376 C 8.577 5.39 8.31 5.451 7.88 5.708 L 7.767 5.777 L 7.639 5.744 C 7.489 5.706 6.991 5.543 6.958 5.136 C 6.956 5.125 6.955 5.114 6.955 5.102 C 6.953 4.775 7.262 4.509 7.553 4.364 C 7.553 4.364 7.55 4.363 7.55 4.361 C 7.504 4.307 7.434 4.08 7.443 4.043 C 7.456 3.649 7.934 3.348 8.358 3.024 C 8.377 3.006 8.396 2.984 8.416 2.965 C 8.357 2.929 8.308 2.878 8.274 2.818 C 8.241 2.76 8.223 2.695 8.223 2.629 C 8.219 2.384 8.196 2.027 8.746 1.653 C 8.72 1.618 8.66 1.532 8.66 1.532 C 8.628 1.486 8.507 1.189 8.505 0.974 C 8.504 0.894 8.522 0.812 8.563 0.731 C 8.63 0.601 8.686 0.449 9.035 0.44 L 9.124 0.44 C 9.133 0.439 9.251 0.187 9.335 0.024 C 9.332 0.015 9.332 0.007 9.33 0 L 3.945 0 L 0 3.938 L 0 14.752 L 3.356 18.111 L 5.069 18.111 C 5.206 17.853 5.561 17.46 6.476 17.306 C 6.487 17.303 6.886 17.199 7.104 16.94 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-7orz59\",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.953 8.303\" overflow=\"visible\"><path d=\"M 4.852 1.474 L 4.706 1.733 L 4.632 1.777 C 4.44 1.892 3.954 2.138 3.625 1.933 C 3.535 1.874 3.391 1.742 3.386 1.467 C 3.386 1.44 3.388 1.413 3.39 1.384 L 3.393 1.352 L 3.403 1.319 C 3.438 1.201 3.629 0.62 3.947 0 L 0 0 L 0 4.888 L 3.363 8.303 L 5.148 8.303 L 5.362 7.857 C 5.392 7.798 5.667 7.259 6.213 7.139 L 6.455 7.093 C 6.568 7.075 6.568 7.075 6.864 6.886 C 6.954 6.831 7.048 6.676 7.126 6.486 C 7.279 6.113 7.437 5.699 8.01 5.456 C 8.189 5.381 8.243 5.347 8.393 5.308 C 8.489 5.283 8.615 5.232 8.652 5.211 C 8.694 5.184 8.803 5.116 8.883 4.515 C 8.904 4.358 8.934 3.988 8.942 3.537 L 8.952 2.992 L 8.953 2.962 C 8.95 2.965 8.923 3.001 8.923 3.001 L 8.933 2.652 L 6.471 2.652 L 6.471 0.832 C 6.255 0.984 5.959 1.132 5.663 1.096 C 5.484 1.103 5.013 1.197 4.852 1.474 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-17evxt5\",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.114 17.609\" overflow=\"visible\"><path d=\"M 3.561 17.201 L 3.608 17.609 L 4.761 17.609 L 8.114 14.248 L 8.114 3.284 L 4.668 0 L 1.286 0 C 1.379 0.06 1.473 0.117 1.576 0.163 C 2.241 0.459 2.625 0.942 2.646 1.247 L 2.646 1.27 C 2.647 1.396 2.585 1.552 2.402 1.638 C 2.277 1.698 1.81 1.773 1.574 1.672 C 1.358 1.649 0.987 1.612 0.584 1.576 C 0.784 1.978 1.115 2.188 1.684 2.524 L 2.144 2.8 C 2.8 2.856 3.574 3.016 3.707 3.461 C 3.718 3.502 3.727 3.549 3.727 3.597 C 3.73 3.748 3.659 3.937 3.405 4.132 C 3.229 4.273 3.041 4.457 3.01 4.524 C 3.003 4.546 2.979 4.622 2.979 4.622 L 2.9 4.684 C 2.698 4.834 2.208 5.013 1.756 4.646 C 1.352 4.382 0.874 4.174 0.689 4.173 C 0.685 4.192 0.679 4.214 0.679 4.214 L 0.648 4.259 C 0.629 4.296 0.62 4.337 0.622 4.379 C 0.625 4.569 0.776 4.904 1.343 5.34 C 1.407 5.376 1.996 5.727 2.521 5.653 L 2.57 5.645 L 2.62 5.654 C 2.728 5.674 3.269 5.792 3.373 6.216 C 3.44 6.493 3.292 6.781 2.935 7.063 C 2.923 7.078 2.91 7.091 2.9 7.108 C 2.927 7.122 2.972 7.139 3.043 7.16 C 3.246 7.203 4.483 7.555 4.786 9.701 C 4.83 9.874 4.812 10.108 4.628 10.256 C 4.326 10.498 3.862 10.287 3.494 10.075 L 3.473 10.064 L 3.454 10.047 C 3.195 9.843 2.921 9.658 2.635 9.494 L 2.635 11.955 L 0 11.955 L 0.038 13.053 L 0.038 13.07 C 0.038 13.074 -0.012 13.244 0.07 13.654 C 0.217 14.372 0.452 14.939 0.712 15.071 C 1.393 15.416 1.606 15.59 1.776 15.789 C 1.912 15.95 1.992 16.046 2.391 16.176 C 3.321 16.486 3.516 16.767 3.561 17.201 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(SVG,{className:\"framer-rzt7o\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 121.684 21.858\" overflow=\"visible\"><path d=\"M 0 12.413 L 0.008 12.402 L 0.008 12.399 Z M 43.491 14.366 C 41.121 15.238 40.845 17.041 40.845 18.059 C 40.845 18.925 41.131 21.751 44.852 21.751 C 46.579 21.751 47.683 20.963 48.288 20.333 C 48.541 21.205 49.299 21.721 50.39 21.721 C 51.65 21.721 52.357 21.089 53.101 20.193 L 53.251 19.999 L 52.799 19.484 L 52.578 19.674 C 52.466 19.769 52.33 19.811 52.129 19.811 C 51.324 19.811 51.169 19.059 51.169 18.088 C 51.169 17.703 51.183 17.07 51.2 16.341 C 51.224 15.282 51.253 13.964 51.253 12.783 C 51.253 11.438 51.209 10.152 50.632 9.223 C 49.858 8.05 48.613 7.505 46.699 7.505 C 43.751 7.505 42.406 9.32 42.069 10.388 L 42.001 10.6 L 42.689 11.012 L 42.837 10.731 C 42.843 10.717 43.605 9.302 45.46 9.302 C 46.722 9.302 47.653 9.911 47.979 10.881 C 48.141 11.388 48.141 11.583 48.141 12.402 L 48.141 12.838 C 46.46 13.363 45.937 13.466 43.491 14.366 Z M 48.144 19.182 C 47.409 19.709 46.568 19.816 45.98 19.816 C 44.196 19.816 43.93 18.569 43.93 17.827 C 43.93 16.877 44.344 16.069 45.129 15.669 C 45.696 15.386 46.316 15.08 48.144 14.531 L 48.144 19.182 Z M 17.594 21.065 C 18.987 21.517 20.342 21.713 22.124 21.713 C 24.117 21.713 28.753 21.176 28.753 16.201 C 28.753 13.264 27.085 12.149 25.314 10.967 L 23.234 9.59 C 21.422 8.394 20.593 7.844 20.593 6.228 C 20.593 5.052 20.948 3.483 23.996 3.483 C 25.292 3.483 26.518 3.745 27.071 4.299 C 27.473 4.705 27.686 5.23 27.736 5.959 L 27.753 6.228 L 28.45 6.228 L 28.428 5.799 C 28.405 5.223 28.416 4.663 28.416 4.021 C 28.416 3.208 28.435 2.459 28.435 2.452 L 28.444 2.207 L 28.197 2.163 C 28.121 2.153 26.302 1.843 23.938 1.843 C 18.184 1.843 17.739 5.708 17.739 6.889 C 17.739 9.308 18.901 10.521 21.183 12.029 L 22.825 13.126 L 23.073 13.296 C 24.628 14.344 25.755 15.104 25.755 16.922 C 25.755 19.051 24.537 20.04 21.919 20.04 C 20.672 20.04 19.327 19.646 18.743 18.985 C 18.363 18.557 18.157 17.947 18.121 17.329 L 18.107 17.041 L 17.296 17.039 L 17.336 17.727 C 17.365 18.151 17.394 18.671 17.394 20.002 L 17.394 20.998 Z M 39.503 9.604 L 39.503 7.904 L 34.83 7.904 L 34.83 4.816 L 34.231 4.816 L 33.922 5.341 C 33.906 5.365 32.994 7.094 31.674 8.117 C 31.301 8.406 30.979 8.643 30.136 8.992 L 29.957 9.066 L 29.957 9.604 L 31.771 9.604 L 31.76 10.561 C 31.736 12.6 31.717 14.36 31.717 16.553 C 31.717 17.349 31.717 18.673 31.934 19.349 C 32.453 21.045 33.632 21.801 35.754 21.801 C 38.249 21.801 39.307 20.421 39.356 20.366 L 39.475 20.234 L 39.235 19.674 L 38.951 19.819 C 38.946 19.827 38.218 20.193 37.271 20.193 C 35.231 20.193 34.831 18.967 34.831 16.81 L 34.831 9.605 L 39.504 9.605 L 39.504 9.604 Z M 64.96 18.078 C 64.928 18.991 64.902 20.045 64.458 20.492 C 64.22 20.728 63.851 20.878 63.319 20.961 L 63.072 20.992 L 63.072 21.628 L 63.389 21.598 C 64.614 21.481 65.491 21.481 66.505 21.481 C 67.394 21.481 68.243 21.529 69.23 21.579 L 69.911 21.614 L 69.911 20.973 L 69.64 20.953 C 69.246 20.928 68.792 20.766 68.578 20.568 C 68.152 20.171 68.064 19.534 68.064 17.268 L 68.064 13.262 C 68.064 12.592 68.018 11.327 67.886 10.807 C 67.426 8.708 65.811 7.554 63.335 7.554 C 61.443 7.554 60.05 8.356 59.357 8.871 L 59.357 7.784 L 59.087 7.625 L 58.929 7.696 C 58.762 7.776 58.292 8.056 57.485 8.183 C 56.429 8.389 55.428 8.444 55.005 8.444 C 54.917 8.444 54.85 8.444 54.796 8.437 L 54.486 8.413 L 54.486 9.197 L 54.744 9.226 C 54.778 9.227 54.817 9.233 54.857 9.234 C 55.189 9.257 55.809 9.3 56.09 9.705 C 56.336 10.071 56.361 10.796 56.361 12.483 L 56.361 16.405 C 56.361 18.745 56.336 19.914 55.911 20.389 C 55.505 20.845 54.924 20.936 54.694 20.956 L 54.431 20.975 L 54.431 21.629 L 54.738 21.598 C 55.968 21.484 56.898 21.484 57.892 21.484 C 58.753 21.484 59.579 21.529 60.529 21.576 L 61.261 21.615 L 61.261 20.974 L 60.992 20.955 C 60.594 20.928 60.147 20.766 59.93 20.568 C 59.507 20.173 59.415 19.535 59.415 17.27 L 59.415 10.062 C 59.992 9.765 60.76 9.485 61.985 9.485 C 63.767 9.485 64.692 10.311 64.898 12.085 C 65.01 13.134 65.01 14.198 65.01 15.224 C 65.01 16.012 65.01 17.091 64.986 17.603 C 64.972 17.771 64.963 17.928 64.96 18.078 Z M 77.227 2.023 C 77.59 1.657 78.18 1.528 78.61 1.528 C 79.645 1.528 80.401 1.983 80.923 3.147 L 80.995 3.319 L 81.324 3.315 L 82.684 1.422 L 82.644 1.132 L 82.537 1.046 C 81.796 0.445 80.526 0 79.188 0 C 76.074 0 74.222 1.437 73.679 4.27 C 73.514 5.122 73.478 6.693 73.475 7.908 C 73.123 8.184 72.642 8.439 71.866 8.759 L 71.687 8.836 L 71.687 9.605 L 73.475 9.605 L 73.475 16.408 C 73.475 18.747 73.455 19.904 73.029 20.379 C 72.624 20.837 72.045 20.928 71.81 20.942 L 71.543 20.966 L 71.543 21.632 L 71.86 21.601 C 73.088 21.486 74.246 21.486 75.263 21.486 C 76.076 21.486 77.199 21.523 78.71 21.601 L 79.015 21.619 L 79.015 20.886 L 78.724 20.886 C 78.381 20.886 77.211 20.844 76.831 20.266 C 76.59 19.911 76.531 19.031 76.531 17.218 L 76.531 9.606 L 79.59 9.606 L 79.59 7.907 L 76.531 7.907 L 76.531 5.254 C 76.531 3.5 76.632 2.613 77.227 2.023 Z M 87.327 21.858 C 92.48 21.858 94.308 17.9 94.308 14.503 C 94.308 10.136 91.805 7.525 87.616 7.525 C 82.462 7.525 80.638 11.486 80.638 14.882 C 80.638 19.25 83.141 21.858 87.327 21.858 Z M 85.557 9.735 C 86.035 9.321 86.69 9.113 87.499 9.113 C 90.876 9.113 91.047 13.726 91.047 14.651 C 91.047 17.045 90.491 18.729 89.39 19.651 C 88.904 20.065 88.248 20.274 87.445 20.274 C 84.064 20.274 83.895 15.66 83.895 14.738 C 83.898 12.343 84.454 10.657 85.557 9.735 Z M 102.12 9.862 C 103.366 9.862 104.01 10.462 104.33 10.965 L 104.417 11.097 L 104.972 11.097 L 106.129 8.983 L 106.129 8.55 L 106.035 8.461 C 105.47 7.956 104.693 7.698 103.737 7.698 C 102.266 7.698 101.221 8.356 100.563 8.975 L 100.563 7.784 L 100.321 7.656 L 100.162 7.728 C 99.93 7.838 99.359 8.01 98.693 8.12 C 97.637 8.327 96.638 8.38 96.212 8.38 C 96.126 8.38 96.038 8.379 95.988 8.373 L 95.693 8.366 L 95.693 9.197 L 95.961 9.225 C 95.989 9.227 96.028 9.232 96.067 9.234 C 96.401 9.257 97.02 9.299 97.3 9.704 C 97.545 10.07 97.564 10.795 97.564 12.483 L 97.564 16.405 C 97.564 18.744 97.548 19.871 97.121 20.346 C 96.721 20.805 96.134 20.897 95.903 20.912 L 95.634 20.933 L 95.634 21.629 L 95.953 21.598 C 97.179 21.484 98.332 21.484 99.355 21.484 C 100.162 21.484 101.289 21.52 102.799 21.598 L 103.104 21.616 L 103.104 20.855 L 102.818 20.855 C 102.47 20.855 101.311 20.81 100.922 20.236 C 100.686 19.881 100.626 19.028 100.626 17.216 L 100.626 10.301 C 101.059 10.004 101.55 9.862 102.12 9.862 Z M 121.311 20.408 C 120.985 20.382 120.388 20.316 120.105 19.906 C 119.862 19.576 119.84 18.54 119.84 16.866 L 119.84 5.681 C 119.84 3.866 119.851 1.451 119.943 0.318 L 119.954 0.184 L 119.72 0.042 L 119.583 0.095 C 119.303 0.198 118.767 0.318 118.225 0.405 C 116.937 0.66 115.352 0.793 115.286 0.793 L 114.996 0.793 L 114.936 1.407 L 115.197 1.432 C 115.228 1.436 115.264 1.438 115.306 1.44 C 115.633 1.466 116.235 1.511 116.513 1.912 C 116.756 2.278 116.78 3.192 116.78 4.902 L 116.78 7.817 C 116.189 7.691 115.203 7.557 114.099 7.557 C 111.088 7.557 108.699 8.983 107.551 11.473 C 107.064 12.547 106.802 13.824 106.802 15.165 C 106.802 19.216 109.238 21.828 113.004 21.828 C 114.809 21.828 116.158 21.043 116.84 20.54 L 116.84 21.699 L 117.207 21.822 L 117.331 21.766 C 117.575 21.655 118.063 21.558 118.731 21.449 C 119.893 21.251 121.089 21.168 121.396 21.168 L 121.684 21.168 L 121.684 20.431 L 121.424 20.42 C 121.386 20.414 121.349 20.41 121.311 20.408 Z M 116.778 19.308 C 115.992 19.797 115.085 19.869 114.602 19.869 L 114.476 19.869 C 110.493 19.869 110.06 16.32 110.06 14.793 C 110.06 11.03 111.366 9.198 114.039 9.198 C 115.722 9.198 116.555 9.897 116.778 10.12 Z\" fill=\"rgb(158, 161, 174)\"></path></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1855xrf\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 1 1\" overflow=\"visible\"><path d=\"M 0 0.014 L 0.008 0.003 L 0.008 0 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-ugltol\",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.406 14.246\" overflow=\"visible\"><path d=\"M 2.646 6.861 C 0.276 7.733 0 9.536 0 10.554 C 0 11.42 0.286 14.246 4.007 14.246 C 5.734 14.246 6.838 13.458 7.443 12.828 C 7.696 13.7 8.455 14.217 9.545 14.217 C 10.805 14.217 11.512 13.584 12.256 12.688 L 12.406 12.494 L 11.954 11.979 L 11.733 12.169 C 11.621 12.264 11.485 12.306 11.284 12.306 C 10.479 12.306 10.324 11.554 10.324 10.583 C 10.324 10.198 10.338 9.565 10.355 8.836 C 10.379 7.777 10.408 6.459 10.408 5.278 C 10.408 3.934 10.364 2.648 9.787 1.718 C 9.013 0.545 7.768 0 5.854 0 C 2.906 0 1.561 1.815 1.224 2.884 L 1.156 3.095 L 1.844 3.507 L 1.992 3.227 C 1.998 3.212 2.76 1.797 4.616 1.797 C 5.877 1.797 6.808 2.406 7.134 3.376 C 7.296 3.883 7.296 4.079 7.296 4.897 L 7.296 5.333 C 5.615 5.858 5.092 5.962 2.646 6.861 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-9qbopg\",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.214 5.285\" overflow=\"visible\"><path d=\"M 4.214 4.651 C 3.479 5.178 2.638 5.285 2.05 5.285 C 0.266 5.285 0 4.038 0 3.296 C 0 2.346 0.414 1.538 1.199 1.138 C 1.766 0.855 2.386 0.549 4.214 0 L 4.214 4.651 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-ppww7y\",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.457 19.87\" overflow=\"visible\"><path d=\"M 0.298 19.222 C 1.691 19.675 3.046 19.87 4.828 19.87 C 6.821 19.87 11.457 19.334 11.457 14.359 C 11.457 11.421 9.789 10.307 8.017 9.125 L 5.938 7.748 C 4.125 6.551 3.297 6.002 3.297 4.386 C 3.297 3.21 3.652 1.64 6.699 1.64 C 7.996 1.64 9.221 1.902 9.775 2.456 C 10.177 2.862 10.39 3.387 10.44 4.116 L 10.457 4.386 L 11.154 4.386 L 11.132 3.956 C 11.109 3.38 11.12 2.821 11.12 2.178 C 11.12 1.366 11.139 0.616 11.139 0.609 L 11.148 0.364 L 10.9 0.32 C 10.825 0.311 9.006 0 6.642 0 C 0.888 0 0.443 3.865 0.443 5.047 C 0.443 7.465 1.605 8.678 3.886 10.187 L 5.528 11.283 L 5.777 11.454 C 7.332 12.501 8.458 13.261 8.458 15.08 C 8.458 17.208 7.24 18.197 4.623 18.197 C 3.375 18.197 2.031 17.803 1.447 17.143 C 1.066 16.714 0.86 16.105 0.825 15.486 L 0.811 15.198 L 0 15.197 L 0.04 15.884 C 0.069 16.309 0.097 16.828 0.097 18.159 L 0.097 19.155 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-vnqzcs\",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.547 16.985\" overflow=\"visible\"><path d=\"M 9.546 4.788 L 9.546 3.088 L 4.873 3.088 L 4.873 0 L 4.274 0 L 3.965 0.525 C 3.949 0.549 3.037 2.278 1.717 3.301 C 1.344 3.59 1.022 3.827 0.179 4.176 L 0 4.25 L 0 4.788 L 1.814 4.788 L 1.803 5.745 C 1.779 7.784 1.76 9.544 1.76 11.737 C 1.76 12.533 1.76 13.857 1.977 14.533 C 2.496 16.229 3.675 16.985 5.797 16.985 C 8.292 16.985 9.35 15.605 9.399 15.55 L 9.518 15.418 L 9.278 14.858 L 8.994 15.003 C 8.989 15.011 8.261 15.377 7.314 15.377 C 5.274 15.377 4.874 14.151 4.874 11.994 L 4.874 4.789 L 9.547 4.789 L 9.547 4.788 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1ebt9ml\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 15.48 14.075\" overflow=\"visible\"><path d=\"M 10.529 10.525 C 10.497 11.437 10.471 12.491 10.027 12.938 C 9.789 13.174 9.42 13.324 8.888 13.407 L 8.641 13.438 L 8.641 14.074 L 8.958 14.044 C 10.183 13.927 11.06 13.927 12.074 13.927 C 12.963 13.927 13.812 13.975 14.799 14.025 L 15.48 14.06 L 15.48 13.419 L 15.209 13.399 C 14.815 13.374 14.361 13.212 14.147 13.014 C 13.721 12.617 13.633 11.98 13.633 9.714 L 13.633 5.709 C 13.633 5.038 13.587 3.773 13.454 3.253 C 12.995 1.155 11.38 0 8.904 0 C 7.012 0 5.619 0.802 4.926 1.317 L 4.926 0.231 L 4.656 0.071 L 4.498 0.142 C 4.331 0.222 3.861 0.502 3.054 0.629 C 1.998 0.835 0.997 0.89 0.574 0.89 C 0.486 0.89 0.419 0.89 0.365 0.883 L 0.055 0.86 L 0.055 1.643 L 0.313 1.672 C 0.347 1.673 0.386 1.679 0.426 1.68 C 0.758 1.703 1.378 1.746 1.659 2.151 C 1.905 2.517 1.93 3.242 1.93 4.929 L 1.93 8.851 C 1.93 11.191 1.905 12.36 1.48 12.835 C 1.074 13.291 0.493 13.382 0.263 13.402 L 0 13.421 L 0 14.075 L 0.307 14.044 C 1.537 13.93 2.467 13.93 3.461 13.93 C 4.322 13.93 5.148 13.975 6.098 14.022 L 6.83 14.061 L 6.83 13.42 L 6.56 13.401 C 6.162 13.374 5.715 13.212 5.499 13.014 C 5.076 12.62 4.984 11.981 4.984 9.716 L 4.984 2.508 C 5.561 2.211 6.329 1.931 7.554 1.931 C 9.336 1.931 10.261 2.757 10.467 4.531 C 10.579 5.58 10.579 6.644 10.579 7.67 C 10.579 8.458 10.579 9.537 10.555 10.049 C 10.541 10.217 10.532 10.374 10.529 10.525 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1n5agzu\",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 21.632\" overflow=\"visible\"><path d=\"M 5.684 2.023 C 6.047 1.657 6.636 1.528 7.066 1.528 C 8.101 1.528 8.857 1.983 9.379 3.147 L 9.452 3.319 L 9.78 3.315 L 11.141 1.422 L 11.1 1.132 L 10.994 1.046 C 10.252 0.445 8.983 0 7.645 0 C 4.531 0 2.679 1.437 2.136 4.27 C 1.971 5.122 1.934 6.693 1.931 7.908 C 1.58 8.184 1.099 8.439 0.322 8.759 L 0.144 8.836 L 0.144 9.605 L 1.931 9.605 L 1.931 16.408 C 1.931 18.747 1.912 19.904 1.486 20.379 C 1.081 20.837 0.501 20.928 0.267 20.942 L 0 20.966 L 0 21.632 L 0.317 21.601 C 1.545 21.486 2.703 21.486 3.72 21.486 C 4.532 21.486 5.655 21.523 7.167 21.601 L 7.471 21.619 L 7.471 20.886 L 7.181 20.886 C 6.837 20.886 5.668 20.844 5.288 20.266 C 5.046 19.911 4.988 19.031 4.988 17.218 L 4.988 9.606 L 8.046 9.606 L 8.046 7.907 L 4.988 7.907 L 4.988 5.254 C 4.988 3.5 5.089 2.613 5.684 2.023 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-g178mq\",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.67 14.333\" overflow=\"visible\"><path d=\"M 6.689 14.333 C 11.842 14.333 13.67 10.374 13.67 6.978 C 13.67 2.61 11.167 0 6.978 0 C 1.824 0 0 3.961 0 7.356 C 0 11.725 2.503 14.333 6.689 14.333 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-12phcs1\",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.152 11.162\" overflow=\"visible\"><path d=\"M 1.662 0.622 C 2.14 0.209 2.795 0 3.604 0 C 6.981 0 7.152 4.613 7.152 5.538 C 7.152 7.932 6.596 9.617 5.495 10.539 C 5.009 10.952 4.353 11.162 3.551 11.162 C 0.169 11.162 0 6.547 0 5.625 C 0.003 3.231 0.559 1.545 1.662 0.622 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-ltlae0\",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.495 13.972\" overflow=\"visible\"><path d=\"M 6.486 2.206 C 7.732 2.206 8.376 2.805 8.696 3.308 L 8.783 3.441 L 9.339 3.441 L 10.495 1.326 L 10.495 0.894 L 10.402 0.805 C 9.836 0.3 9.059 0.042 8.103 0.042 C 6.632 0.042 5.587 0.7 4.929 1.319 L 4.929 0.128 L 4.688 0 L 4.528 0.072 C 4.296 0.182 3.725 0.353 3.059 0.464 C 2.003 0.671 1.004 0.724 0.578 0.724 C 0.492 0.724 0.404 0.723 0.354 0.717 L 0.059 0.709 L 0.059 1.54 L 0.327 1.569 C 0.355 1.57 0.394 1.576 0.433 1.577 C 0.767 1.6 1.386 1.643 1.666 2.048 C 1.911 2.414 1.931 3.139 1.931 4.826 L 1.931 8.748 C 1.931 11.088 1.914 12.215 1.488 12.69 C 1.087 13.148 0.5 13.24 0.27 13.256 L 0 13.277 L 0 13.972 L 0.319 13.942 C 1.545 13.827 2.699 13.827 3.721 13.827 C 4.529 13.827 5.656 13.863 7.166 13.942 L 7.47 13.96 L 7.47 13.199 L 7.184 13.199 C 6.836 13.199 5.677 13.154 5.288 12.58 C 5.052 12.225 4.992 11.372 4.992 9.56 L 4.992 2.645 C 5.425 2.347 5.916 2.206 6.486 2.206 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1thialy\",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.882 21.785\" overflow=\"visible\"><path d=\"M 14.508 20.366 C 14.183 20.34 13.585 20.274 13.303 19.863 C 13.06 19.533 13.038 18.497 13.038 16.824 L 13.038 5.639 C 13.038 3.824 13.049 1.408 13.141 0.276 L 13.152 0.142 L 12.917 0 L 12.781 0.053 C 12.501 0.156 11.965 0.276 11.423 0.363 C 10.135 0.618 8.55 0.751 8.484 0.751 L 8.194 0.751 L 8.134 1.365 L 8.395 1.39 C 8.425 1.393 8.462 1.396 8.504 1.397 C 8.831 1.423 9.433 1.469 9.711 1.87 C 9.954 2.235 9.977 3.15 9.977 4.86 L 9.977 7.775 C 9.387 7.649 8.4 7.515 7.297 7.515 C 4.285 7.515 1.897 8.941 0.749 11.431 C 0.261 12.505 0 13.782 0 15.123 C 0 19.173 2.436 21.785 6.202 21.785 C 8.006 21.785 9.356 21 10.037 20.498 L 10.037 21.657 L 10.405 21.78 L 10.529 21.724 C 10.772 21.612 11.261 21.516 11.929 21.407 C 13.091 21.209 14.286 21.126 14.594 21.126 L 14.882 21.126 L 14.882 20.388 L 14.622 20.377 C 14.584 20.372 14.546 20.368 14.508 20.366 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-itj2ow\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 6.719 10.671\" overflow=\"visible\"><path d=\"M 6.719 10.109 C 5.932 10.598 5.025 10.671 4.542 10.671 L 4.417 10.671 C 0.433 10.671 0 7.121 0 5.595 C 0 1.832 1.306 0 3.979 0 C 5.663 0 6.495 0.698 6.719 0.921 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true})]})]})})],speed:20,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-25982k\",\"data-framer-name\":\"feaures\",id:elementId1,ref:ref2,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-gp0wnv\",\"data-framer-name\":\"text block\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-197e47g\",\"data-styles-preset\":\"tJvmL6S04\",style:{\"--framer-text-alignment\":\"center\"},children:\"Get the most out of every meeting\"})}),className:\"framer-1ju1afb\",\"data-framer-name\":\"Get the most out of every meeting\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-qyvqt2\",\"data-framer-name\":\"all features\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-kundsv\",\"data-framer-name\":\"feature-1\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1bywews\",\"data-framer-name\":\"feature-card\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1v6iqpc\",\"data-framer-name\":\"text\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-jl3umd\",\"data-framer-name\":\"Copy\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1oypumx\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-12lj5ox\",\"data-styles-preset\":\"YckFIlg3V\",children:\"Meticulous, organized notes\"})}),className:\"framer-tfy5x2\",\"data-framer-name\":\"AI-written notes for all your meets\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-me6stv\",\"data-styles-preset\":\"H07kZ5lQF\",children:\"Notes perfectionists would be proud of. Written for you automatically.\"})}),className:\"framer-1rn7hti\",\"data-framer-name\":\"AI-written notes for all your meets\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aIyxiFhHf:{y:(componentViewport?.y||0)+0+1460+40+101.6+0+0+0+0+0+0+24+0+0+244}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:56,width:\"200px\",children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation,className:\"framer-t78646-container\",\"data-framer-appear-id\":\"t78646\",initial:animation1,nodeId:\"Bd7hk8MF7\",optimized:true,rendersWithMotion:true,scopeId:\"i9mMX8Wmo\",children:/*#__PURE__*/_jsx(MainCTAButton,{bbKZuZ0Ha:UserComponent,height:\"100%\",id:\"Bd7hk8MF7\",layoutId:\"Bd7hk8MF7\",rVURAfZyC:\"Start for free\",style:{width:\"100%\"},variant:\"g4koXkRah\",width:\"100%\",YSuhtGh7m:\"https://app.circleback.ai/\"})})})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-l4un23\",\"data-framer-name\":\"visual_1\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aIyxiFhHf:{y:(componentViewport?.y||0)+0+1460+40+101.6+0+0+0+0+0+348+14+-6}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:365,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aIyxiFhHf:{style:{scale:.75}},dKmIpojSc:{style:{scale:1.07}}},children:/*#__PURE__*/_jsx(Container,{className:\"framer-nlci3k-container\",nodeId:\"EpSmnzRSS\",rendersWithMotion:true,scopeId:\"i9mMX8Wmo\",children:/*#__PURE__*/_jsx(Feature1,{height:\"100%\",id:\"EpSmnzRSS\",layoutId:\"EpSmnzRSS\",variant:\"hcw1S83su\",width:\"100%\"})})})})})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ez0yb5\",\"data-framer-name\":\"feature-2\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-agida6\",\"data-framer-name\":\"visual\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aIyxiFhHf:{y:(componentViewport?.y||0)+0+1460+40+101.6+0+716+0+348+14+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:128,width:\"414px\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aIyxiFhHf:{style:{scale:.65}}},children:/*#__PURE__*/_jsx(Container,{className:\"framer-1wup6lp-container\",isModuleExternal:true,nodeId:\"R5XK25FOK\",rendersWithMotion:true,scopeId:\"i9mMX8Wmo\",children:/*#__PURE__*/_jsx(Visual_22,{height:\"100%\",id:\"R5XK25FOK\",layoutId:\"R5XK25FOK\",style:{width:\"100%\"},variant:\"g8wthetN9\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-eo8vl8\",\"data-framer-name\":\"text\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ywqyst\",\"data-framer-name\":\"Copy\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1shyjib\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-12lj5ox\",\"data-styles-preset\":\"YckFIlg3V\",children:\"Accurate, assigned action items\"})}),className:\"framer-1ec28xc\",\"data-framer-name\":\"AI-written notes for all your meets\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-me6stv\",\"data-styles-preset\":\"H07kZ5lQF\",children:[\"Never miss a follow-up again.\",/*#__PURE__*/_jsx(\"br\",{}),\"Post-meeting to-dos automatically assigned and neatly organized for you.\"]})}),className:\"framer-qxs19u\",\"data-framer-name\":\"AI-written notes for all your meets\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aIyxiFhHf:{y:(componentViewport?.y||0)+0+1460+40+101.6+0+716+0+0+24+0+0+244}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:56,width:\"200px\",children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation,className:\"framer-17itcqa-container\",\"data-framer-appear-id\":\"17itcqa\",initial:animation1,nodeId:\"jjY9Y_Pwa\",optimized:true,rendersWithMotion:true,scopeId:\"i9mMX8Wmo\",children:/*#__PURE__*/_jsx(MainCTAButton,{bbKZuZ0Ha:UserComponent,height:\"100%\",id:\"jjY9Y_Pwa\",layoutId:\"jjY9Y_Pwa\",rVURAfZyC:\"Start for free\",style:{width:\"100%\"},variant:\"g4koXkRah\",width:\"100%\",YSuhtGh7m:\"https://app.circleback.ai/\"})})})})]})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1oejmgp\",\"data-framer-name\":\"feature-3\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1l6qt40\",\"data-framer-name\":\"text\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1md2yc\",\"data-framer-name\":\"Copy\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-11x0pzo\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h3\",{className:\"framer-styles-preset-12lj5ox\",\"data-styles-preset\":\"YckFIlg3V\",children:[\"Automate your\",/*#__PURE__*/_jsx(\"br\",{}),\"post-meeting work\"]})}),className:\"framer-1mnac0u\",\"data-framer-name\":\"AI-written notes for all your meets\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-me6stv\",\"data-styles-preset\":\"H07kZ5lQF\",children:\"Easily keep your apps in sync and save hours. Catch specific meeting insights you want with AI, and see them neatly organized in one place.\"})}),className:\"framer-11hxepd\",\"data-framer-name\":\"AI-written notes for all your meets\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aIyxiFhHf:{y:(componentViewport?.y||0)+0+1460+40+101.6+0+1432+0+0+24+0+0+244}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:56,width:\"200px\",children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation,className:\"framer-m119ew-container\",\"data-framer-appear-id\":\"m119ew\",initial:animation1,nodeId:\"PggBhz7au\",optimized:true,rendersWithMotion:true,scopeId:\"i9mMX8Wmo\",children:/*#__PURE__*/_jsx(MainCTAButton,{bbKZuZ0Ha:UserComponent,height:\"100%\",id:\"PggBhz7au\",layoutId:\"PggBhz7au\",rVURAfZyC:\"Start for free\",style:{width:\"100%\"},variant:\"g4koXkRah\",width:\"100%\",YSuhtGh7m:\"https://app.circleback.ai/\"})})})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-kqfjnn\",\"data-framer-name\":\"visual\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aIyxiFhHf:{y:(componentViewport?.y||0)+0+1460+40+101.6+0+1432+0+348+14+-5.5}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:364,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aIyxiFhHf:{style:{scale:.75}}},children:/*#__PURE__*/_jsx(Container,{className:\"framer-99etyo-container\",nodeId:\"Eb0DkBBRE\",rendersWithMotion:true,scopeId:\"i9mMX8Wmo\",children:/*#__PURE__*/_jsx(Visual3,{height:\"100%\",id:\"Eb0DkBBRE\",layoutId:\"Eb0DkBBRE\",variant:\"g4fzpzvai\",width:\"100%\"})})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ieg5bq\",\"data-framer-name\":\"feature-4\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1444m0w\",\"data-framer-name\":\"visual_4\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aIyxiFhHf:{height:547,width:\"521px\",y:(componentViewport?.y||0)+0+1460+40+101.6+0+2148+0+348+14+-97}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:374,width:\"505px\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aIyxiFhHf:{style:{scale:.65}},dKmIpojSc:{style:{scale:1.1}}},children:/*#__PURE__*/_jsx(Container,{className:\"framer-11f1eps-container\",isModuleExternal:true,nodeId:\"mi7k1VNqO\",rendersWithMotion:true,scopeId:\"i9mMX8Wmo\",children:/*#__PURE__*/_jsx(Visual_4,{height:\"100%\",id:\"mi7k1VNqO\",layoutId:\"mi7k1VNqO\",style:{height:\"100%\",width:\"100%\"},variant:\"VjenID3ZC\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-142web0\",\"data-framer-name\":\"text\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1txw7sm\",\"data-framer-name\":\"Copy\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-uvydrd\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h3\",{className:\"framer-styles-preset-12lj5ox\",\"data-styles-preset\":\"YckFIlg3V\",children:[\"Find key moments,\",/*#__PURE__*/_jsx(\"br\",{}),\"instantly\"]})}),className:\"framer-1gi4m45\",\"data-framer-name\":\"AI-written notes for all your meets\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-me6stv\",\"data-styles-preset\":\"H07kZ5lQF\",children:\"Find any moment from any meeting with AI-powered search that goes well beyond the usual \u2318F.\"})}),className:\"framer-1mlbawv\",\"data-framer-name\":\"AI-written notes for all your meets\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aIyxiFhHf:{y:(componentViewport?.y||0)+0+1460+40+101.6+0+2148+0+0+24+0+0+244}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:56,width:\"200px\",children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation,className:\"framer-1ldqbvp-container\",\"data-framer-appear-id\":\"1ldqbvp\",initial:animation1,nodeId:\"bhaNETfFo\",optimized:true,rendersWithMotion:true,scopeId:\"i9mMX8Wmo\",children:/*#__PURE__*/_jsx(MainCTAButton,{bbKZuZ0Ha:UserComponent,height:\"100%\",id:\"bhaNETfFo\",layoutId:\"bhaNETfFo\",rVURAfZyC:\"Start for free\",style:{width:\"100%\"},variant:\"g4koXkRah\",width:\"100%\",YSuhtGh7m:\"https://app.circleback.ai/\"})})})})]})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-rjvn60\",\"data-framer-name\":\"feature-5\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-kxf9cx\",\"data-framer-name\":\"text\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-15mfukc\",\"data-framer-name\":\"Copy\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-qfx47p\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-12lj5ox\",\"data-styles-preset\":\"YckFIlg3V\",children:\"State-of-the-art transcription accuracy\"})}),className:\"framer-dkibgw\",\"data-framer-name\":\"AI-written notes for all your meets\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-me6stv\",\"data-styles-preset\":\"H07kZ5lQF\",children:[\"Technical term and accent accuracy, and each speaker is automatically identified by name. \",/*#__PURE__*/_jsx(Link,{href:\"https://support.circleback.ai/en/articles/10493546-meeting-languages\",motionChild:true,nodeId:\"waISP3vdI\",openInNewTab:true,relValues:[],scopeId:\"i9mMX8Wmo\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-jnawql\",\"data-styles-preset\":\"WDxYu2sRT\",children:\"Over 100 languages supported\"})}),\".\"]})}),className:\"framer-lynixg\",\"data-framer-name\":\"AI-written notes for all your meets\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aIyxiFhHf:{y:(componentViewport?.y||0)+0+1460+40+101.6+0+2864+0+0+24+0+0+244}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:56,width:\"200px\",children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation,className:\"framer-cxnsu3-container\",\"data-framer-appear-id\":\"cxnsu3\",initial:animation1,nodeId:\"zH5KBH_iB\",optimized:true,rendersWithMotion:true,scopeId:\"i9mMX8Wmo\",children:/*#__PURE__*/_jsx(MainCTAButton,{bbKZuZ0Ha:UserComponent,height:\"100%\",id:\"zH5KBH_iB\",layoutId:\"zH5KBH_iB\",rVURAfZyC:\"Start for free\",style:{width:\"100%\"},variant:\"g4koXkRah\",width:\"100%\",YSuhtGh7m:\"https://app.circleback.ai/\"})})})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-xrindq\",\"data-framer-name\":\"languages\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aIyxiFhHf:{y:(componentViewport?.y||0)+0+1460+40+101.6+0+2864+0+348+-7.166}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:406,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aIyxiFhHf:{style:{scale:.65}}},children:/*#__PURE__*/_jsx(Container,{className:\"framer-a35ioz-container\",nodeId:\"GiaNoipdq\",rendersWithMotion:true,scopeId:\"i9mMX8Wmo\",style:{scale:.9},transformTemplate:transformTemplate2,children:/*#__PURE__*/_jsx(Visual_5,{height:\"100%\",id:\"GiaNoipdq\",layoutId:\"GiaNoipdq\",variant:\"DuvUl7lTN\",width:\"100%\"})})})})})})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-86boof\",\"data-framer-name\":\"how it works\",id:elementId2,ref:ref3,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-wax3zq\",\"data-framer-name\":\"text block\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aIyxiFhHf:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-12lj5ox\",\"data-styles-preset\":\"YckFIlg3V\",style:{\"--framer-text-alignment\":\"center\"},children:\"Easy to start, simple to use\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-197e47g\",\"data-styles-preset\":\"tJvmL6S04\",style:{\"--framer-text-alignment\":\"center\"},children:\"Easy to start, simple to use\"})}),className:\"framer-1mgt8qa\",\"data-framer-name\":\"How it works\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aIyxiFhHf:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNTAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.2px\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgba(26, 23, 59, 0.7)\"},children:\"Get started in two minutes. Add powerful automations to help you get more done.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNTAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.2px\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgba(26, 23, 59, 0.7)\"},children:\"Get started in two minutes. Add powerful automations to help you get more done.\"})}),className:\"framer-19jpi8g\",\"data-framer-name\":\"Circleback records and transcribes your meetings, both online and in person, then provides you with key takeaways and detailed summaries after each one.\",fonts:[\"GF;Plus Jakarta Sans-500\"],verticalAlignment:\"center\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1xj728r\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-j1g1jy\",\"data-framer-name\":\"1\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1jrsht8\",\"data-framer-name\":\"number\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"29.29px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.59px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(66, 98, 255)\"},children:\"1\"})}),className:\"framer-1qpd3o4\",\"data-framer-name\":\"1\",fonts:[\"Inter-Medium\"],transformTemplate:transformTemplate2,verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-18c9sr0\",\"data-framer-name\":\"Frame 2147223862\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-tp7cml\",\"data-framer-name\":\"Frame 2147223824\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aIyxiFhHf:{y:(componentViewport?.y||0)+0+5189.6+60+284+0+0+0+0+8+35+0},dKmIpojSc:{width:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:209,width:\"306px\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aIyxiFhHf:{style:{scale:.9}}},children:/*#__PURE__*/_jsx(Container,{className:\"framer-17bwk3m-container\",nodeId:\"V35Ff0CkT\",rendersWithMotion:true,scopeId:\"i9mMX8Wmo\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dKmIpojSc:{style:{height:\"100%\"}}},children:/*#__PURE__*/_jsx(Visual_7,{height:\"100%\",id:\"V35Ff0CkT\",layoutId:\"V35Ff0CkT\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-11dbglp\",\"data-framer-name\":\"Frame 2147223823\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aIyxiFhHf:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNzAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-68d38960-ebb8-4b27-9f42-0786670e4b4d, rgb(17, 20, 26))\"},children:\"Connect your calendar\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNzAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-68d38960-ebb8-4b27-9f42-0786670e4b4d, rgb(17, 20, 26))\"},children:\"Connect your calendar\"})}),className:\"framer-an73dt\",\"data-framer-name\":\"Connect your calendar\",fonts:[\"GF;Plus Jakarta Sans-700\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aIyxiFhHf:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNTAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.2px\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgba(26, 23, 59, 0.7)\"},children:\"Or just hit record if you're in-person.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNTAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.2px\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgba(26, 23, 59, 0.7)\"},children:\"Or just hit record if you're in-person.\"})}),className:\"framer-duwsw8\",\"data-framer-name\":\"You can also add Circleback to a meeting with a link, hit record on your phone or laptop, or import a recording.\",fonts:[\"GF;Plus Jakarta Sans-500\"],verticalAlignment:\"center\",withExternalLayout:true})})]})]})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-p3t5wl\",\"data-framer-name\":\"2\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-hhebtf\",\"data-framer-name\":\"number\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"29.29px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.59px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(66, 98, 255)\"},children:\"2\"})}),className:\"framer-o0twfb\",\"data-framer-name\":\"2\",fonts:[\"Inter-Medium\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1iedcs9\",\"data-framer-name\":\"Frame 2147223825\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-17neish\",\"data-framer-name\":\"Frame 2147223824\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aIyxiFhHf:{y:(componentViewport?.y||0)+0+5189.6+60+284+0+608+0+0+8+40+0},dKmIpojSc:{width:\"636px\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:209,width:\"300px\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aIyxiFhHf:{style:{scale:.9}}},children:/*#__PURE__*/_jsx(Container,{className:\"framer-xd279c-container\",nodeId:\"GsJWzvmor\",rendersWithMotion:true,scopeId:\"i9mMX8Wmo\",style:{scale:1.1},children:/*#__PURE__*/_jsx(Visual_8,{height:\"100%\",id:\"GsJWzvmor\",layoutId:\"GsJWzvmor\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-o6ppww\",\"data-framer-name\":\"Frame 2147223823\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aIyxiFhHf:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNzAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-68d38960-ebb8-4b27-9f42-0786670e4b4d, rgb(17, 20, 26))\"},children:\"Focus on your meeting\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNzAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-68d38960-ebb8-4b27-9f42-0786670e4b4d, rgb(17, 20, 26))\"},children:\"Focus on your meeting\"})}),className:\"framer-tn29q1\",\"data-framer-name\":\"Focus on the meeting\",fonts:[\"GF;Plus Jakarta Sans-700\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aIyxiFhHf:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNTAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.2px\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgba(26, 23, 59, 0.7)\"},children:\"Be fully present in your conversations.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNTAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.2px\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgba(26, 23, 59, 0.7)\"},children:\"Be fully present in your conversations.\"})}),className:\"framer-1ajpecc\",\"data-framer-name\":\"Be more present and have better conversations.\",fonts:[\"GF;Plus Jakarta Sans-500\"],verticalAlignment:\"center\",withExternalLayout:true})})]})]})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-927l8y\",\"data-framer-name\":\"3\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-fc7ibt\",\"data-framer-name\":\"number\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"29.29px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.59px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(66, 98, 255)\"},children:\"3\"})}),className:\"framer-jg9tkc\",\"data-framer-name\":\"3\",fonts:[\"Inter-Medium\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1b2nbue\",\"data-framer-name\":\"Frame 2147223825\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1xszgko\",\"data-framer-name\":\"Frame 2147223824\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aIyxiFhHf:{y:(componentViewport?.y||0)+0+5189.6+60+284+0+1221+0+0+8+24+0},dKmIpojSc:{width:\"620px\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:209,width:\"300px\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aIyxiFhHf:{style:{scale:.9}}},children:/*#__PURE__*/_jsx(Container,{className:\"framer-1x0zckl-container\",isModuleExternal:true,nodeId:\"NbzHlrM1G\",rendersWithMotion:true,scopeId:\"i9mMX8Wmo\",children:/*#__PURE__*/_jsx(Visual_9,{height:\"100%\",id:\"NbzHlrM1G\",layoutId:\"NbzHlrM1G\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-z0d4so\",\"data-framer-name\":\"Frame 2147223823\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aIyxiFhHf:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNzAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-68d38960-ebb8-4b27-9f42-0786670e4b4d, rgb(17, 20, 26))\"},children:\"Review your notes\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNzAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-68d38960-ebb8-4b27-9f42-0786670e4b4d, rgb(17, 20, 26))\"},children:\"Review your notes\"})}),className:\"framer-o63a2x\",\"data-framer-name\":\"Focus on the meeting\",fonts:[\"GF;Plus Jakarta Sans-700\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aIyxiFhHf:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNTAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.2px\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgba(26, 23, 59, 0.7)\"},children:\"Ask questions or write a follow-up email with the meeting assistant.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNTAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.2px\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgba(26, 23, 59, 0.7)\"},children:\"Ask questions or write a follow-up email with the meeting assistant.\"})}),className:\"framer-1atgqmq\",\"data-framer-name\":\"Be more present and have better conversations.\",fonts:[\"GF;Plus Jakarta Sans-500\"],verticalAlignment:\"center\",withExternalLayout:true})})]})]})})]})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-xs7wm6\",\"data-framer-name\":\"security\",id:elementId3,ref:ref4,children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-w1ekq\",\"data-framer-name\":\"feature-1\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ou7682\",\"data-framer-name\":\"feature-card\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-16444l5\",\"data-framer-name\":\"text\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-12lj5ox\",\"data-styles-preset\":\"YckFIlg3V\",style:{\"--framer-text-alignment\":\"center\"},children:\"Private and secure\"})}),className:\"framer-1ez2hnc\",\"data-framer-name\":\"AI-written notes for all your meets\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aIyxiFhHf:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNjAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"190%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(9, 34, 71)\"},children:\"Industry-leading security to keep your data private and secure.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNjAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"190%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(9, 34, 71)\"},children:\"Industry-leading security to keep your data private and secure.\"})}),className:\"framer-11di8ct\",\"data-framer-name\":\"AI-written notes for all your meets\",fonts:[\"GF;Plus Jakarta Sans-600\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1x46wux\",children:[/*#__PURE__*/_jsx(Link,{href:\"https://security.circleback.ai\",motionChild:true,nodeId:\"ueOhpH88u\",openInNewTab:true,scopeId:\"i9mMX8Wmo\",children:/*#__PURE__*/_jsxs(MotionAWithOptimizedAppearEffect,{animate:animation2,className:\"framer-4m221 framer-e5sn1r\",\"data-border\":true,\"data-framer-appear-id\":\"4m221\",\"data-framer-name\":\"Frame 31\",initial:animation3,optimized:true,style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aIyxiFhHf:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1463,intrinsicWidth:1463,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+7295.6+56+8+0+0+279.5+0+0+8),pixelHeight:1463,pixelWidth:1463,sizes:\"30px\",src:\"https://framerusercontent.com/images/uigIvhD021sT1yOfbtCkL5KJeFk.png\",srcSet:\"https://framerusercontent.com/images/uigIvhD021sT1yOfbtCkL5KJeFk.png?scale-down-to=512 512w,https://framerusercontent.com/images/uigIvhD021sT1yOfbtCkL5KJeFk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/uigIvhD021sT1yOfbtCkL5KJeFk.png 1463w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1463,intrinsicWidth:1463,pixelHeight:1463,pixelWidth:1463,sizes:\"30px\",src:\"https://framerusercontent.com/images/uigIvhD021sT1yOfbtCkL5KJeFk.png\",srcSet:\"https://framerusercontent.com/images/uigIvhD021sT1yOfbtCkL5KJeFk.png?scale-down-to=512 512w,https://framerusercontent.com/images/uigIvhD021sT1yOfbtCkL5KJeFk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/uigIvhD021sT1yOfbtCkL5KJeFk.png 1463w\"},className:\"framer-1631a1z\",\"data-framer-name\":\"image\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7UGx1cyBKYWthcnRhIFNhbnMtYm9sZA==\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"SOC 2 Type II\"})}),className:\"framer-pfebn3\",\"data-framer-name\":\"Action Items\",fonts:[\"FS;Plus Jakarta Sans-bold\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(Link,{href:\"https://security.circleback.ai/\",motionChild:true,nodeId:\"Nxmt8L0IO\",scopeId:\"i9mMX8Wmo\",children:/*#__PURE__*/_jsxs(MotionAWithOptimizedAppearEffect,{animate:animation2,className:\"framer-20lcu4 framer-e5sn1r\",\"data-border\":true,\"data-framer-appear-id\":\"20lcu4\",\"data-framer-name\":\"Frame 31\",initial:animation3,optimized:true,style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aIyxiFhHf:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1463,intrinsicWidth:1463,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+7295.6+56+8+0+0+279.5+0+56+8),pixelHeight:300,pixelWidth:300,src:\"https://framerusercontent.com/images/Mju8S0mf9wnnP4eGcJaJBhUs1A.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1463,intrinsicWidth:1463,pixelHeight:300,pixelWidth:300,src:\"https://framerusercontent.com/images/Mju8S0mf9wnnP4eGcJaJBhUs1A.png\"},className:\"framer-ucb9v\",\"data-framer-name\":\"image\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7UGx1cyBKYWthcnRhIFNhbnMtYm9sZA==\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"HIPAA\"})}),className:\"framer-oe8r7j\",\"data-framer-name\":\"Action Items\",fonts:[\"FS;Plus Jakarta Sans-bold\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(Link,{href:\"https://security.circleback.ai/\",motionChild:true,nodeId:\"R5eqUvOeh\",scopeId:\"i9mMX8Wmo\",children:/*#__PURE__*/_jsxs(MotionAWithOptimizedAppearEffect,{animate:animation2,className:\"framer-136hzw1 framer-e5sn1r\",\"data-border\":true,\"data-framer-appear-id\":\"136hzw1\",\"data-framer-name\":\"Frame 31\",initial:animation3,optimized:true,style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aIyxiFhHf:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1463,intrinsicWidth:1463,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+7295.6+56+8+0+0+279.5+0+112+8),pixelHeight:500,pixelWidth:500,src:\"https://framerusercontent.com/images/uCIfaLoxbUnVzvNjBL7gvA6Dc8.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1463,intrinsicWidth:1463,pixelHeight:500,pixelWidth:500,src:\"https://framerusercontent.com/images/uCIfaLoxbUnVzvNjBL7gvA6Dc8.png\"},className:\"framer-low8si\",\"data-framer-name\":\"image\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7UGx1cyBKYWthcnRhIFNhbnMtYm9sZA==\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"EU-U.S. DPF\"})}),className:\"framer-sa732s\",\"data-framer-name\":\"Action Items\",fonts:[\"FS;Plus Jakarta Sans-bold\"],verticalAlignment:\"top\",withExternalLayout:true})]})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-16kgwds\",\"data-framer-name\":\"text\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aIyxiFhHf:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNjAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"190%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(9, 34, 71)\"},children:[\"Visit our \",/*#__PURE__*/_jsx(Link,{href:\"https://security.circleback.ai/\",motionChild:true,nodeId:\"kw19tVjog\",openInNewTab:true,relValues:[],scopeId:\"i9mMX8Wmo\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-7fgf19\",\"data-styles-preset\":\"Q9pxHhLAa\",children:/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-decoration\":\"underline\"},children:\"security portal\"})})}),\" to learn more.\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNjAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"190%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(9, 34, 71)\"},children:[\"Visit our \",/*#__PURE__*/_jsx(Link,{href:\"https://security.circleback.ai/\",motionChild:true,nodeId:\"kw19tVjog\",openInNewTab:true,relValues:[],scopeId:\"i9mMX8Wmo\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-7fgf19\",\"data-styles-preset\":\"Q9pxHhLAa\",children:/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-decoration\":\"underline\"},children:\"security portal\"})})}),\" to learn more.\"]})}),className:\"framer-1tdxp8p\",\"data-framer-name\":\"AI-written notes for all your meets\",fonts:[\"GF;Plus Jakarta Sans-600\"],verticalAlignment:\"center\",withExternalLayout:true})})})]})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1wpx9vw\",\"data-framer-name\":\"testimonial\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aIyxiFhHf:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"RlM7UGx1cyBKYWthcnRhIFNhbnMtbWVkaXVtIGl0YWxpYw==\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-font-style\":\"italic\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"155%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(74, 83, 97)\"},children:[\"Genuinely, Circleback is one of my favorite products. Love it so much\u2013not sure how I did meetings without it. I\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(255, 79, 25)\"},children:\" feel 10X more productive\"}),\" with it. Seriously, it's awesome!\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-0c0723d1-66e6-4757-aa10-e949bff27413, rgb(101, 117, 140))\"},children:'\"'})]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"RlM7UGx1cyBKYWthcnRhIFNhbnMtbWVkaXVtIGl0YWxpYw==\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"37px\",\"--framer-font-style\":\"italic\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"155%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(74, 83, 97)\"},children:[\"Genuinely, Circleback is one of my favorite products. Love it so much\u2013not sure how I did meetings without it. I\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(255, 79, 25)\"},children:\" feel 10X more productive\"}),\" with it. Seriously, it's awesome!\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-ec0709d6-8bb6-4ad9-b285-de42dd7b1a8c, rgb(101, 117, 140))\"},children:'\"'})]})}),className:\"framer-p12tiu\",\"data-framer-name\":\"\u201CSeestem is an amazing design partner with insanely quick turnaround times. Highly recommend working with them if you need design work done for your company or project!\u201D\",fonts:[\"FS;Plus Jakarta Sans-medium italic\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aIyxiFhHf:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+8031.6+80+241),pixelHeight:400,pixelWidth:400,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/7LbjZh0pi7QOyKFlwUHEH3lh2JY.jpeg\"}}},children:/*#__PURE__*/_jsx(ImageWithOptimizedAppearEffect,{animate:animation5,background:{alt:\"\",fit:\"stretch\",pixelHeight:400,pixelWidth:400,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/7LbjZh0pi7QOyKFlwUHEH3lh2JY.jpeg\"},className:\"framer-12ob998\",\"data-framer-appear-id\":\"12ob998\",\"data-framer-name\":\"image\",initial:animation6,optimized:true,whileHover:animation4})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1gtemuf\",\"data-framer-name\":\"div.framer-1cxaixo\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-9wp89s\",\"data-framer-name\":\"div.framer-1pt9f77\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aIyxiFhHf:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNzAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"100%\",\"--framer-text-alignment\":\"center\"},children:\"Aaron Wang\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNzAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"100%\",\"--framer-text-alignment\":\"center\"},children:\"Aaron Wang\"})}),className:\"framer-1z0nuan\",\"data-framer-name\":\"Strong \u2192 Soren Iverson\",fonts:[\"GF;Plus Jakarta Sans-700\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aIyxiFhHf:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7UGx1cyBKYWthcnRhIFNhbnMtcmVndWxhcg==\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-0c0723d1-66e6-4757-aa10-e949bff27413, rgba(26, 23, 59, 0.7))\"},children:\"Founder, Apriora\"})})},dKmIpojSc:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7UGx1cyBKYWthcnRhIFNhbnMtcmVndWxhcg==\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-0c0723d1-66e6-4757-aa10-e949bff27413, rgba(26, 23, 59, 0.7))\"},children:\"Founder, Apriora\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7UGx1cyBKYWthcnRhIFNhbnMtcmVndWxhcg==\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-ec0709d6-8bb6-4ad9-b285-de42dd7b1a8c, rgb(101, 117, 140))\"},children:\"Founder, Apriora\"})}),className:\"framer-145brbt\",\"data-framer-name\":\"Strong \u2192 @soren_iverson\",fonts:[\"FS;Plus Jakarta Sans-regular\"],verticalAlignment:\"center\",withExternalLayout:true})})]})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1k8lx30\",\"data-framer-name\":\"integrations\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1srfqgt\",\"data-framer-name\":\"text block\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-12lj5ox\",\"data-styles-preset\":\"YckFIlg3V\",style:{\"--framer-text-alignment\":\"center\"},children:\"Connect your favorite apps\"})}),className:\"framer-e7m96v\",\"data-framer-name\":\"Connect your favorite apps\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1f2v12o\",\"data-framer-name\":\"frames\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aIyxiFhHf:{width:`max(${componentViewport?.width||\"100vw\"} - 48px, 290px)`,y:(componentViewport?.y||0)+0+8592.6+40+76+0+0},dKmIpojSc:{width:\"588px\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:102,width:\"774px\",children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation7,__framer__exit:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1llpjow-container\",nodeId:\"y7SJ7JpDc\",rendersWithMotion:true,scopeId:\"i9mMX8Wmo\",children:/*#__PURE__*/_jsx(Integration,{GUZ86hyru:\"Automatically send notes to meeting invitees.\",height:\"100%\",id:\"y7SJ7JpDc\",layoutId:\"y7SJ7JpDc\",style:{maxHeight:\"100%\",width:\"100%\"},TfBYpEoqf:\"Email\",tIRdV5bds:\"BS7P4oZpB\",variant:\"OTQDT_to4\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aIyxiFhHf:{width:`max(${componentViewport?.width||\"100vw\"} - 48px, 220px)`,y:(componentViewport?.y||0)+0+8592.6+40+76+0+118},dKmIpojSc:{width:\"588px\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:102,width:\"774px\",children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation7,__framer__exit:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1b60tb5-container\",nodeId:\"PMRWBdLOg\",rendersWithMotion:true,scopeId:\"i9mMX8Wmo\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dKmIpojSc:{__framer__obscuredVariantId:\"UotkBUvU8\",__framer__visibleVariantId:\"mkAA13liG\"}},children:/*#__PURE__*/_jsx(IntegrationWithVariantAppearEffect,{__framer__animateOnce:false,__framer__obscuredVariantId:\"wdvFLV_jE\",__framer__threshold:.5,__framer__variantAppearEffectEnabled:true,__framer__visibleVariantId:\"OTQDT_to4\",GUZ86hyru:\"Integrate with Zapier to easily build Zaps with your meeting data.\",height:\"100%\",id:\"PMRWBdLOg\",layoutId:\"PMRWBdLOg\",style:{maxHeight:\"100%\",width:\"100%\"},TfBYpEoqf:\"Zapier\",tIRdV5bds:\"FiNnbLJ7v\",variant:\"OTQDT_to4\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aIyxiFhHf:{width:`max(${componentViewport?.width||\"100vw\"} - 48px, 290px)`,y:(componentViewport?.y||0)+0+8592.6+40+76+0+236},dKmIpojSc:{width:\"588px\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:102,width:\"774px\",children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:true,__framer__enter:animation7,__framer__exit:animation10,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1v4s55u-container\",nodeId:\"UtMOvzjDo\",rendersWithMotion:true,scopeId:\"i9mMX8Wmo\",children:/*#__PURE__*/_jsx(Integration,{GUZ86hyru:\"Send meeting data to HTTP endpoints.\",height:\"100%\",id:\"UtMOvzjDo\",layoutId:\"UtMOvzjDo\",style:{width:\"100%\"},TfBYpEoqf:\"Webhook\",tIRdV5bds:\"FRYm37xv3\",variant:\"OTQDT_to4\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aIyxiFhHf:{width:`max(${componentViewport?.width||\"100vw\"} - 48px, 290px)`,y:(componentViewport?.y||0)+0+8592.6+40+76+0+354},dKmIpojSc:{width:\"588px\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:102,width:\"774px\",children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition8},__framer__animateOnce:true,__framer__enter:animation7,__framer__exit:animation11,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-kgi3a5-container\",nodeId:\"GRk7xPTY5\",rendersWithMotion:true,scopeId:\"i9mMX8Wmo\",children:/*#__PURE__*/_jsx(Integration,{GUZ86hyru:\"Update HubSpot deals and contacts automatically.\",height:\"100%\",id:\"GRk7xPTY5\",layoutId:\"GRk7xPTY5\",style:{width:\"100%\"},TfBYpEoqf:\"HubSpot\",tIRdV5bds:\"uAlRhGxY9\",variant:\"OTQDT_to4\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aIyxiFhHf:{width:`max(${componentViewport?.width||\"100vw\"} - 48px, 290px)`,y:(componentViewport?.y||0)+0+8592.6+40+76+0+472},dKmIpojSc:{width:\"588px\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:102,width:\"774px\",children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition9},__framer__animateOnce:true,__framer__enter:animation7,__framer__exit:animation12,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-17om2oi-container\",nodeId:\"NA_0_mflf\",rendersWithMotion:true,scopeId:\"i9mMX8Wmo\",children:/*#__PURE__*/_jsx(Integration,{GUZ86hyru:\"Send meeting notes, action items or specific insights to public or private Slack channels.\",height:\"100%\",id:\"NA_0_mflf\",layoutId:\"NA_0_mflf\",style:{width:\"100%\"},TfBYpEoqf:\"Slack\",tIRdV5bds:\"YQd4drxxw\",variant:\"OTQDT_to4\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aIyxiFhHf:{width:`max(${componentViewport?.width||\"100vw\"} - 48px, 290px)`,y:(componentViewport?.y||0)+0+8592.6+40+76+0+590},dKmIpojSc:{width:\"588px\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:102,width:\"774px\",children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition10},__framer__animateOnce:true,__framer__enter:animation7,__framer__exit:animation13,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-163v9lo-container\",nodeId:\"QJBl1K8jq\",rendersWithMotion:true,scopeId:\"i9mMX8Wmo\",children:/*#__PURE__*/_jsx(Integration,{GUZ86hyru:\"Update a Notion page or database with notes, action items, or custom insights.\",height:\"100%\",id:\"QJBl1K8jq\",layoutId:\"QJBl1K8jq\",style:{width:\"100%\"},TfBYpEoqf:\"Notion\",tIRdV5bds:\"mnQI_0onD\",variant:\"OTQDT_to4\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aIyxiFhHf:{width:`max(${componentViewport?.width||\"100vw\"} - 48px, 290px)`,y:(componentViewport?.y||0)+0+8592.6+40+76+0+708},dKmIpojSc:{width:\"588px\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:102,width:\"774px\",children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition11},__framer__animateOnce:true,__framer__enter:animation7,__framer__exit:animation14,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-14ykjrq-container\",nodeId:\"saKMmYH_H\",rendersWithMotion:true,scopeId:\"i9mMX8Wmo\",children:/*#__PURE__*/_jsx(Integration,{GUZ86hyru:\"Connect your Outlook Calendar.\",height:\"100%\",id:\"saKMmYH_H\",layoutId:\"saKMmYH_H\",style:{width:\"100%\"},TfBYpEoqf:\"Outlook\",tIRdV5bds:\"ML3BOfIjo\",variant:\"OTQDT_to4\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aIyxiFhHf:{width:`max(${componentViewport?.width||\"100vw\"} - 48px, 290px)`,y:(componentViewport?.y||0)+0+8592.6+40+76+0+826},dKmIpojSc:{width:\"588px\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:102,width:\"774px\",children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition12},__framer__animateOnce:true,__framer__enter:animation7,__framer__exit:animation15,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1ka1bui-container\",nodeId:\"FLJ2cNyHr\",rendersWithMotion:true,scopeId:\"i9mMX8Wmo\",children:/*#__PURE__*/_jsx(Integration,{GUZ86hyru:\"Connect your Google Calendar.\",height:\"100%\",id:\"FLJ2cNyHr\",layoutId:\"FLJ2cNyHr\",style:{width:\"100%\"},TfBYpEoqf:\"Google Calendar\",tIRdV5bds:\"Iu1DZmemb\",variant:\"OTQDT_to4\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aIyxiFhHf:{width:`max(${componentViewport?.width||\"100vw\"} - 48px, 290px)`,y:(componentViewport?.y||0)+0+8592.6+40+76+0+944},dKmIpojSc:{width:\"588px\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:102,width:\"774px\",children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition13},__framer__animateOnce:true,__framer__enter:animation7,__framer__exit:animation16,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-hxbrfa-container\",nodeId:\"ZRm25aISh\",rendersWithMotion:true,scopeId:\"i9mMX8Wmo\",children:/*#__PURE__*/_jsx(Integration,{GUZ86hyru:\"Update Salesforce opportunities and contacts automatically.\",height:\"100%\",id:\"ZRm25aISh\",layoutId:\"ZRm25aISh\",style:{width:\"100%\"},TfBYpEoqf:\"Saleforce\",tIRdV5bds:\"Inusmgpll\",variant:\"OTQDT_to4\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aIyxiFhHf:{width:`max(${componentViewport?.width||\"100vw\"} - 48px, 290px)`,y:(componentViewport?.y||0)+0+8592.6+40+76+0+1062},dKmIpojSc:{width:\"588px\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:102,width:\"774px\",children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition14},__framer__animateOnce:true,__framer__enter:animation7,__framer__exit:animation17,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1eb07u9-container\",nodeId:\"uVjA0RolC\",rendersWithMotion:true,scopeId:\"i9mMX8Wmo\",children:/*#__PURE__*/_jsx(Integration,{GUZ86hyru:\"Automatically update people and companies in Attio.\",height:\"100%\",id:\"uVjA0RolC\",layoutId:\"uVjA0RolC\",style:{width:\"100%\"},TfBYpEoqf:\"Attio\",tIRdV5bds:\"P8mkxXfoq\",variant:\"OTQDT_to4\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aIyxiFhHf:{width:`max(${componentViewport?.width||\"100vw\"} - 48px, 290px)`,y:(componentViewport?.y||0)+0+8592.6+40+76+0+1180},dKmIpojSc:{width:\"588px\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:102,width:\"774px\",children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition15},__framer__animateOnce:true,__framer__enter:animation7,__framer__exit:animation18,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1y0s319-container\",nodeId:\"eIFtBEK8s\",rendersWithMotion:true,scopeId:\"i9mMX8Wmo\",children:/*#__PURE__*/_jsx(Integration,{GUZ86hyru:\"Update boards with action items.\",height:\"100%\",id:\"eIFtBEK8s\",layoutId:\"eIFtBEK8s\",style:{width:\"100%\"},TfBYpEoqf:\"Monday\",tIRdV5bds:\"oAQ0yVhM3\",variant:\"OTQDT_to4\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aIyxiFhHf:{width:`max(${componentViewport?.width||\"100vw\"} - 48px, 290px)`,y:(componentViewport?.y||0)+0+8592.6+40+76+0+1298},dKmIpojSc:{width:\"588px\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:102,width:\"774px\",children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition16},__framer__animateOnce:true,__framer__enter:animation7,__framer__exit:animation19,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-xd124-container\",nodeId:\"F5dXe__mm\",rendersWithMotion:true,scopeId:\"i9mMX8Wmo\",children:/*#__PURE__*/_jsx(Integration,{GUZ86hyru:\"Create Linear tasks automatically.\",height:\"100%\",id:\"F5dXe__mm\",layoutId:\"F5dXe__mm\",style:{width:\"100%\"},TfBYpEoqf:\"Linear\",tIRdV5bds:\"JeDJlKVwy\",variant:\"OTQDT_to4\",width:\"100%\"})})})})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-6e4tu0\",id:elementId4,ref:ref5,children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-197e47g\",\"data-styles-preset\":\"tJvmL6S04\",style:{\"--framer-text-alignment\":\"center\"},children:\"What our customers say\u2026\"})}),className:\"framer-f23rnv\",\"data-framer-name\":\"Get the most out of every meeting\",fonts:[\"Inter\"],id:elementId5,ref:ref6,verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1umx144\",\"data-framer-name\":\"twitter testimonials\",id:elementId6,ref:ref7,children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-jfizuo\",\"data-framer-name\":\"testimonials\",id:elementId7,ref:ref8,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ugayxe\",\"data-framer-name\":\"twitter\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-fym582\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-89h2l9-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"DJvHE3yRQ\",scopeId:\"i9mMX8Wmo\",children:/*#__PURE__*/_jsx(Twitter,{height:\"100%\",id:\"DJvHE3yRQ\",layoutId:\"DJvHE3yRQ\",screenName:\"ClementLIONNE\",style:{width:\"100%\"},tweetId:\"1923003810282119217\",type:\"tweet\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-19uaye6-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"Bdxb0VB4E\",scopeId:\"i9mMX8Wmo\",children:/*#__PURE__*/_jsx(Twitter,{height:\"100%\",id:\"Bdxb0VB4E\",layoutId:\"Bdxb0VB4E\",screenName:\"ClementLIONNE\",style:{width:\"100%\"},tweetId:\"1854207560221356476\",type:\"tweet\",width:\"100%\"})})}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-17zhkoj-container hidden-16itkok\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"Z47FxWnee\",scopeId:\"i9mMX8Wmo\",children:/*#__PURE__*/_jsx(Twitter,{height:\"100%\",id:\"Z47FxWnee\",layoutId:\"Z47FxWnee\",screenName:\"ClementLIONNE\",style:{width:\"100%\"},tweetId:\"1866896982968561852\",type:\"tweet\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-126zer6-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"cf8RvXDOS\",scopeId:\"i9mMX8Wmo\",children:/*#__PURE__*/_jsx(Twitter,{height:\"100%\",id:\"cf8RvXDOS\",layoutId:\"cf8RvXDOS\",screenName:\"ClementLIONNE\",style:{width:\"100%\"},tweetId:\"1791893644485734496\",type:\"tweet\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1x7x984-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"ETuP4L9bB\",scopeId:\"i9mMX8Wmo\",children:/*#__PURE__*/_jsx(Twitter,{height:\"100%\",id:\"ETuP4L9bB\",layoutId:\"ETuP4L9bB\",screenName:\"ClementLIONNE\",style:{width:\"100%\"},tweetId:\"1827093550099788258\",type:\"tweet\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-xk5yx2-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"SYZadVeTZ\",scopeId:\"i9mMX8Wmo\",children:/*#__PURE__*/_jsx(Twitter,{height:\"100%\",id:\"SYZadVeTZ\",layoutId:\"SYZadVeTZ\",screenName:\"ClementLIONNE\",style:{width:\"100%\"},tweetId:\"1871066900639404251\",type:\"tweet\",width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-wsy45u\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-bl43s1-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"GWGrejtac\",scopeId:\"i9mMX8Wmo\",children:/*#__PURE__*/_jsx(Twitter,{height:\"100%\",id:\"GWGrejtac\",layoutId:\"GWGrejtac\",screenName:\"ClementLIONNE\",style:{width:\"100%\"},tweetId:\"1811269411707437256\",type:\"tweet\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-2v8bzo-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"E4uGxupeS\",scopeId:\"i9mMX8Wmo\",children:/*#__PURE__*/_jsx(Twitter,{height:\"100%\",id:\"E4uGxupeS\",layoutId:\"E4uGxupeS\",screenName:\"ClementLIONNE\",style:{width:\"100%\"},tweetId:\"1789060152156397907\",type:\"tweet\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-16lhad3-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"qMsmLj3iF\",scopeId:\"i9mMX8Wmo\",children:/*#__PURE__*/_jsx(Twitter,{height:\"100%\",id:\"qMsmLj3iF\",layoutId:\"qMsmLj3iF\",screenName:\"ClementLIONNE\",style:{width:\"100%\"},tweetId:\"1816135188696686738\",type:\"tweet\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-yzxrnj-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"JoWJfJc_P\",scopeId:\"i9mMX8Wmo\",children:/*#__PURE__*/_jsx(Twitter,{height:\"100%\",id:\"JoWJfJc_P\",layoutId:\"JoWJfJc_P\",screenName:\"ClementLIONNE\",style:{width:\"100%\"},tweetId:\"1798167275826184630\",type:\"tweet\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-gw0znn-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"ZPCj0PjrD\",scopeId:\"i9mMX8Wmo\",children:/*#__PURE__*/_jsx(Twitter,{height:\"100%\",id:\"ZPCj0PjrD\",layoutId:\"ZPCj0PjrD\",screenName:\"ClementLIONNE\",style:{width:\"100%\"},tweetId:\"1815804142994219120\",type:\"tweet\",width:\"100%\"})})})]}),isDisplayed1()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1r0vevo hidden-mxtsjn\",children:[isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-u5m79c-container hidden-16itkok\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"QUqZzXwIE\",scopeId:\"i9mMX8Wmo\",children:/*#__PURE__*/_jsx(Twitter,{height:\"100%\",id:\"QUqZzXwIE\",layoutId:\"QUqZzXwIE\",screenName:\"ClementLIONNE\",style:{width:\"100%\"},tweetId:\"1867300985913110540\",type:\"tweet\",width:\"100%\"})})}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-kiln9t-container hidden-16itkok\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"LQuu8Zb25\",scopeId:\"i9mMX8Wmo\",children:/*#__PURE__*/_jsx(Twitter,{height:\"100%\",id:\"LQuu8Zb25\",layoutId:\"LQuu8Zb25\",screenName:\"ClementLIONNE\",style:{width:\"100%\"},tweetId:\"1829264130693620073\",type:\"tweet\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1767pbo-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"JuDX78Xzj\",scopeId:\"i9mMX8Wmo\",children:/*#__PURE__*/_jsx(Twitter,{height:\"100%\",id:\"JuDX78Xzj\",layoutId:\"JuDX78Xzj\",screenName:\"ClementLIONNE\",style:{width:\"100%\"},tweetId:\"1832146007918080248\",type:\"tweet\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1caxal5-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"h9617_IpJ\",scopeId:\"i9mMX8Wmo\",children:/*#__PURE__*/_jsx(Twitter,{height:\"100%\",id:\"h9617_IpJ\",layoutId:\"h9617_IpJ\",screenName:\"ClementLIONNE\",style:{width:\"100%\"},tweetId:\"1686900667003305986\",type:\"tweet\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-9qfq2-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"hVm0kLvqr\",scopeId:\"i9mMX8Wmo\",children:/*#__PURE__*/_jsx(Twitter,{height:\"100%\",id:\"hVm0kLvqr\",layoutId:\"hVm0kLvqr\",screenName:\"ClementLIONNE\",style:{width:\"100%\"},tweetId:\"1686900667003305986\",type:\"tweet\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-8shonb-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"rBTqT5zBc\",scopeId:\"i9mMX8Wmo\",children:/*#__PURE__*/_jsx(Twitter,{height:\"100%\",id:\"rBTqT5zBc\",layoutId:\"rBTqT5zBc\",screenName:\"ClementLIONNE\",style:{width:\"100%\"},tweetId:\"1875585501429961127\",type:\"tweet\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-17opvj7-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"uyqidbysa\",scopeId:\"i9mMX8Wmo\",children:/*#__PURE__*/_jsx(Twitter,{height:\"100%\",id:\"uyqidbysa\",layoutId:\"uyqidbysa\",screenName:\"ClementLIONNE\",style:{width:\"100%\"},tweetId:\"1923066256376107256\",type:\"tweet\",width:\"100%\"})})})]})]})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1oky8np\",\"data-framer-name\":\"faqs\",id:elementId8,ref:ref9,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ktbji1\",\"data-framer-name\":\"text block\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-trori0\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-197e47g\",\"data-styles-preset\":\"tJvmL6S04\",children:\"FAQ\"})}),className:\"framer-s255g1\",\"data-framer-name\":\"Present UI as a PRO. Masterclass + Templates.\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-p6qcan\",\"data-framer-name\":\"questions\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aIyxiFhHf:{width:\"302px\",y:(componentViewport?.y||0)+0+12716.2+56+109.6+0+0},dKmIpojSc:{width:\"700px\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:78,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1qawkqy-container\",nodeId:\"BeqpHkveV\",scopeId:\"i9mMX8Wmo\",children:/*#__PURE__*/_jsx(FAQ,{height:\"100%\",id:\"BeqpHkveV\",iRu1Rykgc:\"Does Circleback work in-person?\",KAr2dX4tV:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:\"Yes. You can record in-person meetings with Circleback, as well as import past audio or video meetings to get notes, action items, a searchable transcript and more.\"})}),layoutId:\"BeqpHkveV\",style:{width:\"100%\"},variant:\"p5ZqglDzS\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aIyxiFhHf:{width:\"302px\",y:(componentViewport?.y||0)+0+12716.2+56+109.6+0+86},dKmIpojSc:{width:\"700px\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:78,children:/*#__PURE__*/_jsx(Container,{className:\"framer-18cj3n1-container\",nodeId:\"MuDRnn6g_\",scopeId:\"i9mMX8Wmo\",children:/*#__PURE__*/_jsx(FAQ,{height:\"100%\",id:\"MuDRnn6g_\",iRu1Rykgc:\"Can I use Circleback without a bot?\",KAr2dX4tV:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{children:[\"Yes. You can download our desktop app \",/*#__PURE__*/_jsx(Link,{href:\"https://circleback.ai/desktop\",motionChild:true,nodeId:\"MuDRnn6g_\",openInNewTab:true,relValues:[],smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{children:\"here\"})}),\" to use Circleback without a bot joining your calls.\"]})}),layoutId:\"MuDRnn6g_\",style:{width:\"100%\"},variant:\"p5ZqglDzS\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aIyxiFhHf:{width:\"302px\",y:(componentViewport?.y||0)+0+12716.2+56+109.6+0+172},dKmIpojSc:{width:\"700px\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:78,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition17},__framer__animateOnce:true,__framer__enter:animation20,__framer__exit:animation21,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-6xmhnp-container\",nodeId:\"IQveHLj54\",rendersWithMotion:true,scopeId:\"i9mMX8Wmo\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(FAQ,{height:\"100%\",id:\"IQveHLj54\",iRu1Rykgc:\"Does Circleback work on my phone?\",KAr2dX4tV:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{children:[\"Yes, you can record and access meetings on your phone with the \",/*#__PURE__*/_jsx(Link,{href:{webPageId:\"aoUJgDkgm\"},motionChild:true,nodeId:\"IQveHLj54\",openInNewTab:false,relValues:[],smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{children:\"Circleback mobile app\"})}),\".\"]})}),layoutId:\"IQveHLj54\",style:{width:\"100%\"},variant:\"p5ZqglDzS\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aIyxiFhHf:{width:\"302px\",y:(componentViewport?.y||0)+0+12716.2+56+109.6+0+258},dKmIpojSc:{width:\"700px\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:78,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition17},__framer__animateOnce:true,__framer__enter:animation20,__framer__exit:animation21,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1iabniq-container\",nodeId:\"st4nriXJu\",rendersWithMotion:true,scopeId:\"i9mMX8Wmo\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(FAQ,{height:\"100%\",id:\"st4nriXJu\",iRu1Rykgc:\"Is my data used to train AI models?\",KAr2dX4tV:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:\"No. We don't train AI models on customer data.\"})}),layoutId:\"st4nriXJu\",style:{width:\"100%\"},variant:\"p5ZqglDzS\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aIyxiFhHf:{width:\"302px\",y:(componentViewport?.y||0)+0+12716.2+56+109.6+0+344},dKmIpojSc:{width:\"700px\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:78,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition17},__framer__animateOnce:true,__framer__enter:animation20,__framer__exit:animation21,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-3gbs5j-container\",nodeId:\"nybEneoo3\",rendersWithMotion:true,scopeId:\"i9mMX8Wmo\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(FAQ,{height:\"100%\",id:\"nybEneoo3\",iRu1Rykgc:\"What meeting platforms does Circleback work with?\",KAr2dX4tV:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{children:\"Circleback supports in-person meetings and all meeting platforms, including:\"}),/*#__PURE__*/_jsxs(\"ul\",{style:{\"--font-selector\":\"RlM7UGx1cyBKYWthcnRhIFNhbnMtbWVkaXVt\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-style\":\"normal\",\"--framer-font-variation-axes\":\"normal\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"140%\",\"--framer-text-alignment\":\"start\",\"--framer-text-color\":\"var(--token-e7d02135-ac2e-44c6-a383-37bee4f6c019, rgb(106, 115, 125))\",\"--framer-text-stroke-color\":\"var(--framer-text-stroke-color, initial)\",\"--framer-text-stroke-width\":\"0px\",\"--framer-text-transform\":\"none\"},children:[/*#__PURE__*/_jsx(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-text-color\":\"rgb(0, 0, 0)\",\"--framer-text-stroke-color\":\"var(--framer-text-stroke-color, initial)\"},children:/*#__PURE__*/_jsx(\"p\",{children:\"Zoom\"})}),/*#__PURE__*/_jsx(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-text-color\":\"rgb(0, 0, 0)\",\"--framer-text-stroke-color\":\"var(--framer-text-stroke-color, initial)\"},children:/*#__PURE__*/_jsx(\"p\",{children:\"Google Meet\"})}),/*#__PURE__*/_jsx(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-text-color\":\"rgb(0, 0, 0)\",\"--framer-text-stroke-color\":\"var(--framer-text-stroke-color, initial)\"},children:/*#__PURE__*/_jsx(\"p\",{children:\"Microsoft Teams\"})}),/*#__PURE__*/_jsx(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-text-color\":\"rgb(0, 0, 0)\",\"--framer-text-stroke-color\":\"var(--framer-text-stroke-color, initial)\"},children:/*#__PURE__*/_jsx(\"p\",{children:\"WebEx\"})}),/*#__PURE__*/_jsx(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-text-color\":\"rgb(0, 0, 0)\",\"--framer-text-stroke-color\":\"var(--framer-text-stroke-color, initial)\"},children:/*#__PURE__*/_jsx(\"p\",{children:\"Slack huddles\"})}),/*#__PURE__*/_jsx(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-text-color\":\"rgb(0, 0, 0)\",\"--framer-text-stroke-color\":\"var(--framer-text-stroke-color, initial)\"},children:/*#__PURE__*/_jsx(\"p\",{children:\"GoTo\"})})]}),/*#__PURE__*/_jsx(\"p\",{children:\"Circleback connects with Google Calendar and Microsoft Outlook Calendar to detect and automatically join your meetings.\"})]}),layoutId:\"nybEneoo3\",style:{width:\"100%\"},variant:\"p5ZqglDzS\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aIyxiFhHf:{width:\"302px\",y:(componentViewport?.y||0)+0+12716.2+56+109.6+0+430},dKmIpojSc:{width:\"700px\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:78,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition17},__framer__animateOnce:true,__framer__enter:animation20,__framer__exit:animation21,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-x2b77m-container\",nodeId:\"j9C617qbO\",rendersWithMotion:true,scopeId:\"i9mMX8Wmo\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(FAQ,{height:\"100%\",id:\"j9C617qbO\",iRu1Rykgc:\"What languages are supported?\",KAr2dX4tV:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{children:[\"Circleback supports over 100 languages, including English, Spanish, French, German, Italian, Portuguese, Dutch, and Japanese. View all supported languages \",/*#__PURE__*/_jsx(Link,{href:\"https://circlebackai.notion.site/Circleback-Supported-Languages-efa6770d6dbc47abb94c1928ab893f5f\",motionChild:true,nodeId:\"j9C617qbO\",openInNewTab:true,relValues:[],smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-jnawql\",\"data-styles-preset\":\"WDxYu2sRT\",children:\"here\"})}),\".\"]})}),layoutId:\"j9C617qbO\",style:{width:\"100%\"},variant:\"p5ZqglDzS\",width:\"100%\"})})})})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-kt9vxa\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aIyxiFhHf:{width:`max(${componentViewport?.width||\"100vw\"} - 48px, 1px)`,y:(componentViewport?.y||0)+0+13413.8+24},dKmIpojSc:{width:`max(${componentViewport?.width||\"100vw\"} - 112px, 1px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:459,width:`max(${componentViewport?.width||\"100vw\"} - 240px, 1px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-7ksewc-container\",nodeId:\"EL25gKgSk\",scopeId:\"i9mMX8Wmo\",children:/*#__PURE__*/_jsx(TrialPromo,{c84Bcq6v0:\"40px\",height:\"100%\",id:\"EL25gKgSk\",layoutId:\"EL25gKgSk\",style:{width:\"100%\"},variant:\"wtlLgdUNa\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aIyxiFhHf:{y:(componentViewport?.y||0)+0+13920.8}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:557,width:componentViewport?.width||\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1af84l3-container\",nodeId:\"cakPeZV8B\",scopeId:\"i9mMX8Wmo\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aIyxiFhHf:{variant:\"LMNYf069X\"},dKmIpojSc:{variant:\"Z4hoHqVfW\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"cakPeZV8B\",layoutId:\"cakPeZV8B\",style:{width:\"100%\"},variant:\"LtAgCFZ83\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-yptcx.framer-e5sn1r, .framer-yptcx .framer-e5sn1r { display: block; }\",\".framer-yptcx.framer-ygrexw { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1200px; }\",\".framer-yptcx .framer-1j4apu4-container { flex: none; height: auto; left: 50%; position: fixed; top: 0px; transform: translateX(-50%); width: 100%; z-index: 2; }\",\".framer-yptcx .framer-1lmhvjq { align-content: flex-start; align-items: flex-start; background: linear-gradient(180deg, rgba(189, 216, 242, 0.57) 4%, rgb(190, 217, 243) 27%, rgb(190, 217, 243) 100%); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 60px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-yptcx .framer-vklsu6 { bottom: 0px; flex: none; left: 0px; opacity: 0.6; overflow: visible; position: absolute; right: 0px; top: -6px; z-index: 1; }\",\".framer-yptcx .framer-fawvvk { background-color: #ffffff; bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-yptcx .framer-2j2njf { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: flex-start; overflow: visible; padding: 80px 120px 150px 120px; position: relative; width: 100%; z-index: 1; }\",\".framer-yptcx .framer-pwd6xm, .framer-yptcx .framer-1cfo2xh, .framer-yptcx .framer-1f1wbvw { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-yptcx .framer-w127i0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 21px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 72%; }\",\".framer-yptcx .framer-4pket1 { --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 900px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-yptcx .framer-11gezi9 { --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 576px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-yptcx .framer-4q5pel { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-yptcx .framer-1sibypl, .framer-yptcx .framer-phfed4, .framer-yptcx .framer-1wjvqzt { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: visible; padding: 0px; pointer-events: auto; position: relative; text-decoration: none; width: min-content; }\",\".framer-yptcx .framer-1r7uncw-container { flex: none; height: 17px; position: relative; width: 17px; }\",\".framer-yptcx .framer-1sj2iku, .framer-yptcx .framer-37e74n, .framer-yptcx .framer-1r4jl3l, .framer-yptcx .framer-1ir2spi { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 2px 0px; position: relative; width: min-content; }\",\".framer-yptcx .framer-1vkggu8, .framer-yptcx .framer-4kt6gc, .framer-yptcx .framer-153ej7y, .framer-yptcx .framer-127184t, .framer-yptcx .framer-f69bbd, .framer-yptcx .framer-o0twfb, .framer-yptcx .framer-jg9tkc, .framer-yptcx .framer-pfebn3, .framer-yptcx .framer-oe8r7j, .framer-yptcx .framer-sa732s, .framer-yptcx .framer-1z0nuan, .framer-yptcx .framer-145brbt { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-yptcx .framer-a56w2h { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-yptcx .framer-1v9luur { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 16px); position: relative; width: 16px; }\",\".framer-yptcx .framer-1dzb4ud { background-color: var(--token-ec0709d6-8bb6-4ad9-b285-de42dd7b1a8c, #65758c); flex: none; height: 14px; position: relative; width: 14px; }\",\".framer-yptcx .framer-is5tp7 { flex: none; height: 8px; position: relative; width: 16px; }\",\".framer-yptcx .framer-11icv4l-container { flex: none; height: 56px; position: relative; width: 170px; }\",\".framer-yptcx .framer-13k4b6-container, .framer-yptcx .framer-nlci3k-container, .framer-yptcx .framer-99etyo-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-yptcx .framer-bc2z2s-container { bottom: 31px; flex: none; height: 214px; left: calc(52.32000000000002% - 286px / 2); position: absolute; width: 286px; z-index: 1; }\",\".framer-yptcx .framer-1u9ku5g { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 100px 0px 80px 0px; position: relative; width: 100%; }\",\".framer-yptcx .framer-lef87 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 26px; height: min-content; justify-content: flex-start; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-yptcx .framer-14fjjru-container, .framer-yptcx .framer-1lnb8su-container { flex: none; height: 50px; position: relative; width: 100%; }\",\".framer-yptcx .framer-1pe0fph { height: 32px; overflow: hidden; position: relative; width: 102px; }\",\".framer-yptcx .framer-1pi8enq { height: 32px; left: 0px; position: absolute; top: 0px; width: 102px; }\",\".framer-yptcx .framer-8ctldv { height: 27px; left: 3px; position: absolute; top: 6px; width: 96px; }\",\".framer-yptcx .framer-3i627h { height: 14px; left: 0px; position: absolute; top: 3px; width: 14px; }\",\".framer-yptcx .framer-fbyd9g { height: 11px; left: 81px; position: absolute; top: 7px; width: 3px; }\",\".framer-yptcx .framer-1519ork { height: 3px; left: 81px; position: absolute; top: 3px; width: 3px; }\",\".framer-yptcx .framer-jn04r0 { height: 10px; left: 85px; position: absolute; top: 7px; width: 12px; }\",\".framer-yptcx .framer-1v75ir5 { height: 8px; left: 67px; position: absolute; top: 7px; width: 12px; }\",\".framer-yptcx .framer-m4dz1n { height: 8px; left: 57px; position: absolute; top: 7px; width: 10px; }\",\".framer-yptcx .framer-m5x726 { height: 10px; left: 42px; position: absolute; top: 7px; width: 14px; }\",\".framer-yptcx .framer-mcgy54 { height: 13px; left: 37px; position: absolute; top: 3px; width: 7px; }\",\".framer-yptcx .framer-1yk7jx4 { height: 3px; left: 32px; position: absolute; top: 3px; width: 3px; }\",\".framer-yptcx .framer-1kzfp9g { height: 11px; left: 32px; position: absolute; top: 7px; width: 3px; }\",\".framer-yptcx .framer-19nw092 { height: 27px; left: 28px; position: absolute; top: 0px; width: 3px; }\",\".framer-yptcx .framer-19mo0to { height: 10px; left: 15px; position: absolute; top: 7px; width: 12px; }\",\".framer-yptcx .framer-plxhtg { height: 4px; left: 0px; position: absolute; top: 20px; width: 102px; }\",\".framer-yptcx .framer-1winzrl { height: 10px; left: 50px; position: absolute; top: 0px; width: 28px; }\",\".framer-yptcx .framer-1r69ia1 { height: 8px; left: 0px; position: absolute; top: 3px; width: 7px; }\",\".framer-yptcx .framer-1qawxiu { height: 2px; left: 9px; position: absolute; top: 0px; width: 3px; }\",\".framer-yptcx .framer-1j95khm { height: 8px; left: 9px; position: absolute; top: 3px; width: 2px; }\",\".framer-yptcx .framer-ze5z2o { height: 8px; left: 12px; position: absolute; top: 3px; width: 6px; }\",\".framer-yptcx .framer-1cjtdwk { height: 2px; left: 20px; position: absolute; top: 0px; width: 3px; }\",\".framer-yptcx .framer-1j4y50y { height: 8px; left: 20px; position: absolute; top: 3px; width: 2px; }\",\".framer-yptcx .framer-c6p6z2 { height: 10px; left: 23px; position: absolute; top: 1px; width: 5px; }\",\".framer-yptcx .framer-1fthmmh { height: 30px; overflow: hidden; position: relative; width: 124px; }\",\".framer-yptcx .framer-1y8pjeh { flex: none; height: 30px; left: calc(50.00000000000002% - 124px / 2); position: absolute; top: calc(50.00000000000002% - 30px / 2); width: 124px; }\",\".framer-yptcx .framer-a2v60d { height: 32px; overflow: hidden; position: relative; width: 58px; }\",\".framer-yptcx .framer-3cx8um { height: 32px; left: 0px; position: absolute; top: 0px; width: 58px; }\",\".framer-yptcx .framer-7r8zuh, .framer-yptcx .framer-1piz3nj { height: 32px; left: 0px; position: absolute; top: 0px; width: 43px; }\",\".framer-yptcx .framer-kei4qw { height: 14px; left: 5px; position: absolute; top: 14px; width: 14px; }\",\".framer-yptcx .framer-ru43nl { height: 14px; left: 25px; position: absolute; top: 14px; width: 14px; }\",\".framer-yptcx .framer-1s0lqs1 { height: 23px; left: 40px; position: absolute; top: 10px; width: 18px; }\",\".framer-yptcx .framer-a9whs0 { height: 18px; overflow: hidden; position: relative; width: 134px; }\",\".framer-yptcx .framer-ptb68e { aspect-ratio: 7.407407407407407 / 1; bottom: 0px; flex: none; left: 50%; position: absolute; top: 0px; transform: translateX(-50%); width: var(--framer-aspect-ratio-supported, 134px); }\",\".framer-yptcx .framer-et1eia { height: 33px; overflow: hidden; position: relative; width: 110px; }\",\".framer-yptcx .framer-ai1eh7 { height: 32px; left: 0px; position: absolute; top: 1px; width: 110px; }\",\".framer-yptcx .framer-1k3odu3 { height: 31px; left: 5px; position: absolute; top: 1px; width: 24px; }\",\".framer-yptcx .framer-1ef4rug { height: 24px; left: 0px; position: absolute; top: 7px; width: 24px; }\",\".framer-yptcx .framer-95j3yb { height: 5px; left: 15px; position: absolute; top: 0px; width: 4px; }\",\".framer-yptcx .framer-f5rqj6 { height: 13px; left: 1px; position: absolute; top: 12px; width: 8px; }\",\".framer-yptcx .framer-tkpm5w { height: 30px; left: 2px; position: absolute; top: 1px; width: 26px; }\",\".framer-yptcx .framer-fzoov { height: 29px; left: 0px; position: absolute; top: 0px; width: 27px; }\",\".framer-yptcx .framer-jwhtmm { height: 2px; left: 23px; position: absolute; top: 7px; width: 4px; }\",\".framer-yptcx .framer-1rf3d21 { height: 27px; left: 8px; position: absolute; top: 0px; width: 12px; }\",\".framer-yptcx .framer-13uvate { height: 18px; left: 0px; position: absolute; top: 12px; width: 11px; }\",\".framer-yptcx .framer-1l9ovmw { height: 14px; left: 87px; position: absolute; top: 13px; width: 8px; }\",\".framer-yptcx .framer-nfqh66 { height: 14px; left: 79px; position: absolute; top: 13px; width: 8px; }\",\".framer-yptcx .framer-2cmjaw { height: 17px; left: 34px; position: absolute; top: 10px; width: 76px; }\",\".framer-yptcx .framer-1mey47z { height: 17px; left: 0px; position: absolute; top: 0px; width: 13px; }\",\".framer-yptcx .framer-1x9d71i { height: 17px; left: 34px; position: absolute; top: 0px; width: 13px; }\",\".framer-yptcx .framer-5rd1nr { height: 4px; left: 14px; position: absolute; top: 0px; width: 4px; }\",\".framer-yptcx .framer-x4nc9s { height: 12px; left: 14px; position: absolute; top: 6px; width: 4px; }\",\".framer-yptcx .framer-vx7n3u { height: 17px; left: 19px; position: absolute; top: 0px; width: 14px; }\",\".framer-yptcx .framer-l0q7ru { height: 17px; left: 63px; position: absolute; top: 0px; width: 14px; }\",\".framer-yptcx .framer-1ahymk9 { height: 14px; left: 46px; position: absolute; top: 3px; width: 14px; }\",\".framer-yptcx .framer-1u7b29g { height: 7px; left: 50px; position: absolute; top: 7px; width: 7px; }\",\".framer-yptcx .framer-wm97he { height: 20px; overflow: hidden; position: relative; width: 94px; }\",\".framer-yptcx .framer-owpqgn { flex: none; height: 20px; left: calc(50.00000000000002% - 94px / 2); position: absolute; top: calc(50.00000000000002% - 20px / 2); width: 94px; }\",\".framer-yptcx .framer-1bd30rk { height: 32px; overflow: hidden; position: relative; width: 120px; }\",\".framer-yptcx .framer-1tlab7q, .framer-yptcx .framer-9wme54 { height: 32px; left: 0px; position: absolute; top: 0px; width: 120px; }\",\".framer-yptcx .framer-18evvmc { height: 16px; left: 8px; position: absolute; top: 8px; width: 104px; }\",\".framer-yptcx .framer-1x1v33y { height: 16px; left: 0px; position: absolute; top: 0px; width: 11px; }\",\".framer-yptcx .framer-1xlk7o2 { height: 16px; left: 49px; position: absolute; top: 0px; width: 11px; }\",\".framer-yptcx .framer-1uewjht { height: 16px; left: 63px; position: absolute; top: 1px; width: 11px; }\",\".framer-yptcx .framer-17lunv3 { height: 16px; left: 94px; position: absolute; top: 0px; width: 11px; }\",\".framer-yptcx .framer-1yzjkot { height: 15px; left: 28px; position: absolute; top: 1px; width: 17px; }\",\".framer-yptcx .framer-lb54ph { height: 15px; left: 13px; position: absolute; top: 1px; width: 12px; }\",\".framer-yptcx .framer-1f2ilw6 { height: 15px; left: 77px; position: absolute; top: 1px; width: 13px; }\",\".framer-yptcx .framer-fnqr9d { height: 22px; overflow: hidden; position: relative; width: 40px; }\",\".framer-yptcx .framer-1iv4kr0 { flex: none; height: 21px; left: calc(50.00000000000002% - 40px / 2); position: absolute; top: calc(50.00000000000002% - 21px / 2); width: 40px; }\",\".framer-yptcx .framer-1mdjw55 { aspect-ratio: 2 / 1; height: var(--framer-aspect-ratio-supported, 30px); overflow: hidden; position: relative; width: 60px; }\",\".framer-yptcx .framer-1ejozlg { flex: none; height: 30px; left: calc(50.00000000000002% - 60px / 2); position: absolute; top: calc(50.00000000000002% - 30px / 2); width: 60px; }\",\".framer-yptcx .framer-50ibjz { height: 28px; overflow: hidden; position: relative; width: 143px; }\",\".framer-yptcx .framer-c1kjl { height: 28px; left: 1px; position: absolute; top: 0px; width: 125px; }\",\".framer-yptcx .framer-ksl8hb, .framer-yptcx .framer-1il9q20, .framer-yptcx .framer-1li3dse, .framer-yptcx .framer-1a3veoh, .framer-yptcx .framer-4iwhjq, .framer-yptcx .framer-6ysruz, .framer-yptcx .framer-qxcubu { height: 28px; left: 0px; position: absolute; top: 0px; width: 28px; }\",\".framer-yptcx .framer-171yhmc { height: 5px; left: 9px; position: absolute; top: 8px; width: 4px; }\",\".framer-yptcx .framer-1n390uc { height: 7px; left: 3px; position: absolute; top: 14px; width: 6px; }\",\".framer-yptcx .framer-qhl4ow { height: 3px; left: 49px; position: absolute; top: 7px; width: 3px; }\",\".framer-yptcx .framer-hhhidj { height: 10px; left: 49px; position: absolute; top: 11px; width: 3px; }\",\".framer-yptcx .framer-126ga3v { height: 14px; left: 38px; position: absolute; top: 8px; width: 72px; }\",\".framer-yptcx .framer-iu43nf { height: 14px; left: 0px; position: absolute; top: 0px; width: 11px; }\",\".framer-yptcx .framer-126iek { height: 10px; left: 17px; position: absolute; top: 4px; width: 15px; }\",\".framer-yptcx .framer-xwh96j { height: 10px; left: 32px; position: absolute; top: 4px; width: 10px; }\",\".framer-yptcx .framer-5ruy71 { height: 2px; left: 35px; position: absolute; top: 6px; width: 5px; }\",\".framer-yptcx .framer-mf2cam { height: 10px; left: 43px; position: absolute; top: 4px; width: 8px; }\",\".framer-yptcx .framer-sbkdtz { height: 10px; left: 52px; position: absolute; top: 4px; width: 10px; }\",\".framer-yptcx .framer-xgxzzi { height: 10px; left: 62px; position: absolute; top: 4px; width: 10px; }\",\".framer-yptcx .framer-cc3683 { height: 6px; left: 65px; position: absolute; top: 6px; width: 5px; }\",\".framer-yptcx .framer-ynog5a { height: 14px; left: 111px; position: absolute; top: 8px; width: 3px; }\",\".framer-yptcx .framer-rhe51b { height: 10px; left: 115px; position: absolute; top: 11px; width: 10px; }\",\".framer-yptcx .framer-1ptcmnh { height: 10px; left: 0px; position: absolute; top: 0px; width: 10px; }\",\".framer-yptcx .framer-1ju06ps { height: 2px; left: 3px; position: absolute; top: 2px; width: 5px; }\",\".framer-yptcx .framer-cl4kgj { height: 32px; overflow: hidden; position: relative; width: 83px; }\",\".framer-yptcx .framer-6gb99i { flex: none; height: 24px; left: calc(49.3975903614458% - 83px / 2); position: absolute; top: calc(50.00000000000002% - 24px / 2); width: 83px; }\",\".framer-yptcx .framer-1nro9bc { height: 28px; overflow: hidden; position: relative; width: 107px; }\",\".framer-yptcx .framer-ip4brl { height: 28px; left: 0px; position: absolute; top: 0px; width: 107px; }\",\".framer-yptcx .framer-rl6p0p { height: 11px; left: 62px; position: absolute; top: 0px; width: 11px; }\",\".framer-yptcx .framer-18b0kct { height: 16px; left: 0px; position: absolute; top: 12px; width: 107px; }\",\".framer-yptcx .framer-1lj21h5 { height: 13px; left: 0px; position: absolute; top: 4px; width: 11px; }\",\".framer-yptcx .framer-we8bmv { height: 3px; left: 4px; position: absolute; top: 11px; width: 4px; }\",\".framer-yptcx .framer-mbo9sn { height: 13px; left: 13px; position: absolute; top: 4px; width: 12px; }\",\".framer-yptcx .framer-hhcwde { height: 13px; left: 26px; position: absolute; top: 4px; width: 12px; }\",\".framer-yptcx .framer-xva824 { height: 13px; left: 38px; position: absolute; top: 4px; width: 12px; }\",\".framer-yptcx .framer-18372lf { height: 3px; left: 42px; position: absolute; top: 6px; width: 5px; }\",\".framer-yptcx .framer-ih1uyy { height: 13px; left: 52px; position: absolute; top: 4px; width: 11px; }\",\".framer-yptcx .framer-19wphgu { height: 16px; left: 64px; position: absolute; top: 0px; width: 8px; }\",\".framer-yptcx .framer-61wpqb { height: 13px; left: 74px; position: absolute; top: 4px; width: 11px; }\",\".framer-yptcx .framer-nro979 { height: 13px; left: 87px; position: absolute; top: 4px; width: 7px; }\",\".framer-yptcx .framer-eq5c1i { height: 13px; left: 95px; position: absolute; top: 4px; width: 12px; }\",\".framer-yptcx .framer-j7vhmh { height: 3px; left: 99px; position: absolute; top: 6px; width: 5px; }\",\".framer-yptcx .framer-z870s0 { height: 24px; overflow: hidden; position: relative; width: 96px; }\",\".framer-yptcx .framer-17xj9um { height: 20px; left: 0px; position: absolute; top: 0px; width: 81px; }\",\".framer-yptcx .framer-18jmejf { height: 20px; left: 22px; position: absolute; top: 0px; width: 18px; }\",\".framer-yptcx .framer-uhdgwt, .framer-yptcx .framer-ogt2d6, .framer-yptcx .framer-14xesfj, .framer-yptcx .framer-1d50i5x, .framer-yptcx .framer-18xrdcg { height: 20px; left: 0px; position: absolute; top: 0px; width: 18px; }\",\".framer-yptcx .framer-1sat7rq { height: 4px; left: 5px; position: absolute; top: 5px; width: 9px; }\",\".framer-yptcx .framer-vcasp6 { height: 4px; left: 5px; position: absolute; top: 12px; width: 9px; }\",\".framer-yptcx .framer-1329bvm { height: 20px; left: 63px; position: absolute; top: 0px; width: 18px; }\",\".framer-yptcx .framer-5kkoe8 { height: 20px; left: 42px; position: absolute; top: 0px; width: 18px; }\",\".framer-yptcx .framer-8l8yj6 { height: 3px; left: 5px; position: absolute; top: 5px; width: 9px; }\",\".framer-yptcx .framer-1jjc04o, .framer-yptcx .framer-zp0wqo { height: 20px; left: 0px; position: absolute; top: 0px; width: 19px; }\",\".framer-yptcx .framer-qxgxee { height: 24px; overflow: hidden; position: relative; width: 132px; }\",\".framer-yptcx .framer-jd578i { height: 24px; left: 0px; position: absolute; top: 0px; width: 132px; }\",\".framer-yptcx .framer-863gwo { height: 24px; left: 0px; position: absolute; top: 0px; width: 42px; }\",\".framer-yptcx .framer-1d3snvj { height: 24px; left: 0px; position: absolute; top: 0px; width: 24px; }\",\".framer-yptcx .framer-h7f2vw { height: 14px; left: 6px; position: absolute; top: 5px; width: 14px; }\",\".framer-yptcx .framer-1asavi5 { height: 4px; left: 14px; position: absolute; top: 15px; width: 6px; }\",\".framer-yptcx .framer-1wc5lqs { height: 14px; left: 31px; position: absolute; top: 5px; width: 11px; }\",\".framer-yptcx .framer-gnrlg0 { height: 5px; left: 34px; position: absolute; top: 8px; width: 5px; }\",\".framer-yptcx .framer-txcskb { height: 14px; left: 43px; position: absolute; top: 5px; width: 30px; }\",\".framer-yptcx .framer-1nq6uj5 { height: 14px; left: 0px; position: absolute; top: 0px; width: 10px; }\",\".framer-yptcx .framer-ep5tza { height: 14px; left: 22px; position: absolute; top: 1px; width: 7px; }\",\".framer-yptcx .framer-gopfne { height: 11px; left: 73px; position: absolute; top: 8px; width: 42px; }\",\".framer-yptcx .framer-1ahcdjo, .framer-yptcx .framer-vc980m, .framer-yptcx .framer-tpdv87 { height: 11px; left: 0px; position: absolute; top: 0px; width: 11px; }\",\".framer-yptcx .framer-prvexg, .framer-yptcx .framer-1yxgkjs { height: 6px; left: 3px; position: absolute; top: 3px; width: 5px; }\",\".framer-yptcx .framer-dz4176 { height: 11px; left: 20px; position: absolute; top: 0px; width: 11px; }\",\".framer-yptcx .framer-sya75t { height: 6px; left: 22px; position: absolute; top: 3px; width: 5px; }\",\".framer-yptcx .framer-1s2i9ma { height: 11px; left: 31px; position: absolute; top: 0px; width: 11px; }\",\".framer-yptcx .framer-18bsc4v { height: 6px; left: 34px; position: absolute; top: 3px; width: 5px; }\",\".framer-yptcx .framer-h8lmt8 { height: 11px; left: 85px; position: absolute; top: 8px; width: 47px; }\",\".framer-yptcx .framer-1u3sxg7 { height: 11px; left: 31px; position: absolute; top: 0px; width: 16px; }\",\".framer-yptcx .framer-wv1pvq { height: 11px; left: 0px; position: absolute; top: 0px; width: 7px; }\",\".framer-yptcx .framer-4ppgno { height: 11px; left: 54px; position: absolute; top: 8px; width: 11px; }\",\".framer-yptcx .framer-1fiyyjz { aspect-ratio: 4.7894736842105265 / 1; height: var(--framer-aspect-ratio-supported, 32px); overflow: hidden; position: relative; width: 154px; }\",\".framer-yptcx .framer-17iu485 { height: 24px; left: 0px; position: absolute; top: 0px; width: 116px; }\",\".framer-yptcx .framer-1dmx3rr { height: 21px; left: 23px; position: absolute; top: 3px; width: 94px; }\",\".framer-yptcx .framer-3n7nmc { height: 17px; left: 14px; position: absolute; top: 4px; width: 14px; }\",\".framer-yptcx .framer-yo7m0y { height: 7px; left: 17px; position: absolute; top: 7px; width: 6px; }\",\".framer-yptcx .framer-ytoo26 { height: 13px; left: 28px; position: absolute; top: 4px; width: 13px; }\",\".framer-yptcx .framer-q1a6a1 { height: 3px; left: 32px; position: absolute; top: 7px; width: 6px; }\",\".framer-yptcx .framer-h9nj9z { height: 13px; left: 42px; position: absolute; top: 5px; width: 8px; }\",\".framer-yptcx .framer-1rmrdz7 { height: 13px; left: 50px; position: absolute; top: 5px; width: 11px; }\",\".framer-yptcx .framer-7ui1e8 { height: 3px; left: 61px; position: absolute; top: 0px; width: 4px; }\",\".framer-yptcx .framer-1n1uxw6 { height: 13px; left: 61px; position: absolute; top: 5px; width: 4px; }\",\".framer-yptcx .framer-1liut6k { height: 18px; left: 67px; position: absolute; top: 0px; width: 14px; }\",\".framer-yptcx .framer-c3qapd { height: 7px; left: 70px; position: absolute; top: 8px; width: 6px; }\",\".framer-yptcx .framer-11fmymx { height: 13px; left: 81px; position: absolute; top: 5px; width: 13px; }\",\".framer-yptcx .framer-5qwine { height: 3px; left: 85px; position: absolute; top: 8px; width: 6px; }\",\".framer-yptcx .framer-1sr2sic { height: 13px; left: 0px; position: absolute; top: 5px; width: 12px; }\",\".framer-yptcx .framer-1ezz1hc { height: 0px; left: 8px; position: absolute; top: 5px; width: 0px; }\",\".framer-yptcx .framer-1rrrg7j, .framer-yptcx .framer-112xeqw { height: 21px; left: 0px; position: absolute; top: 0px; width: 30px; }\",\".framer-yptcx .framer-16aenva { height: 0px; left: 28px; position: absolute; top: 1px; width: 0px; }\",\".framer-yptcx .framer-j8jg0l { height: 25px; overflow: hidden; position: relative; width: 107px; }\",\".framer-yptcx .framer-sxhut3 { height: 24px; left: 1px; position: absolute; top: 1px; width: 106px; }\",\".framer-yptcx .framer-1ms4ryu { height: 14px; left: 46px; position: absolute; top: 6px; width: 15px; }\",\".framer-yptcx .framer-1f5qdty { height: 3px; left: 50px; position: absolute; top: 9px; width: 7px; }\",\".framer-yptcx .framer-sn3y8h { height: 14px; left: 86px; position: absolute; top: 6px; width: 15px; }\",\".framer-yptcx .framer-j4dwjw { height: 3px; left: 90px; position: absolute; top: 9px; width: 7px; }\",\".framer-yptcx .framer-oft09x { height: 14px; left: 72px; position: absolute; top: 6px; width: 14px; }\",\".framer-yptcx .framer-r5xqq4 { height: 18px; left: 103px; position: absolute; top: 2px; width: 4px; }\",\".framer-yptcx .framer-j6me0t { height: 24px; left: 0px; position: absolute; top: 0px; width: 28px; }\",\".framer-yptcx .framer-1or6qht { height: 18px; left: 28px; position: absolute; top: 2px; width: 21px; }\",\".framer-yptcx .framer-175lbsn { height: 13px; left: 63px; position: absolute; top: 7px; width: 9px; }\",\".framer-yptcx .framer-bkym4i { aspect-ratio: 4.85 / 1; height: var(--framer-aspect-ratio-supported, 20px); overflow: hidden; position: relative; width: 97px; }\",\".framer-yptcx .framer-c8xq27 { aspect-ratio: 4.825136612021858 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 20px); left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-yptcx .framer-1s1u9sx { aspect-ratio: 4 / 1; height: var(--framer-aspect-ratio-supported, 28px); overflow: hidden; position: relative; width: 112px; }\",\".framer-yptcx .framer-mz39ab { height: 28px; left: 0px; position: absolute; top: 0px; width: 112px; }\",\".framer-yptcx .framer-ap9ce3 { height: 21px; left: 31px; position: absolute; top: 4px; width: 81px; }\",\".framer-yptcx .framer-vcgps { height: 6px; left: 14px; position: absolute; top: 16px; width: 6px; }\",\".framer-yptcx .framer-1gnign1 { height: 6px; left: 21px; position: absolute; top: 16px; width: 6px; }\",\".framer-yptcx .framer-185k1lq { height: 6px; left: 49px; position: absolute; top: 16px; width: 4px; }\",\".framer-yptcx .framer-q8p1kq { height: 4px; left: 62px; position: absolute; top: 16px; width: 5px; }\",\".framer-yptcx .framer-s6a5q4 { height: 3px; left: 64px; position: absolute; top: 19px; width: 2px; }\",\".framer-yptcx .framer-942hc6 { height: 6px; left: 37px; position: absolute; top: 16px; width: 5px; }\",\".framer-yptcx .framer-13m1ayx { height: 6px; left: 28px; position: absolute; top: 16px; width: 2px; }\",\".framer-yptcx .framer-5elytm { height: 6px; left: 54px; position: absolute; top: 16px; width: 2px; }\",\".framer-yptcx .framer-oao0q8 { height: 6px; left: 57px; position: absolute; top: 16px; width: 5px; }\",\".framer-yptcx .framer-2mwt7d { height: 6px; left: 43px; position: absolute; top: 16px; width: 6px; }\",\".framer-yptcx .framer-giqf08 { height: 3px; left: 44px; position: absolute; top: 16px; width: 2px; }\",\".framer-yptcx .framer-imza2t { height: 6px; left: 31px; position: absolute; top: 16px; width: 6px; }\",\".framer-yptcx .framer-jtpp86 { height: 11px; left: 35px; position: absolute; top: 0px; width: 12px; }\",\".framer-yptcx .framer-qx0kjz { height: 11px; left: 70px; position: absolute; top: 0px; width: 11px; }\",\".framer-yptcx .framer-d5heco { height: 9px; left: 73px; position: absolute; top: 1px; width: 7px; }\",\".framer-yptcx .framer-4qknv2 { height: 11px; left: 25px; position: absolute; top: 0px; width: 10px; }\",\".framer-yptcx .framer-diu3y7 { height: 5px; left: 28px; position: absolute; top: 1px; width: 4px; }\",\".framer-yptcx .framer-3k0ggw { height: 11px; left: 58px; position: absolute; top: 0px; width: 10px; }\",\".framer-yptcx .framer-1ybrlbp { height: 5px; left: 61px; position: absolute; top: 1px; width: 4px; }\",\".framer-yptcx .framer-gcf14w { height: 11px; left: 13px; position: absolute; top: 0px; width: 11px; }\",\".framer-yptcx .framer-lp1dbl { height: 4px; left: 16px; position: absolute; top: 3px; width: 3px; }\",\".framer-yptcx .framer-jlct4t { height: 11px; left: 46px; position: absolute; top: 0px; width: 11px; }\",\".framer-yptcx .framer-yyfoi2 { height: 4px; left: 49px; position: absolute; top: 3px; width: 3px; }\",\".framer-yptcx .framer-14doi0n, .framer-yptcx .framer-6a8m7, .framer-yptcx .framer-pxg3vo { height: 28px; left: 0px; position: absolute; top: 0px; width: 24px; }\",\".framer-yptcx .framer-103eb6s { height: 20px; left: 1px; position: absolute; top: 3px; width: 22px; }\",\".framer-yptcx .framer-1wp0n37 { height: 9px; left: 5px; position: absolute; top: 11px; width: 13px; }\",\".framer-yptcx .framer-t80g2v { height: 1px; left: 6px; position: absolute; top: 11px; width: 6px; }\",\".framer-yptcx .framer-qmn2vs { height: 1px; left: 11px; position: absolute; top: 11px; width: 4px; }\",\".framer-yptcx .framer-1wmtzok { height: 1px; left: 15px; position: absolute; top: 12px; width: 1px; }\",\".framer-yptcx .framer-csj3xn { height: 1px; left: 16px; position: absolute; top: 12px; width: 1px; }\",\".framer-yptcx .framer-pa088y { height: 1px; left: 17px; position: absolute; top: 13px; width: 1px; }\",\".framer-yptcx .framer-1bl3iwe { height: 1px; left: 5px; position: absolute; top: 13px; width: 1px; }\",\".framer-yptcx .framer-1pabso7 { height: 1px; left: 17px; position: absolute; top: 17px; width: 1px; }\",\".framer-yptcx .framer-1lp243r { height: 1px; left: 5px; position: absolute; top: 17px; width: 1px; }\",\".framer-yptcx .framer-1u2ralx { height: 9px; left: 0px; position: absolute; top: 0px; width: 11px; }\",\".framer-yptcx .framer-q5u6d2 { height: 9px; left: 12px; position: absolute; top: 0px; width: 11px; }\",\".framer-yptcx .framer-l9fo9s { height: 28px; left: 1px; position: absolute; top: 1px; width: 23px; }\",\".framer-yptcx .framer-16tbmxt { height: 19px; left: 1px; position: absolute; top: 4px; width: 22px; }\",\".framer-yptcx .framer-1ua38qs { height: 7px; left: 2px; position: absolute; top: 0px; width: 3px; }\",\".framer-yptcx .framer-agy38p { height: 7px; left: 5px; position: absolute; top: 0px; width: 3px; }\",\".framer-yptcx .framer-17i93u0 { height: 8px; left: 0px; position: absolute; top: 0px; width: 5px; }\",\".framer-yptcx .framer-p49otp { height: 8px; left: 6px; position: absolute; top: 0px; width: 5px; }\",\".framer-yptcx .framer-u292fu { height: 7px; left: 9px; position: absolute; top: 1px; width: 1px; }\",\".framer-yptcx .framer-1um45zs { height: 7px; left: 2px; position: absolute; top: 1px; width: 1px; }\",\".framer-yptcx .framer-wgd0mk { height: 1px; left: 2px; position: absolute; top: 7px; width: 3px; }\",\".framer-yptcx .framer-1fxpp0i { height: 1px; left: 6px; position: absolute; top: 7px; width: 3px; }\",\".framer-yptcx .framer-tfd56j { height: 1px; left: 5px; position: absolute; top: 7px; width: 1px; }\",\".framer-yptcx .framer-bfc0u9 { height: 7px; left: 14px; position: absolute; top: 0px; width: 3px; }\",\".framer-yptcx .framer-gx2rkm { height: 7px; left: 17px; position: absolute; top: 0px; width: 3px; }\",\".framer-yptcx .framer-1pflygj { height: 8px; left: 11px; position: absolute; top: 0px; width: 5px; }\",\".framer-yptcx .framer-1rijz7w { height: 8px; left: 17px; position: absolute; top: 0px; width: 5px; }\",\".framer-yptcx .framer-1bmnymt { height: 7px; left: 20px; position: absolute; top: 1px; width: 1px; }\",\".framer-yptcx .framer-h822cq { height: 7px; left: 13px; position: absolute; top: 1px; width: 1px; }\",\".framer-yptcx .framer-wt99h9 { height: 1px; left: 13px; position: absolute; top: 7px; width: 3px; }\",\".framer-yptcx .framer-57xr0l { height: 1px; left: 17px; position: absolute; top: 7px; width: 3px; }\",\".framer-yptcx .framer-1pg4ugb { height: 1px; left: 16px; position: absolute; top: 7px; width: 1px; }\",\".framer-yptcx .framer-18gcp5t { height: 7px; left: 7px; position: absolute; top: 11px; width: 8px; }\",\".framer-yptcx .framer-1i17h3f { height: 7px; left: 15px; position: absolute; top: 12px; width: 1px; }\",\".framer-yptcx .framer-bxr7kj { height: 1px; left: 7px; position: absolute; top: 18px; width: 4px; }\",\".framer-yptcx .framer-z76l3x { height: 8px; left: 5px; position: absolute; top: 12px; width: 6px; }\",\".framer-yptcx .framer-1myx2ul { height: 7px; left: 6px; position: absolute; top: 12px; width: 1px; }\",\".framer-yptcx .framer-s330pw { height: 1px; left: 11px; position: absolute; top: 18px; width: 4px; }\",\".framer-yptcx .framer-12d45y6 { height: 8px; left: 11px; position: absolute; top: 11px; width: 6px; }\",\".framer-yptcx .framer-1v1iq7r { height: 1px; left: 11px; position: absolute; top: 19px; width: 1px; }\",\".framer-yptcx .framer-kri8ok { height: 14px; left: 4px; position: absolute; top: 6px; width: 16px; }\",\".framer-yptcx .framer-y0ekre { height: 3px; left: 0px; position: absolute; top: 0px; width: 2px; }\",\".framer-yptcx .framer-rsf1tq { height: 3px; left: 3px; position: absolute; top: 0px; width: 2px; }\",\".framer-yptcx .framer-1t7f7mf { height: 3px; left: 15px; position: absolute; top: 0px; width: 1px; }\",\".framer-yptcx .framer-ugnw4 { height: 3px; left: 12px; position: absolute; top: 0px; width: 2px; }\",\".framer-yptcx .framer-3mms2s { height: 2px; left: 12px; position: absolute; top: 0px; width: 1px; }\",\".framer-yptcx .framer-ntwug5 { height: 3px; left: 5px; position: absolute; top: 11px; width: 2px; }\",\".framer-yptcx .framer-143m40n { height: 3px; left: 10px; position: absolute; top: 11px; width: 2px; }\",\".framer-yptcx .framer-1dat4ue { height: 4px; left: 7px; position: absolute; top: 11px; width: 3px; }\",\".framer-yptcx .framer-k2xgl3 { height: 1px; left: 8px; position: absolute; top: 12px; width: 1px; }\",\".framer-yptcx .framer-1drb1yu { height: 32px; overflow: hidden; position: relative; width: 134px; }\",\".framer-yptcx .framer-k8twiq { height: 32px; left: 0px; position: absolute; top: 0px; width: 134px; }\",\".framer-yptcx .framer-4bdfc, .framer-yptcx .framer-161y0ao { height: 32px; left: 0px; position: absolute; top: 0px; width: 21px; }\",\".framer-yptcx .framer-1ah1c2c { height: 1px; left: 12px; position: absolute; top: 9px; width: 1px; }\",\".framer-yptcx .framer-1kf75ek { height: 3px; left: 12px; position: absolute; top: 22px; width: 2px; }\",\".framer-yptcx .framer-1irztcu { height: 1px; left: 13px; position: absolute; top: 8px; width: 1px; }\",\".framer-yptcx .framer-swg6cj { height: 19px; left: 1px; position: absolute; top: 1px; width: 20px; }\",\".framer-yptcx .framer-xhj9kx { height: 2px; left: 9px; position: absolute; top: 9px; width: 2px; }\",\".framer-yptcx .framer-k63pes { height: 1px; left: 9px; position: absolute; top: 8px; width: 1px; }\",\".framer-yptcx .framer-mdcx7k { height: 1px; left: 9px; position: absolute; top: 12px; width: 1px; }\",\".framer-yptcx .framer-70rakn { height: 3px; left: 9px; position: absolute; top: 22px; width: 2px; }\",\".framer-yptcx .framer-xcthi0 { height: 1px; left: 7px; position: absolute; top: 20px; width: 2px; }\",\".framer-yptcx .framer-1sdxqjz { height: 19px; left: 1px; position: absolute; top: 13px; width: 20px; }\",\".framer-yptcx .framer-c4r1ef { height: 30px; left: 1px; position: absolute; top: 1px; width: 19px; }\",\".framer-yptcx .framer-epl9m4 { height: 9px; left: 10px; position: absolute; top: 0px; width: 9px; }\",\".framer-yptcx .framer-1uhwxub { height: 18px; left: 0px; position: absolute; top: 0px; width: 10px; }\",\".framer-yptcx .framer-7orz59 { height: 9px; left: 0px; position: absolute; top: 22px; width: 9px; }\",\".framer-yptcx .framer-17evxt5 { height: 18px; left: 11px; position: absolute; top: 13px; width: 8px; }\",\".framer-yptcx .framer-rzt7o { height: 22px; left: 13px; position: absolute; top: 6px; width: 122px; }\",\".framer-yptcx .framer-1855xrf { height: 1px; left: 0px; position: absolute; top: 13px; width: 1px; }\",\".framer-yptcx .framer-ugltol { height: 14px; left: 41px; position: absolute; top: 8px; width: 13px; }\",\".framer-yptcx .framer-9qbopg { height: 6px; left: 44px; position: absolute; top: 15px; width: 4px; }\",\".framer-yptcx .framer-ppww7y { height: 20px; left: 18px; position: absolute; top: 2px; width: 12px; }\",\".framer-yptcx .framer-vnqzcs { height: 17px; left: 30px; position: absolute; top: 5px; width: 10px; }\",\".framer-yptcx .framer-1ebt9ml { height: 14px; left: 55px; position: absolute; top: 8px; width: 16px; }\",\".framer-yptcx .framer-1n5agzu { height: 22px; left: 72px; position: absolute; top: 0px; width: 11px; }\",\".framer-yptcx .framer-g178mq { height: 15px; left: 81px; position: absolute; top: 8px; width: 14px; }\",\".framer-yptcx .framer-12phcs1 { height: 11px; left: 84px; position: absolute; top: 9px; width: 7px; }\",\".framer-yptcx .framer-ltlae0 { height: 14px; left: 96px; position: absolute; top: 8px; width: 11px; }\",\".framer-yptcx .framer-1thialy { height: 22px; left: 107px; position: absolute; top: 0px; width: 15px; }\",\".framer-yptcx .framer-itj2ow { height: 11px; left: 110px; position: absolute; top: 9px; width: 7px; }\",\".framer-yptcx .framer-25982k { align-content: center; align-items: center; border-bottom-left-radius: 120px; border-bottom-right-radius: 120px; border-top-left-radius: 120px; border-top-right-radius: 120px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: flex-start; overflow: visible; padding: 50px 120px 120px 120px; position: relative; width: 100%; }\",\".framer-yptcx .framer-gp0wnv { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-yptcx .framer-1ju1afb { --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 800px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-yptcx .framer-qyvqt2 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-yptcx .framer-kundsv { align-content: flex-start; align-items: flex-start; align-self: stretch; background-color: var(--token-88b455f0-3053-45e0-b841-224db2b75861, #6982ff); border-bottom-left-radius: 64px; border-bottom-right-radius: 64px; border-top-left-radius: 64px; border-top-right-radius: 64px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 80vh; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: auto; will-change: var(--framer-will-change-override, transform); }\",\".framer-yptcx .framer-1bywews { align-content: center; align-items: center; border-bottom-left-radius: 56px; border-bottom-right-radius: 56px; border-top-left-radius: 56px; border-top-right-radius: 56px; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 1px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-yptcx .framer-1v6iqpc { align-content: center; align-items: center; background-color: #f5faff; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: 100%; justify-content: center; overflow: visible; padding: 48px; position: relative; width: 1px; }\",\".framer-yptcx .framer-jl3umd, .framer-yptcx .framer-1ywqyst, .framer-yptcx .framer-1md2yc, .framer-yptcx .framer-1txw7sm, .framer-yptcx .framer-15mfukc { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-yptcx .framer-1oypumx, .framer-yptcx .framer-1shyjib, .framer-yptcx .framer-11x0pzo, .framer-yptcx .framer-uvydrd, .framer-yptcx .framer-qfx47p { 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: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-yptcx .framer-tfy5x2, .framer-yptcx .framer-1rn7hti, .framer-yptcx .framer-1ec28xc, .framer-yptcx .framer-qxs19u, .framer-yptcx .framer-1mnac0u, .framer-yptcx .framer-11hxepd, .framer-yptcx .framer-1gi4m45, .framer-yptcx .framer-1mlbawv, .framer-yptcx .framer-dkibgw, .framer-yptcx .framer-lynixg, .framer-yptcx .framer-1mgt8qa, .framer-yptcx .framer-an73dt, .framer-yptcx .framer-duwsw8, .framer-yptcx .framer-tn29q1, .framer-yptcx .framer-1ajpecc, .framer-yptcx .framer-o63a2x, .framer-yptcx .framer-1atgqmq, .framer-yptcx .framer-p12tiu { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-yptcx .framer-t78646-container, .framer-yptcx .framer-17itcqa-container, .framer-yptcx .framer-m119ew-container, .framer-yptcx .framer-1ldqbvp-container, .framer-yptcx .framer-cxnsu3-container { flex: none; height: auto; position: relative; width: 200px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-yptcx .framer-l4un23 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: center; overflow: hidden; padding: 14px; position: relative; width: 50%; }\",\".framer-yptcx .framer-1ez0yb5 { align-content: center; align-items: center; background-color: var(--token-daae2852-4f98-484d-bbd7-4d6d0367ce0a, #ff7247); border-bottom-left-radius: 64px; border-bottom-right-radius: 64px; border-top-left-radius: 64px; border-top-right-radius: 64px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 80vh; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1010px; will-change: var(--framer-will-change-override, transform); }\",\".framer-yptcx .framer-agida6 { align-content: center; align-items: center; border-bottom-left-radius: 44px; border-top-left-radius: 44px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: center; overflow: hidden; padding: 14px; position: relative; width: 50%; will-change: var(--framer-will-change-override, transform); }\",\".framer-yptcx .framer-1wup6lp-container { flex: none; height: auto; position: relative; width: 414px; }\",\".framer-yptcx .framer-eo8vl8 { align-content: center; align-items: center; background-color: #fff1ed; border-bottom-right-radius: 56px; border-top-right-radius: 56px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: 100%; justify-content: center; overflow: visible; padding: 48px; position: relative; width: 1px; }\",\".framer-yptcx .framer-1oejmgp { align-content: center; align-items: center; background-color: #b2a3ff; border-bottom-left-radius: 64px; border-bottom-right-radius: 64px; border-top-left-radius: 64px; border-top-right-radius: 64px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 80vh; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1010px; will-change: var(--framer-will-change-override, transform); }\",\".framer-yptcx .framer-1l6qt40 { align-content: center; align-items: center; background-color: #f2f0ff; border-bottom-left-radius: 56px; border-top-left-radius: 56px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: 100%; justify-content: center; overflow: visible; padding: 48px; position: relative; width: 1px; }\",\".framer-yptcx .framer-kqfjnn { align-content: center; align-items: center; border-bottom-right-radius: 44px; border-top-right-radius: 44px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: center; overflow: hidden; padding: 14px; position: relative; width: 50%; will-change: var(--framer-will-change-override, transform); }\",\".framer-yptcx .framer-ieg5bq { align-content: center; align-items: center; background-color: #dedede; border-bottom-left-radius: 64px; border-bottom-right-radius: 64px; border-top-left-radius: 64px; border-top-right-radius: 64px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 80vh; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1010px; }\",\".framer-yptcx .framer-1444m0w, .framer-yptcx .framer-xrindq { align-content: center; align-items: center; border-bottom-left-radius: 44px; border-bottom-right-radius: 44px; border-top-left-radius: 44px; border-top-right-radius: 44px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: center; overflow: hidden; padding: 14px; position: relative; width: 50%; will-change: var(--framer-will-change-override, transform); }\",\".framer-yptcx .framer-11f1eps-container { flex: none; height: 374px; position: relative; width: 505px; }\",\".framer-yptcx .framer-142web0 { align-content: center; align-items: center; background-color: #fafafa; border-bottom-right-radius: 56px; border-top-right-radius: 56px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: 100%; justify-content: center; overflow: visible; padding: 48px; position: relative; width: 1px; }\",\".framer-yptcx .framer-rjvn60 { align-content: center; align-items: center; background-color: var(--token-5b2b5b8a-7a02-45b2-b323-56c47f64c3a5, #333333); border-bottom-left-radius: 64px; border-bottom-right-radius: 64px; border-top-left-radius: 64px; border-top-right-radius: 64px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 80vh; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1010px; }\",\".framer-yptcx .framer-kxf9cx { align-content: center; align-items: center; background-color: #fafafa; border-bottom-left-radius: 56px; border-top-left-radius: 56px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: 100%; justify-content: center; overflow: visible; padding: 48px; position: relative; width: 1px; }\",\".framer-yptcx .framer-a35ioz-container { flex: none; height: auto; left: 50%; position: absolute; top: 51%; transform: translate(-50%, -50%); width: auto; z-index: 1; }\",\".framer-yptcx .framer-86boof { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: center; overflow: visible; padding: 80px 120px 120px 120px; position: relative; width: 100%; }\",\".framer-yptcx .framer-wax3zq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; max-width: 1000px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-yptcx .framer-19jpi8g { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 730px; word-break: break-word; word-wrap: break-word; }\",\".framer-yptcx .framer-1xj728r { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1010px; }\",\".framer-yptcx .framer-j1g1jy, .framer-yptcx .framer-927l8y { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-end; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-yptcx .framer-1jrsht8 { -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); background-color: #dbeafe; border-bottom-left-radius: 63px; border-bottom-right-radius: 63px; border-top-left-radius: 63px; border-top-right-radius: 63px; flex: none; gap: 0px; height: 48px; left: calc(49.7576736672052% - 48px / 2); overflow: visible; position: absolute; top: -21px; width: 48px; z-index: 1; }\",\".framer-yptcx .framer-1qpd3o4 { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 48%; position: absolute; top: 50%; transform: translate(-50%, -50%); white-space: pre; width: auto; }\",\".framer-yptcx .framer-18c9sr0, .framer-yptcx .framer-1b2nbue { align-content: flex-start; align-items: flex-start; background-color: var(--token-4fb0bfc2-92f4-4f31-a3ac-3610961ea784, rgba(182, 182, 209, 0.15)); border-bottom-left-radius: 40px; border-bottom-right-radius: 40px; border-top-left-radius: 40px; border-top-right-radius: 40px; box-shadow: -7px 10px 1px 0px #e1e5eb; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 8px; position: relative; width: 100%; }\",\".framer-yptcx .framer-tp7cml { align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 32px; border-bottom-right-radius: 32px; border-top-left-radius: 32px; border-top-right-radius: 32px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; min-height: 468px; overflow: hidden; padding: 35px 24px 32px 24px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-yptcx .framer-17bwk3m-container { flex: none; height: 209px; min-width: 300px; position: relative; width: 306px; }\",\".framer-yptcx .framer-11dbglp { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-yptcx .framer-p3t5wl { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-yptcx .framer-hhebtf { align-content: center; align-items: center; background-color: #dbeafe; border-bottom-left-radius: 47px; border-bottom-right-radius: 47px; border-top-left-radius: 47px; border-top-right-radius: 47px; box-shadow: 3.9526491165161133px 5.92897367477417px 15.810596466064453px 0px rgba(182, 181, 201, 0.1), 11.85794734954834px 27.66854476928711px 29.644868850708008px 0px rgba(182, 181, 201, 0.09), 27.66854476928711px 61.26606369018555px 39.526493072509766px 0px rgba(182, 181, 201, 0.05), 47.43178939819336px 108.69786071777344px 47.43178939819336px 0px rgba(182, 181, 201, 0.01), 75.10033416748047px 169.9639129638672px 51.384437561035156px 0px rgba(182, 181, 201, 0); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 31.621192932128906px; height: 46px; justify-content: center; left: calc(49.61439588688948% - 46px / 2); overflow: visible; padding: 0px; position: absolute; top: -17px; width: 46px; z-index: 1; }\",\".framer-yptcx .framer-1iedcs9 { align-content: flex-start; align-items: flex-start; background-color: var(--token-4fb0bfc2-92f4-4f31-a3ac-3610961ea784, rgba(182, 182, 209, 0.15)); border-bottom-left-radius: 40px; border-bottom-right-radius: 40px; border-top-left-radius: 40px; border-top-right-radius: 40px; box-shadow: -7px 10px 1px 0px #e1e8eb; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 8px; position: relative; width: 100%; }\",\".framer-yptcx .framer-17neish { align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 32px; border-bottom-right-radius: 32px; border-top-left-radius: 32px; border-top-right-radius: 32px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; min-height: 468px; overflow: visible; padding: 40px 24px 32px 24px; position: relative; width: 1px; }\",\".framer-yptcx .framer-xd279c-container, .framer-yptcx .framer-1x0zckl-container { flex: none; height: 209px; min-width: 300px; position: relative; width: 100%; }\",\".framer-yptcx .framer-o6ppww, .framer-yptcx .framer-z0d4so { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-yptcx .framer-fc7ibt { align-content: center; align-items: center; background-color: #dbeafe; border-bottom-left-radius: 47px; border-bottom-right-radius: 47px; border-top-left-radius: 47px; border-top-right-radius: 47px; box-shadow: 3.9526491165161133px 5.92897367477417px 15.810596466064453px 0px rgba(182, 181, 201, 0.1), 11.85794734954834px 27.66854476928711px 29.644868850708008px 0px rgba(182, 181, 201, 0.09), 27.66854476928711px 61.26606369018555px 39.526493072509766px 0px rgba(182, 181, 201, 0.05), 47.43178939819336px 108.69786071777344px 47.43178939819336px 0px rgba(182, 181, 201, 0.01), 75.10033416748047px 169.9639129638672px 51.384437561035156px 0px rgba(182, 181, 201, 0); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 31.621192932128906px; height: 46px; justify-content: center; left: calc(50.06418485237486% - 46px / 2); overflow: visible; padding: 0px; position: absolute; top: -17px; width: 46px; z-index: 1; }\",\".framer-yptcx .framer-1xszgko { align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 32px; border-bottom-right-radius: 32px; border-top-left-radius: 32px; border-top-right-radius: 32px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; min-height: 468px; overflow: visible; padding: 32px; position: relative; width: 1px; }\",\".framer-yptcx .framer-xs7wm6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: hidden; padding: 120px; position: relative; width: 100%; }\",\".framer-yptcx .framer-w1ekq { align-content: center; align-items: center; border-bottom-left-radius: 64px; border-bottom-right-radius: 64px; border-top-left-radius: 64px; border-top-right-radius: 64px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 42.25vh; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-yptcx .framer-1ou7682 { align-content: center; align-items: center; background-color: #e5effa; border-bottom-left-radius: 56px; border-bottom-right-radius: 56px; border-top-left-radius: 56px; border-top-right-radius: 56px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; max-width: 1010px; min-width: 0px; overflow: hidden; padding: 48px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-yptcx .framer-16444l5, .framer-yptcx .framer-1srfqgt { 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: 0px; position: relative; width: min-content; }\",\".framer-yptcx .framer-1ez2hnc { --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 450px; position: relative; white-space: pre-wrap; width: 450px; word-break: break-word; word-wrap: break-word; }\",\".framer-yptcx .framer-11di8ct, .framer-yptcx .framer-1tdxp8p { --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 730px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-yptcx .framer-1x46wux { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-yptcx .framer-4m221, .framer-yptcx .framer-20lcu4, .framer-yptcx .framer-136hzw1 { --border-bottom-width: 1px; --border-color: #e4e4e7; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: #fbfcff; border-bottom-left-radius: 100px; border-bottom-right-radius: 100px; border-top-left-radius: 100px; border-top-right-radius: 100px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 8px 24px 8px 8px; position: relative; text-decoration: none; width: min-content; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-yptcx .framer-1631a1z, .framer-yptcx .framer-ucb9v, .framer-yptcx .framer-low8si { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 30px); overflow: visible; position: relative; width: 30px; }\",\".framer-yptcx .framer-16kgwds { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 2px; height: min-content; justify-content: center; overflow: visible; padding: 0px 32px 0px 0px; position: relative; width: 100%; }\",\".framer-yptcx .framer-1wpx9vw { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; max-width: 772px; overflow: hidden; padding: 0px 0px 100px 0px; position: relative; width: 100%; }\",\".framer-yptcx .framer-12ob998 { border-bottom-left-radius: 120px; border-bottom-right-radius: 120px; border-top-left-radius: 120px; border-top-right-radius: 120px; flex: none; gap: 0px; height: 82px; overflow: visible; position: relative; width: 82px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-yptcx .framer-1gtemuf { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-yptcx .framer-9wp89s { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-yptcx .framer-1k8lx30 { align-content: center; align-items: center; background-color: #e5effa; border-bottom-left-radius: 56px; border-bottom-right-radius: 56px; border-top-left-radius: 56px; border-top-right-radius: 56px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: center; overflow: hidden; padding: 120px; position: relative; width: 1014px; will-change: var(--framer-will-change-override, transform); }\",\".framer-yptcx .framer-e7m96v { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 769px; word-break: break-word; word-wrap: break-word; }\",\".framer-yptcx .framer-1f2v12o { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-yptcx .framer-1llpjow-container, .framer-yptcx .framer-1b60tb5-container { flex: 1 0 0px; height: auto; max-height: 100%; min-height: 90px; min-width: 290px; position: relative; width: 1px; }\",\".framer-yptcx .framer-1v4s55u-container, .framer-yptcx .framer-kgi3a5-container, .framer-yptcx .framer-17om2oi-container, .framer-yptcx .framer-163v9lo-container, .framer-yptcx .framer-14ykjrq-container, .framer-yptcx .framer-1ka1bui-container, .framer-yptcx .framer-hxbrfa-container, .framer-yptcx .framer-1eb07u9-container, .framer-yptcx .framer-1y0s319-container, .framer-yptcx .framer-xd124-container { flex: 1 0 0px; height: auto; min-width: 290px; position: relative; width: 1px; }\",\".framer-yptcx .framer-6e4tu0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 120px 0px 10px 0px; position: relative; width: 100%; }\",\".framer-yptcx .framer-f23rnv { --framer-paragraph-spacing: 0px; flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-yptcx .framer-1umx144 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 50px 120px 60px 120px; position: relative; width: 100%; }\",\".framer-yptcx .framer-jfizuo { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1010px; }\",\".framer-yptcx .framer-1ugayxe { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 22px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-yptcx .framer-fym582, .framer-yptcx .framer-wsy45u, .framer-yptcx .framer-1r0vevo { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-yptcx .framer-89h2l9-container, .framer-yptcx .framer-19uaye6-container, .framer-yptcx .framer-17zhkoj-container, .framer-yptcx .framer-126zer6-container, .framer-yptcx .framer-1x7x984-container, .framer-yptcx .framer-xk5yx2-container, .framer-yptcx .framer-bl43s1-container, .framer-yptcx .framer-2v8bzo-container, .framer-yptcx .framer-16lhad3-container, .framer-yptcx .framer-yzxrnj-container, .framer-yptcx .framer-gw0znn-container, .framer-yptcx .framer-u5m79c-container, .framer-yptcx .framer-kiln9t-container, .framer-yptcx .framer-1767pbo-container, .framer-yptcx .framer-1caxal5-container, .framer-yptcx .framer-9qfq2-container, .framer-yptcx .framer-8shonb-container, .framer-yptcx .framer-17opvj7-container, .framer-yptcx .framer-1qawkqy-container, .framer-yptcx .framer-18cj3n1-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-yptcx .framer-1oky8np { align-content: flex-start; align-items: flex-start; background-color: rgba(255, 255, 255, 0.59); border-bottom-left-radius: 120px; border-bottom-right-radius: 120px; border-top-left-radius: 120px; border-top-right-radius: 120px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 100px; height: min-content; justify-content: center; overflow: hidden; padding: 120px 0px 120px 0px; position: relative; width: 1010px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-yptcx .framer-1ktbji1 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; max-width: 720px; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-yptcx .framer-trori0 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-yptcx .framer-s255g1 { flex: none; height: auto; max-width: 1000px; position: relative; white-space: pre-wrap; width: 129px; word-break: break-word; word-wrap: break-word; }\",\".framer-yptcx .framer-p6qcan { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; max-width: 800px; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-yptcx .framer-6xmhnp-container, .framer-yptcx .framer-1iabniq-container, .framer-yptcx .framer-3gbs5j-container, .framer-yptcx .framer-x2b77m-container, .framer-yptcx .framer-1af84l3-container { flex: none; height: auto; position: relative; width: 100%; z-index: 1; }\",\".framer-yptcx .framer-kt9vxa { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: hidden; padding: 24px 120px 24px 120px; position: relative; width: 100%; }\",\".framer-yptcx .framer-7ksewc-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,'.framer-yptcx[data-border=\"true\"]::after, .framer-yptcx [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@media (min-width: 810px) and (max-width: 1199px) { .framer-yptcx.framer-ygrexw { overflow: hidden; width: 810px; } .framer-yptcx .framer-1lmhvjq { gap: 0px; } .framer-yptcx .framer-2j2njf { padding: 80px 56px 0px 56px; } .framer-yptcx .framer-4pket1 { max-width: 908px; } .framer-yptcx .framer-11gezi9 { max-width: 473px; width: auto; } .framer-yptcx .framer-bc2z2s-container { bottom: -12px; left: calc(48.27160493827163% - 286px / 2); } .framer-yptcx .framer-1u9ku5g { padding: 30px 0px 0px 0px; } .framer-yptcx .framer-25982k, .framer-yptcx .framer-86boof, .framer-yptcx .framer-1umx144 { padding: 56px; } .framer-yptcx .framer-qyvqt2 { align-content: center; align-items: center; gap: 40px; max-width: 800px; width: 100%; } .framer-yptcx .framer-kundsv { align-content: center; align-items: center; align-self: unset; height: min-content; order: 0; width: 100%; } .framer-yptcx .framer-1bywews { flex: none; flex-direction: column; height: 944px; } .framer-yptcx .framer-1v6iqpc { flex: none; height: min-content; order: 0; padding: 56px; width: 100%; } .framer-yptcx .framer-jl3umd { justify-content: flex-start; } .framer-yptcx .framer-l4un23 { flex: 1 0 0px; height: 1px; order: 1; width: min-content; } .framer-yptcx .framer-1ez0yb5 { flex-direction: column; height: min-content; order: 1; width: 100%; } .framer-yptcx .framer-agida6 { height: 474px; order: 1; width: 100%; } .framer-yptcx .framer-eo8vl8 { border-bottom-right-radius: unset; border-top-left-radius: 56px; flex: none; height: min-content; order: 0; width: 100%; } .framer-yptcx .framer-1oejmgp { flex-direction: column; height: min-content; order: 2; width: 100%; } .framer-yptcx .framer-1l6qt40 { border-bottom-left-radius: unset; border-top-right-radius: 56px; flex: none; height: min-content; width: 100%; } .framer-yptcx .framer-kqfjnn, .framer-yptcx .framer-xrindq { height: 474px; width: 100%; } .framer-yptcx .framer-ieg5bq { flex-direction: column; height: min-content; order: 3; width: 100%; } .framer-yptcx .framer-1444m0w { height: 466px; order: 2; width: 100%; } .framer-yptcx .framer-142web0 { border-bottom-right-radius: unset; border-top-left-radius: 56px; flex: none; height: min-content; order: 1; padding: 56px; width: 100%; } .framer-yptcx .framer-1mlbawv { max-width: 463px; } .framer-yptcx .framer-rjvn60 { flex-direction: column; height: min-content; order: 4; width: 100%; } .framer-yptcx .framer-kxf9cx { border-bottom-left-radius: unset; border-top-right-radius: 56px; flex: none; height: min-content; padding: 56px; width: 100%; } .framer-yptcx .framer-1xj728r { flex-direction: column; flex-wrap: wrap; gap: 30px; width: 700px; } .framer-yptcx .framer-j1g1jy, .framer-yptcx .framer-927l8y { flex: none; min-width: 400px; width: 100%; } .framer-yptcx .framer-1jrsht8, .framer-yptcx .framer-fc7ibt { left: 44px; } .framer-yptcx .framer-tp7cml { min-height: unset; } .framer-yptcx .framer-17bwk3m-container { width: auto; } .framer-yptcx .framer-p3t5wl { flex: none; flex-direction: row; width: 100%; } .framer-yptcx .framer-hhebtf { left: 44px; top: -22px; } .framer-yptcx .framer-1iedcs9 { flex: 1 0 0px; width: 1px; } .framer-yptcx .framer-17neish, .framer-yptcx .framer-1xszgko { min-height: unset; overflow: hidden; will-change: var(--framer-will-change-override, transform); } .framer-yptcx .framer-xs7wm6 { gap: 32px; padding: 56px; } .framer-yptcx .framer-w1ekq { height: min-content; } .framer-yptcx .framer-1ou7682 { height: 397px; } .framer-yptcx .framer-16kgwds { width: 698px; } .framer-yptcx .framer-1wpx9vw { gap: 10px; padding: 80px 0px 120px 0px; width: 700px; } .framer-yptcx .framer-9wp89s { align-content: flex-start; align-items: flex-start; } .framer-yptcx .framer-1k8lx30 { border-bottom-left-radius: 72px; border-bottom-right-radius: 72px; border-top-left-radius: 72px; border-top-right-radius: 72px; gap: 56px; padding: 56px; width: 700px; } .framer-yptcx .framer-e7m96v { width: 669px; } .framer-yptcx .framer-1f2v12o, .framer-yptcx .framer-fym582 { align-content: center; align-items: center; } .framer-yptcx .framer-1llpjow-container { order: 0; } .framer-yptcx .framer-1b60tb5-container { min-width: 300px; order: 1; } .framer-yptcx .framer-1v4s55u-container { order: 2; } .framer-yptcx .framer-kgi3a5-container { order: 3; } .framer-yptcx .framer-17om2oi-container { order: 4; } .framer-yptcx .framer-163v9lo-container { order: 5; } .framer-yptcx .framer-14ykjrq-container { order: 6; } .framer-yptcx .framer-1ka1bui-container { order: 7; } .framer-yptcx .framer-hxbrfa-container { order: 8; } .framer-yptcx .framer-1eb07u9-container { order: 9; } .framer-yptcx .framer-1y0s319-container { order: 10; } .framer-yptcx .framer-xd124-container { order: 11; } .framer-yptcx .framer-jfizuo { width: 700px; } .framer-yptcx .framer-1ugayxe { gap: 16px; } .framer-yptcx .framer-1oky8np { border-bottom-left-radius: unset; border-bottom-right-radius: unset; border-top-left-radius: unset; border-top-right-radius: unset; flex-direction: column; gap: 56px; padding: 0px; width: 700px; will-change: unset; } .framer-yptcx .framer-1ktbji1 { max-width: 800px; width: 100%; } .framer-yptcx .framer-s255g1 { width: 114px; } .framer-yptcx .framer-p6qcan { flex: none; max-width: 100%; width: 100%; } .framer-yptcx .framer-kt9vxa { padding: 56px 56px 24px 56px; }}\",\"@media (max-width: 809px) { .framer-yptcx.framer-ygrexw { overflow: hidden; width: 390px; } .framer-yptcx .framer-1lmhvjq { gap: 0px; padding: 0px; } .framer-yptcx .framer-2j2njf { padding: 120px 24px 150px 24px; } .framer-yptcx .framer-pwd6xm { gap: 0px; justify-content: flex-start; } .framer-yptcx .framer-1cfo2xh { gap: 16px; order: 0; } .framer-yptcx .framer-w127i0, .framer-yptcx .framer-19jpi8g, .framer-yptcx .framer-1srfqgt, .framer-yptcx .framer-e7m96v { width: 100%; } .framer-yptcx .framer-1v9luur { height: var(--framer-aspect-ratio-supported, 12px); width: 12px; } .framer-yptcx .framer-13k4b6-container { height: 628px; order: 1; width: 427px; z-index: 1; } .framer-yptcx .framer-bc2z2s-container { bottom: 107px; left: calc(51.02564102564104% - 286px / 2); } .framer-yptcx .framer-1u9ku5g { padding: 30px 0px 0px 0px; } .framer-yptcx .framer-25982k { gap: 40px; padding: 40px 16px 24px 16px; } .framer-yptcx .framer-qyvqt2 { align-content: center; align-items: center; gap: 16px; max-width: 480px; width: 100%; } .framer-yptcx .framer-kundsv { align-self: unset; border-bottom-left-radius: 40px; border-bottom-right-radius: 40px; border-top-left-radius: 40px; border-top-right-radius: 40px; height: 700px; order: 0; overflow: visible; width: 100%; will-change: unset; } .framer-yptcx .framer-1bywews { border-bottom-left-radius: 32px; border-bottom-right-radius: 32px; border-top-left-radius: 32px; border-top-right-radius: 32px; flex: none; flex-direction: column; height: 800px; } .framer-yptcx .framer-1v6iqpc { flex: none; height: min-content; padding: 24px; width: 100%; } .framer-yptcx .framer-l4un23 { border-bottom-left-radius: 32px; border-bottom-right-radius: 32px; border-top-left-radius: 32px; border-top-right-radius: 32px; height: 381px; width: 100%; will-change: var(--framer-will-change-override, transform); } .framer-yptcx .framer-1ez0yb5 { border-bottom-left-radius: 32px; border-bottom-right-radius: 32px; border-top-left-radius: 32px; border-top-right-radius: 32px; flex-direction: column; height: 700px; order: 1; width: 100%; } .framer-yptcx .framer-agida6 { border-bottom-left-radius: 32px; border-bottom-right-radius: 32px; border-top-left-radius: 32px; border-top-right-radius: 32px; height: 381px; justify-content: flex-start; order: 1; width: 100%; } .framer-yptcx .framer-1wup6lp-container { order: 0; } .framer-yptcx .framer-eo8vl8 { border-bottom-right-radius: unset; border-top-left-radius: 24px; border-top-right-radius: 24px; flex: none; height: min-content; order: 0; padding: 24px; width: 100%; } .framer-yptcx .framer-1oejmgp { border-bottom-left-radius: 32px; border-bottom-right-radius: 32px; border-top-left-radius: 32px; border-top-right-radius: 32px; flex-direction: column; height: 700px; order: 2; width: 100%; } .framer-yptcx .framer-1l6qt40 { border-bottom-left-radius: unset; border-top-left-radius: 24px; border-top-right-radius: 24px; flex: none; height: min-content; order: 1; padding: 24px; width: 100%; } .framer-yptcx .framer-kqfjnn, .framer-yptcx .framer-1444m0w { border-bottom-left-radius: 32px; border-bottom-right-radius: 32px; border-top-left-radius: 32px; border-top-right-radius: 32px; height: 381px; order: 2; width: 100%; } .framer-yptcx .framer-ieg5bq { border-bottom-left-radius: 32px; border-bottom-right-radius: 32px; border-top-left-radius: 32px; border-top-right-radius: 32px; flex-direction: column; height: 700px; order: 3; width: 100%; } .framer-yptcx .framer-11f1eps-container { height: 547px; width: 521px; } .framer-yptcx .framer-142web0 { border-bottom-right-radius: unset; border-top-left-radius: 24px; border-top-right-radius: 24px; flex: none; height: min-content; order: 1; padding: 24px; width: 100%; } .framer-yptcx .framer-rjvn60 { border-bottom-left-radius: 32px; border-bottom-right-radius: 32px; border-top-left-radius: 32px; border-top-right-radius: 32px; flex-direction: column; height: 700px; order: 4; width: 100%; } .framer-yptcx .framer-kxf9cx { border-bottom-left-radius: unset; border-top-left-radius: 24px; border-top-right-radius: 24px; flex: none; height: min-content; padding: 24px; width: 100%; } .framer-yptcx .framer-xrindq { border-bottom-left-radius: 32px; border-bottom-right-radius: 32px; border-top-left-radius: 32px; border-top-right-radius: 32px; height: 381px; justify-content: flex-start; width: 100%; } .framer-yptcx .framer-86boof { gap: 100px; padding: 60px 24px 0px 24px; } .framer-yptcx .framer-1xj728r { flex-direction: column; gap: 48px; width: 350px; } .framer-yptcx .framer-j1g1jy, .framer-yptcx .framer-p3t5wl, .framer-yptcx .framer-927l8y, .framer-yptcx .framer-1llpjow-container, .framer-yptcx .framer-1v4s55u-container, .framer-yptcx .framer-kgi3a5-container, .framer-yptcx .framer-17om2oi-container, .framer-yptcx .framer-163v9lo-container, .framer-yptcx .framer-14ykjrq-container, .framer-yptcx .framer-1ka1bui-container, .framer-yptcx .framer-hxbrfa-container, .framer-yptcx .framer-1eb07u9-container, .framer-yptcx .framer-1y0s319-container, .framer-yptcx .framer-xd124-container, .framer-yptcx .framer-wsy45u { flex: none; width: 100%; } .framer-yptcx .framer-tp7cml, .framer-yptcx .framer-17neish { min-height: unset; } .framer-yptcx .framer-1xszgko { min-height: unset; padding: 24px; } .framer-yptcx .framer-xs7wm6 { gap: 32px; padding: 56px 24px 0px 24px; } .framer-yptcx .framer-w1ekq { border-bottom-left-radius: 40px; border-bottom-right-radius: 40px; border-top-left-radius: 40px; border-top-right-radius: 40px; height: min-content; overflow: visible; padding: 8px; will-change: unset; } .framer-yptcx .framer-1ou7682 { border-bottom-left-radius: 32px; border-bottom-right-radius: 32px; border-top-left-radius: 32px; border-top-right-radius: 32px; padding: 0px; } .framer-yptcx .framer-16444l5 { padding: 30px 0px 15px 0px; } .framer-yptcx .framer-1ez2hnc { width: 273px; } .framer-yptcx .framer-11di8ct { width: 297px; } .framer-yptcx .framer-1x46wux, .framer-yptcx .framer-1f2v12o { flex-direction: column; } .framer-yptcx .framer-16kgwds { padding: 30px; width: min-content; } .framer-yptcx .framer-1tdxp8p { width: 302px; } .framer-yptcx .framer-1wpx9vw { padding: 80px 24px 80px 24px; } .framer-yptcx .framer-1k8lx30 { border-bottom-left-radius: unset; border-bottom-right-radius: unset; border-top-left-radius: unset; border-top-right-radius: unset; gap: 32px; padding: 40px 24px 24px 24px; width: 100%; will-change: unset; } .framer-yptcx .framer-1b60tb5-container { flex: none; min-width: 220px; width: 100%; } .framer-yptcx .framer-6e4tu0 { padding: 120px 20px 0px 20px; } .framer-yptcx .framer-1umx144 { padding: 64px 24px 24px 24px; } .framer-yptcx .framer-jfizuo { gap: 48px; width: 350px; } .framer-yptcx .framer-1ugayxe { flex-direction: column; gap: 0px; } .framer-yptcx .framer-fym582, .framer-yptcx .framer-1r0vevo { flex: none; gap: 8px; width: 100%; } .framer-yptcx .framer-1oky8np { border-bottom-left-radius: 32px; border-bottom-right-radius: 32px; border-top-left-radius: 32px; border-top-right-radius: 32px; flex-direction: column; gap: 48px; padding: 56px 24px 24px 24px; width: 350px; } .framer-yptcx .framer-1ktbji1 { gap: 24px; order: 0; width: 100%; } .framer-yptcx .framer-trori0 { align-content: center; align-items: center; } .framer-yptcx .framer-p6qcan { flex: none; order: 1; width: 100%; } .framer-yptcx .framer-kt9vxa { padding: 24px; }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 13013.5\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"dKmIpojSc\":{\"layout\":[\"fixed\",\"auto\"]},\"aIyxiFhHf\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"nmq8t8WIn\":{\"pattern\":\":nmq8t8WIn\",\"name\":\"home\"},\"Dxk_r1dN4\":{\"pattern\":\":Dxk_r1dN4\",\"name\":\"features\"},\"HM6BfaNCm\":{\"pattern\":\":HM6BfaNCm\",\"name\":\"how-it-works\"},\"NgGcOr45W\":{\"pattern\":\":NgGcOr45W\",\"name\":\"security\"},\"ByhYSqbjb\":{\"pattern\":\":ByhYSqbjb\",\"name\":\"testi\"},\"S4lL2T0GH\":{\"pattern\":\":S4lL2T0GH\",\"name\":\"testimonials\"},\"MXIvwsHra\":{\"pattern\":\":MXIvwsHra\",\"name\":\"testimonials\"},\"wcCESsQK2\":{\"pattern\":\":wcCESsQK2\",\"name\":\"testimonials\"},\"CO8yW2QSN\":{\"pattern\":\":CO8yW2QSN\",\"name\":\"faq\"}}\n * @framerResponsiveScreen\n */const Frameri9mMX8Wmo=withCSS(Component,css,\"framer-yptcx\");export default Frameri9mMX8Wmo;Frameri9mMX8Wmo.displayName=\"Home 3\";Frameri9mMX8Wmo.defaultProps={height:13013.5,width:1200};addFonts(Frameri9mMX8Wmo,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Plus Jakarta Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/plusjakartasans/v11/LDIbaomQNQcsA88c7O9yZ4KMCoOg4IA6-91aHEjcWuA_d0nNTxXUEKi4Rw.woff2\",weight:\"600\"},{family:\"Plus Jakarta Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/plusjakartasans/v11/LDIbaomQNQcsA88c7O9yZ4KMCoOg4IA6-91aHEjcWuA_KUnNTxXUEKi4Rw.woff2\",weight:\"800\"},{family:\"Plus Jakarta Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/plusjakartasans/v11/LDIbaomQNQcsA88c7O9yZ4KMCoOg4IA6-91aHEjcWuA_m07NTxXUEKi4Rw.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5A3Ce6C9YYmCjpQx9M4inSaKU.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/Qx95Xyt0Ka3SGhinnbXIGpEIyP4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/6mJuEAguuIuMog10gGvH5d3cl8.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/xYYWaj7wCU5zSQH0eXvSaS19wo.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/otTaNuNpVK4RbdlT7zDDdKvQBA.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/d3tHnaQIAeqiE5hGcRw4mmgWYU.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/DolVirEGb34pEXEp8t8FQBSK4.woff2\",weight:\"500\"},{family:\"Plus Jakarta Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/plusjakartasans/v11/LDIbaomQNQcsA88c7O9yZ4KMCoOg4IA6-91aHEjcWuA_TknNTxXUEKi4Rw.woff2\",weight:\"700\"},{family:\"Plus Jakarta Sans\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/AJVGEOXGB2ALQKAZEK2LDOLCVBCMCOIT/LDEP4R7SNNABDEG433DCQGM2A7YCBHLU/OWABOLGBAKFVLPZ756IYS6EKYKU54K3I.woff2\",weight:\"700\"},{family:\"Plus Jakarta Sans\",source:\"fontshare\",style:\"italic\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/UABF25CCX23LBLOOMOCUSPFEXYUNKOIQ/NGF5IU7BZUA2FUOVWECHGUFSHNEIX4YK/QDINYT7WQXBD2IDFQGGJ74DWIUFHOOZD.woff2\",weight:\"500\"},{family:\"Plus Jakarta Sans\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/TX2N2Q6ZO2LBO34H72H5RVJTBQFGU4GV/ZICVNTLTT4V7CCIJPWNY363N6LIP2AET/OUUAK2X2MEGEKC6ULA4CFSBY4PE5EGPV.woff2\",weight:\"400\"}]},...NavigationFonts,...FeatherFonts,...MainCTAButtonFonts,...HeaderMenuFonts,...CallFonts,...TickerFonts,...Feature1Fonts,...Visual_22Fonts,...Visual3Fonts,...Visual_4Fonts,...Visual_5Fonts,...Visual_7Fonts,...Visual_8Fonts,...Visual_9Fonts,...IntegrationFonts,...TwitterFonts,...FAQFonts,...TrialPromoFonts,...FooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Frameri9mMX8Wmo\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"dKmIpojSc\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"aIyxiFhHf\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerScrollSections\":\"{\\\"nmq8t8WIn\\\":{\\\"pattern\\\":\\\":nmq8t8WIn\\\",\\\"name\\\":\\\"home\\\"},\\\"Dxk_r1dN4\\\":{\\\"pattern\\\":\\\":Dxk_r1dN4\\\",\\\"name\\\":\\\"features\\\"},\\\"HM6BfaNCm\\\":{\\\"pattern\\\":\\\":HM6BfaNCm\\\",\\\"name\\\":\\\"how-it-works\\\"},\\\"NgGcOr45W\\\":{\\\"pattern\\\":\\\":NgGcOr45W\\\",\\\"name\\\":\\\"security\\\"},\\\"ByhYSqbjb\\\":{\\\"pattern\\\":\\\":ByhYSqbjb\\\",\\\"name\\\":\\\"testi\\\"},\\\"S4lL2T0GH\\\":{\\\"pattern\\\":\\\":S4lL2T0GH\\\",\\\"name\\\":\\\"testimonials\\\"},\\\"MXIvwsHra\\\":{\\\"pattern\\\":\\\":MXIvwsHra\\\",\\\"name\\\":\\\"testimonials\\\"},\\\"wcCESsQK2\\\":{\\\"pattern\\\":\\\":wcCESsQK2\\\",\\\"name\\\":\\\"testimonials\\\"},\\\"CO8yW2QSN\\\":{\\\"pattern\\\":\\\":CO8yW2QSN\\\",\\\"name\\\":\\\"faq\\\"}}\",\"framerAutoSizeImages\":\"true\",\"framerResponsiveScreen\":\"\",\"framerIntrinsicHeight\":\"13013.5\",\"framerColorSyntax\":\"true\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerIntrinsicWidth\":\"1200\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["noopReturn", "t", "e", "t", "velocityPerSecond", "calcBezier", "t", "e", "i", "binarySubdivide", "o", "r", "c", "u", "a", "s", "cubicBezier", "n", "noopReturn", "getTForX", "o", "cubicBezier", "__rest", "e", "t", "r", "n", "o", "n", "e", "t", "r", "s", "calcGeneratorVelocity", "t", "r", "a", "velocityPerSecond", "n", "calcDampingRatio", "e", "hasReachedTarget", "spring", "o", "c", "i", "h", "u", "d", "f", "l", "g", "glide", "isOutOfBounds", "nearestBoundary", "m", "calcDelta", "calcLatest", "applyFriction", "p", "M", "checkCatchBoundary", "pregenerateKeyframes", "W", "L", "D", "e", "M", "noopReturn", "k", "asTransformCssVar", "B", "L", "W", "t", "j", "B", "testAnimation", "e", "C", "$", "R", "resolveElements", "e", "t", "n", "createGeneratorEasing", "e", "t", "n", "o", "getGenerator", "i", "s", "r", "a", "getKeyframes", "pregenerateKeyframes", "c", "isNumberOrNull", "l", "f", "u", "d", "calcGeneratorVelocity", "g", "m", "N", "spring", "F", "glide", "U", "inView$1", "resolveElements", "onIntersectionChange", "q", "K", "getElementSize", "notifyTarget", "notifyAll", "createResizeObserver", "resizeElement", "G", "_", "createWindowResizeHandler", "window", "resizeWindow", "resize", "dispatchPointerEvent", "e", "t", "n", "dispatchViewEvent", "se", "o", "i", "s", "__rest", "inView$1", "mouseEvent", "re", "ae", "onPointerUp", "window", "onPointerDown", "ce", "le", "MAX_DUPLICATED_ITEMS", "directionTransformers", "offset", "Ticker", "props", "slots", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "speed", "hoverFactor", "direction", "alignment", "sizingOptions", "fadeOptions", "style", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "widthType", "heightType", "paddingValue", "currentTarget", "RenderTarget", "isCanvas", "filteredSlots", "numChildren", "j", "hasChildren", "isHorizontal", "useMotionValue", "transformer", "transform", "useTransform", "parentRef", "pe", "childrenRef", "se", "size", "setSize", "ye", "clonedChildren", "dupedChildren", "duplicateBy", "opacity", "measure", "te", "parentLength", "start", "childrenLength", "childrenStyles", "initialResize", "fe", "frame", "resize", "contentSize", "child", "index", "ref", "p", "LayoutGroup", "q", "isInView", "useInView", "i", "childIndex", "animateToValue", "initialTime", "prevTime", "xOrY", "isHover", "isReducedMotion", "useReducedMotion", "listRef", "animationRef", "ue", "playOrPause", "hidden", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "containerStyle", "u", "motion", "isValidNumber", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "addPropertyControls", "ControlType", "num", "min", "max", "value", "NavigationFonts", "getFonts", "WPlRxmMyK_default", "FeatherFonts", "Icon", "MainCTAButtonFonts", "zjCQy6F2o_default", "HeaderMenuFonts", "H1b2x9FXV_default", "CallFonts", "CfQcTQF8M_default", "TickerFonts", "Ticker", "ContainerWithOptimizedAppearEffect", "withOptimizedAppearEffect", "Container", "Feature1Fonts", "WD23R5wId_default", "Visual_22Fonts", "WGoYS8_43_default", "Visual3Fonts", "NkOmen5tF_default", "Visual_4Fonts", "PlKA7L8hQ_default", "Visual_5Fonts", "KIYGVSEnO_default", "Visual_7Fonts", "wDBiv1dJQ_default", "Visual_8Fonts", "BqjvKRaiz_default", "Visual_9Fonts", "r1vlCpH0M_default", "MotionAWithOptimizedAppearEffect", "motion", "ImageWithOptimizedAppearEffect", "Image2", "IntegrationFonts", "KdEmKrLdr_default", "ContainerWithFX", "withFX", "IntegrationWithVariantAppearEffect", "withVariantAppearEffect", "TwitterFonts", "Twitter", "FAQFonts", "bzTWXgNjO_default", "TrialPromoFonts", "Q6Q_CoMwP_default", "FooterFonts", "YaQfNczZG_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transformTemplate1", "_", "t", "transition1", "animation", "animation1", "transformTemplate2", "transition2", "animation2", "animation3", "transition3", "animation4", "transition4", "animation5", "animation6", "animation7", "transition5", "animation8", "transition6", "animation9", "transition7", "animation10", "transition8", "animation11", "transition9", "animation12", "transition10", "animation13", "transition11", "animation14", "transition12", "animation15", "transition13", "animation16", "transition14", "animation17", "transition15", "animation18", "transition16", "animation19", "animation20", "transition17", "animation21", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "metadata", "se", "useMetadata", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "elementId", "useRouteElementId", "ref1", "isDisplayed", "elementId1", "ref2", "elementId2", "ref3", "elementId3", "ref4", "elementId4", "ref5", "elementId5", "ref6", "elementId6", "ref7", "elementId7", "ref8", "isDisplayed1", "elementId8", "ref9", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "ComponentViewportProvider", "PropertyOverrides2", "x", "RichText", "Link", "SVG", "UD0eTfbk_default", "getLoadingLazyAtYPosition", "css", "Frameri9mMX8Wmo", "withCSS", "i9mMX8Wmo_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
