{
  "version": 3,
  "sources": ["ssg:https://ga.jspm.io/npm:@motionone/utils@10.12.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:@motionone/easing@10.12.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:@motionone/animation@10.12.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:tslib@2.4.0/tslib.es6.js", "ssg:https://ga.jspm.io/npm:hey-listen@1.0.8/dist/index.js", "ssg:https://ga.jspm.io/npm:@motionone/generators@10.12.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:@motionone/dom@10.12.0/dist/index.es.js", "ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/5hwSRFxV0XH7mOeR3v4n/Ticker.js", "ssg:https://framerusercontent.com/modules/DEYqPkFVeSfyJpv5PJxL/bZ9Jh5d4p2lBffklzOfq/Rrv0UJsgB.js"],
  "sourcesContent": ["function addUniqueItem(t,e){-1===t.indexOf(e)&&t.push(e)}function removeItem(t,e){const n=t.indexOf(e);n>-1&&t.splice(n,1)}const clamp=(t,e,n)=>Math.min(Math.max(n,t),e);const t={duration:.3,delay:0,endDelay:0,repeat:0,easing:\"ease\"};const isNumber=t=>\"number\"===typeof t;const isString=t=>\"string\"===typeof t;const isEasingGenerator=t=>\"object\"===typeof t&&Boolean(t.createAnimation);const isCubicBezier=t=>Array.isArray(t)&&isNumber(t[0]);const isEasingList=t=>Array.isArray(t)&&!isNumber(t[0]);const wrap=(t,e,n)=>{const o=e-t;return((n-t)%o+o)%o+t};function getEasingForSegment(t,e){return isEasingList(t)?t[wrap(0,t.length,e)]:t}const mix=(t,e,n)=>-n*t+n*e+t;const noop=()=>{};const noopReturn=t=>t;const progress=(t,e,n)=>e-t===0?1:(n-t)/(e-t);function fillOffset(t,e){const n=t[t.length-1];for(let o=1;o<=e;o++){const s=progress(0,e,o);t.push(mix(n,1,s))}}function defaultOffset(t){const e=[0];fillOffset(e,t-1);return e}function interpolate(t,e=defaultOffset(t.length),n=noopReturn){const o=t.length;const s=o-e.length;s>0&&fillOffset(e,s);return s=>{let r=0;for(;r<o-2;r++)if(s<e[r+1])break;let f=clamp(0,1,progress(e[r],e[r+1],s));const c=getEasingForSegment(n,r);f=c(f);return mix(t[r],t[r+1],f)}}const e={ms:t=>1e3*t,s:t=>t/1e3};\n/*\n  Convert velocity into velocity per second\n\n  @param [number]: Unit per frame\n  @param [number]: Frame duration in ms\n*/function velocityPerSecond(t,e){return e?t*(1e3/e):0}export{addUniqueItem,clamp,defaultOffset,t as defaults,fillOffset,getEasingForSegment,interpolate,isCubicBezier,isEasingGenerator,isEasingList,isNumber,isString,mix,noop,noopReturn,progress,removeItem,e as time,velocityPerSecond,wrap};\n\n//# sourceMappingURL=index.es.js.map", "import{noopReturn as t,clamp as n}from\"@motionone/utils\";const calcBezier=(t,n,e)=>(((1-3*e+3*n)*t+(3*e-6*n))*t+3*n)*t;const e=1e-7;const i=12;function binarySubdivide(t,n,o,r,c){let u;let a;let s=0;do{a=n+(o-n)/2;u=calcBezier(a,r,c)-t;u>0?o=a:n=a}while(Math.abs(u)>e&&++s<i);return a}function cubicBezier(n,e,i,o){if(n===e&&i===o)return t;const getTForX=t=>binarySubdivide(t,0,1,n,i);return t=>0===t||1===t?t:calcBezier(getTForX(t),e,o)}const steps=(t,e=\"end\")=>i=>{i=\"end\"===e?Math.min(i,.999):Math.max(i,.001);const o=i*t;const r=\"end\"===e?Math.floor(o):Math.ceil(o);return n(0,1,r/t)};export{cubicBezier,steps};\n\n//# sourceMappingURL=index.es.js.map", "import{noopReturn as t,defaults as i,isEasingGenerator as e,isEasingList as s,interpolate as a}from\"@motionone/utils\";import{cubicBezier as n,steps as r}from\"@motionone/easing\";const o={ease:n(.25,.1,.25,1),\"ease-in\":n(.42,0,1,1),\"ease-in-out\":n(.42,0,.58,1),\"ease-out\":n(0,0,.58,1)};const h=/\\((.*?)\\)/;function getEasingFunction(i){if(\"function\"===typeof i)return i;if(Array.isArray(i))return n(...i);if(o[i])return o[i];if(i.startsWith(\"steps\")){const t=h.exec(i);if(t){const i=t[1].split(\",\");return r(parseFloat(i[0]),i[1].trim())}}return t}class Animation{constructor(n,r=[0,1],{easing:o,duration:h=i.duration,delay:u=i.delay,endDelay:l=i.endDelay,repeat:m=i.repeat,offset:c,direction:p=\"normal\"}={}){this.startTime=null;this.rate=1;this.t=0;this.cancelTimestamp=null;this.easing=t;this.duration=0;this.totalDuration=0;this.repeat=0;this.playState=\"idle\";this.finished=new Promise(((t,i)=>{this.resolve=t;this.reject=i}));o=o||i.easing;if(e(o)){const t=o.createAnimation(r,(()=>\"0\"),true);o=t.easing;void 0!==t.keyframes&&(r=t.keyframes);void 0!==t.duration&&(h=t.duration)}this.repeat=m;this.easing=s(o)?t:getEasingFunction(o);this.updateDuration(h);const d=a(r,c,s(o)?o.map(getEasingFunction):t);this.tick=t=>{var i;u=u;let e=0;e=void 0!==this.pauseTime?this.pauseTime:(t-this.startTime)*this.rate;this.t=e;e/=1e3;e=Math.max(e-u,0);\"finished\"===this.playState&&void 0===this.pauseTime&&(e=this.totalDuration);const s=e/this.duration;let a=Math.floor(s);let r=s%1;!r&&s>=1&&(r=1);1===r&&a--;const o=a%2;(\"reverse\"===p||\"alternate\"===p&&o||\"alternate-reverse\"===p&&!o)&&(r=1-r);const h=e>=this.totalDuration?1:Math.min(r,1);const m=d(this.easing(h));n(m);const c=void 0===this.pauseTime&&(\"finished\"===this.playState||e>=this.totalDuration+l);if(c){this.playState=\"finished\";null===(i=this.resolve)||void 0===i?void 0:i.call(this,m)}else\"idle\"!==this.playState&&(this.frameRequestId=requestAnimationFrame(this.tick))};this.play()}play(){const t=performance.now();this.playState=\"running\";void 0!==this.pauseTime?this.startTime=t-this.pauseTime:this.startTime||(this.startTime=t);this.cancelTimestamp=this.startTime;this.pauseTime=void 0;this.frameRequestId=requestAnimationFrame(this.tick)}pause(){this.playState=\"paused\";this.pauseTime=this.t}finish(){this.playState=\"finished\";this.tick(0)}stop(){var t;this.playState=\"idle\";void 0!==this.frameRequestId&&cancelAnimationFrame(this.frameRequestId);null===(t=this.reject)||void 0===t?void 0:t.call(this,false)}cancel(){this.stop();this.tick(this.cancelTimestamp)}reverse(){this.rate*=-1}commitStyles(){}updateDuration(t){this.duration=t;this.totalDuration=t*(this.repeat+1)}get currentTime(){return this.t}set currentTime(t){void 0!==this.pauseTime||0===this.rate?this.pauseTime=t:this.startTime=performance.now()-t/this.rate}get playbackRate(){return this.rate}set playbackRate(t){this.rate=t}}export{Animation,getEasingFunction};\n\n//# sourceMappingURL=index.es.js.map", "var extendStatics=function(e,t){extendStatics=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var r in t)Object.prototype.hasOwnProperty.call(t,r)&&(e[r]=t[r])};return extendStatics(e,t)};function __extends(e,t){if(\"function\"!==typeof t&&null!==t)throw new TypeError(\"Class extends value \"+String(t)+\" is not a constructor or null\");extendStatics(e,t);function __(){this.constructor=e}e.prototype=null===t?Object.create(t):(__.prototype=t.prototype,new __)}var __assign=function(){__assign=Object.assign||function __assign(e){for(var t,r=1,n=arguments.length;r<n;r++){t=arguments[r];for(var o in t)Object.prototype.hasOwnProperty.call(t,o)&&(e[o]=t[o])}return e};return __assign.apply(this,arguments)};function __rest(e,t){var r={};for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&t.indexOf(n)<0&&(r[n]=e[n]);if(null!=e&&\"function\"===typeof Object.getOwnPropertySymbols){var o=0;for(n=Object.getOwnPropertySymbols(e);o<n.length;o++)t.indexOf(n[o])<0&&Object.prototype.propertyIsEnumerable.call(e,n[o])&&(r[n[o]]=e[n[o]])}return r}function __decorate(e,t,r,n){var o,a=arguments.length,i=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if(\"object\"===typeof Reflect&&\"function\"===typeof Reflect.decorate)i=Reflect.decorate(e,t,r,n);else for(var c=e.length-1;c>=0;c--)(o=e[c])&&(i=(a<3?o(i):a>3?o(t,r,i):o(t,r))||i);return a>3&&i&&Object.defineProperty(t,r,i),i}function __param(e,t){return function(r,n){t(r,n,e)}}function __metadata(e,t){if(\"object\"===typeof Reflect&&\"function\"===typeof Reflect.metadata)return Reflect.metadata(e,t)}function __awaiter(e,t,r,n){function adopt(e){return e instanceof r?e:new r((function(t){t(e)}))}return new(r||(r=Promise))((function(r,o){function fulfilled(e){try{step(n.next(e))}catch(e){o(e)}}function rejected(e){try{step(n.throw(e))}catch(e){o(e)}}function step(e){e.done?r(e.value):adopt(e.value).then(fulfilled,rejected)}step((n=n.apply(e,t||[])).next())}))}function __generator(e,t){var r,n,o,a,i={label:0,sent:function(){if(1&o[0])throw o[1];return o[1]},trys:[],ops:[]};return a={next:verb(0),throw:verb(1),return:verb(2)},\"function\"===typeof Symbol&&(a[Symbol.iterator]=function(){return this}),a;function verb(e){return function(t){return step([e,t])}}function step(a){if(r)throw new TypeError(\"Generator is already executing.\");while(i)try{if(r=1,n&&(o=2&a[0]?n.return:a[0]?n.throw||((o=n.return)&&o.call(n),0):n.next)&&!(o=o.call(n,a[1])).done)return o;(n=0,o)&&(a=[2&a[0],o.value]);switch(a[0]){case 0:case 1:o=a;break;case 4:i.label++;return{value:a[1],done:false};case 5:i.label++;n=a[1];a=[0];continue;case 7:a=i.ops.pop();i.trys.pop();continue;default:if(!(o=i.trys,o=o.length>0&&o[o.length-1])&&(6===a[0]||2===a[0])){i=0;continue}if(3===a[0]&&(!o||a[1]>o[0]&&a[1]<o[3])){i.label=a[1];break}if(6===a[0]&&i.label<o[1]){i.label=o[1];o=a;break}if(o&&i.label<o[2]){i.label=o[2];i.ops.push(a);break}o[2]&&i.ops.pop();i.trys.pop();continue}a=t.call(e,i)}catch(e){a=[6,e];n=0}finally{r=o=0}if(5&a[0])throw a[1];return{value:a[0]?a[1]:void 0,done:true}}}var e=Object.create?function(e,t,r,n){void 0===n&&(n=r);var o=Object.getOwnPropertyDescriptor(t,r);o&&!(\"get\"in o?!t.__esModule:o.writable||o.configurable)||(o={enumerable:true,get:function(){return t[r]}});Object.defineProperty(e,n,o)}:function(e,t,r,n){void 0===n&&(n=r);e[n]=t[r]};function __exportStar(t,r){for(var n in t)\"default\"===n||Object.prototype.hasOwnProperty.call(r,n)||e(r,t,n)}function __values(e){var t=\"function\"===typeof Symbol&&Symbol.iterator,r=t&&e[t],n=0;if(r)return r.call(e);if(e&&\"number\"===typeof e.length)return{next:function(){e&&n>=e.length&&(e=void 0);return{value:e&&e[n++],done:!e}}};throw new TypeError(t?\"Object is not iterable.\":\"Symbol.iterator is not defined.\")}function __read(e,t){var r=\"function\"===typeof Symbol&&e[Symbol.iterator];if(!r)return e;var n,o,a=r.call(e),i=[];try{while((void 0===t||t-- >0)&&!(n=a.next()).done)i.push(n.value)}catch(e){o={error:e}}finally{try{n&&!n.done&&(r=a.return)&&r.call(a)}finally{if(o)throw o.error}}return i}\n/** @deprecated */function __spread(){for(var e=[],t=0;t<arguments.length;t++)e=e.concat(__read(arguments[t]));return e}\n/** @deprecated */function __spreadArrays(){for(var e=0,t=0,r=arguments.length;t<r;t++)e+=arguments[t].length;var n=Array(e),o=0;for(t=0;t<r;t++)for(var a=arguments[t],i=0,c=a.length;i<c;i++,o++)n[o]=a[i];return n}function __spreadArray(e,t,r){if(r||2===arguments.length)for(var n,o=0,a=t.length;o<a;o++)if(n||!(o in t)){n||(n=Array.prototype.slice.call(t,0,o));n[o]=t[o]}return e.concat(n||Array.prototype.slice.call(t))}function __await(e){return this instanceof __await?(this.v=e,this):new __await(e)}function __asyncGenerator(e,t,r){if(!Symbol.asyncIterator)throw new TypeError(\"Symbol.asyncIterator is not defined.\");var n,o=r.apply(e,t||[]),a=[];return n={},verb(\"next\"),verb(\"throw\"),verb(\"return\"),n[Symbol.asyncIterator]=function(){return this},n;function verb(e){o[e]&&(n[e]=function(t){return new Promise((function(r,n){a.push([e,t,r,n])>1||resume(e,t)}))})}function resume(e,t){try{step(o[e](t))}catch(e){settle(a[0][3],e)}}function step(e){e.value instanceof __await?Promise.resolve(e.value.v).then(fulfill,reject):settle(a[0][2],e)}function fulfill(e){resume(\"next\",e)}function reject(e){resume(\"throw\",e)}function settle(e,t){(e(t),a.shift(),a.length)&&resume(a[0][0],a[0][1])}}function __asyncDelegator(e){var t,r;return t={},verb(\"next\"),verb(\"throw\",(function(e){throw e})),verb(\"return\"),t[Symbol.iterator]=function(){return this},t;function verb(n,o){t[n]=e[n]?function(t){return(r=!r)?{value:__await(e[n](t)),done:\"return\"===n}:o?o(t):t}:o}}function __asyncValues(e){if(!Symbol.asyncIterator)throw new TypeError(\"Symbol.asyncIterator is not defined.\");var t,r=e[Symbol.asyncIterator];return r?r.call(e):(e=\"function\"===typeof __values?__values(e):e[Symbol.iterator](),t={},verb(\"next\"),verb(\"throw\"),verb(\"return\"),t[Symbol.asyncIterator]=function(){return this},t);function verb(r){t[r]=e[r]&&function(t){return new Promise((function(n,o){t=e[r](t),settle(n,o,t.done,t.value)}))}}function settle(e,t,r,n){Promise.resolve(n).then((function(t){e({value:t,done:r})}),t)}}function __makeTemplateObject(e,t){Object.defineProperty?Object.defineProperty(e,\"raw\",{value:t}):e.raw=t;return e}var t=Object.create?function(e,t){Object.defineProperty(e,\"default\",{enumerable:true,value:t})}:function(e,t){e.default=t};function __importStar(r){if(r&&r.__esModule)return r;var n={};if(null!=r)for(var o in r)\"default\"!==o&&Object.prototype.hasOwnProperty.call(r,o)&&e(n,r,o);t(n,r);return n}function __importDefault(e){return e&&e.__esModule?e:{default:e}}function __classPrivateFieldGet(e,t,r,n){if(\"a\"===r&&!n)throw new TypeError(\"Private accessor was defined without a getter\");if(\"function\"===typeof t?e!==t||!n:!t.has(e))throw new TypeError(\"Cannot read private member from an object whose class did not declare it\");return\"m\"===r?n:\"a\"===r?n.call(e):n?n.value:t.get(e)}function __classPrivateFieldSet(e,t,r,n,o){if(\"m\"===n)throw new TypeError(\"Private method is not writable\");if(\"a\"===n&&!o)throw new TypeError(\"Private accessor was defined without a setter\");if(\"function\"===typeof t?e!==t||!o:!t.has(e))throw new TypeError(\"Cannot write private member to an object whose class did not declare it\");return\"a\"===n?o.call(e,r):o?o.value=r:t.set(e,r),r}function __classPrivateFieldIn(e,t){if(null===t||\"object\"!==typeof t&&\"function\"!==typeof t)throw new TypeError(\"Cannot use 'in' operator on non-object\");return\"function\"===typeof e?t===e:e.has(t)}export{__assign,__asyncDelegator,__asyncGenerator,__asyncValues,__await,__awaiter,__classPrivateFieldGet,__classPrivateFieldIn,__classPrivateFieldSet,e as __createBinding,__decorate,__exportStar,__extends,__generator,__importDefault,__importStar,__makeTemplateObject,__metadata,__param,__read,__rest,__spread,__spreadArray,__spreadArrays,__values};\n\n//# sourceMappingURL=tslib.es6.js.map", "var n={};Object.defineProperty(n,\"__esModule\",{value:true});n.warning=function(){};n.invariant=function(){};const e=n.__esModule,t=n.warning,r=n.invariant;export default n;export{e as __esModule,r as invariant,t as warning};\n\n//# sourceMappingURL=index.js.map", "import{velocityPerSecond as e,time as t}from\"@motionone/utils\";const s=5;function calcGeneratorVelocity(t,n,r){const a=Math.max(n-s,0);return e(r-t(a),n-a)}const n={stiffness:100,damping:10,mass:1};const calcDampingRatio=(e=n.stiffness,t=n.damping,s=n.mass)=>t/(2*Math.sqrt(e*s));function hasReachedTarget(e,t,s){return e<t&&s>=t||e>t&&s<=t}const spring=({stiffness:e=n.stiffness,damping:s=n.damping,mass:r=n.mass,from:a=0,to:o=1,velocity:c=0,restSpeed:i=2,restDistance:h=.5}={})=>{c=c?t.s(c):0;const u={done:false,hasReachedTarget:false,current:a,target:o};const d=o-a;const f=Math.sqrt(e/r)/1e3;const l=calcDampingRatio(e,s,r);let g;if(l<1){const e=f*Math.sqrt(1-l*l);g=t=>o-Math.exp(-l*f*t)*((l*f*d-c)/e*Math.sin(e*t)+d*Math.cos(e*t))}else g=e=>o-Math.exp(-f*e)*(d+(f*d-c)*e);return e=>{u.current=g(e);const t=0===e?c:calcGeneratorVelocity(g,e,u.current);const s=Math.abs(t)<=i;const n=Math.abs(o-u.current)<=h;u.done=s&&n;u.hasReachedTarget=hasReachedTarget(a,o,u.current);return u}};const glide=({from:e=0,velocity:s=0,power:n=.8,decay:r=.325,bounceDamping:a,bounceStiffness:o,changeTarget:c,min:i,max:h,restDistance:u=.5,restSpeed:d})=>{r=t.ms(r);const f={hasReachedTarget:false,done:false,current:e,target:e};const isOutOfBounds=e=>void 0!==i&&e<i||void 0!==h&&e>h;const nearestBoundary=e=>void 0===i?h:void 0===h||Math.abs(i-e)<Math.abs(h-e)?i:h;let l=n*s;const g=e+l;const m=void 0===c?g:c(g);f.target=m;m!==g&&(l=m-e);const calcDelta=e=>-l*Math.exp(-e/r);const calcLatest=e=>m+calcDelta(e);const applyFriction=e=>{const t=calcDelta(e);const s=calcLatest(e);f.done=Math.abs(t)<=u;f.current=f.done?m:s};let p;let M;const checkCatchBoundary=e=>{if(isOutOfBounds(f.current)){p=e;M=spring({from:f.current,to:nearestBoundary(f.current),velocity:calcGeneratorVelocity(calcLatest,e,f.current),damping:a,stiffness:o,restDistance:u,restSpeed:d})}};checkCatchBoundary(0);return e=>{let t=false;if(!M&&void 0===p){t=true;applyFriction(e);checkCatchBoundary(e)}if(void 0!==p&&e>p){f.hasReachedTarget=true;return M(e-p)}f.hasReachedTarget=false;!t&&applyFriction(e);return f}};const r=10;const a=1e4;function pregenerateKeyframes(e){let t;let s=r;let n=e(0);const o=[n.current];while(!n.done&&s<a){n=e(s);o.push(n.done?n.target:n.current);void 0===t&&n.hasReachedTarget&&(t=s);s+=r}const c=s-r;1===o.length&&o.push(n.current);return{keyframes:o,duration:c/1e3,overshootDuration:(null!==t&&void 0!==t?t:c)/1e3}}export{calcGeneratorVelocity,glide,pregenerateKeyframes,spring};\n\n//# sourceMappingURL=index.es.js.map", "import{MotionValue as e}from\"@motionone/types\";import{noopReturn as t,addUniqueItem as n,isCubicBezier as o,defaults as i,isEasingGenerator as s,isNumber as r,time as a,isEasingList as c,noop as l,removeItem as f,mix as u,getEasingForSegment as d,isString as g,defaultOffset as m,fillOffset as h,progress as p,velocityPerSecond as v,interpolate as y}from\"@motionone/utils\";import{Animation as w,getEasingFunction as E}from\"@motionone/animation\";import{__rest as b}from\"tslib\";import{invariant as S}from\"hey-listen\";import{pregenerateKeyframes as A,calcGeneratorVelocity as O,spring as x,glide as V}from\"@motionone/generators\";const z=new WeakMap;function getAnimationData(e){z.has(e)||z.set(e,{transforms:[],values:new Map});return z.get(e)}function getMotionValue(t,n){t.has(n)||t.set(n,new e);return t.get(n)}const W=[\"\",\"X\",\"Y\",\"Z\"];const L=[\"translate\",\"scale\",\"rotate\",\"skew\"];const T={x:\"translateX\",y:\"translateY\",z:\"translateZ\"};const D={syntax:\"<angle>\",initialValue:\"0deg\",toDefaultUnit:e=>e+\"deg\"};const M={translate:{syntax:\"<length-percentage>\",initialValue:\"0px\",toDefaultUnit:e=>e+\"px\"},rotate:D,scale:{syntax:\"<number>\",initialValue:1,toDefaultUnit:t},skew:D};const k=new Map;const asTransformCssVar=e=>`--motion-${e}`;const B=[\"x\",\"y\",\"z\"];L.forEach((e=>{W.forEach((t=>{B.push(e+t);k.set(asTransformCssVar(e+t),M[e])}))}));const compareTransformOrder=(e,t)=>B.indexOf(e)-B.indexOf(t);const j=new Set(B);const isTransform=e=>j.has(e);const addTransformToElement=(e,t)=>{T[t]&&(t=T[t]);const{transforms:o}=getAnimationData(e);n(o,t);e.style.transform=buildTransformTemplate(o)};const buildTransformTemplate=e=>e.sort(compareTransformOrder).reduce(transformListToString,\"\").trim();const transformListToString=(e,t)=>`${e} ${t}(var(${asTransformCssVar(t)}))`;const isCssVar=e=>e.startsWith(\"--\");const P=new Set;function registerCssVariable(e){if(!P.has(e)){P.add(e);try{const{syntax:t,initialValue:n}=k.has(e)?k.get(e):{};CSS.registerProperty({name:e,inherits:false,syntax:t,initialValue:n})}catch(e){}}}const convertEasing=e=>o(e)?cubicBezierAsString(e):e;const cubicBezierAsString=([e,t,n,o])=>`cubic-bezier(${e}, ${t}, ${n}, ${o})`;const testAnimation=e=>document.createElement(\"div\").animate(e,{duration:.001});const C={cssRegisterProperty:()=>\"undefined\"!==typeof CSS&&Object.hasOwnProperty.call(CSS,\"registerProperty\"),waapi:()=>Object.hasOwnProperty.call(Element.prototype,\"animate\"),partialKeyframes:()=>{try{testAnimation({opacity:[1]})}catch(e){return false}return true},finished:()=>Boolean(testAnimation({opacity:[0,1]}).finished)};const $={};const R={};for(const e in C)R[e]=()=>{void 0===$[e]&&($[e]=C[e]());return $[e]};function hydrateKeyframes(e,t){for(let n=0;n<e.length;n++)null===e[n]&&(e[n]=n?e[n-1]:t());return e}const keyframesList=e=>Array.isArray(e)?e:[e];function getStyleName(e){T[e]&&(e=T[e]);return isTransform(e)?asTransformCssVar(e):e}const H={get:(e,t)=>{t=getStyleName(t);let n=isCssVar(t)?e.style.getPropertyValue(t):getComputedStyle(e)[t];if(!n&&0!==n){const e=k.get(t);e&&(n=e.initialValue)}return n},set:(e,t,n)=>{t=getStyleName(t);isCssVar(t)?e.style.setProperty(t,n):e.style[t]=n}};function stopAnimation(e,t=true){if(e&&\"finished\"!==e.playState)try{if(e.stop)e.stop();else{t&&e.commitStyles();e.cancel()}}catch(e){}}function getDevToolsRecord(){return window.__MOTION_DEV_TOOLS_RECORD}function animateStyle(e,t,n,o={}){const f=getDevToolsRecord();const u=false!==o.record&&f;let d;let{duration:g=i.duration,delay:m=i.delay,endDelay:h=i.endDelay,repeat:p=i.repeat,easing:v=i.easing,direction:y,offset:E,allowWebkitAcceleration:b=false}=o;const S=getAnimationData(e);let A=R.waapi();const O=isTransform(t);O&&addTransformToElement(e,t);const x=getStyleName(t);const V=getMotionValue(S.values,x);const z=k.get(x);stopAnimation(V.animation,!(s(v)&&V.generator)&&false!==o.record);return()=>{const readInitialValue=()=>{var t,n;return null!==(n=null!==(t=H.get(e,x))&&void 0!==t?t:null===z||void 0===z?void 0:z.initialValue)&&void 0!==n?n:0};let i=hydrateKeyframes(keyframesList(n),readInitialValue);if(s(v)){const e=v.createAnimation(i,readInitialValue,O,x,V);v=e.easing;void 0!==e.keyframes&&(i=e.keyframes);void 0!==e.duration&&(g=e.duration)}isCssVar(x)&&(R.cssRegisterProperty()?registerCssVariable(x):A=false);if(A){z&&(i=i.map((e=>r(e)?z.toDefaultUnit(e):e)));1!==i.length||R.partialKeyframes()&&!u||i.unshift(readInitialValue());const t={delay:a.ms(m),duration:a.ms(g),endDelay:a.ms(h),easing:c(v)?void 0:convertEasing(v),direction:y,iterations:p+1,fill:\"both\"};d=e.animate({[x]:i,offset:E,easing:c(v)?v.map(convertEasing):void 0},t);d.finished||(d.finished=new Promise(((e,t)=>{d.onfinish=e;d.oncancel=t})));const n=i[i.length-1];d.finished.then((()=>{H.set(e,x,n);d.cancel()})).catch(l);b||(d.playbackRate=1.000001)}else if(O){i=i.map((e=>\"string\"===typeof e?parseFloat(e):e));1===i.length&&i.unshift(parseFloat(readInitialValue()));const render=t=>{z&&(t=z.toDefaultUnit(t));H.set(e,x,t)};d=new w(render,i,Object.assign(Object.assign({},o),{duration:g,easing:v}))}else{const t=i[i.length-1];H.set(e,x,z&&r(t)?z.toDefaultUnit(t):t)}u&&f(e,t,i,{duration:g,delay:m,easing:v,repeat:p,offset:E},\"motion-one\");V.setAnimation(d);return d}}const getOptions=(e,t)=>e[t]?Object.assign(Object.assign({},e),e[t]):Object.assign({},e);function resolveElements(e,t){var n;if(\"string\"===typeof e)if(t){null!==(n=t[e])&&void 0!==n?n:t[e]=document.querySelectorAll(e);e=t[e]}else e=document.querySelectorAll(e);else e instanceof Element&&(e=[e]);return Array.from(e||[])}const createAnimation=e=>e();const withControls=(e,t,n=i.duration)=>new Proxy({animations:e.map(createAnimation).filter(Boolean),duration:n,options:t},I);const getActiveAnimation=e=>e.animations[0];const I={get:(e,t)=>{const n=getActiveAnimation(e);switch(t){case\"duration\":return e.duration;case\"currentTime\":return a.s((null===n||void 0===n?void 0:n[t])||0);case\"playbackRate\":case\"playState\":return null===n||void 0===n?void 0:n[t];case\"finished\":e.finished||(e.finished=Promise.all(e.animations.map(selectFinished)).catch(l));return e.finished;case\"stop\":return()=>{e.animations.forEach((e=>stopAnimation(e)))};case\"forEachNative\":return t=>{e.animations.forEach((n=>t(n,e)))};default:return\"undefined\"===typeof(null===n||void 0===n?void 0:n[t])?void 0:()=>e.animations.forEach((e=>e[t]()))}},set:(e,t,n)=>{switch(t){case\"currentTime\":n=a.ms(n);case\"currentTime\":case\"playbackRate\":for(let o=0;o<e.animations.length;o++)e.animations[o][t]=n;return true}return false}};const selectFinished=e=>e.finished;function stagger(e=.1,{start:t=0,from:n=0,easing:o}={}){return(i,s)=>{const a=r(n)?n:getFromIndex(n,s);const c=Math.abs(a-i);let l=e*c;if(o){const t=s*e;const n=E(o);l=n(l/t)*t}return t+l}}function getFromIndex(e,t){if(\"first\"===e)return 0;{const n=t-1;return\"last\"===e?n:n/2}}function resolveOption(e,t,n){return\"function\"===typeof e?e(t,n):e}function animate(e,t,n={}){e=resolveElements(e);const o=e.length;const i=[];for(let s=0;s<o;s++){const r=e[s];for(const e in t){const a=getOptions(n,e);a.delay=resolveOption(a.delay,s,o);const c=animateStyle(r,e,t[e],a);i.push(c)}}return withControls(i,n,n.duration)}function calcNextTime(e,t,n,o){var i;return r(t)?t:t.startsWith(\"-\")||t.startsWith(\"+\")?Math.max(0,e+parseFloat(t)):\"<\"===t?n:null!==(i=o.get(t))&&void 0!==i?i:e}function eraseKeyframes(e,t,n){for(let o=0;o<e.length;o++){const i=e[o];if(i.at>t&&i.at<n){f(e,i);o--}}}function addKeyframes(e,t,n,o,i,s){eraseKeyframes(e,i,s);for(let r=0;r<t.length;r++)e.push({value:t[r],at:u(i,s,o[r]),easing:d(n,r)})}function compareByTime(e,t){return e.at===t.at?null===e.value?1:-1:e.at-t.at}function timeline(e,t={}){var n;const o=createAnimationsFromTimeline(e,t);const i=o.map((e=>animateStyle(...e))).filter(Boolean);return withControls(i,t,null===(n=o[0])||void 0===n?void 0:n[3].duration)}function createAnimationsFromTimeline(e,t={}){var{defaultOptions:n={}}=t,o=b(t,[\"defaultOptions\"]);const r=[];const a=new Map;const c={};const l=new Map;let f=0;let u=0;let d=0;for(let t=0;t<e.length;t++){const o=e[t];if(g(o)){l.set(o,u);continue}if(!Array.isArray(o)){l.set(o.name,calcNextTime(u,o.at,f,l));continue}const[r,p,v={}]=o;void 0!==v.at&&(u=calcNextTime(u,v.at,f,l));let y=0;const w=resolveElements(r,c);const E=w.length;for(let e=0;e<E;e++){const t=w[e];const o=getElementSequence(t,a);for(const t in p){const r=getValueSequence(t,o);let a=keyframesList(p[t]);const c=getOptions(v,t);let{duration:l=n.duration||i.duration,easing:f=n.easing||i.easing}=c;if(s(f)){const e=isTransform(t);S(2===a.length||!e,\"spring must be provided 2 keyframes within timeline\");const n=f.createAnimation(a,(()=>\"0\"),e);f=n.easing;void 0!==n.keyframes&&(a=n.keyframes);void 0!==n.duration&&(l=n.duration)}const g=resolveOption(v.delay,e,E)||0;const w=u+g;const b=w+l;let{offset:A=m(a.length)}=c;1===A.length&&0===A[0]&&(A[1]=1);const O=length-a.length;O>0&&h(A,O);1===a.length&&a.unshift(null);addKeyframes(r,a,f,A,w,b);y=Math.max(g+l,y);d=Math.max(b,d)}}f=u;u+=y}a.forEach(((e,t)=>{for(const s in e){const a=e[s];a.sort(compareByTime);const c=[];const l=[];const f=[];for(let e=0;e<a.length;e++){const{at:t,value:n,easing:o}=a[e];c.push(n);l.push(p(0,d,t));f.push(o||i.easing)}if(0!==l[0]){l.unshift(0);c.unshift(c[0]);f.unshift(\"linear\")}if(1!==l[l.length-1]){l.push(1);c.push(null)}r.push([t,s,c,Object.assign(Object.assign(Object.assign({},n),{duration:d,easing:f,offset:l}),o)])}}));return r}function getElementSequence(e,t){!t.has(e)&&t.set(e,{});return t.get(e)}function getValueSequence(e,t){t[e]||(t[e]=[]);return t[e]}function createGeneratorEasing(e){const t=new WeakMap;return(n={})=>{const o=new Map;const getGenerator=(t=0,i=100,s=0,r=false)=>{const a=`${t}-${i}-${s}-${r}`;o.has(a)||o.set(a,e(Object.assign({from:t,to:i,velocity:s,restSpeed:r?.05:2,restDistance:r?.01:.5},n)));return o.get(a)};const getKeyframes=e=>{t.has(e)||t.set(e,A(e));return t.get(e)};return{createAnimation:(e,t,n,o,i)=>{var s,r;let a;const c=e.length;let l=n&&c<=2&&e.every(isNumberOrNull);if(l){const n=e[c-1];const l=1===c?null:e[0];let f=0;let u=0;const d=null===i||void 0===i?void 0:i.generator;if(d){const{animation:t,generatorStartTime:n}=i;const o=(null===t||void 0===t?void 0:t.startTime)||n||0;const r=(null===t||void 0===t?void 0:t.currentTime)||performance.now()-o;const a=d(r).current;u=null!==(s=l)&&void 0!==s?s:a;(1===c||2===c&&null===e[0])&&(f=O((e=>d(e).current),r,a))}else u=null!==(r=l)&&void 0!==r?r:parseFloat(t());const g=getGenerator(u,n,f,null===o||void 0===o?void 0:o.includes(\"scale\"));const m=getKeyframes(g);a=Object.assign(Object.assign({},m),{easing:\"linear\"});if(i){i.generator=g;i.generatorStartTime=performance.now()}}else{const e=getKeyframes(getGenerator(0,100));a={easing:\"ease\",duration:e.overshootDuration}}return a}}}}const isNumberOrNull=e=>\"string\"!==typeof e;const N=createGeneratorEasing(x);const F=createGeneratorEasing(V);const U={any:0,all:1};function inView$1(e,t,{root:n,margin:o,amount:i=\"any\"}={}){if(\"undefined\"===typeof IntersectionObserver)return()=>{};const s=resolveElements(e);const r=new WeakMap;const onIntersectionChange=e=>{e.forEach((e=>{const n=r.get(e.target);if(e.isIntersecting!==Boolean(n))if(e.isIntersecting){const n=t(e);\"function\"===typeof n?r.set(e.target,n):a.unobserve(e.target)}else if(n){n(e);r.delete(e.target)}}))};const a=new IntersectionObserver(onIntersectionChange,{root:n,rootMargin:o,threshold:\"number\"===typeof i?i:U[i]});s.forEach((e=>a.observe(e)));return()=>a.disconnect()}const q=new WeakMap;let K;function getElementSize(e,t){if(t){const{inlineSize:e,blockSize:n}=t[0];return{width:e,height:n}}return e instanceof SVGElement&&\"getBBox\"in e?e.getBBox():{width:e.offsetWidth,height:e.offsetHeight}}function notifyTarget({target:e,contentRect:t,borderBoxSize:n}){var o;null===(o=q.get(e))||void 0===o?void 0:o.forEach((o=>{o({target:e,contentSize:t,get size(){return getElementSize(e,n)}})}))}function notifyAll(e){e.forEach(notifyTarget)}function createResizeObserver(){\"undefined\"!==typeof ResizeObserver&&(K=new ResizeObserver(notifyAll))}function resizeElement(e,t){K||createResizeObserver();const n=resolveElements(e);n.forEach((e=>{let n=q.get(e);if(!n){n=new Set;q.set(e,n)}n.add(t);null===K||void 0===K?void 0:K.observe(e)}));return()=>{n.forEach((e=>{const n=q.get(e);null===n||void 0===n?void 0:n.delete(t);(null===n||void 0===n?void 0:n.size)||(null===K||void 0===K?void 0:K.unobserve(e))}))}}const G=new Set;let _;function createWindowResizeHandler(){_=()=>{const e={width:window.innerWidth,height:window.innerHeight};const t={target:window,size:e,contentSize:e};G.forEach((e=>e(t)))};window.addEventListener(\"resize\",_)}function resizeWindow(e){G.add(e);_||createWindowResizeHandler();return()=>{G.delete(e);!G.size&&_&&(_=void 0)}}function resize(e,t){return\"function\"===typeof e?resizeWindow(e):resizeElement(e,t)}const Z=50;const createAxisInfo=()=>({current:0,offset:[],progress:0,scrollLength:0,targetOffset:0,targetLength:0,containerLength:0,velocity:0});const createScrollInfo=()=>({time:0,x:createAxisInfo(),y:createAxisInfo()});const X={x:{length:\"Width\",position:\"Left\"},y:{length:\"Height\",position:\"Top\"}};function updateAxisInfo(e,t,n,o){const i=n[t];const{length:s,position:r}=X[t];const a=i.current;const c=n.time;i.current=e[\"scroll\"+r];i.scrollLength=e[\"scroll\"+s]-e[\"client\"+s];i.offset.length=0;i.offset[0]=0;i.offset[1]=i.scrollLength;i.progress=p(0,i.scrollLength,i.current);const l=o-c;i.velocity=l>Z?0:v(i.current-a,l)}function updateScrollInfo(e,t,n){updateAxisInfo(e,\"x\",t,n);updateAxisInfo(e,\"y\",t,n);t.time=n}function calcInset(e,t){let n={x:0,y:0};let o=e;while(o&&o!==t)if(o instanceof HTMLElement){n.x+=o.offsetLeft;n.y+=o.offsetTop;o=o.offsetParent}else if(o instanceof SVGGraphicsElement&&\"getBBox\"in o){const{top:e,left:t}=o.getBBox();n.x+=t;n.y+=e;while(o&&\"svg\"!==o.tagName)o=o.parentNode}return n}const Y={Enter:[[0,1],[1,1]],Exit:[[0,0],[1,0]],Any:[[1,0],[0,1]],All:[[0,0],[1,1]]};const J={start:0,center:.5,end:1};function resolveEdge(e,t,n=0){let o=0;void 0!==J[e]&&(e=J[e]);if(g(e)){const t=parseFloat(e);e.endsWith(\"px\")?o=t:e.endsWith(\"%\")?e=t/100:e.endsWith(\"vw\")?o=t/100*document.documentElement.clientWidth:e.endsWith(\"vh\")?o=t/100*document.documentElement.clientHeight:e=t}r(e)&&(o=t*e);return n+o}const Q=[0,0];function resolveOffset(e,t,n,o){let i=Array.isArray(e)?e:Q;let s=0;let a=0;if(r(e))i=[e,e];else if(g(e)){e=e.trim();i=e.includes(\" \")?e.split(\" \"):[e,J[e]?e:\"0\"]}s=resolveEdge(i[0],n,o);a=resolveEdge(i[1],t);return s-a}const ee={x:0,y:0};function resolveOffsets(e,t,n){let{offset:o=Y.All}=n;const{target:i=e,axis:s=\"y\"}=n;const r=\"y\"===s?\"height\":\"width\";const a=i!==e?calcInset(i,e):ee;const c=i===e?{width:e.scrollWidth,height:e.scrollHeight}:{width:i.clientWidth,height:i.clientHeight};const l={width:e.clientWidth,height:e.clientHeight};t[s].offset.length=0;let f=!t[s].interpolate;const u=o.length;for(let e=0;e<u;e++){const n=resolveOffset(o[e],l[r],c[r],a[s]);f||n===t[s].interpolatorOffsets[e]||(f=true);t[s].offset[e]=n}if(f){t[s].interpolate=y(m(u),t[s].offset);t[s].interpolatorOffsets=[...t[s].offset]}t[s].progress=t[s].interpolate(t[s].current)}function measure(e,t=e,n){n.x.targetOffset=0;n.y.targetOffset=0;if(t!==e){let o=t;while(o&&o!=e){n.x.targetOffset+=o.offsetLeft;n.y.targetOffset+=o.offsetTop;o=o.offsetParent}}n.x.targetLength=t===e?t.scrollWidth:t.clientWidth;n.y.targetLength=t===e?t.scrollHeight:t.clientHeight;n.x.containerLength=e.clientWidth;n.y.containerLength=e.clientHeight}function createOnScrollHandler(e,t,n,o={}){const i=o.axis||\"y\";return{measure:()=>measure(e,o.target,n),update:t=>{updateScrollInfo(e,n,t);(o.offset||o.target)&&resolveOffsets(e,n,o)},notify:\"function\"===typeof t?()=>t(n):scrubAnimation(t,n[i])}}function scrubAnimation(e,n){e.pause();e.forEachNative(((e,{easing:n})=>{var o,i;if(e.updateDuration){n||(e.easing=t);e.updateDuration(1)}else{const t={duration:1e3};n||(t.easing=\"linear\");null===(i=null===(o=e.effect)||void 0===o?void 0:o.updateTiming)||void 0===i?void 0:i.call(o,t)}}));return()=>{e.currentTime=n.progress}}const te=new WeakMap;const ne=new WeakMap;const oe=new WeakMap;const getEventTarget=e=>e===document.documentElement?window:e;function scroll(e,t={}){var{container:n=document.documentElement}=t,o=b(t,[\"container\"]);let i=oe.get(n);if(!i){i=new Set;oe.set(n,i)}const s=createScrollInfo();const r=createOnScrollHandler(n,e,s,o);i.add(r);if(!te.has(n)){const listener=()=>{const e=performance.now();for(const e of i)e.measure();for(const t of i)t.update(e);for(const e of i)e.notify()};te.set(n,listener);const e=getEventTarget(n);window.addEventListener(\"resize\",listener,{passive:true});n!==document.documentElement&&ne.set(n,resize(n,listener));e.addEventListener(\"scroll\",listener,{passive:true})}const a=te.get(n);const c=requestAnimationFrame(a);return()=>{var t;\"function\"!==typeof e&&e.stop();cancelAnimationFrame(c);const o=oe.get(n);if(!o)return;o.delete(r);if(o.size)return;const i=te.get(n);te.delete(n);if(i){getEventTarget(n).removeEventListener(\"scroll\",i);null===(t=ne.get(n))||void 0===t?void 0:t();window.removeEventListener(\"resize\",i)}}}function hasChanged(e,t){return typeof e!==typeof t||(Array.isArray(e)&&Array.isArray(t)?!shallowCompare(e,t):e!==t)}function shallowCompare(e,t){const n=t.length;if(n!==e.length)return false;for(let o=0;o<n;o++)if(t[o]!==e[o])return false;return true}function isVariant(e){return\"object\"===typeof e}function resolveVariant(e,t){return isVariant(e)?e:e&&t?t[e]:void 0}let ie;function processScheduledAnimations(){if(!ie)return;const e=ie.sort(compareByDepth).map(fireAnimateUpdates);e.forEach(fireNext);e.forEach(fireNext);ie=void 0}function scheduleAnimation(e){if(ie)n(ie,e);else{ie=[e];requestAnimationFrame(processScheduledAnimations)}}function unscheduleAnimation(e){ie&&f(ie,e)}const compareByDepth=(e,t)=>e.getDepth()-t.getDepth();const fireAnimateUpdates=e=>e.animateUpdates();const fireNext=e=>e.next();const motionEvent=(e,t)=>new CustomEvent(e,{detail:{target:t}});function dispatchPointerEvent(e,t,n){e.dispatchEvent(new CustomEvent(t,{detail:{originalEvent:n}}))}function dispatchViewEvent(e,t,n){e.dispatchEvent(new CustomEvent(t,{detail:{originalEntry:n}}))}const se={isActive:e=>Boolean(e.inView),subscribe:(e,{enable:t,disable:n},{inViewOptions:o={}})=>{const{once:i}=o,s=b(o,[\"once\"]);return inView$1(e,(o=>{t();dispatchViewEvent(e,\"viewenter\",o);if(!i)return t=>{n();dispatchViewEvent(e,\"viewleave\",t)}}),s)}};const mouseEvent=(e,t,n)=>o=>{if(!o.pointerType||\"mouse\"===o.pointerType){n();dispatchPointerEvent(e,t,o)}};const re={isActive:e=>Boolean(e.hover),subscribe:(e,{enable:t,disable:n})=>{const o=mouseEvent(e,\"hoverstart\",t);const i=mouseEvent(e,\"hoverend\",n);e.addEventListener(\"pointerenter\",o);e.addEventListener(\"pointerleave\",i);return()=>{e.removeEventListener(\"pointerenter\",o);e.removeEventListener(\"pointerleave\",i)}}};const ae={isActive:e=>Boolean(e.press),subscribe:(e,{enable:t,disable:n})=>{const onPointerUp=t=>{n();dispatchPointerEvent(e,\"pressend\",t);window.removeEventListener(\"pointerup\",onPointerUp)};const onPointerDown=n=>{t();dispatchPointerEvent(e,\"pressstart\",n);window.addEventListener(\"pointerup\",onPointerUp)};e.addEventListener(\"pointerdown\",onPointerDown);return()=>{e.removeEventListener(\"pointerdown\",onPointerDown);window.removeEventListener(\"pointerup\",onPointerUp)}}};const ce={inView:se,hover:re,press:ae};const le=[\"initial\",\"animate\",...Object.keys(ce),\"exit\"];const fe=new WeakMap;function createMotionState(e={},t){let n;let o=t?t.getDepth()+1:0;const i={initial:true,animate:true};const s={};const r={};for(const n of le)r[n]=\"string\"===typeof e[n]?e[n]:null===t||void 0===t?void 0:t.getContext()[n];const a=false===e.initial?\"animate\":\"initial\";let c=resolveVariant(e[a]||r[a],e.variants)||{},f=b(c,[\"transition\"]);const u=Object.assign({},f);function*animateUpdates(){var t,o;const s=f;f={};const r={};for(const n of le){if(!i[n])continue;const s=resolveVariant(e[n]);if(s)for(const n in s)if(\"transition\"!==n){f[n]=s[n];r[n]=getOptions(null!==(o=null!==(t=s.transition)&&void 0!==t?t:e.transition)&&void 0!==o?o:{},n)}}const a=new Set([...Object.keys(f),...Object.keys(s)]);const c=[];a.forEach((e=>{var t;void 0===f[e]&&(f[e]=u[e]);if(hasChanged(s[e],f[e])){null!==(t=u[e])&&void 0!==t?t:u[e]=H.get(n,e);c.push(animateStyle(n,e,f[e],r[e]))}}));yield;const d=c.map((e=>e())).filter(Boolean);if(!d.length)return;const g=f;n.dispatchEvent(motionEvent(\"motionstart\",g));Promise.all(d.map((e=>e.finished))).then((()=>{n.dispatchEvent(motionEvent(\"motioncomplete\",g))})).catch(l)}const setGesture=(e,t)=>()=>{i[e]=t;scheduleAnimation(d)};const updateGestureSubscriptions=()=>{for(const t in ce){const o=ce[t].isActive(e);const i=s[t];if(o&&!i)s[t]=ce[t].subscribe(n,{enable:setGesture(t,true),disable:setGesture(t,false)},e);else if(!o&&i){i();delete s[t]}}};const d={update:t=>{if(n){e=t;updateGestureSubscriptions();scheduleAnimation(d)}},setActive:(e,t)=>{if(n){i[e]=t;scheduleAnimation(d)}},animateUpdates:animateUpdates,getDepth:()=>o,getTarget:()=>f,getOptions:()=>e,getContext:()=>r,mount:e=>{S(Boolean(e),\"Animation state must be mounted with valid Element\");n=e;fe.set(n,d);updateGestureSubscriptions();return()=>{fe.delete(n);unscheduleAnimation(d);for(const e in s)s[e]()}},isMounted:()=>Boolean(n)};return d}function createStyles(e){const t={};const n=[];for(let o in e){const i=e[o];if(isTransform(o)){T[o]&&(o=T[o]);n.push(o);o=asTransformCssVar(o)}let s=Array.isArray(i)?i[0]:i;const a=k.get(o);a&&(s=r(i)?a.toDefaultUnit(i):i);t[o]=s}n.length&&(t.transform=buildTransformTemplate(n));return t}const camelLetterToPipeLetter=e=>`-${e.toLowerCase()}`;const camelToPipeCase=e=>e.replace(/[A-Z]/g,camelLetterToPipeLetter);function createStyleString(e={}){const t=createStyles(e);let n=\"\";for(const e in t){n+=e.startsWith(\"--\")?e:camelToPipeCase(e);n+=`: ${t[e]}; `}return n}export{Y as ScrollOffset,animate,animateStyle,createMotionState,createStyleString,createStyles,getAnimationData,getStyleName,F as glide,inView$1 as inView,fe as mountedStates,resize,scroll,N as spring,stagger,H as style,timeline,withControls};\n\n//# sourceMappingURL=index.es.js.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useEffect,useState,useRef,useMemo,useCallback,cloneElement,startTransition}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;startTransition(()=>setSize({parent:parentLength,children:childrenLength}));}},[]);const childrenStyles=isCanvas?{contentVisibility:\"auto\"}:{};/* Add refs to first and last child */if(hasChildren){// TODO: These conditional hooks will be unsafe if hasChildren ever changes outside the canvas.\nif(!isCanvas){/**\n             * Track whether this is the initial resize event. By default this will fire on mount,\n             * which we do in the useEffect. We should only fire it on subsequent resizes.\n             */let initialResize=useRef(true);useEffect(()=>{frame.read(measure);return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){frame.read(measure);}initialResize.current=false;});},[]);}clonedChildren=Children.map(filteredSlots,(child,index)=>{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]);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\":{\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicWidth\":\"400\",\"framerDisableUnlink\":\"*\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"200\",\"framerSupportedLayoutHeight\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "// Generated by Framer (1a7d5b8)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,RichText,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/5hwSRFxV0XH7mOeR3v4n/Ticker.js\";const TickerFonts=getFonts(Ticker);const cycleOrder=[\"YCGX10UiM\",\"zTF5EjgUC\"];const serializationHash=\"framer-NeGGv\";const variantClassNames={YCGX10UiM:\"framer-v-1btikmp\",zTF5EjgUC:\"framer-v-128xxfd\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"YCGX10UiM\",\"Variant 2\":\"zTF5EjgUC\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"YCGX10UiM\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"YCGX10UiM\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"zTF5EjgUC\")return true;return false;};const isDisplayed1=()=>{if(baseVariant===\"zTF5EjgUC\")return false;return true;};const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1btikmp\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"YCGX10UiM\",ref:ref??ref1,style:{backgroundColor:\"rgb(250, 247, 239)\",...style},variants:{zTF5EjgUC:{backgroundColor:\"rgb(14, 51, 51)\"}},...addPropertyOverrides({zTF5EjgUC:{\"data-framer-name\":\"Variant 2\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1endt71-container\",layoutDependency:layoutDependency,layoutId:\"IXC5UpJrf-container\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:10,overflow:false},gap:92,height:\"100%\",hoverFactor:1,id:\"IXC5UpJrf\",layoutId:\"IXC5UpJrf\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-10j2p7f\",\"data-framer-name\":\"logo amazon dark\",layoutDependency:layoutDependency,layoutId:\"rVNgit4xK\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-ksmcnf\",\"data-framer-name\":\"Amazon_Web_Services_Logo 1\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:80,intrinsicWidth:135,layoutDependency:layoutDependency,layoutId:\"uzBckARQV\",svg:'<svg width=\"135\" height=\"80\" viewBox=\"0 0 135 80\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M38.5185 29.1868C38.5185 30.8132 38.6943 32.1319 39.002 33.0989C39.3537 34.0659 39.7932 35.1209 40.4086 36.2637C40.6284 36.6154 40.7163 36.967 40.7163 37.2747C40.7163 37.7143 40.4526 38.1539 39.8811 38.5934L37.1119 40.4396C36.7163 40.7033 36.3207 40.8352 35.969 40.8352C35.5295 40.8352 35.0899 40.6154 34.6504 40.2198C34.035 39.5604 33.5075 38.8572 33.068 38.1539C32.6284 37.4066 32.1888 36.5714 31.7053 35.5604C28.2767 39.6044 23.969 41.6264 18.7822 41.6264C15.0899 41.6264 12.1449 40.5714 9.99103 38.4615C7.83718 36.3517 6.73828 33.5385 6.73828 30.022C6.73828 26.2857 8.05696 23.2528 10.7383 20.967C13.4196 18.6813 16.98 17.5385 21.5075 17.5385C23.002 17.5385 24.5405 17.6703 26.1669 17.8901C27.7932 18.1099 29.4636 18.4615 31.2218 18.8571V15.6484C31.2218 12.3077 30.5185 9.97803 29.1559 8.61539C27.7493 7.25275 25.3756 6.59341 21.991 6.59341C20.4526 6.59341 18.8701 6.76923 17.2438 7.16484C15.6174 7.56044 14.035 8.04396 12.4965 8.65935C11.7932 8.96704 11.2658 9.14286 10.9581 9.23077C10.6504 9.31869 10.4306 9.36264 10.2548 9.36264C9.63938 9.36264 9.33169 8.92308 9.33169 8V5.84616C9.33169 5.14286 9.4196 4.61539 9.63938 4.3077C9.85916 4 10.2548 3.69231 10.8701 3.38462C12.4086 2.59341 14.2548 1.93407 16.4086 1.4066C18.5625 0.835169 20.8482 0.571433 23.2658 0.571433C28.4965 0.571433 32.3207 1.75825 34.7822 4.13187C37.1998 6.5055 38.4306 10.1099 38.4306 14.9451V29.1868H38.5185ZM20.6723 35.8681C22.1229 35.8681 23.6174 35.6044 25.1998 35.0769C26.7822 34.5495 28.1888 33.5824 29.3756 32.2637C30.0789 31.4286 30.6064 30.5055 30.8701 29.4506C31.1339 28.3956 31.3097 27.1209 31.3097 25.6264V23.7802C30.035 23.4725 28.6723 23.2088 27.2658 23.033C25.8592 22.8571 24.4965 22.7692 23.1339 22.7692C20.1888 22.7692 18.035 23.3407 16.5844 24.5275C15.1339 25.7143 14.4306 27.3846 14.4306 29.5824C14.4306 31.6484 14.9581 33.1868 16.057 34.2418C17.1119 35.3407 18.6504 35.8681 20.6723 35.8681ZM55.969 40.6154C55.1778 40.6154 54.6504 40.4835 54.2987 40.1758C53.9471 39.9121 53.6394 39.2967 53.3756 38.4615L43.046 4.48352C42.7822 3.6044 42.6504 3.03297 42.6504 2.72528C42.6504 2.02198 43.002 1.62638 43.7053 1.62638H48.013C48.8482 1.62638 49.4196 1.75825 49.7273 2.06594C50.0789 2.32967 50.3427 2.94506 50.6064 3.78022L57.991 32.8791L64.8482 3.78022C65.0679 2.9011 65.3317 2.32967 65.6833 2.06594C66.035 1.8022 66.6504 1.62638 67.4416 1.62638H70.9581C71.7932 1.62638 72.3646 1.75825 72.7163 2.06594C73.0679 2.32967 73.3756 2.94506 73.5515 3.78022L80.4965 33.2308L88.1009 3.78022C88.3646 2.9011 88.6723 2.32967 88.98 2.06594C89.3317 1.8022 89.9031 1.62638 90.6943 1.62638H94.7822C95.4855 1.62638 95.8811 1.97803 95.8811 2.72528C95.8811 2.94506 95.8372 3.16484 95.7932 3.42858C95.7493 3.69231 95.6613 4.04396 95.4855 4.52748L84.8921 38.5055C84.6284 39.3846 84.3207 39.9561 83.969 40.2198C83.6174 40.4835 83.046 40.6593 82.2987 40.6593H78.5185C77.6833 40.6593 77.1119 40.5275 76.7602 40.2198C76.4086 39.9121 76.1009 39.3407 75.9251 38.4615L69.1119 10.1099L62.3427 38.4176C62.1229 39.2967 61.8592 39.8681 61.5075 40.1758C61.1559 40.4835 60.5405 40.6154 59.7493 40.6154H55.969ZM112.453 41.8022C110.167 41.8022 107.881 41.5385 105.683 41.011C103.486 40.4835 101.771 39.9121 100.628 39.2528C99.9251 38.8572 99.4416 38.4176 99.2657 38.022C99.0899 37.6264 99.002 37.1868 99.002 36.7912V34.5495C99.002 33.6264 99.3537 33.1868 100.013 33.1868C100.277 33.1868 100.54 33.2308 100.804 33.3187C101.068 33.4066 101.464 33.5824 101.903 33.7583C103.398 34.4176 105.024 34.9451 106.738 35.2967C108.497 35.6484 110.211 35.8242 111.969 35.8242C114.738 35.8242 116.892 35.3407 118.387 34.3736C119.881 33.4066 120.672 32 120.672 30.1978C120.672 28.967 120.277 27.9561 119.486 27.1209C118.694 26.2857 117.2 25.5385 115.046 24.8352L108.672 22.8571C105.464 21.8462 103.09 20.3517 101.639 18.3736C100.189 16.4396 99.4416 14.2857 99.4416 12C99.4416 10.1539 99.8372 8.52748 100.628 7.12088C101.42 5.71429 102.475 4.48352 103.793 3.51649C105.112 2.5055 106.606 1.75825 108.365 1.23077C110.123 0.703301 111.969 0.483521 113.903 0.483521C114.87 0.483521 115.881 0.527477 116.848 0.659345C117.859 0.791213 118.782 0.967037 119.705 1.14286C120.584 1.36264 121.42 1.58242 122.211 1.84616C123.002 2.10989 123.617 2.37363 124.057 2.63737C124.672 2.98902 125.112 3.34066 125.376 3.73627C125.639 4.08792 125.771 4.57143 125.771 5.18682V7.25275C125.771 8.17583 125.42 8.65935 124.76 8.65935C124.409 8.65935 123.837 8.48352 123.09 8.13187C120.584 6.98902 117.771 6.41759 114.65 6.41759C112.145 6.41759 110.167 6.81319 108.804 7.64836C107.442 8.48352 106.738 9.75825 106.738 11.5604C106.738 12.7912 107.178 13.8462 108.057 14.6813C108.936 15.5165 110.562 16.3517 112.892 17.0989L119.134 19.0769C122.299 20.0879 124.584 21.4945 125.947 23.2967C127.31 25.0989 127.969 27.1648 127.969 29.4506C127.969 31.3407 127.573 33.055 126.826 34.5495C126.035 36.044 124.98 37.3626 123.617 38.4176C122.255 39.5165 120.628 40.3077 118.738 40.8791C116.76 41.4945 114.694 41.8022 112.453 41.8022Z\" fill=\"white\" fill-opacity=\"0.64\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M120.76 63.1649C106.299 73.8462 85.2875 79.5166 67.2216 79.5166C41.9029 79.5166 19.0897 70.1539 1.85894 54.5935C0.496302 53.3627 1.72707 51.6924 3.35345 52.6594C21.9908 63.4726 44.9798 70.0221 68.76 70.0221C84.804 70.0221 102.43 66.6814 118.65 59.8243C121.068 58.7254 123.134 61.4067 120.76 63.1649Z\" fill=\"white\" fill-opacity=\"0.64\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M126.782 56.3077C124.936 53.9341 114.562 55.1649 109.859 55.7363C108.452 55.9121 108.232 54.6814 109.507 53.7583C117.771 47.9561 131.353 49.6264 132.936 51.5605C134.518 53.5385 132.496 67.1209 124.76 73.6264C123.573 74.6374 122.43 74.1099 122.958 72.7913C124.716 68.4396 128.628 58.6374 126.782 56.3077Z\" fill=\"white\" fill-opacity=\"0.64\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1rq85v3\",\"data-framer-name\":\"logo acumen dark\",layoutDependency:layoutDependency,layoutId:\"eSIz3MBk6\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1jxr782\",\"data-framer-name\":\"acumen\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:52,intrinsicWidth:176,layoutDependency:layoutDependency,layoutId:\"xqub_3_gS\",svg:'<svg width=\"176\" height=\"52\" viewBox=\"0 0 176 52\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_2077_5117)\">\\n<mask id=\"mask0_2077_5117\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"0\" y=\"0\" width=\"176\" height=\"52\">\\n<path d=\"M175.503 0.644043H0.49707V51.3559H175.503V0.644043Z\" fill=\"white\"/>\\n</mask>\\n<g mask=\"url(#mask0_2077_5117)\">\\n<path opacity=\"0.5\" d=\"M62.8276 51.2706H50.0272L31.3799 0.673706H62.8276V51.2706Z\" fill=\"white\" fill-opacity=\"0.64\"/>\\n<path d=\"M18.4107 35.956H34.6237L31.3741 27.1635H21.6486L26.4881 14.025L21.6253 0.644043H12.7093V9.43656H18.3873L6.20425 42.478H0.49707V51.2705H21.6253V42.478H15.9997L18.4107 35.956Z\" fill=\"white\" fill-opacity=\"0.64\"/>\\n<path opacity=\"0.5\" d=\"M12.7093 0.673828H0.49707V42.4782H6.20425L18.3873 9.43678H12.7093V0.673828Z\" fill=\"white\" fill-opacity=\"0.64\"/>\\n<path d=\"M92.4025 50.7013H87.9286L86.7058 47.3434H79.2306L77.98 50.7013H73.6172L81.3147 30.611H84.6494L92.4025 50.7013ZM85.3163 43.641L82.9821 37.2695L80.62 43.641H85.3163Z\" fill=\"white\" fill-opacity=\"0.64\"/>\\n<path d=\"M99.3025 50.9884C97.9872 50.9884 96.7923 50.6727 95.7178 50.0412C94.6433 49.3906 93.7911 48.5105 93.1612 47.4007C92.5498 46.2909 92.2441 45.0473 92.2441 43.6696C92.2441 42.2921 92.5498 41.0483 93.1612 39.9386C93.7911 38.8098 94.6433 37.9296 95.7178 37.2981C96.7923 36.6476 97.9872 36.3224 99.3025 36.3224C100.433 36.3224 101.489 36.5711 102.47 37.0685C103.453 37.5469 104.258 38.2166 104.888 39.0776C105.518 39.9386 105.889 40.9049 105.999 41.9764H101.998C101.85 41.4597 101.526 41.0388 101.026 40.7135C100.525 40.3691 99.9508 40.1969 99.3025 40.1969C98.3763 40.1969 97.6075 40.5318 96.996 41.2015C96.3847 41.852 96.079 42.6747 96.079 43.6696C96.079 44.6455 96.3847 45.4682 96.996 46.1379C97.626 46.7885 98.3948 47.1138 99.3025 47.1138C99.9696 47.1138 100.553 46.9416 101.053 46.5971C101.572 46.2336 101.906 45.7744 102.054 45.2195H105.999C105.907 46.3101 105.546 47.2955 104.916 48.1756C104.305 49.0558 103.499 49.7446 102.498 50.2421C101.517 50.7396 100.451 50.9884 99.3025 50.9884Z\" fill=\"white\" fill-opacity=\"0.64\"/>\\n<path d=\"M116.919 48.8644C116.492 49.5533 115.964 50.0794 115.335 50.443C114.705 50.8066 114.001 50.9884 113.223 50.9884C111.481 50.9884 110.111 50.4239 109.11 49.295C108.128 48.147 107.637 46.578 107.637 44.5881V36.6094H111.555V44.0715C111.555 44.99 111.796 45.7266 112.278 46.2814C112.779 46.8364 113.427 47.1138 114.223 47.1138C115.039 47.1138 115.687 46.8364 116.168 46.2814C116.668 45.7266 116.919 44.99 116.919 44.0715V36.6094H120.837V50.7013H116.919V48.8644Z\" fill=\"white\" fill-opacity=\"0.64\"/>\\n<path d=\"M144.797 50.7013H140.879V42.8947C140.879 42.072 140.666 41.4215 140.24 40.9431C139.814 40.4457 139.248 40.1969 138.544 40.1969C137.84 40.1969 137.248 40.4361 136.766 40.9144C136.303 41.3737 136.071 42.0337 136.071 42.8947V50.7013H132.153V42.8947C132.153 42.072 131.94 41.4215 131.514 40.9431C131.088 40.4457 130.504 40.1969 129.763 40.1969C129.096 40.1969 128.531 40.4361 128.068 40.9144C127.605 41.3737 127.374 42.0337 127.374 42.8947V50.7013H123.455V36.6094H127.374V38.274C127.836 37.5852 128.42 37.0877 129.124 36.7816C129.828 36.4754 130.542 36.3224 131.264 36.3224C132.153 36.3224 132.912 36.4945 133.543 36.839C134.191 37.1642 134.719 37.6809 135.127 38.3887C135.534 37.7765 136.108 37.2791 136.849 36.8963C137.591 36.5137 138.387 36.3224 139.239 36.3224C140.314 36.3224 141.268 36.5615 142.101 37.0399C142.954 37.4991 143.612 38.1496 144.075 38.9915C144.556 39.8333 144.797 40.8187 144.797 41.9476V50.7013Z\" fill=\"white\" fill-opacity=\"0.64\"/>\\n<path d=\"M153.723 50.9884C152.408 50.9884 151.204 50.663 150.111 50.0125C149.018 49.362 148.156 48.4723 147.527 47.3434C146.897 46.1953 146.582 44.9421 146.582 43.5836C146.582 42.2442 146.887 41.0197 147.499 39.9099C148.129 38.8002 148.981 37.9296 150.055 37.2981C151.148 36.6476 152.352 36.3224 153.668 36.3224C154.891 36.3224 156.011 36.6284 157.031 37.2408C158.068 37.8339 158.883 38.6566 159.476 39.709C160.087 40.7614 160.393 41.9285 160.393 43.2105C160.393 43.7462 160.366 44.2437 160.31 44.7029H150.222C150.371 45.6022 150.75 46.3101 151.362 46.8267C151.991 47.3434 152.76 47.6017 153.668 47.6017C154.391 47.6017 154.983 47.4581 155.447 47.1711C155.928 46.865 156.234 46.4632 156.363 45.9657H160.199C159.976 47.4964 159.272 48.7209 158.087 49.6394C156.9 50.5387 155.447 50.9884 153.723 50.9884ZM156.28 42.0051C156.206 41.3162 155.9 40.7518 155.363 40.3117C154.844 39.8716 154.215 39.6516 153.474 39.6516C152.714 39.6516 152.066 39.8525 151.528 40.2543C150.991 40.637 150.611 41.2206 150.389 42.0051H156.28Z\" fill=\"white\" fill-opacity=\"0.64\"/>\\n<path d=\"M166.222 38.4462C166.648 37.7573 167.176 37.2312 167.806 36.8677C168.436 36.5042 169.14 36.3224 169.918 36.3224C171.66 36.3224 173.021 36.8963 174.003 38.0444C175.004 39.1733 175.504 40.7326 175.504 42.7225V50.7013H171.585V43.2392C171.585 42.3208 171.335 41.5841 170.835 41.0292C170.353 40.4744 169.715 40.1969 168.917 40.1969C168.103 40.1969 167.445 40.4744 166.944 41.0292C166.463 41.5841 166.222 42.3208 166.222 43.2392V50.7013H162.304V36.6094H166.222V38.4462Z\" fill=\"white\" fill-opacity=\"0.64\"/>\\n</g>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_2077_5117\">\\n<rect width=\"176\" height=\"50.7119\" fill=\"white\" transform=\"translate(0 0.644043)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-6lm68k\",\"data-framer-name\":\"logo coometas dark\",layoutDependency:layoutDependency,layoutId:\"eVGQDaTQm\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1fu1lzp\",\"data-framer-name\":\"logo-coometas\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:30,intrinsicWidth:176,layoutDependency:layoutDependency,layoutId:\"xwW7V246i\",svg:'<svg width=\"176\" height=\"30\" viewBox=\"0 0 176 30\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_2077_5131)\">\\n<path d=\"M9.61081 9.49229C5.45916 9.49229 3.92073 13.0676 3.92073 16.7584C3.92073 20.4491 5.45824 23.985 9.61081 23.985C13.2246 23.985 14.3781 21.5248 14.5321 19.2955H18.4537C18.1844 23.7935 14.6476 27.1388 9.64928 27.1388C3.80529 27.1379 0 22.9084 0 16.7574C0 10.6065 3.80529 6.37695 9.61081 6.37695C14.6476 6.37695 17.992 9.64438 18.4537 14.0654H14.5321C14.3781 12.0285 13.2255 9.49136 9.61081 9.49136V9.49229Z\" fill=\"white\" fill-opacity=\"0.64\"/>\\n<path d=\"M20.3027 16.7583C20.3027 10.6458 23.9935 6.33936 30.105 6.33936C36.2166 6.33936 39.9083 10.6064 39.9083 16.7189C39.9083 22.8314 36.2175 27.1388 30.105 27.1388C23.9926 27.1388 20.3027 22.9092 20.3027 16.7583ZM35.9885 16.7583C35.9885 12.6443 34.1036 9.49225 30.106 9.49225C26.1082 9.49225 24.2244 12.6443 24.2244 16.7583C24.2244 20.8724 26.0697 24.0243 30.106 24.0243C34.1422 24.0243 35.9885 20.8329 35.9885 16.7583Z\" fill=\"white\" fill-opacity=\"0.64\"/>\\n<path d=\"M41.8721 16.7583C41.8721 10.6458 45.5628 6.33936 51.6752 6.33936C57.7877 6.33936 61.4784 10.6064 61.4784 16.7189C61.4784 22.8314 57.7877 27.1388 51.6752 27.1388C45.5628 27.1388 41.8721 22.9092 41.8721 16.7583ZM57.5577 16.7583C57.5577 12.6443 55.6739 9.49225 51.6761 9.49225C47.6785 9.49225 45.7946 12.6443 45.7946 16.7583C45.7946 20.8724 47.64 24.0243 51.6761 24.0243C55.7124 24.0243 57.5577 20.8329 57.5577 16.7583Z\" fill=\"white\" fill-opacity=\"0.64\"/>\\n<path d=\"M106.887 16.7189C106.887 10.5679 110.578 6.33936 116.575 6.33936C122.572 6.33936 125.879 10.26 125.879 16.335C125.879 16.8737 125.879 17.4501 125.839 17.757H110.769C110.846 21.0639 112.769 24.0628 116.651 24.0628C120.112 24.0628 121.419 21.8317 121.803 20.5251H125.61C124.61 24.2919 121.727 27.1388 116.575 27.1388C110.347 27.1388 106.887 22.7178 106.887 16.7189ZM110.769 14.7975H121.919C121.919 11.7216 119.803 9.41532 116.459 9.41532C113.307 9.41532 111.001 11.5686 110.769 14.7975Z\" fill=\"white\" fill-opacity=\"0.64\"/>\\n<path d=\"M129.781 6.9538V0.648926H133.548V6.9538H137.315V10.0673H133.548V21.1396C133.548 23.2158 134.125 23.6767 135.739 23.6767C136.353 23.6767 136.661 23.6391 137.354 23.5237V26.5602C136.354 26.7526 135.778 26.7911 134.932 26.7911C131.74 26.7911 129.781 25.5605 129.781 21.0241V10.0673H126.936V6.9538H129.781H129.781Z\" fill=\"white\" fill-opacity=\"0.64\"/>\\n<path d=\"M139.202 21.4872C139.202 17.1038 142.508 15.8356 147.391 14.8735C150.467 14.2972 152.349 13.9133 152.349 11.99C152.349 10.5679 151.504 9.37677 148.621 9.37677C145.199 9.37677 144.161 10.4525 143.969 13.0675H140.124C140.316 9.30076 142.777 6.33936 148.774 6.33936C152.81 6.33936 156.039 8.03079 156.039 13.1051V22.1011C156.039 23.5232 156.233 24.2544 156.962 24.2544C157.078 24.2544 157.193 24.2544 157.423 24.2149V26.5221C156.77 26.6751 156.117 26.7512 155.502 26.7512C153.657 26.7512 152.618 26.0219 152.426 23.7916H152.349C151.042 25.8285 148.812 27.0985 145.622 27.0985C141.7 27.0985 139.201 24.8298 139.201 21.4863L139.202 21.4872ZM152.349 18.9116V16.1041C151.735 16.6822 150.043 17.1038 148.044 17.5261C144.585 18.2564 143.162 19.1791 143.162 21.2169C143.162 23.0623 144.123 24.0628 146.468 24.0628C149.851 24.0628 152.349 22.332 152.349 18.9106V18.9116Z\" fill=\"white\" fill-opacity=\"0.64\"/>\\n<path d=\"M175.924 20.9869C175.924 24.7923 173.002 27.0985 167.85 27.0985C161.891 27.0985 158.931 24.0225 158.816 20.0248H162.621C162.814 22.2936 164.159 24.062 167.811 24.062C171.118 24.062 172.001 22.6005 172.001 21.1784C172.001 18.7183 169.387 18.4479 166.85 17.911C163.429 17.1413 159.507 16.1032 159.507 12.0285C159.507 8.64565 162.236 6.37695 167.004 6.37695C172.348 6.37695 174.923 9.26048 175.193 12.6434H171.386C171.118 11.1443 170.349 9.41443 167.042 9.41443C164.543 9.41443 163.43 10.414 163.43 11.8746C163.43 13.9124 165.62 14.0654 168.427 14.7196C172.003 15.5653 175.924 16.6026 175.924 20.986V20.9869Z\" fill=\"white\" fill-opacity=\"0.64\"/>\\n<path d=\"M86.8614 29.2804C85.024 29.2804 83.4755 28.3523 82.5015 26.6673C81.7538 25.3726 81.358 23.6362 81.358 21.6479C81.358 18.1524 82.6206 13.9191 85.0619 10.7974C84.2774 9.41567 82.9816 8.57453 81.1344 8.57453C76.0793 8.57453 72.9475 16.624 72.9475 26.4171H69.1303C69.1303 26.287 69.2238 12.9544 61.7305 8.79169L63.377 5.66261C67.1512 7.75905 69.4373 11.3847 70.8218 15.026C72.844 9.07394 76.5384 5.42163 81.1344 5.42163C83.2455 5.42163 85.7403 6.29759 87.8614 8.13563C89.4699 7.03977 91.3654 6.37639 93.5403 6.37639C97.8179 6.37639 104.993 8.98044 104.993 26.4181H101.176C101.176 20.3597 100.066 9.5293 93.542 9.5293C91.8948 9.5293 90.9563 10.255 90.3495 11.0778C91.7029 13.2787 92.5867 16.1494 92.5867 19.7365C92.5867 25.7125 90.4462 29.2804 86.8614 29.2804ZM87.5087 13.8999C85.9802 16.2181 85.1763 19.2152 85.1763 21.6479C85.1763 24.6056 85.9718 26.1276 86.8614 26.1276C88.1139 26.1276 88.7696 23.5537 88.7696 19.7365C88.7696 17.3836 88.278 15.4439 87.5087 13.8999Z\" fill=\"white\" fill-opacity=\"0.64\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_2077_5131\">\\n<rect width=\"176\" height=\"28.7021\" fill=\"white\" transform=\"translate(0 0.648926)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1qlshm9\",\"data-framer-name\":\"logo european commission dark\",layoutDependency:layoutDependency,layoutId:\"D9zgcuSz1\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-b425qj\",\"data-framer-name\":\"European_Commission\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:80,intrinsicWidth:116,layoutDependency:layoutDependency,layoutId:\"jXNOdLWAA\",svg:'<svg width=\"116\" height=\"80\" viewBox=\"0 0 116 80\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_2077_5140)\">\\n<path d=\"M23.6143 79.9999H73.3928V77.1592H23.6143V79.9999Z\" fill=\"white\" fill-opacity=\"0.64\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M92.6783 55.3025C89.8333 55.2414 80.4696 54.8969 80.4696 54.8969L80.4692 56.6781L115.509 56.6999V56.1527C115.509 56.1527 95.5233 55.3635 92.6783 55.3025ZM92.6779 52.2046C86.4056 51.1864 80.4495 50.1814 80.4495 50.1814V52.004C80.4495 52.004 86.822 52.7932 92.6475 53.3906C95.2483 53.6565 99.8268 53.9291 104.433 54.1798C108.857 54.4196 115.509 54.7553 115.509 54.7553V54.2103C115.509 54.2103 105.114 53.5105 104.433 53.4799C103.753 53.4516 97.3804 52.9698 92.6779 52.2046ZM92.6783 49.1081C87.7293 47.8327 80.4696 45.6264 80.4696 45.6264L80.4499 47.5297C80.4499 47.5297 89.4365 49.627 92.6479 50.3224C95.5452 50.9503 99.5044 51.3144 104.434 51.6589C110.529 52.0862 115.478 52.4175 115.478 52.4175V51.9008C115.478 51.9008 106.753 51.2032 104.464 51.0506C102.175 50.9002 97.6273 50.3834 92.6783 49.1081ZM92.6783 45.9796C87.6269 44.0152 80.4696 41.0109 80.4696 41.0109L80.4499 43.0364C80.4499 43.0364 88.3379 45.7332 92.6479 47.135C96.8853 48.515 99.1539 48.7116 104.359 49.1626L104.434 49.1691C109.692 49.6248 115.478 50.0782 115.478 50.0782V49.5332C115.478 49.5332 105.794 48.5566 104.464 48.4104C104.071 48.367 103.665 48.3264 103.245 48.2845L103.244 48.2844C100.436 48.0042 97.0018 47.6615 92.6783 45.9796ZM92.6479 42.8222C89.5672 41.3071 80.4696 36.4564 80.4696 36.4564L80.4499 38.582C80.4499 38.582 88.9852 42.4755 92.6479 44.0671C96.7422 45.8483 98.763 46.0924 104.434 46.6178C110.155 47.1498 115.509 47.7123 115.509 47.7123V47.1651C115.509 47.1651 109.719 46.5677 104.434 45.9486C99.0511 45.3229 96.0816 44.5119 92.6479 42.8222ZM92.6775 39.757C90.7283 38.6932 80.4491 31.9826 80.4491 31.9826L80.4486 31.9828L80.4683 34.2697C80.4683 34.2697 88.9972 39.1487 92.6162 41.0912C96.2353 43.0359 99.5448 43.7335 104.402 44.2502C109.26 44.7669 115.477 45.4341 115.477 45.4341V44.8563C115.477 44.8563 111.95 44.4312 104.433 43.4916C97.7595 42.6552 95.207 41.1965 93.3527 40.1368L93.3526 40.1368C93.1188 40.0032 92.896 39.8759 92.6775 39.757ZM92.6166 36.8704C90.6979 35.475 80.4491 27.5089 80.4491 27.5089L80.4687 29.9791C80.4687 29.9791 88.7815 35.715 92.647 38.2375C96.3102 40.6293 99.4814 41.0109 103.425 41.4855L103.429 41.486L103.433 41.4865C103.761 41.526 104.094 41.5661 104.433 41.608C108.858 42.153 115.477 43.097 115.477 43.097V42.4887C115.477 42.4887 111.734 41.9742 104.433 40.9409C97.0707 39.8964 94.5352 38.2678 92.6166 36.8704ZM92.6479 33.8055C89.454 31.0102 80.4696 22.8326 80.4696 22.8326V25.5058C80.4696 25.5058 89.0179 32.4059 92.6479 35.2924C95.5257 37.5797 98.5746 38.0448 103.098 38.7348C103.52 38.7992 103.955 38.8655 104.403 38.9354C109.662 39.7552 115.509 40.697 115.509 40.697V40.1192C115.509 40.1192 110.9 39.4216 104.434 38.2988C97.9697 37.176 95.5867 36.3759 92.6479 33.8055ZM92.6479 30.9501C89.9161 28.164 80.4696 18.4602 80.4696 18.4602V21.3141C80.4696 21.3141 89.9577 30.0346 92.6175 32.4371C95.4305 34.9795 98.8364 35.5477 103.597 36.3419C103.862 36.3861 104.13 36.4309 104.403 36.4768C109.692 37.3641 115.509 38.2972 115.509 38.2972V37.7522C115.509 37.7522 109.315 36.758 104.403 35.8991C99.2579 34.9986 95.5453 33.9042 92.6479 30.9501ZM92.6475 27.7007C90.681 25.5883 80.4495 13.7435 80.4495 13.7435L80.4692 16.8001C80.4692 16.8001 89.663 26.4124 92.6171 29.2488C96.1204 32.6144 99.4283 33.1711 103.204 33.8065C103.608 33.8745 104.018 33.9434 104.433 34.0167C108.735 34.7754 115.509 35.9898 115.509 35.9898V35.4753C115.509 35.4753 107.329 34.0517 104.433 33.5001C97.1952 32.1244 95.7106 30.9906 92.6475 27.7007ZM92.6175 24.8777C90.5747 22.2657 80.4696 9.20891 80.4696 9.20891L80.4499 12.4681C80.4499 12.4681 90.0798 23.6676 92.6175 26.517C95.5106 29.7632 99.546 30.6156 104.434 31.4964C109.322 32.3772 115.509 33.5305 115.509 33.5305V33.0443C115.509 33.0443 108.447 31.7515 104.434 30.9798C97.4725 29.6433 94.6581 27.4873 92.6175 24.8777ZM92.6175 21.8405C91.1936 19.9568 80.4696 4.59346 80.4696 4.59346L80.4499 8.0359C80.4499 8.0359 90.0099 20.3058 92.6479 23.6327C95.4408 27.1553 99.7562 28.0583 103.936 28.9329C104.102 28.9677 104.268 29.0024 104.434 29.0373C108.763 29.9486 115.539 31.2545 115.539 31.2545V30.7683C115.539 30.7683 106.623 29.0133 104.434 28.5511C96.3534 26.8428 94.2345 24.005 92.8208 22.1118L92.8207 22.1116C92.7515 22.0189 92.6839 21.9285 92.6175 21.8405ZM92.7461 19.1311C90.847 16.1594 80.4696 -0.00195312 80.4696 -0.00195312L80.4692 3.78283C80.4692 3.78283 90.2646 17.5897 92.6475 20.8381C95.4287 24.6295 97.93 25.1758 103.826 26.4633L104.353 26.5785C110.632 27.952 115.511 28.9723 115.511 28.9723V28.3968C115.511 28.3968 112.169 27.6426 104.49 26.0466C96.812 24.4506 94.6428 22.1005 92.7461 19.1311ZM45.2298 22.9131C47.8722 21.8646 49.5379 20.6329 51.6962 18.8996C53.3596 17.5652 54.9252 16.0062 56.8111 14.0571V14.8485C55.2521 16.5688 53.8175 18.1429 52.3285 19.3943C50.4974 20.934 48.5506 22.3624 46.6014 23.3895H50.9299C51.2795 23.2114 51.6102 23.0233 51.9139 22.8233C53.9218 21.5002 54.977 20.4951 56.8105 18.7074V19.4901C56.8084 19.5232 54.5487 21.853 52.6198 23.3895H73.3871V56.6847H56.8118V56.6861H0.000752689V54.482L23.6162 55.0811V53.4835C15.6296 53.5633 7.62607 53.6202 0.000752689 53.6694V51.4653C7.96579 51.6143 15.7988 51.7572 23.6162 51.8778V50.1293C20.2063 50.2012 16.8437 50.2823 13.6402 50.3612L0.00109931 50.7166V48.5146L13.6075 48.5024C16.8298 48.5053 20.1974 48.5103 23.6162 48.5251V46.9279C15.5727 47.176 7.5948 47.4426 3.24881e-05 47.7001V45.496C7.94883 45.4274 15.7715 45.3617 23.6162 45.3176V43.7392L0.000398365 44.7561V42.552L23.6162 42.1272V40.5098L0.000718026 41.743V39.5345L23.6162 38.8961V37.2951C15.7711 37.7993 7.94679 38.3299 -0.000545213 38.8719V36.6635C7.99644 36.3157 15.8548 35.9779 23.6162 35.671V34.0622C15.8051 34.6339 7.96723 35.2364 0.00087208 35.8528V33.6443C8.31639 33.2037 16.0171 32.8007 23.6162 32.4319V30.7821C20.4008 31.0598 17.2656 31.34 14.4134 31.5963L0.000486946 32.9175V30.7025L14.2697 29.741C17.4085 29.5372 20.5096 29.3365 23.6162 29.1444V27.5953L0.000367555 29.8853V27.6746L23.6162 25.9528V24.4482L-0.000591429 26.9534V24.7384L34.1492 21.9347C35.586 21.8039 36.8505 21.6469 38.0125 21.4529C40.8313 20.9907 43.2514 20.2582 45.4163 19.2139C47.6289 18.1588 49.8091 16.6523 51.8977 14.7359C53.5087 13.2601 55.122 11.5114 56.8117 9.40976V10.1488L56.5185 10.5188C55.1649 12.2274 53.8843 13.8439 52.5582 15.1151C50.4392 17.1471 48.1609 19.0656 45.8804 20.2189C43.6501 21.3613 41.1451 22.1832 38.2259 22.7348C37.0531 22.9572 35.7624 23.1491 34.2821 23.3213L33.6316 23.3895H43.8683C44.3295 23.2485 44.7829 23.0911 45.2298 22.9131ZM38.5513 17.9591C41.2896 17.4141 43.7639 16.5115 45.907 15.2797C48.0283 14.0718 50.141 12.3866 52.1881 10.2654C53.6901 8.70864 55.2097 6.88391 56.812 4.71249V5.52786C55.4517 7.3983 53.9997 9.39094 52.6938 10.8015C50.5964 13.069 48.6475 14.9243 46.4412 16.2477C44.2197 17.5928 41.6514 18.5957 38.8063 19.2323C37.6137 19.5026 36.3077 19.7315 34.8144 19.9299C33.9532 20.0433 33.092 20.1391 32.2331 20.233C31.7665 20.2832 31.3 20.3355 30.8334 20.3899C20.347 21.576 9.8363 22.8339 -0.000398862 24.0199V21.7983C9.76005 20.8521 20.1964 19.8515 30.6875 18.9096C31.1518 18.8681 31.6162 18.8268 32.0806 18.7876C32.9417 18.7133 33.8007 18.6392 34.6553 18.5456C36.1074 18.3886 37.3827 18.1968 38.5513 17.9591ZM35.1976 16.4321C34.2316 16.5889 -0.000976562 21.0191 -0.000976562 21.0191L-0.000861022 18.7973C-0.000861022 18.7973 31.7552 15.429 32.1324 15.3875C33.0764 15.2894 34.0531 15.1869 34.9993 15.054C36.438 14.8534 37.7156 14.6092 38.9103 14.3083C41.5766 13.6434 44.0337 12.5947 46.2182 11.1864C48.3353 9.83492 50.4108 8.03404 52.3904 5.82992C53.8837 4.17115 55.3356 2.28954 56.8094 0.107213V1.00327C55.5667 2.85622 54.2347 4.77692 52.968 6.25071C50.973 8.56614 48.9607 10.6765 46.7959 12.1263C44.5398 13.6524 41.991 14.8101 39.2222 15.5688C37.9947 15.9067 36.6801 16.1901 35.1976 16.4321ZM45.143 48.8735H43.412L42.8997 47.2537L42.3764 48.8735H40.6498L42.0581 49.92L41.5087 51.5791L42.8997 50.5566L44.2862 51.5791L43.7477 49.92L45.143 48.8735ZM41.1247 44.8512H39.3893L38.8792 43.2357L38.356 44.8512H36.6271L38.0355 45.8998L37.4904 47.5611L38.8792 46.5364L40.2679 47.5611L39.7272 45.8998L41.1247 44.8512ZM39.6509 39.1897H37.9177L37.4075 37.572L36.8843 39.1897H35.1576L36.5638 40.2362L36.0166 41.8975L37.4075 40.875L38.7963 41.8975L38.2556 40.2362L39.6509 39.1897ZM41.1247 33.6981H39.3893L38.8792 32.0804L38.356 33.6981H36.6271L38.0355 34.7446L37.4904 36.4059L38.8792 35.3812L40.2679 36.4059L39.7272 34.7446L41.1247 33.6981ZM45.0853 29.6207H43.3542L42.8419 28.003L42.3186 29.6207H40.5919L42.0003 30.6693L41.4509 32.3284L42.8419 31.3037L44.2328 32.3284L43.69 30.6693L45.0853 29.6207ZM61.8488 39.1759H60.1133L59.6031 37.5582L59.0777 39.1759H57.351L58.7616 40.2223L58.2144 41.8836L59.6032 40.8589L60.9941 41.8836L60.4513 40.2223L61.8488 39.1759ZM60.3165 44.8373H58.5855L58.0731 43.2175L57.5499 44.8373H55.8232L57.2337 45.886L56.6865 47.5472L58.0731 46.5225L59.464 47.5472L58.9212 45.886L60.3165 44.8373ZM60.3165 33.6842H58.5855L58.0731 32.0644L57.5499 33.6842H55.8232L57.2337 34.7285L56.6865 36.3898L58.0731 35.3673L59.464 36.3898L58.9212 34.7285L60.3165 33.6842ZM56.2431 29.6068H54.5077L53.9975 27.9891L53.4743 29.6068H51.7454L53.156 30.6533L52.6088 32.3124L53.9975 31.2899L55.3885 32.3124L54.8456 30.6533L56.2431 29.6068ZM56.2431 48.8597H54.5077L53.9975 47.2398L53.4743 48.8597H51.7454L53.156 49.9061L52.6088 51.5652L53.9975 50.5405L55.3885 51.5652L54.8456 49.9061L56.2431 48.8597ZM50.7507 50.3299H49.0153L48.5051 48.7123L47.9819 50.3299H46.253L47.6636 51.3786L47.1164 53.0355L48.5051 52.0152L49.8961 53.0355L49.3532 51.3786L50.7507 50.3299ZM50.6852 28.1258H48.9542L48.4418 26.4427L47.9186 28.1258H46.1919L47.6003 29.2137L47.0509 30.9382L48.4418 29.8765L49.8328 30.9382L49.2899 29.2137L50.6852 28.1258Z\" fill=\"white\" fill-opacity=\"0.64\"/>\\n<path d=\"M55.2664 65.0221H54.7018C54.5993 65.0221 54.5513 64.9741 54.5513 64.8738L54.56 62.6675C54.56 62.2032 54.451 61.8979 53.9953 61.8979C53.6814 61.8979 53.132 62.1487 52.9184 62.2511V64.8739C52.9184 64.9677 52.8791 65.0221 52.7701 65.0221H52.212C52.103 65.0221 52.0637 64.9741 52.0637 64.8739V61.3311C52.0637 61.2308 52.103 61.1763 52.212 61.1763H52.7701C52.8791 61.1763 52.9184 61.2307 52.9184 61.3311V61.5688C52.9271 61.5688 52.9358 61.5757 52.9424 61.5757C53.2324 61.373 53.7818 61.1048 54.2614 61.1048C55.321 61.1048 55.4169 61.8047 55.4169 62.5961V64.8743C55.4169 64.9682 55.3841 65.0226 55.2664 65.0226M50.5493 63.2711H49.5922C49.1998 63.2711 48.9468 63.4129 48.9468 63.9316C48.9468 64.2761 49.0646 64.3873 49.4352 64.3873C49.7731 64.3873 50.2506 64.1889 50.5492 64.0167L50.5493 63.2711ZM50.5972 64.5748C50.2048 64.8735 49.6772 65.0849 49.1518 65.0849C48.319 65.0849 48.077 64.6293 48.077 63.9709C48.0683 63.0509 48.5632 62.6584 49.5529 62.6584H50.558V62.4557C50.558 61.9848 50.3835 61.8191 49.7404 61.8191C49.481 61.8191 48.9861 61.8583 48.6721 61.8889C48.5151 61.9129 48.4759 61.9046 48.4541 61.7952L48.3822 61.5052C48.3665 61.4027 48.3909 61.3396 48.5632 61.2698C48.9011 61.1521 49.5203 61.0976 49.8909 61.0976C51.2491 61.0976 51.4126 61.6536 51.4126 62.5343V64.0495C51.4126 64.37 51.4519 64.3787 51.6961 64.4093C51.8138 64.418 51.8443 64.4419 51.8443 64.527V64.8584C51.8443 64.9435 51.7899 64.9979 51.6568 65.0218C51.5304 65.0459 51.4061 65.061 51.2884 65.061C50.9177 65.061 50.691 64.952 50.6125 64.5836L50.5968 64.5749L50.5972 64.5748ZM45.314 62.7454H46.8684C46.8684 62.2657 46.742 61.8036 46.0923 61.8036C45.5102 61.8036 45.3532 62.1568 45.314 62.7454ZM45.3053 63.334C45.3293 64.1276 45.6127 64.3478 46.2558 64.3478C46.5392 64.3478 46.9774 64.2911 47.2761 64.2606C47.4179 64.2449 47.4658 64.2449 47.4898 64.3937L47.5356 64.6531C47.5597 64.7708 47.5443 64.834 47.4027 64.8973C47.0953 65.015 46.5241 65.0935 46.1383 65.0935C44.6383 65.0935 44.4181 64.1364 44.4181 63.1139C44.4181 62.353 44.5599 61.0973 46.0925 61.0973C47.4965 61.0973 47.7472 62.0086 47.7712 62.8545C47.7799 63.1379 47.7015 63.3341 47.3875 63.3341L45.3053 63.334ZM42.4573 61.8976C42.1347 61.8976 41.6398 62.1243 41.4043 62.2507V64.2129C41.7575 64.3154 42.0409 64.346 42.309 64.346C42.8737 64.346 43.0699 64.056 43.0699 63.0684C43.0699 62.0699 42.8737 61.8976 42.4573 61.8976ZM42.3941 65.0938C42.1347 65.0938 41.775 65.0458 41.4131 64.9194L41.4044 64.9281V66.3103C41.4044 66.3952 41.3826 66.4672 41.2561 66.4672H40.698C40.5738 66.4672 40.5497 66.4128 40.5497 66.3103V61.3328C40.5497 61.2304 40.589 61.1758 40.698 61.1758H41.2561C41.3674 61.1758 41.3979 61.2369 41.3979 61.3328V61.5683L41.422 61.584C41.7032 61.3878 42.2069 61.1131 42.6625 61.1131C43.6894 61.1131 43.9575 61.8892 43.9575 63.0752C43.9575 64.355 43.6347 65.0938 42.3941 65.0938ZM38.384 61.8501C37.7168 61.8501 37.5664 62.2752 37.5664 63.0906C37.5664 63.9234 37.7167 64.3311 38.3752 64.3311C39.0903 64.3311 39.232 63.9299 39.232 63.0906C39.232 62.2578 39.0989 61.8501 38.384 61.8501ZM38.3752 65.0854C36.799 65.0854 36.6965 63.9299 36.6965 63.0361C36.6965 62.297 36.8599 61.0957 38.3752 61.0957C39.8992 61.0957 40.1106 62.1095 40.1106 63.0361C40.1106 63.9299 40.0016 65.0854 38.3752 65.0854ZM35.0793 64.8729C35.0793 64.9667 35.0401 65.0211 34.931 65.0211H34.3642C34.2552 65.0211 34.216 64.9752 34.216 64.8729V61.3323C34.216 61.2297 34.2552 61.1753 34.3642 61.1753H34.9223C35.0401 61.1753 35.0793 61.2385 35.0793 61.3323V61.6768L35.095 61.6925C35.3305 61.4745 35.8886 61.2063 36.257 61.1365C36.3596 61.1125 36.4292 61.1365 36.4467 61.2694L36.5011 61.7948C36.5081 61.9061 36.5168 61.9518 36.3508 61.9845C35.9126 62.0696 35.3544 62.2265 35.0798 62.3442V64.8732L35.0793 64.8729ZM33.4006 65.022H32.8424C32.7247 65.022 32.6942 64.9676 32.6942 64.8737V64.6296L32.6785 64.6209C32.3711 64.8345 31.837 65.0918 31.3595 65.0918C30.2999 65.0918 30.1975 64.4639 30.1975 63.6398V61.331C30.1975 61.2373 30.2367 61.1761 30.3457 61.1761H30.9191C31.0216 61.1761 31.0609 61.2305 31.0609 61.331V63.5373C31.0609 64.0104 31.1546 64.3069 31.6343 64.3069C31.9722 64.3069 32.4889 64.0562 32.6938 63.9537V61.331C32.6938 61.2373 32.7243 61.1761 32.8421 61.1761H33.4002C33.5092 61.1761 33.5485 61.2305 33.5485 61.331V64.8737C33.5485 64.974 33.5096 65.022 33.4006 65.022ZM26.5244 59.9659C26.5244 59.8634 26.5724 59.809 26.6814 59.809H29.5701C29.6639 59.809 29.7206 59.8634 29.7206 59.9572V60.4456C29.7206 60.5394 29.6814 60.5874 29.5636 60.5874H27.4206V61.9369H29.3195C29.4218 61.9369 29.4764 61.9848 29.4764 62.0785V62.5647C29.4764 62.6585 29.4372 62.7063 29.3195 62.7063H27.4206V64.252H29.6181C29.7118 64.252 29.7599 64.3 29.7599 64.4026V64.88C29.7599 64.9826 29.7207 65.0216 29.6094 65.0216H26.6815C26.5725 65.0216 26.5245 64.9737 26.5245 64.88L26.5244 59.9659Z\" fill=\"white\" fill-opacity=\"0.64\"/>\\n<path d=\"M63.2155 73.3063H62.6508C62.5483 73.3063 62.5003 73.2584 62.5003 73.1581L62.509 70.9518C62.509 70.4874 62.4 70.1822 61.9444 70.1822C61.6304 70.1822 61.081 70.4329 60.8674 70.5354V73.1581C60.8674 73.2519 60.8282 73.3063 60.7191 73.3063H60.161C60.052 73.3063 60.0128 73.2584 60.0128 73.1581V69.6154C60.0128 69.5151 60.052 69.4605 60.161 69.4605H60.7191C60.8282 69.4605 60.8674 69.5149 60.8674 69.6154V69.853C60.8761 69.853 60.8831 69.86 60.8915 69.86C61.1814 69.6572 61.733 69.3891 62.2105 69.3891C63.27 69.3891 63.366 70.0889 63.366 70.8803V73.1586C63.366 73.2524 63.3333 73.3068 63.2154 73.3068M57.8621 70.1345C57.1949 70.1345 57.0467 70.5596 57.0467 71.375C57.0467 72.2078 57.195 72.6155 57.8534 72.6155C58.5684 72.6155 58.7102 72.2143 58.7102 71.375C58.7102 70.5422 58.5771 70.1345 57.8621 70.1345ZM57.8534 73.3698C56.2772 73.3698 56.1747 72.2143 56.1747 71.3205C56.1747 70.5814 56.3381 69.3801 57.8534 69.3801C59.3773 69.3801 59.5888 70.3939 59.5888 71.3205C59.5888 72.2143 59.4798 73.3698 57.8534 73.3698ZM55.5939 73.1573C55.5939 73.2424 55.5634 73.3055 55.4521 73.3055H54.894C54.785 73.3055 54.737 73.2596 54.737 73.1573V69.608C54.737 69.499 54.785 69.4597 54.894 69.4597H55.4521C55.5634 69.4597 55.5939 69.5229 55.5939 69.608V73.1573ZM55.1775 68.895C54.7698 68.895 54.7153 68.6661 54.7153 68.4393C54.7153 68.1886 54.8004 67.9902 55.1775 67.9902C55.5634 67.9902 55.6419 68.1712 55.6419 68.4393C55.6419 68.6813 55.57 68.895 55.1775 68.895ZM52.627 73.3695C52.2345 73.3695 51.7091 73.3151 51.4104 73.1973C51.2535 73.1342 51.2208 73.0622 51.2447 72.9379L51.2992 72.6785C51.3232 72.552 51.3776 72.5456 51.5041 72.5607C51.8485 72.6151 52.3522 72.6546 52.6181 72.6546C53.1217 72.6546 53.3267 72.5215 53.3267 72.2076C53.3267 71.8457 53.1915 71.7672 52.6966 71.6975C51.927 71.5862 51.2533 71.4228 51.2533 70.566C51.2533 69.7899 51.8485 69.3822 52.7293 69.3822C53.0498 69.3822 53.5926 69.428 53.9218 69.5543C54.0549 69.6087 54.1115 69.672 54.0875 69.7898L54.0244 70.071C54.0005 70.1823 53.9546 70.1974 53.8129 70.1823C53.475 70.143 53.0346 70.0951 52.7446 70.0951C52.2432 70.0951 52.1255 70.2367 52.1255 70.5355C52.1255 70.8407 52.313 70.8799 52.7926 70.9584C53.5382 71.0695 54.2118 71.2179 54.2118 72.1531C54.2118 73.071 53.4358 73.3695 52.627 73.3695ZM49.3383 73.3695C48.9459 73.3695 48.4205 73.3151 48.1218 73.1973C47.9648 73.1342 47.9321 73.0622 47.9561 72.9379L48.0105 72.6785C48.0346 72.552 48.089 72.5456 48.2155 72.5607C48.5599 72.6152 49.0635 72.6546 49.3295 72.6546C49.8331 72.6546 50.0381 72.5215 50.0381 72.2076C50.0381 71.8457 49.9029 71.7672 49.408 71.6975C48.6384 71.5862 47.9647 71.4228 47.9647 70.566C47.9647 69.7899 48.5599 69.3822 49.4407 69.3822C49.7612 69.3822 50.304 69.428 50.6332 69.5543C50.7663 69.6087 50.8229 69.672 50.7989 69.7898L50.7358 70.071C50.7117 70.1823 50.666 70.1975 50.5243 70.1823C50.1864 70.143 49.746 70.0951 49.456 70.0951C48.9546 70.0951 48.8369 70.2367 48.8369 70.5355C48.8369 70.8407 49.0244 70.8799 49.504 70.9584C50.2496 71.0695 50.9233 71.2179 50.9233 72.1532C50.9233 73.071 50.1472 73.3695 49.3383 73.3695ZM47.3918 73.1574C47.3918 73.2425 47.3613 73.3056 47.25 73.3056H46.6919C46.5829 73.3056 46.5349 73.2598 46.5349 73.1574V69.6081C46.5349 69.4991 46.5829 69.4599 46.6919 69.4599H47.25C47.3613 69.4599 47.3918 69.523 47.3918 69.6081V73.1574ZM46.9754 68.8951C46.5677 68.8951 46.5132 68.6662 46.5132 68.4395C46.5132 68.1887 46.5984 67.9904 46.9754 67.9904C47.3613 67.9904 47.4398 68.1713 47.4398 68.4395C47.4398 68.6815 47.3679 68.8951 46.9754 68.8951ZM45.7528 73.3064H45.1881C45.077 73.3064 45.0376 73.2585 45.0376 73.1582V70.9279C45.0376 70.3458 44.8981 70.1823 44.5035 70.1823C44.2135 70.1823 43.7426 70.409 43.5006 70.5354C43.5006 70.6139 43.5076 70.7556 43.5076 70.9344V73.1582C43.5076 73.252 43.477 73.3064 43.3593 73.3064H42.7859C42.6836 73.3064 42.6529 73.2584 42.6529 73.1582V70.8886C42.6529 70.409 42.5264 70.1823 42.134 70.1823C41.8593 70.1823 41.4189 70.3785 41.1202 70.5355V73.1582C41.1202 73.252 41.081 73.3064 40.972 73.3064H40.4073C40.3048 73.3064 40.2655 73.2585 40.2655 73.1582V69.6154C40.2655 69.5152 40.3048 69.4606 40.4073 69.4606H40.9633C41.081 69.4606 41.1202 69.5216 41.1202 69.6154V69.8444L41.1289 69.8531C41.4342 69.6394 41.8658 69.404 42.2997 69.3887C42.7531 69.3887 43.1303 69.4825 43.3745 69.9381C43.7669 69.6481 44.2531 69.3887 44.7567 69.3887C45.7923 69.3887 45.8947 70.0645 45.8947 70.8494V73.1582C45.8947 73.252 45.8618 73.3064 45.7528 73.3064ZM39.5997 73.3064H39.035C38.9239 73.3064 38.8845 73.2585 38.8845 73.1582V70.9279C38.8845 70.3458 38.745 70.1823 38.3503 70.1823C38.0604 70.1823 37.5895 70.409 37.3475 70.5354C37.3475 70.6139 37.3545 70.7556 37.3545 70.9344V73.1582C37.3545 73.252 37.324 73.3064 37.2062 73.3064H36.6328C36.5305 73.3064 36.4998 73.2585 36.4998 73.1582V70.8886C36.4998 70.409 36.3733 70.1823 35.9809 70.1823C35.7062 70.1823 35.2658 70.3785 34.9671 70.5355V73.1582C34.9671 73.252 34.9279 73.3064 34.8189 73.3064H34.2542C34.1517 73.3064 34.1124 73.2585 34.1124 73.1582V69.6154C34.1124 69.5152 34.1517 69.4606 34.2542 69.4606H34.8102C34.9279 69.4606 34.9671 69.5216 34.9671 69.6154V69.8444L34.9759 69.8531C35.2811 69.6394 35.7127 69.404 36.1466 69.3887C36.6 69.3887 36.9772 69.4825 37.2214 69.9381C37.6138 69.6481 38.1 69.3887 38.6036 69.3887C39.6392 69.3887 39.7417 70.0645 39.7417 70.8494V73.1582C39.7417 73.252 39.7087 73.3064 39.5997 73.3064ZM31.9384 70.1345C31.2713 70.1345 31.1208 70.5596 31.1208 71.3751C31.1208 72.2079 31.2713 72.6156 31.9297 72.6156C32.6447 72.6156 32.7865 72.2144 32.7865 71.3751C32.7865 70.5422 32.6534 70.1345 31.9384 70.1345ZM31.9297 73.3699C30.3534 73.3699 30.251 72.2144 30.251 71.3206C30.251 70.5815 30.4144 69.3802 31.9297 69.3802C33.4536 69.3802 33.6651 70.394 33.6651 71.3206C33.6651 72.2144 33.5561 73.3699 31.9297 73.3699ZM28.5714 68.0385C28.9551 68.0385 29.5917 68.0929 30.0081 68.2652C30.1345 68.3219 30.1802 68.3852 30.1563 68.5094L30.0866 68.8321C30.0625 68.9259 30.0234 68.9651 29.8816 68.9498C29.4979 68.9018 29.027 68.8474 28.6193 68.8474C27.551 68.8474 27.3941 69.7108 27.3941 70.7311C27.3941 71.7601 27.5903 72.5689 28.6193 72.5689C29.0728 72.5689 29.4587 72.521 29.8816 72.4664C30.0322 72.4506 30.0626 72.4904 30.0953 72.5928L30.1563 72.8915C30.189 73.0158 30.1494 73.0877 30.0233 73.1422C29.6396 73.3056 28.955 73.3777 28.5713 73.3777C26.8206 73.3777 26.4521 72.0827 26.4521 70.7462C26.4521 69.4054 26.7815 68.0385 28.5714 68.0385Z\" fill=\"white\" fill-opacity=\"0.64\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_2077_5140\">\\n<rect width=\"115.54\" height=\"80\" fill=\"white\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-17m2iyw\",\"data-framer-name\":\"logo itwillbe dark\",layoutDependency:layoutDependency,layoutId:\"RMkdmqTGp\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-tejw9\",\"data-framer-name\":\"logo-itwillbe-bn-neg\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:58,intrinsicWidth:177,layoutDependency:layoutDependency,layoutId:\"SNsZZ24Wb\",svg:'<svg width=\"177\" height=\"58\" viewBox=\"0 0 177 58\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_2077_5153)\">\\n<path d=\"M29.1602 19.5107H37.3794L40.518 31.5315L44.1847 19.4227H51.122L54.8356 31.6195L58.0623 19.5107H66.1495L58.7692 43.5963H51.521L47.6314 31.1795L43.6538 43.5963H36.4495L29.1572 19.5107H29.1602Z\" fill=\"white\" fill-opacity=\"0.64\"/>\\n<path d=\"M68.7227 19.5723H77.1179V43.4173H68.7227V19.5723Z\" fill=\"white\" fill-opacity=\"0.64\"/>\\n<path d=\"M81.6025 13.2627H89.9977V43.4174H81.6025V13.2627Z\" fill=\"white\" fill-opacity=\"0.64\"/>\\n<path d=\"M94.5449 7.08508H102.94V43.4174H94.5449V7.08508Z\" fill=\"white\" fill-opacity=\"0.64\"/>\\n<path d=\"M72.9172 18.3022C75.1642 18.3022 76.9857 16.4807 76.9857 14.2337C76.9857 11.9867 75.1642 10.1652 72.9172 10.1652C70.6702 10.1652 68.8486 11.9867 68.8486 14.2337C68.8486 16.4807 70.6702 18.3022 72.9172 18.3022Z\" fill=\"white\" fill-opacity=\"0.64\"/>\\n<path d=\"M0.97168 19.5723H9.36981V43.4789H0.97168V19.5723Z\" fill=\"white\" fill-opacity=\"0.64\"/>\\n<path d=\"M5.16619 18.3667C7.41318 18.3667 9.23472 16.5451 9.23472 14.2981C9.23472 12.0512 7.41318 10.2296 5.16619 10.2296C2.9192 10.2296 1.09766 12.0512 1.09766 14.2981C1.09766 16.5451 2.9192 18.3667 5.16619 18.3667Z\" fill=\"white\" fill-opacity=\"0.64\"/>\\n<path d=\"M136.79 36.5857L136.752 36.5035C133.725 30.0795 135.922 22.8313 142.428 19.763C150.031 16.1785 156.153 20.1003 159.204 26.5654C159.432 27.0523 159.702 27.6214 159.91 28.1699L145.191 35.1102C146.93 37.2222 149.257 37.6182 151.653 36.4859C153.484 35.6235 154.622 34.2419 155.478 31.9481L161.415 33.4734C160.565 37.1547 158.359 40.3814 153.968 42.4494C147.057 45.7083 140.011 43.4145 136.79 36.5827V36.5857ZM150.852 27.6214C149.418 25.3158 147.265 24.4417 145.153 25.439C143.12 26.3982 142.484 28.6363 143.208 31.2265L150.852 27.6214Z\" fill=\"white\" fill-opacity=\"0.64\"/>\\n<path d=\"M12.749 36.0107V26.2896V19.5283V19.3141L21.1442 15.2397V19.5283H26.7117V26.2896H21.1442V34.3768C21.1442 36.0547 21.8952 36.7645 23.441 36.7645C24.5469 36.7645 25.6058 36.4565 26.6237 35.9696V42.5549C25.1218 43.3939 23.133 43.9248 20.7893 43.9248C15.7528 43.9248 12.7461 41.716 12.7461 36.0136L12.749 36.0107Z\" fill=\"white\" fill-opacity=\"0.64\"/>\\n<path d=\"M159.547 42.332H161.231V43.9923H159.547V42.332Z\" fill=\"white\" fill-opacity=\"0.64\"/>\\n<path d=\"M162.328 41.7102V41.6926C162.328 40.3814 163.402 39.2843 164.88 39.2843C166.359 39.2843 167.417 40.3638 167.417 41.675V41.6926C167.417 43.0038 166.347 44.1008 164.865 44.1008C163.384 44.1008 162.328 43.0184 162.328 41.7102ZM165.842 41.7102V41.6926C165.842 41.1294 165.435 40.6542 164.863 40.6542C164.291 40.6542 163.9 41.1235 163.9 41.675V41.6926C163.9 42.2528 164.308 42.731 164.88 42.731C165.452 42.731 165.842 42.2616 165.842 41.7102Z\" fill=\"white\" fill-opacity=\"0.64\"/>\\n<path d=\"M168.098 39.387H169.714V40.3139C169.978 39.6832 170.403 39.2755 171.169 39.3107V41.012H171.034C170.192 41.012 169.714 41.496 169.714 42.5608V43.9894H168.098V39.384V39.387Z\" fill=\"white\" fill-opacity=\"0.64\"/>\\n<path d=\"M171.611 44.843L172.131 43.7694C172.623 44.0422 173.119 44.2035 173.738 44.2035C174.548 44.2035 174.947 43.8046 174.947 43.0712V42.8923C174.624 43.2678 174.199 43.5816 173.527 43.5816C172.395 43.5816 171.485 42.7632 171.485 41.4462V41.4286C171.485 40.0998 172.412 39.2843 173.477 39.2843C174.166 39.2843 174.574 39.5659 174.923 39.9326V39.387H176.539V42.8835C176.539 43.7254 176.352 44.312 175.944 44.7227C175.527 45.1392 174.879 45.371 173.917 45.371C173.022 45.371 172.274 45.1832 171.611 44.843ZM174.947 41.4462V41.4286C174.947 40.9182 174.557 40.5427 174.011 40.5427C173.465 40.5427 173.066 40.927 173.066 41.4374V41.455C173.066 41.9654 173.459 42.3408 174.011 42.3408C174.562 42.3408 174.947 41.9566 174.947 41.4462Z\" fill=\"white\" fill-opacity=\"0.64\"/>\\n<path d=\"M1.54031 53.8101C1.64884 54.0301 1.78671 54.2149 1.95391 54.3674C2.12111 54.52 2.31178 54.6344 2.52004 54.7106C2.72831 54.7869 2.94831 54.828 3.17711 54.828C3.54084 54.828 3.85178 54.7605 4.11284 54.6256C4.37098 54.4906 4.60858 54.3117 4.82564 54.0888L5.30964 54.5229C5.04564 54.8192 4.74644 55.0568 4.40911 55.2357C4.07178 55.4146 3.65524 55.5026 3.15658 55.5026C2.79871 55.5026 2.46138 55.4381 2.14458 55.3061C1.82778 55.1741 1.54911 54.9893 1.31444 54.7488C1.07684 54.5082 0.889109 54.2208 0.748309 53.8834C0.607509 53.5461 0.537109 53.1765 0.537109 52.7717C0.537109 52.3933 0.598709 52.0384 0.724843 51.704C0.848043 51.3696 1.02404 51.0792 1.24698 50.8357C1.46991 50.5893 1.73391 50.3957 2.04191 50.2549C2.34991 50.1141 2.68431 50.0437 3.04804 50.0437C3.43231 50.0437 3.77551 50.117 4.08058 50.2608C4.38271 50.4074 4.64084 50.604 4.84911 50.8533C5.05738 51.1026 5.21578 51.396 5.32431 51.7333C5.43284 52.0706 5.48564 52.4314 5.48564 52.8157V52.9272C5.48564 52.9682 5.48271 53.0122 5.47684 53.0592H1.33791C1.36431 53.3437 1.43178 53.593 1.54031 53.813V53.8101ZM4.68484 52.4813C4.66431 52.2466 4.61738 52.0208 4.53818 51.8037C4.45898 51.5866 4.35338 51.3989 4.21551 51.2376C4.07764 51.0762 3.91044 50.9472 3.71391 50.8474C3.51738 50.7506 3.28564 50.7008 3.02458 50.7008C2.79578 50.7008 2.58458 50.7477 2.39098 50.8386C2.19738 50.9296 2.02724 51.0557 1.87764 51.2112C1.73098 51.3696 1.61071 51.5573 1.51684 51.7714C1.42298 51.9885 1.36138 52.2232 1.33498 52.4784H4.68484V52.4813Z\" fill=\"white\" fill-opacity=\"0.64\"/>\\n<path d=\"M9.56836 50.1757V50.8445H7.91983V55.3853H7.14249V50.8445H6.42383V50.1669H7.14249V49.7123C7.14249 49.1403 7.28036 48.7032 7.55316 48.4069C7.82596 48.1107 8.21609 47.9611 8.72063 47.9611C8.90249 47.9611 9.06089 47.9699 9.18996 47.9904C9.32196 48.0109 9.45103 48.0432 9.58009 48.0931V48.7707C9.43929 48.7296 9.31023 48.6973 9.19583 48.6739C9.08143 48.6504 8.95529 48.6387 8.82036 48.6387C8.21316 48.6387 7.91103 49.0112 7.91103 49.7504V50.1757H9.56836Z\" fill=\"white\" fill-opacity=\"0.64\"/>\\n<path d=\"M13.2793 50.1757V50.8445H11.6308V55.3853H10.8534V50.8445H10.1348V50.1669H10.8534V49.7123C10.8534 49.1403 10.9913 48.7032 11.2641 48.4069C11.5369 48.1107 11.927 47.9611 12.4316 47.9611C12.6134 47.9611 12.7718 47.9699 12.9009 47.9904C13.0329 48.0109 13.162 48.0432 13.291 48.0931V48.7707C13.1502 48.7296 13.0212 48.6973 12.9068 48.6739C12.7924 48.6504 12.6662 48.6387 12.5313 48.6387C11.9241 48.6387 11.622 49.0112 11.622 49.7504V50.1757H13.2793Z\" fill=\"white\" fill-opacity=\"0.64\"/>\\n<path d=\"M14.292 49.0112V48.1517H15.1808V49.0112H14.292ZM14.3419 55.3824V50.1552H15.1192V55.3824H14.3419Z\" fill=\"white\" fill-opacity=\"0.64\"/>\\n<path d=\"M20.5244 55.2152C20.19 55.4058 19.7764 55.5026 19.2865 55.5026C18.9023 55.5026 18.5473 55.4293 18.2188 55.2856C17.8903 55.1418 17.6087 54.9453 17.3681 54.6989C17.1276 54.4525 16.9428 54.165 16.8079 53.8336C16.6729 53.5021 16.6055 53.153 16.6055 52.7834C16.6055 52.4138 16.6729 52.0618 16.8079 51.7274C16.9428 51.393 17.1305 51.1026 17.3681 50.8533C17.6087 50.604 17.8903 50.4074 18.2188 50.2608C18.5444 50.117 18.9023 50.0437 19.2865 50.0437C19.5359 50.0437 19.7617 50.0672 19.9641 50.1141C20.1665 50.161 20.3513 50.2285 20.5215 50.3106C20.6916 50.3928 20.8441 50.4954 20.9879 50.6098C21.1287 50.7242 21.2607 50.8445 21.3809 50.9736L20.8647 51.5192C20.6564 51.3021 20.4276 51.1173 20.1812 50.9618C19.9348 50.8064 19.6327 50.7301 19.2748 50.7301C19.0108 50.7301 18.7644 50.7829 18.5356 50.8856C18.3068 50.9912 18.1073 51.1349 17.9401 51.3197C17.7729 51.5045 17.6409 51.7186 17.5471 51.965C17.4532 52.2114 17.4063 52.4754 17.4063 52.757C17.4063 53.0386 17.4561 53.3056 17.5529 53.5549C17.6497 53.8042 17.7847 54.0213 17.9577 54.2061C18.1308 54.3909 18.3332 54.5346 18.5649 54.6402C18.7967 54.7458 19.0519 54.7957 19.3276 54.7957C19.6649 54.7957 19.9641 54.7224 20.2223 54.5728C20.4804 54.4261 20.7151 54.2384 20.9263 54.0154L21.422 54.4818C21.158 54.781 20.8617 55.0245 20.5273 55.2152H20.5244Z\" fill=\"white\" fill-opacity=\"0.64\"/>\\n<path d=\"M22.7246 49.0112V48.1517H23.6134V49.0112H22.7246ZM22.7745 55.3824V50.1552H23.5518V55.3824H22.7745Z\" fill=\"white\" fill-opacity=\"0.64\"/>\\n<path d=\"M26.0423 53.8101C26.1508 54.0301 26.2887 54.2149 26.4559 54.3674C26.6231 54.52 26.8137 54.6344 27.022 54.7106C27.2303 54.7869 27.4503 54.828 27.6791 54.828C28.0428 54.828 28.3537 54.7605 28.6148 54.6256C28.8729 54.4906 29.1105 54.3117 29.3276 54.0888L29.8116 54.5229C29.5476 54.8192 29.2484 55.0568 28.9111 55.2357C28.5737 55.4146 28.1572 55.5026 27.6585 55.5026C27.3007 55.5026 26.9633 55.4381 26.6465 55.3061C26.3297 55.1741 26.0511 54.9893 25.8164 54.7488C25.5788 54.5082 25.3911 54.2208 25.2503 53.8834C25.1095 53.5461 25.0391 53.1765 25.0391 52.7717C25.0391 52.3933 25.1007 52.0384 25.2268 51.704C25.35 51.3696 25.526 51.0792 25.7489 50.8357C25.9719 50.5893 26.2359 50.3957 26.5439 50.2549C26.8519 50.1141 27.1863 50.0437 27.55 50.0437C27.9343 50.0437 28.2775 50.117 28.5825 50.2608C28.8847 50.4074 29.1428 50.604 29.3511 50.8533C29.5593 51.1026 29.7177 51.396 29.8263 51.7333C29.9348 52.0706 29.9876 52.4314 29.9876 52.8157V52.9272C29.9876 52.9682 29.9847 53.0122 29.9788 53.0592H25.8428C25.8692 53.3437 25.9367 53.593 26.0452 53.813L26.0423 53.8101ZM29.1868 52.4813C29.1663 52.2466 29.1193 52.0208 29.0401 51.8037C28.9609 51.5866 28.8553 51.3989 28.7175 51.2376C28.5796 51.0762 28.4124 50.9472 28.2159 50.8474C28.0193 50.7506 27.7876 50.7008 27.5265 50.7008C27.2977 50.7008 27.0865 50.7477 26.8929 50.8386C26.6993 50.9296 26.5292 51.0557 26.3796 51.2112C26.2329 51.3696 26.1127 51.5573 26.0188 51.7714C25.9249 51.9885 25.8633 52.2232 25.8369 52.4784H29.1839L29.1868 52.4813Z\" fill=\"white\" fill-opacity=\"0.64\"/>\\n<path d=\"M32.1289 55.3824H31.3516V50.1552H32.1289V51.0645C32.3049 50.78 32.5337 50.5394 32.8153 50.34C33.0998 50.1405 33.4665 50.0408 33.9182 50.0408C34.235 50.0408 34.5166 50.0906 34.763 50.1933C35.0094 50.293 35.2177 50.4368 35.3908 50.6216C35.5638 50.8064 35.6929 51.0264 35.7838 51.2845C35.8748 51.5397 35.9217 51.8242 35.9217 52.1352V55.3824H35.1444V52.3288C35.1444 51.8448 35.0182 51.4605 34.7689 51.176C34.5196 50.8914 34.1617 50.7506 33.6982 50.7506C33.4753 50.7506 33.267 50.7888 33.0764 50.868C32.8857 50.9472 32.7185 51.0557 32.5748 51.2024C32.434 51.349 32.3225 51.5221 32.2462 51.7245C32.17 51.9269 32.1289 52.1498 32.1289 52.3904V55.3824Z\" fill=\"white\" fill-opacity=\"0.64\"/>\\n<path d=\"M38.6327 53.8952C38.6327 54.2178 38.7149 54.4437 38.8762 54.5728C39.0375 54.7018 39.2517 54.7664 39.5127 54.7664C39.6477 54.7664 39.7738 54.7517 39.8911 54.7253C40.0085 54.6989 40.1346 54.652 40.2695 54.5845V55.2533C40.1346 55.3266 39.9909 55.3824 39.8383 55.4205C39.6858 55.4586 39.5157 55.4762 39.3279 55.4762C39.1197 55.4762 38.9231 55.4498 38.7413 55.3941C38.5594 55.3384 38.401 55.2533 38.2719 55.136C38.1399 55.0186 38.0373 54.8632 37.9639 54.6754C37.8906 54.4877 37.8525 54.2618 37.8525 53.9978V50.8416H37.125V50.1552H37.8525V48.577H38.6298V50.1552H40.2871V50.8416H38.6298V53.8952H38.6327Z\" fill=\"white\" fill-opacity=\"0.64\"/>\\n<path d=\"M48.1425 54.5786C48.0457 54.7693 47.9137 54.9335 47.7494 55.0685C47.5852 55.2034 47.3886 55.3061 47.1628 55.3765C46.9369 55.4469 46.6934 55.4821 46.4295 55.4821C46.051 55.4821 45.6697 55.4117 45.2854 55.2738C44.9012 55.1359 44.5609 54.9482 44.2646 54.7135L44.6577 54.1562C44.9422 54.3733 45.2356 54.5375 45.5436 54.6519C45.8516 54.7663 46.1596 54.825 46.4676 54.825C46.7756 54.825 47.0425 54.7517 47.2449 54.6021C47.4473 54.4525 47.547 54.253 47.547 53.9949V53.9743C47.547 53.8453 47.5118 53.7338 47.4414 53.6399C47.371 53.5461 47.2743 53.4639 47.154 53.3935C47.0337 53.3231 46.8929 53.2615 46.7345 53.2058C46.5761 53.153 46.4118 53.1002 46.2446 53.0533C46.0422 52.9917 45.8398 52.9271 45.6316 52.8567C45.4262 52.7863 45.2415 52.6954 45.0743 52.5898C44.91 52.4813 44.775 52.3463 44.6694 52.185C44.5638 52.0237 44.514 51.8213 44.514 51.5778V51.5573C44.514 51.3343 44.558 51.1319 44.646 50.9442C44.734 50.7594 44.8572 50.601 45.0156 50.469C45.174 50.337 45.3617 50.2373 45.5817 50.1669C45.8017 50.0965 46.0393 50.0613 46.2945 50.0613C46.6172 50.0613 46.9457 50.1141 47.2743 50.2167C47.6057 50.3223 47.9049 50.4602 48.1748 50.6362L47.8198 51.2229C47.5764 51.0674 47.3241 50.9442 47.0572 50.8533C46.7902 50.7623 46.5292 50.7183 46.274 50.7183C45.9631 50.7183 45.7166 50.7917 45.5348 50.9354C45.3529 51.0791 45.262 51.261 45.262 51.4751V51.4957C45.262 51.6159 45.3001 51.7245 45.3734 51.8154C45.4468 51.9063 45.5465 51.9855 45.6726 52.053C45.7958 52.1205 45.9396 52.1821 46.1038 52.2349C46.2652 52.2877 46.4353 52.3434 46.6084 52.3962C46.8108 52.4578 47.0103 52.5253 47.2097 52.5986C47.4092 52.6719 47.5881 52.7658 47.7494 52.8831C47.9108 52.9975 48.0399 53.1354 48.1396 53.2967C48.2393 53.4581 48.2863 53.6575 48.2863 53.8922V53.9127C48.2863 54.1621 48.2364 54.3821 48.1396 54.5757L48.1425 54.5786Z\" fill=\"white\" fill-opacity=\"0.64\"/>\\n<path d=\"M54.654 53.8189C54.5161 54.1533 54.3254 54.4437 54.082 54.693C53.8385 54.9424 53.5481 55.1389 53.2137 55.2856C52.8793 55.4322 52.5126 55.5026 52.1225 55.5026C51.7324 55.5026 51.3716 55.4293 51.0401 55.2856C50.7086 55.1418 50.4241 54.9453 50.1806 54.6989C49.9372 54.4525 49.7494 54.165 49.6145 53.8336C49.4796 53.5021 49.4121 53.153 49.4121 52.7834C49.4121 52.4138 49.4796 52.0618 49.6145 51.7274C49.7494 51.393 49.9372 51.1026 50.1806 50.8533C50.4241 50.604 50.7116 50.4074 51.046 50.2608C51.3804 50.117 51.7441 50.0437 52.143 50.0437C52.542 50.0437 52.8969 50.117 53.2313 50.2608C53.5657 50.4074 53.8532 50.601 54.0966 50.8474C54.3401 51.0938 54.5278 51.3813 54.6628 51.7128C54.7977 52.0442 54.8652 52.3933 54.8652 52.7629C54.8652 53.1325 54.7948 53.4874 54.6569 53.8189H54.654ZM53.9148 51.9797C53.818 51.7304 53.6801 51.5133 53.5041 51.3285C53.3281 51.1437 53.1228 50.997 52.8881 50.8885C52.6534 50.78 52.3953 50.7272 52.1196 50.7272C51.8438 50.7272 51.5769 50.78 51.3422 50.8826C51.1076 50.9882 50.9052 51.132 50.7409 51.3168C50.5766 51.5016 50.4446 51.7157 50.3508 51.9621C50.2569 52.2085 50.21 52.4725 50.21 52.7541C50.21 53.0357 50.2598 53.3026 50.3566 53.552C50.4534 53.8013 50.5884 54.0154 50.7614 54.1973C50.9345 54.3792 51.1369 54.5229 51.3745 54.6314C51.6121 54.74 51.8673 54.7928 52.143 54.7928C52.4188 54.7928 52.6857 54.74 52.9204 54.6373C53.155 54.5317 53.3574 54.3909 53.5276 54.209C53.6948 54.0272 53.8268 53.813 53.9206 53.5696C54.0145 53.3232 54.0614 53.0592 54.0614 52.7776C54.0614 52.496 54.0116 52.229 53.9148 51.9797Z\" fill=\"white\" fill-opacity=\"0.64\"/>\\n<path d=\"M56.3379 55.3823V47.9991H57.1152V55.3823H56.3379Z\" fill=\"white\" fill-opacity=\"0.64\"/>\\n<path d=\"M58.9453 49.0112V48.1517H59.8341V49.0112H58.9453ZM58.9952 55.3824V50.1552H59.7725V55.3824H58.9952Z\" fill=\"white\" fill-opacity=\"0.64\"/>\\n<path d=\"M65.78 55.3823V54.3322C65.6715 54.4877 65.5512 54.6343 65.4221 54.7781C65.2901 54.9189 65.1435 55.045 64.9821 55.1535C64.8208 55.2621 64.6389 55.3471 64.4424 55.4058C64.2429 55.4674 64.0229 55.4967 63.7795 55.4967C63.4627 55.4967 63.1547 55.4351 62.8584 55.3149C62.5621 55.1946 62.2952 55.0157 62.0605 54.7839C61.8259 54.5522 61.6352 54.2677 61.4944 53.9303C61.3536 53.593 61.2832 53.2087 61.2832 52.7775C61.2832 52.3463 61.3536 51.9621 61.4944 51.6247C61.6352 51.2874 61.8259 51.0029 62.0605 50.7711C62.2952 50.5394 62.5621 50.3605 62.8584 50.2343C63.1547 50.1111 63.4627 50.0466 63.7795 50.0466C64.0229 50.0466 64.2459 50.0759 64.4483 50.1375C64.6507 50.1991 64.8325 50.2783 64.9939 50.381C65.1552 50.4837 65.3019 50.601 65.4339 50.7359C65.5659 50.8709 65.6803 51.0117 65.7829 51.1613V48.005H66.5603V55.3882H65.7829L65.78 55.3823ZM65.6539 51.9386C65.5483 51.6893 65.4075 51.4781 65.2285 51.305C65.0496 51.1319 64.8472 50.9941 64.6213 50.8973C64.3955 50.8005 64.1608 50.7506 63.9173 50.7506C63.6621 50.7506 63.4216 50.7975 63.1987 50.8855C62.9757 50.9735 62.7821 51.1055 62.6179 51.2786C62.4536 51.4487 62.3216 51.6599 62.2248 51.9122C62.128 52.1645 62.0781 52.4461 62.0781 52.7629C62.0781 53.0797 62.128 53.3495 62.2248 53.5989C62.3216 53.8482 62.4565 54.0594 62.6237 54.2383C62.7909 54.4173 62.9875 54.5522 63.2104 54.6461C63.4333 54.7399 63.668 54.7869 63.9173 54.7869C64.1667 54.7869 64.3955 54.7399 64.6213 54.6402C64.8472 54.5434 65.0496 54.4085 65.2285 54.2325C65.4075 54.0594 65.5483 53.8453 65.6539 53.593C65.7595 53.3407 65.8093 53.065 65.8093 52.7629C65.8093 52.4607 65.7565 52.185 65.6539 51.9386Z\" fill=\"white\" fill-opacity=\"0.64\"/>\\n<path d=\"M69.3446 50.8768C69.0923 50.9472 68.843 51.0411 68.6024 51.1555L68.3707 50.519C68.6611 50.384 68.9544 50.2784 69.2507 50.1992C69.547 50.123 69.8872 50.0819 70.2715 50.0819C70.9872 50.0819 71.5358 50.2579 71.92 50.6128C72.3043 50.9678 72.495 51.4899 72.495 52.1851V55.3795H71.747V54.5904C71.5651 54.8251 71.3216 55.0363 71.0136 55.2182C70.7056 55.4 70.3214 55.491 69.855 55.491C69.6115 55.491 69.3739 55.4587 69.1422 55.3912C68.9104 55.3238 68.6992 55.2211 68.5144 55.0832C68.3296 54.9454 68.18 54.7752 68.0686 54.5728C67.9571 54.3704 67.9014 54.1328 67.9014 53.8542C67.9014 53.5755 67.9542 53.332 68.0627 53.1208C68.1712 52.9096 68.3238 52.7307 68.5232 52.5899C68.7227 52.4491 68.9574 52.3406 69.2302 52.2672C69.503 52.1939 69.8051 52.1558 70.1366 52.1558C70.468 52.1558 70.7672 52.1763 71.0166 52.2174C71.2659 52.2584 71.5094 52.3112 71.744 52.3787V52.1968C71.744 51.7246 71.6062 51.3696 71.3334 51.1291C71.0606 50.8886 70.6763 50.7712 70.1864 50.7712C69.8755 50.7712 69.5939 50.8064 69.3416 50.8768H69.3446ZM69.0952 53.027C68.8342 53.2235 68.7022 53.4875 68.7022 53.8248C68.7022 53.992 68.7374 54.1416 68.8078 54.2707C68.8782 54.3998 68.975 54.5083 69.0952 54.5992C69.2155 54.6902 69.3563 54.7606 69.5147 54.8075C69.6731 54.8544 69.8403 54.8779 70.0134 54.8779C70.2539 54.8779 70.4827 54.8427 70.6939 54.7723C70.9051 54.7019 71.0899 54.6051 71.2483 54.479C71.4067 54.3558 71.5299 54.2062 71.6208 54.0331C71.7118 53.86 71.7558 53.6723 71.7558 53.4611V52.9566C71.5622 52.9038 71.3363 52.851 71.087 52.804C70.8347 52.7571 70.5472 52.7336 70.2246 52.7336C69.7347 52.7336 69.3592 52.8304 69.0952 53.027Z\" fill=\"white\" fill-opacity=\"0.64\"/>\\n<path d=\"M74.9326 55.3823H74.1553V50.1551H74.9326V51.5191C75.0265 51.3021 75.1438 51.1055 75.2875 50.9237C75.4283 50.7418 75.5897 50.5834 75.7715 50.4543C75.9534 50.3253 76.1529 50.2226 76.367 50.1551C76.5811 50.0877 76.8158 50.0583 77.0651 50.0642V50.9031H77.0035C76.719 50.9031 76.4521 50.953 76.1998 51.0557C75.9475 51.1583 75.7275 51.3079 75.5369 51.5103C75.3491 51.7127 75.1995 51.965 75.091 52.2642C74.9825 52.5634 74.9297 52.9095 74.9297 53.2997V55.3823H74.9326Z\" fill=\"white\" fill-opacity=\"0.64\"/>\\n<path d=\"M78.2676 49.0112V48.1517H79.1564V49.0112H78.2676ZM78.3174 55.3824V50.1552H79.0948V55.3824H78.3174Z\" fill=\"white\" fill-opacity=\"0.64\"/>\\n<path d=\"M81.9609 53.8952C81.9609 54.2178 82.043 54.4437 82.2043 54.5728C82.3657 54.7018 82.5798 54.7664 82.8409 54.7664C82.9758 54.7664 83.1019 54.7517 83.2193 54.7253C83.3366 54.6989 83.4627 54.652 83.5977 54.5845V55.2533C83.4627 55.3266 83.319 55.3824 83.1665 55.4205C83.0139 55.4586 82.8438 55.4762 82.6561 55.4762C82.4478 55.4762 82.2513 55.4498 82.0694 55.3941C81.8875 55.3384 81.7291 55.2533 81.6001 55.136C81.4681 55.0186 81.3654 54.8632 81.2921 54.6754C81.2187 54.4877 81.1806 54.2618 81.1806 53.9978V50.8416H80.4531V50.1552H81.1806V48.577H81.9579V50.1552H83.6153V50.8416H81.9579V53.8952H81.9609Z\" fill=\"white\" fill-opacity=\"0.64\"/>\\n<path d=\"M87.5429 55.5554C87.32 56.0951 87.0736 56.4765 86.8008 56.6994C86.528 56.9223 86.1965 57.0338 85.8034 57.0338C85.5864 57.0338 85.3928 57.0133 85.2168 56.9693C85.0408 56.9253 84.8648 56.8607 84.6917 56.7727L84.9557 56.1567C85.0848 56.2242 85.2109 56.2741 85.3341 56.3034C85.4573 56.3327 85.604 56.3503 85.7741 56.3503C86.0088 56.3503 86.2082 56.2799 86.3696 56.1391C86.5309 55.9983 86.6893 55.7402 86.8448 55.3706L84.4688 50.1639H85.3282L87.229 54.5229L88.9069 50.1639H89.737L87.5429 55.5642V55.5554Z\" fill=\"white\" fill-opacity=\"0.64\"/>\\n<path d=\"M115.981 40.4401V43.4057H107.439V0.969116H115.981V22.3238C117.645 20.2998 119.713 18.5486 123.353 18.5486C129.152 18.5486 134.142 23.3592 134.142 31.1355V31.2265C134.142 39.1377 129.152 43.9483 123.397 43.9483C119.71 43.9483 117.554 42.2851 115.978 40.443L115.981 40.4401ZM125.735 31.2705V31.1795C125.735 27.9881 123.532 25.6942 120.745 25.6942C117.958 25.6942 115.799 27.9881 115.799 31.1795V31.2705C115.799 34.5059 118.002 36.7998 120.745 36.7998C123.488 36.7998 125.735 34.5529 125.735 31.2705Z\" fill=\"white\" fill-opacity=\"0.64\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_2077_5153\">\\n<rect width=\"176\" height=\"56.0619\" fill=\"white\" transform=\"translate(0.540039 0.969116)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1qyy1hm\",\"data-framer-name\":\"logo tutecho dark\",layoutDependency:layoutDependency,layoutId:\"d1s9jImqX\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"R0Y7SUJNIFBsZXggU2Fucy02MDA=\",\"--framer-font-family\":'\"IBM Plex Sans\", \"IBM Plex Sans Placeholder\", sans-serif',\"--framer-font-size\":\"44px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(255, 255, 255, 0.64))\"},children:[/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"R0Y7SUJNIFBsZXggU2Fucy1pdGFsaWM=\",\"--framer-font-style\":\"italic\",\"--framer-font-weight\":\"400\"},children:\"tu\"}),\"TECH\\xd4\"]})}),className:\"framer-1dr4c7i\",\"data-framer-name\":\"tuTECH\\xd4\",fonts:[\"GF;IBM Plex Sans-600\",\"GF;IBM Plex Sans-italic\"],layoutDependency:layoutDependency,layoutId:\"HWau9lohi\",style:{\"--extracted-r6o4lv\":\"rgba(255, 255, 255, 0.64)\",\"--framer-paragraph-spacing\":\"0px\"},transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-rpg3xr\",\"data-framer-name\":\"logo capsa dark\",layoutDependency:layoutDependency,layoutId:\"bd25pNjEx\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-csfhml\",\"data-framer-name\":\"Group 3\",layoutDependency:layoutDependency,layoutId:\"tAS5X5lnI\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RUIgR2FyYW1vbmQtNjAw\",\"--framer-font-family\":'\"EB Garamond\", \"EB Garamond Placeholder\", serif',\"--framer-font-size\":\"55px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"CAPSA FOOD\"})}),className:\"framer-buq1kz\",\"data-framer-name\":\"CAPSA FOOD\",fonts:[\"GF;EB Garamond-600\"],layoutDependency:layoutDependency,layoutId:\"r7XbK0Hal\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1n87ib9\",\"data-framer-name\":\"Group 1\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:70,intrinsicWidth:101,layoutDependency:layoutDependency,layoutId:\"oWy1QGZZY\",svg:'<svg width=\"101\" height=\"70\" viewBox=\"0 0 101 70\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M50.5 18.8L72.5836 57.05H28.4164L50.5 18.8Z\" fill=\"white\"/>\\n<path d=\"M56 20L78 57H101L68 0L56 20Z\" fill=\"white\"/>\\n<path d=\"M45 20L23 57H0L33 0L45 20Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true})]})})],speed:40,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1d0lakj-container\",layoutDependency:layoutDependency,layoutId:\"lcy6oKC5S-container\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:10,overflow:false},gap:92,height:\"100%\",hoverFactor:1,id:\"lcy6oKC5S\",layoutId:\"lcy6oKC5S\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-14n8e98\",\"data-framer-name\":\"logo aws\",layoutDependency:layoutDependency,layoutId:\"vfml3nHPK\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1vu7dek\",\"data-framer-name\":\"Group\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:80,intrinsicWidth:133,layoutDependency:layoutDependency,layoutId:\"D5O_SaHR3\",svg:'<svg width=\"133\" height=\"80\" viewBox=\"0 0 133 80\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M37.9785 29.1868C37.9785 30.8132 38.1543 32.1319 38.462 33.0989C38.8136 34.0659 39.2532 35.1209 39.8686 36.2637C40.0883 36.6154 40.1763 36.967 40.1763 37.2747C40.1763 37.7143 39.9125 38.1539 39.3411 38.5934L36.5719 40.4396C36.1763 40.7033 35.7807 40.8352 35.429 40.8352C34.9894 40.8352 34.5499 40.6154 34.1103 40.2198C33.4949 39.5604 32.9675 38.8572 32.5279 38.1539C32.0884 37.4066 31.6488 36.5714 31.1653 35.5604C27.7367 39.6044 23.429 41.6264 18.2422 41.6264C14.5499 41.6264 11.6048 40.5714 9.45099 38.4615C7.29714 36.3517 6.19824 33.5385 6.19824 30.022C6.19824 26.2857 7.51692 23.2528 10.1982 20.967C12.8796 18.6813 16.44 17.5385 20.9675 17.5385C22.462 17.5385 24.0004 17.6703 25.6268 17.8901C27.2532 18.1099 28.9235 18.4615 30.6818 18.8571V15.6484C30.6818 12.3077 29.9785 9.97803 28.6158 8.61539C27.2092 7.25275 24.8356 6.59341 21.451 6.59341C19.9125 6.59341 18.3301 6.76923 16.7037 7.16484C15.0774 7.56044 13.4949 8.04396 11.9565 8.65935C11.2532 8.96704 10.7257 9.14286 10.418 9.23077C10.1103 9.31869 9.89055 9.36264 9.71473 9.36264C9.09934 9.36264 8.79165 8.92308 8.79165 8V5.84616C8.79165 5.14286 8.87956 4.61539 9.09934 4.3077C9.31912 4 9.71473 3.69231 10.3301 3.38462C11.8686 2.59341 13.7147 1.93407 15.8686 1.4066C18.0224 0.835169 20.3081 0.571433 22.7257 0.571433C27.9565 0.571433 31.7807 1.75825 34.2422 4.13187C36.6598 6.5055 37.8905 10.1099 37.8905 14.9451V29.1868H37.9785ZM20.1323 35.8681C21.5829 35.8681 23.0774 35.6044 24.6598 35.0769C26.2422 34.5495 27.6488 33.5824 28.8356 32.2637C29.5389 31.4286 30.0664 30.5055 30.3301 29.4506C30.5938 28.3956 30.7697 27.1209 30.7697 25.6264V23.7802C29.4949 23.4725 28.1323 23.2088 26.7257 23.033C25.3191 22.8571 23.9565 22.7692 22.5938 22.7692C19.6488 22.7692 17.4949 23.3407 16.0444 24.5275C14.5938 25.7143 13.8905 27.3846 13.8905 29.5824C13.8905 31.6484 14.418 33.1868 15.5169 34.2418C16.5719 35.3407 18.1103 35.8681 20.1323 35.8681ZM55.429 40.6154C54.6378 40.6154 54.1103 40.4835 53.7587 40.1758C53.407 39.9121 53.0993 39.2967 52.8356 38.4615L42.5059 4.48352C42.2422 3.6044 42.1103 3.03297 42.1103 2.72528C42.1103 2.02198 42.462 1.62638 43.1653 1.62638H47.473C48.3081 1.62638 48.8796 1.75825 49.1873 2.06594C49.5389 2.32967 49.8026 2.94506 50.0664 3.78022L57.451 32.8791L64.3081 3.78022C64.5279 2.9011 64.7916 2.32967 65.1433 2.06594C65.4949 1.8022 66.1103 1.62638 66.9015 1.62638H70.418C71.2532 1.62638 71.8246 1.75825 72.1763 2.06594C72.5279 2.32967 72.8356 2.94506 73.0114 3.78022L79.9565 33.2308L87.5609 3.78022C87.8246 2.9011 88.1323 2.32967 88.44 2.06594C88.7916 1.8022 89.3631 1.62638 90.1543 1.62638H94.2422C94.9455 1.62638 95.3411 1.97803 95.3411 2.72528C95.3411 2.94506 95.2971 3.16484 95.2532 3.42858C95.2092 3.69231 95.1213 4.04396 94.9455 4.52748L84.3521 38.5055C84.0883 39.3846 83.7807 39.9561 83.429 40.2198C83.0774 40.4835 82.5059 40.6593 81.7587 40.6593H77.9785C77.1433 40.6593 76.5719 40.5275 76.2202 40.2198C75.8686 39.9121 75.5609 39.3407 75.385 38.4615L68.5719 10.1099L61.8026 38.4176C61.5829 39.2967 61.3191 39.8681 60.9675 40.1758C60.6158 40.4835 60.0004 40.6154 59.2092 40.6154H55.429ZM111.913 41.8022C109.627 41.8022 107.341 41.5385 105.143 41.011C102.945 40.4835 101.231 39.9121 100.088 39.2528C99.385 38.8572 98.9015 38.4176 98.7257 38.022C98.5499 37.6264 98.462 37.1868 98.462 36.7912V34.5495C98.462 33.6264 98.8136 33.1868 99.473 33.1868C99.7367 33.1868 100 33.2308 100.264 33.3187C100.528 33.4066 100.924 33.5824 101.363 33.7583C102.858 34.4176 104.484 34.9451 106.198 35.2967C107.956 35.6484 109.671 35.8242 111.429 35.8242C114.198 35.8242 116.352 35.3407 117.847 34.3736C119.341 33.4066 120.132 32 120.132 30.1978C120.132 28.967 119.737 27.9561 118.945 27.1209C118.154 26.2857 116.66 25.5385 114.506 24.8352L108.132 22.8571C104.924 21.8462 102.55 20.3517 101.099 18.3736C99.6488 16.4396 98.9015 14.2857 98.9015 12C98.9015 10.1539 99.2971 8.52748 100.088 7.12088C100.88 5.71429 101.934 4.48352 103.253 3.51649C104.572 2.5055 106.066 1.75825 107.825 1.23077C109.583 0.703301 111.429 0.483521 113.363 0.483521C114.33 0.483521 115.341 0.527477 116.308 0.659345C117.319 0.791213 118.242 0.967037 119.165 1.14286C120.044 1.36264 120.88 1.58242 121.671 1.84616C122.462 2.10989 123.077 2.37363 123.517 2.63737C124.132 2.98902 124.572 3.34066 124.836 3.73627C125.099 4.08792 125.231 4.57143 125.231 5.18682V7.25275C125.231 8.17583 124.88 8.65935 124.22 8.65935C123.869 8.65935 123.297 8.48352 122.55 8.13187C120.044 6.98902 117.231 6.41759 114.11 6.41759C111.605 6.41759 109.627 6.81319 108.264 7.64836C106.902 8.48352 106.198 9.75825 106.198 11.5604C106.198 12.7912 106.638 13.8462 107.517 14.6813C108.396 15.5165 110.022 16.3517 112.352 17.0989L118.594 19.0769C121.759 20.0879 124.044 21.4945 125.407 23.2967C126.77 25.0989 127.429 27.1648 127.429 29.4506C127.429 31.3407 127.033 33.055 126.286 34.5495C125.495 36.044 124.44 37.3626 123.077 38.4176C121.715 39.5165 120.088 40.3077 118.198 40.8791C116.22 41.4945 114.154 41.8022 111.913 41.8022Z\" fill=\"#526E6E\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M120.22 63.1649C105.758 73.8462 84.7475 79.5166 66.6815 79.5166C41.3629 79.5166 18.5497 70.1539 1.3189 54.5935C-0.0437369 53.3627 1.18703 51.6924 2.81341 52.6594C21.4508 63.4726 44.4398 70.0221 68.22 70.0221C84.264 70.0221 101.89 66.6814 118.11 59.8243C120.528 58.7254 122.594 61.4067 120.22 63.1649Z\" fill=\"#526E6E\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M126.242 56.3077C124.396 53.9341 114.022 55.1649 109.319 55.7363C107.912 55.9121 107.692 54.6814 108.967 53.7583C117.231 47.9561 130.813 49.6264 132.396 51.5605C133.978 53.5385 131.956 67.1209 124.22 73.6264C123.033 74.6374 121.89 74.1099 122.418 72.7913C124.176 68.4396 128.088 58.6374 126.242 56.3077Z\" fill=\"#526E6E\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1jwv29d\",\"data-framer-name\":\"logo acumen\",layoutDependency:layoutDependency,layoutId:\"HEw5pofoG\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-sgegq4\",\"data-framer-name\":\"acumen\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"g0mznOpHQ\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 176 52\"><g transform=\"translate(0 0.644)\" id=\"ss8762006965_1\"><path d=\"M 0 50.712 L 0 0 L 176 0 L 176 50.712 Z\" fill=\"transparent\"></path><g transform=\"translate(0.497 0)\" id=\"ss8762006965_3\"><path d=\"M 62.331 50.627 L 49.531 50.627 L 30.883 0.03 L 62.331 0.03 Z\" fill=\"rgb(82,110,110)\" opacity=\"0.5\"></path><path d=\"M 17.914 35.312 L 34.127 35.312 L 30.877 26.519 L 21.152 26.519 L 25.991 13.381 L 21.128 0 L 12.212 0 L 12.212 8.793 L 17.89 8.793 L 5.707 41.834 L 0 41.834 L 0 50.626 L 21.128 50.626 L 21.128 41.834 L 15.503 41.834 Z\" fill=\"rgb(82,110,110)\"></path><path d=\"M 12.212 0.03 L 0 0.03 L 0 41.834 L 5.707 41.834 L 17.89 8.793 L 12.212 8.793 Z\" fill=\"rgb(82,110,110)\" opacity=\"0.5\"></path><path d=\"M 91.905 50.057 L 87.431 50.057 L 86.208 46.699 L 78.733 46.699 L 77.483 50.057 L 73.12 50.057 L 80.817 29.967 L 84.152 29.967 Z M 84.819 42.997 L 82.485 36.625 L 80.123 42.997 Z\" fill=\"rgb(82,110,110)\"></path><path d=\"M 98.806 50.344 C 97.49 50.344 96.296 50.029 95.221 49.397 C 94.147 48.747 93.294 47.866 92.664 46.757 C 92.053 45.647 91.747 44.403 91.747 43.026 C 91.747 41.648 92.053 40.404 92.664 39.295 C 93.294 38.166 94.147 37.286 95.221 36.654 C 96.296 36.004 97.49 35.678 98.806 35.678 C 99.936 35.678 100.992 35.927 101.974 36.424 C 102.956 36.903 103.762 37.573 104.391 38.434 C 105.021 39.295 105.392 40.261 105.503 41.332 L 101.501 41.332 C 101.353 40.816 101.029 40.395 100.529 40.069 C 100.029 39.725 99.454 39.553 98.806 39.553 C 97.88 39.553 97.111 39.888 96.499 40.557 C 95.888 41.208 95.582 42.031 95.582 43.026 C 95.582 44.001 95.888 44.824 96.499 45.494 C 97.129 46.144 97.898 46.47 98.806 46.47 C 99.473 46.47 100.057 46.298 100.557 45.953 C 101.075 45.59 101.409 45.13 101.557 44.575 L 105.503 44.575 C 105.41 45.666 105.049 46.651 104.419 47.532 C 103.808 48.412 103.002 49.101 102.002 49.598 C 101.02 50.096 99.954 50.344 98.806 50.344 Z\" fill=\"rgb(82,110,110)\"></path><path d=\"M 116.422 48.22 C 115.995 48.909 115.467 49.435 114.838 49.799 C 114.207 50.163 113.503 50.344 112.726 50.344 C 110.984 50.344 109.613 49.78 108.613 48.651 C 107.631 47.503 107.139 45.934 107.139 43.944 L 107.139 35.965 L 111.058 35.965 L 111.058 43.427 C 111.058 44.346 111.299 45.083 111.781 45.637 C 112.281 46.192 112.93 46.47 113.726 46.47 C 114.541 46.47 115.19 46.192 115.671 45.637 C 116.171 45.083 116.422 44.346 116.422 43.427 L 116.422 35.965 L 120.339 35.965 L 120.339 50.057 L 116.422 50.057 Z\" fill=\"rgb(82,110,110)\"></path><path d=\"M 144.3 50.057 L 140.383 50.057 L 140.383 42.251 C 140.383 41.428 140.17 40.777 139.743 40.299 C 139.318 39.802 138.752 39.553 138.048 39.553 C 137.344 39.553 136.751 39.792 136.27 40.27 C 135.807 40.73 135.575 41.39 135.575 42.251 L 135.575 50.057 L 131.656 50.057 L 131.656 42.251 C 131.656 41.428 131.443 40.777 131.018 40.299 C 130.591 39.802 130.008 39.553 129.267 39.553 C 128.6 39.553 128.035 39.792 127.571 40.27 C 127.108 40.73 126.877 41.39 126.877 42.251 L 126.877 50.057 L 122.959 50.057 L 122.959 35.965 L 126.877 35.965 L 126.877 37.63 C 127.34 36.941 127.923 36.444 128.627 36.138 C 129.331 35.831 130.045 35.678 130.767 35.678 C 131.656 35.678 132.416 35.85 133.046 36.195 C 133.695 36.52 134.223 37.037 134.63 37.745 C 135.038 37.132 135.612 36.635 136.352 36.252 C 137.094 35.87 137.891 35.678 138.743 35.678 C 139.818 35.678 140.771 35.917 141.605 36.396 C 142.458 36.855 143.115 37.506 143.578 38.347 C 144.06 39.189 144.3 40.175 144.3 41.304 Z\" fill=\"rgb(82,110,110)\"></path><path d=\"M 153.227 50.344 C 151.911 50.344 150.707 50.019 149.614 49.368 C 148.521 48.718 147.659 47.828 147.03 46.699 C 146.4 45.551 146.085 44.298 146.085 42.94 C 146.085 41.6 146.39 40.376 147.002 39.266 C 147.632 38.156 148.485 37.286 149.558 36.654 C 150.651 36.004 151.855 35.678 153.171 35.678 C 154.394 35.678 155.515 35.984 156.534 36.597 C 157.571 37.19 158.386 38.013 158.979 39.065 C 159.59 40.117 159.896 41.284 159.896 42.566 C 159.896 43.102 159.869 43.6 159.813 44.059 L 149.725 44.059 C 149.874 44.958 150.253 45.666 150.865 46.183 C 151.494 46.699 152.263 46.958 153.171 46.958 C 153.894 46.958 154.486 46.814 154.95 46.527 C 155.431 46.221 155.737 45.819 155.867 45.322 L 159.702 45.322 C 159.479 46.852 158.775 48.077 157.59 48.995 C 156.404 49.895 154.95 50.344 153.227 50.344 Z M 155.783 41.361 C 155.709 40.672 155.403 40.108 154.866 39.668 C 154.347 39.228 153.718 39.008 152.977 39.008 C 152.217 39.008 151.569 39.208 151.031 39.61 C 150.494 39.993 150.114 40.577 149.893 41.361 Z\" fill=\"rgb(82,110,110)\"></path><path d=\"M 165.726 37.802 C 166.151 37.113 166.679 36.587 167.31 36.224 C 167.939 35.86 168.643 35.678 169.422 35.678 C 171.163 35.678 172.524 36.252 173.506 37.4 C 174.507 38.529 175.007 40.089 175.007 42.078 L 175.007 50.057 L 171.088 50.057 L 171.088 42.595 C 171.088 41.677 170.839 40.94 170.338 40.385 C 169.856 39.83 169.218 39.553 168.42 39.553 C 167.606 39.553 166.948 39.83 166.447 40.385 C 165.966 40.94 165.726 41.677 165.726 42.595 L 165.726 50.057 L 161.807 50.057 L 161.807 35.965 L 165.726 35.965 Z\" fill=\"rgb(82,110,110)\"></path></g></g></svg>',svgContentId:8762006965,withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-iz8r3c\",\"data-framer-name\":\"logo coometas\",layoutDependency:layoutDependency,layoutId:\"HLxZNwEPa\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-p8dune\",\"data-framer-name\":\"logo-coometas\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:30,intrinsicWidth:176,layoutDependency:layoutDependency,layoutId:\"g1wY40FDD\",svg:'<svg width=\"176\" height=\"30\" viewBox=\"0 0 176 30\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_2037_305)\">\\n<path d=\"M9.61081 9.49229C5.45916 9.49229 3.92073 13.0676 3.92073 16.7584C3.92073 20.4491 5.45824 23.985 9.61081 23.985C13.2246 23.985 14.3781 21.5248 14.5321 19.2955H18.4537C18.1844 23.7935 14.6476 27.1388 9.64928 27.1388C3.80529 27.1379 0 22.9084 0 16.7574C0 10.6065 3.80529 6.37695 9.61081 6.37695C14.6476 6.37695 17.992 9.64438 18.4537 14.0654H14.5321C14.3781 12.0285 13.2255 9.49136 9.61081 9.49136V9.49229Z\" fill=\"#526E6E\"/>\\n<path d=\"M20.3022 16.7583C20.3022 10.6458 23.993 6.33936 30.1045 6.33936C36.2161 6.33936 39.9078 10.6064 39.9078 16.7189C39.9078 22.8314 36.217 27.1388 30.1045 27.1388C23.9921 27.1388 20.3022 22.9092 20.3022 16.7583ZM35.988 16.7583C35.988 12.6443 34.1031 9.49225 30.1055 9.49225C26.1077 9.49225 24.2239 12.6443 24.2239 16.7583C24.2239 20.8724 26.0693 24.0243 30.1055 24.0243C34.1417 24.0243 35.988 20.8329 35.988 16.7583Z\" fill=\"#526E6E\"/>\\n<path d=\"M41.8723 16.7583C41.8723 10.6458 45.563 6.33936 51.6755 6.33936C57.788 6.33936 61.4787 10.6064 61.4787 16.7189C61.4787 22.8314 57.788 27.1388 51.6755 27.1388C45.563 27.1388 41.8723 22.9092 41.8723 16.7583ZM57.5579 16.7583C57.5579 12.6443 55.6741 9.49225 51.6764 9.49225C47.6787 9.49225 45.7948 12.6443 45.7948 16.7583C45.7948 20.8724 47.6402 24.0243 51.6764 24.0243C55.7126 24.0243 57.5579 20.8329 57.5579 16.7583Z\" fill=\"#526E6E\"/>\\n<path d=\"M106.887 16.7189C106.887 10.5679 110.578 6.33936 116.575 6.33936C122.572 6.33936 125.879 10.26 125.879 16.335C125.879 16.8737 125.879 17.4501 125.84 17.757H110.77C110.846 21.0639 112.769 24.0628 116.652 24.0628C120.112 24.0628 121.419 21.8317 121.803 20.5251H125.61C124.61 24.2919 121.727 27.1388 116.575 27.1388C110.347 27.1388 106.887 22.7178 106.887 16.7189ZM110.77 14.7975H121.919C121.919 11.7216 119.804 9.41532 116.46 9.41532C113.307 9.41532 111.001 11.5686 110.77 14.7975Z\" fill=\"#526E6E\"/>\\n<path d=\"M129.781 6.9538V0.648926H133.548V6.9538H137.315V10.0673H133.548V21.1396C133.548 23.2158 134.125 23.6767 135.739 23.6767C136.353 23.6767 136.661 23.6391 137.354 23.5237V26.5602C136.354 26.7526 135.778 26.7911 134.932 26.7911C131.74 26.7911 129.78 25.5605 129.78 21.0241V10.0673H126.935V6.9538H129.78H129.781Z\" fill=\"#526E6E\"/>\\n<path d=\"M139.202 21.4872C139.202 17.1038 142.509 15.8356 147.391 14.8735C150.467 14.2972 152.35 13.9133 152.35 11.99C152.35 10.5679 151.505 9.37677 148.621 9.37677C145.2 9.37677 144.162 10.4525 143.969 13.0675H140.124C140.317 9.30076 142.777 6.33936 148.774 6.33936C152.81 6.33936 156.04 8.03079 156.04 13.1051V22.1011C156.04 23.5232 156.234 24.2544 156.962 24.2544C157.079 24.2544 157.194 24.2544 157.424 24.2149V26.5221C156.771 26.6751 156.117 26.7512 155.502 26.7512C153.657 26.7512 152.618 26.0219 152.426 23.7916H152.349C151.043 25.8285 148.812 27.0985 145.622 27.0985C141.701 27.0985 139.202 24.8298 139.202 21.4863L139.202 21.4872ZM152.35 18.9116V16.1041C151.735 16.6822 150.044 17.1038 148.045 17.5261C144.585 18.2564 143.163 19.1791 143.163 21.2169C143.163 23.0623 144.124 24.0628 146.469 24.0628C149.852 24.0628 152.35 22.332 152.35 18.9106V18.9116Z\" fill=\"#526E6E\"/>\\n<path d=\"M175.924 20.9869C175.924 24.7923 173.002 27.0985 167.85 27.0985C161.891 27.0985 158.931 24.0225 158.817 20.0248H162.621C162.815 22.2936 164.159 24.062 167.811 24.062C171.118 24.062 172.001 22.6005 172.001 21.1784C172.001 18.7183 169.388 18.4479 166.85 17.911C163.429 17.1413 159.507 16.1032 159.507 12.0285C159.507 8.64565 162.236 6.37695 167.004 6.37695C172.348 6.37695 174.923 9.26048 175.193 12.6434H171.387C171.118 11.1443 170.35 9.41443 167.043 9.41443C164.544 9.41443 163.43 10.414 163.43 11.8746C163.43 13.9124 165.62 14.0654 168.427 14.7196C172.003 15.5653 175.924 16.6026 175.924 20.986V20.9869Z\" fill=\"#526E6E\"/>\\n<path d=\"M86.8612 29.2804C85.0238 29.2804 83.4753 28.3523 82.5013 26.6673C81.7536 25.3726 81.3577 23.6362 81.3577 21.6479C81.3577 18.1524 82.6204 13.9191 85.0616 10.7974C84.2772 9.41567 82.9814 8.57453 81.1342 8.57453C76.0791 8.57453 72.9473 16.624 72.9473 26.4171H69.1301C69.1301 26.287 69.2236 12.9544 61.7302 8.79169L63.3768 5.66261C67.151 7.75905 69.437 11.3847 70.8215 15.026C72.8437 9.07394 76.5381 5.42163 81.1342 5.42163C83.2452 5.42163 85.74 6.29759 87.8611 8.13563C89.4696 7.03977 91.3651 6.37639 93.5401 6.37639C97.8176 6.37639 104.993 8.98044 104.993 26.4181H101.176C101.176 20.3597 100.066 9.5293 93.5418 9.5293C91.8946 9.5293 90.9561 10.255 90.3492 11.0778C91.7027 13.2787 92.5865 16.1494 92.5865 19.7365C92.5865 25.7125 90.446 29.2804 86.8612 29.2804ZM87.5085 13.8999C85.9799 16.2181 85.1761 19.2152 85.1761 21.6479C85.1761 24.6056 85.9715 26.1276 86.8612 26.1276C88.1136 26.1276 88.7693 23.5537 88.7693 19.7365C88.7693 17.3836 88.2778 15.4439 87.5085 13.8999Z\" fill=\"#526E6E\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_2037_305\">\\n<rect width=\"176\" height=\"28.7021\" fill=\"white\" transform=\"translate(0 0.648926)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1tc6qtx\",\"data-framer-name\":\"logo european\",layoutDependency:layoutDependency,layoutId:\"mX8jotM1B\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-9g5eej\",\"data-framer-name\":\"European_Commission\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:80,intrinsicWidth:116,layoutDependency:layoutDependency,layoutId:\"iitzsuAd5\",svg:'<svg width=\"116\" height=\"80\" viewBox=\"0 0 116 80\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_2037_315)\">\\n<path d=\"M23.6141 79.9999H73.3927V77.1592H23.6141V79.9999Z\" fill=\"#526E6E\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M92.6786 55.3025C89.8336 55.2414 80.4698 54.8969 80.4698 54.8969L80.4694 56.6781L115.509 56.6999V56.1527C115.509 56.1527 95.5235 55.3635 92.6786 55.3025ZM92.6782 52.2046C86.4059 51.1864 80.4498 50.1814 80.4498 50.1814V52.004C80.4498 52.004 86.8222 52.7932 92.6478 53.3906C95.2486 53.6565 99.827 53.9291 104.434 54.1798C108.857 54.4196 115.509 54.7553 115.509 54.7553V54.2103C115.509 54.2103 105.114 53.5105 104.434 53.4799C103.753 53.4516 97.3807 52.9698 92.6782 52.2046ZM92.6786 49.1081C87.7296 47.8327 80.4698 45.6264 80.4698 45.6264L80.4502 47.5297C80.4502 47.5297 89.4368 49.627 92.6481 50.3224C95.5455 50.9503 99.5047 51.3144 104.434 51.6589C110.53 52.0862 115.478 52.4175 115.478 52.4175V51.9008C115.478 51.9008 106.754 51.2032 104.464 51.0506C102.175 50.9002 97.6275 50.3834 92.6786 49.1081ZM92.6786 45.9796C87.6271 44.0152 80.4698 41.0109 80.4698 41.0109L80.4502 43.0364C80.4502 43.0364 88.3381 45.7332 92.6481 47.135C96.8856 48.515 99.1541 48.7116 104.359 49.1626L104.434 49.1691C109.692 49.6248 115.478 50.0782 115.478 50.0782V49.5332C115.478 49.5332 105.794 48.5566 104.464 48.4104C104.071 48.367 103.665 48.3264 103.245 48.2845L103.244 48.2844C100.436 48.0042 97.0021 47.6615 92.6786 45.9796ZM92.6481 42.8222C89.5675 41.3071 80.4698 36.4564 80.4698 36.4564L80.4502 38.582C80.4502 38.582 88.9855 42.4755 92.6481 44.0671C96.7425 45.8483 98.7633 46.0924 104.434 46.6178C110.155 47.1498 115.509 47.7123 115.509 47.7123V47.1651C115.509 47.1651 109.719 46.5677 104.434 45.9486C99.0514 45.3229 96.0819 44.5119 92.6481 42.8222ZM92.6777 39.757C90.7286 38.6932 80.4493 31.9826 80.4493 31.9826L80.4489 31.9828L80.4686 34.2697C80.4686 34.2697 88.9975 39.1487 92.6165 41.0912C96.2356 43.0359 99.545 43.7335 104.402 44.2502C109.26 44.7669 115.478 45.4341 115.478 45.4341V44.8563C115.478 44.8563 111.95 44.4312 104.433 43.4916C97.7597 42.6552 95.2073 41.1965 93.3529 40.1368L93.3529 40.1368C93.119 40.0032 92.8962 39.8759 92.6777 39.757ZM92.6169 36.8704C90.6981 35.475 80.4493 27.5089 80.4493 27.5089L80.469 29.9791C80.469 29.9791 88.7817 35.715 92.6473 38.2375C96.3104 40.6293 99.4817 41.0109 103.425 41.4855L103.429 41.486L103.434 41.4865C103.761 41.526 104.094 41.5661 104.433 41.608C108.859 42.153 115.478 43.097 115.478 43.097V42.4887C115.478 42.4887 111.735 41.9742 104.433 40.9409C97.0709 39.8964 94.5354 38.2678 92.6169 36.8704ZM92.6481 33.8055C89.4542 31.0102 80.4698 22.8326 80.4698 22.8326V25.5058C80.4698 25.5058 89.0182 32.4059 92.6481 35.2924C95.5259 37.5797 98.5748 38.0448 103.098 38.7348C103.52 38.7992 103.955 38.8655 104.404 38.9354C109.662 39.7552 115.509 40.697 115.509 40.697V40.1192C115.509 40.1192 110.9 39.4216 104.434 38.2988C97.9699 37.176 95.587 36.3759 92.6481 33.8055ZM92.6481 30.9501C89.9164 28.164 80.4698 18.4602 80.4698 18.4602V21.3141C80.4698 21.3141 89.9579 30.0346 92.6177 32.4371C95.4308 34.9795 98.8367 35.5477 103.597 36.3419C103.862 36.3861 104.131 36.4309 104.404 36.4768C109.693 37.3641 115.509 38.2972 115.509 38.2972V37.7522C115.509 37.7522 109.316 36.758 104.404 35.8991C99.2582 34.9986 95.5455 33.9042 92.6481 30.9501ZM92.6478 27.7007C90.6813 25.5883 80.4498 13.7435 80.4498 13.7435L80.4694 16.8001C80.4694 16.8001 89.6632 26.4124 92.6173 29.2488C96.1207 32.6144 99.4286 33.1711 103.204 33.8065C103.609 33.8745 104.018 33.9434 104.434 34.0167C108.735 34.7754 115.509 35.9898 115.509 35.9898V35.4753C115.509 35.4753 107.329 34.0517 104.434 33.5001C97.1954 32.1244 95.7109 30.9906 92.6478 27.7007ZM92.6177 24.8777C90.575 22.2657 80.4698 9.20891 80.4698 9.20891L80.4502 12.4681C80.4502 12.4681 90.08 23.6676 92.6177 26.517C95.5108 29.7632 99.5463 30.6156 104.434 31.4964C109.322 32.3772 115.509 33.5305 115.509 33.5305V33.0443C115.509 33.0443 108.447 31.7515 104.434 30.9798C97.4727 29.6433 94.6583 27.4873 92.6177 24.8777ZM92.6177 21.8405C91.1939 19.9568 80.4698 4.59346 80.4698 4.59346L80.4502 8.0359C80.4502 8.0359 90.0102 20.3058 92.6481 23.6327C95.441 27.1553 99.7564 28.0583 103.936 28.9329C104.102 28.9677 104.268 29.0024 104.434 29.0373C108.764 29.9486 115.54 31.2545 115.54 31.2545V30.7683C115.54 30.7683 106.623 29.0133 104.434 28.5511C96.3536 26.8428 94.2347 24.005 92.821 22.1118L92.821 22.1116C92.7517 22.0189 92.6842 21.9285 92.6177 21.8405ZM92.7463 19.1311C90.8472 16.1594 80.4698 -0.00195312 80.4698 -0.00195312L80.4694 3.78283C80.4694 3.78283 90.2648 17.5897 92.6478 20.8381C95.4289 24.6295 97.9302 25.1758 103.826 26.4633L104.353 26.5785C110.632 27.952 115.511 28.9723 115.511 28.9723V28.3968C115.511 28.3968 112.169 27.6426 104.491 26.0466C96.8122 24.4506 94.6431 22.1005 92.7463 19.1311ZM45.2301 22.9131C47.8725 21.8646 49.5381 20.6329 51.6965 18.8996C53.3599 17.5652 54.9255 16.0062 56.8113 14.0571V14.8485C55.2523 16.5688 53.8178 18.1429 52.3287 19.3943C50.4977 20.934 48.5509 22.3624 46.6016 23.3895H50.9301C51.2798 23.2114 51.6105 23.0233 51.9142 22.8233C53.922 21.5002 54.9772 20.4951 56.8107 18.7074V19.4901C56.8087 19.5232 54.549 21.853 52.62 23.3895H73.3873V56.6847H56.8121V56.6861H0.000996829V54.482L23.6165 55.0811V53.4835C15.6299 53.5633 7.62631 53.6202 0.000996829 53.6694V51.4653C7.96603 51.6143 15.7991 51.7572 23.6165 51.8778V50.1293C20.2065 50.2012 16.844 50.2823 13.6405 50.3612L0.00134345 50.7166V48.5146L13.6077 48.5024C16.8301 48.5053 20.1976 48.5103 23.6165 48.5251V46.9279C15.5729 47.176 7.59504 47.4426 0.000276629 47.7001V45.496C7.94907 45.4274 15.7718 45.3617 23.6165 45.3176V43.7392L0.000642506 44.7561V42.552L23.6165 42.1272V40.5098L0.000962167 41.743V39.5345L23.6165 38.8961V37.2951C15.7713 37.7993 7.94703 38.3299 -0.000301072 38.8719V36.6635C7.99668 36.3157 15.855 35.9779 23.6165 35.671V34.0622C15.8053 34.6339 7.96747 35.2364 0.00111622 35.8528V33.6443C8.31663 33.2037 16.0173 32.8007 23.6165 32.4319V30.7821C20.4011 31.0598 17.2658 31.34 14.4136 31.5963L0.000731087 32.9175V30.7025L14.2699 29.741C17.4088 29.5372 20.5098 29.3365 23.6165 29.1444V27.5953L0.000611695 29.8853V27.6746L23.6165 25.9528V24.4482L-0.000347288 26.9534V24.7384L34.1495 21.9347C35.5863 21.8039 36.8507 21.6469 38.0127 21.4529C40.8315 20.9907 43.2517 20.2582 45.4166 19.2139C47.6292 18.1588 49.8094 16.6523 51.898 14.7359C53.509 13.2601 55.1223 11.5114 56.8119 9.40976V10.1488L56.5187 10.5188C55.1652 12.2274 53.8846 13.8439 52.5585 15.1151C50.4395 17.1471 48.1611 19.0656 45.8806 20.2189C43.6503 21.3613 41.1454 22.1832 38.2261 22.7348C37.0533 22.9572 35.7626 23.1491 34.2823 23.3213L33.6318 23.3895H43.8685C44.3297 23.2485 44.7831 23.0911 45.2301 22.9131ZM38.5516 17.9591C41.2899 17.4141 43.7641 16.5115 45.9072 15.2797C48.0285 14.0718 50.1412 12.3866 52.1884 10.2654C53.6903 8.70864 55.2099 6.88391 56.8123 4.71249V5.52786C55.4519 7.3983 54 9.39094 52.694 10.8015C50.5966 13.069 48.6477 14.9243 46.4414 16.2477C44.22 17.5928 41.6516 18.5957 38.8065 19.2323C37.6139 19.5026 36.308 19.7315 34.8146 19.9299C33.9534 20.0433 33.0923 20.1391 32.2333 20.233C31.7668 20.2832 31.3002 20.3355 30.8337 20.3899C20.3472 21.576 9.83655 22.8339 -0.000154721 24.0199V21.7983C9.76029 20.8521 20.1966 19.8515 30.6877 18.9096C31.1521 18.8681 31.6164 18.8268 32.0808 18.7876C32.9419 18.7133 33.8009 18.6392 34.6555 18.5456C36.1076 18.3886 37.383 18.1968 38.5516 17.9591ZM35.1978 16.4321C34.2319 16.5889 -0.000732422 21.0191 -0.000732422 21.0191L-0.000616882 18.7973C-0.000616882 18.7973 31.7555 15.429 32.1326 15.3875C33.0766 15.2894 34.0533 15.1869 34.9995 15.054C36.4383 14.8534 37.7158 14.6092 38.9106 14.3083C41.5769 13.6434 44.034 12.5947 46.2185 11.1864C48.3356 9.83492 50.411 8.03404 52.3906 5.82992C53.8839 4.17115 55.3359 2.28954 56.8097 0.107213V1.00327C55.567 2.85622 54.2349 4.77692 52.9683 6.25071C50.9733 8.56614 48.961 10.6765 46.7961 12.1263C44.54 13.6524 41.9913 14.8101 39.2225 15.5688C37.9949 15.9067 36.6803 16.1901 35.1978 16.4321ZM45.1433 48.8735H43.4123L42.8999 47.2537L42.3767 48.8735H40.65L42.0584 49.92L41.509 51.5791L42.8999 50.5566L44.2865 51.5791L43.748 49.92L45.1433 48.8735ZM41.1249 44.8512H39.3895L38.8795 43.2357L38.3562 44.8512H36.6274L38.0357 45.8998L37.4907 47.5611L38.8794 46.5364L40.2682 47.5611L39.7275 45.8998L41.1249 44.8512ZM39.6512 39.1897H37.9179L37.4078 37.572L36.8845 39.1897H35.1578L36.564 40.2362L36.0168 41.8975L37.4078 40.875L38.7965 41.8975L38.2559 40.2362L39.6512 39.1897ZM41.1249 33.6981H39.3895L38.8795 32.0804L38.3562 33.6981H36.6274L38.0357 34.7446L37.4907 36.4059L38.8794 35.3812L40.2682 36.4059L39.7275 34.7446L41.1249 33.6981ZM45.0855 29.6207H43.3545L42.8421 28.003L42.3189 29.6207H40.5922L42.0005 30.6693L41.4512 32.3284L42.8421 31.3037L44.2331 32.3284L43.6902 30.6693L45.0855 29.6207ZM61.849 39.1759H60.1136L59.6034 37.5582L59.078 39.1759H57.3513L58.7618 40.2223L58.2146 41.8836L59.6034 40.8589L60.9944 41.8836L60.4515 40.2223L61.849 39.1759ZM60.3167 44.8373H58.5857L58.0733 43.2175L57.5501 44.8373H55.8234L57.234 45.886L56.6868 47.5472L58.0733 46.5225L59.4643 47.5472L58.9214 45.886L60.3167 44.8373ZM60.3167 33.6842H58.5857L58.0733 32.0644L57.5501 33.6842H55.8234L57.234 34.7285L56.6868 36.3898L58.0733 35.3673L59.4643 36.3898L58.9214 34.7285L60.3167 33.6842ZM56.2433 29.6068H54.5079L53.9978 27.9891L53.4745 29.6068H51.7457L53.1562 30.6533L52.609 32.3124L53.9978 31.2899L55.3887 32.3124L54.8459 30.6533L56.2433 29.6068ZM56.2433 48.8597H54.5079L53.9978 47.2398L53.4745 48.8597H51.7457L53.1562 49.9061L52.609 51.5652L53.9978 50.5405L55.3887 51.5652L54.8459 49.9061L56.2433 48.8597ZM50.7509 50.3299H49.0155L48.5054 48.7123L47.9821 50.3299H46.2533L47.6638 51.3786L47.1166 53.0355L48.5054 52.0152L49.8963 53.0355L49.3535 51.3786L50.7509 50.3299ZM50.6855 28.1258H48.9545L48.4421 26.4427L47.9188 28.1258H46.1922L47.6005 29.2137L47.0511 30.9382L48.4421 29.8765L49.833 30.9382L49.2902 29.2137L50.6855 28.1258Z\" fill=\"#526E6E\"/>\\n<path d=\"M55.2667 65.0221H54.702C54.5995 65.0221 54.5515 64.9741 54.5515 64.8738L54.5602 62.6675C54.5602 62.2032 54.4512 61.8979 53.9956 61.8979C53.6816 61.8979 53.1322 62.1487 52.9186 62.2511V64.8739C52.9186 64.9677 52.8794 65.0221 52.7703 65.0221H52.2122C52.1032 65.0221 52.064 64.9741 52.064 64.8739V61.3311C52.064 61.2308 52.1032 61.1763 52.2122 61.1763H52.7703C52.8794 61.1763 52.9186 61.2307 52.9186 61.3311V61.5688C52.9273 61.5688 52.936 61.5757 52.9427 61.5757C53.2326 61.373 53.782 61.1048 54.2617 61.1048C55.3212 61.1048 55.4172 61.8047 55.4172 62.5961V64.8743C55.4172 64.9682 55.3844 65.0226 55.2666 65.0226M50.5495 63.2711H49.5924C49.2 63.2711 48.9471 63.4129 48.9471 63.9316C48.9471 64.2761 49.0648 64.3873 49.4354 64.3873C49.7734 64.3873 50.2508 64.1889 50.5495 64.0167L50.5495 63.2711ZM50.5975 64.5748C50.2051 64.8735 49.6775 65.0849 49.152 65.0849C48.3192 65.0849 48.0772 64.6293 48.0772 63.9709C48.0685 63.0509 48.5634 62.6584 49.5532 62.6584H50.5582V62.4557C50.5582 61.9848 50.3838 61.8191 49.7406 61.8191C49.4812 61.8191 48.9863 61.8583 48.6724 61.8889C48.5154 61.9129 48.4761 61.9046 48.4543 61.7952L48.3825 61.5052C48.3668 61.4027 48.3912 61.3396 48.5634 61.2698C48.9014 61.1521 49.5205 61.0976 49.8911 61.0976C51.2494 61.0976 51.4129 61.6536 51.4129 62.5343V64.0495C51.4129 64.37 51.4521 64.3787 51.6963 64.4093C51.814 64.418 51.8446 64.4419 51.8446 64.527V64.8584C51.8446 64.9435 51.7901 64.9979 51.6571 65.0218C51.5306 65.0459 51.4063 65.061 51.2886 65.061C50.918 65.061 50.6913 64.952 50.6128 64.5836L50.5971 64.5749L50.5975 64.5748ZM45.3142 62.7454H46.8687C46.8687 62.2657 46.7422 61.8036 46.0925 61.8036C45.5104 61.8036 45.3535 62.1568 45.3142 62.7454ZM45.3055 63.334C45.3296 64.1276 45.6129 64.3478 46.2561 64.3478C46.5395 64.3478 46.9777 64.2911 47.2764 64.2606C47.4182 64.2449 47.466 64.2449 47.49 64.3937L47.5359 64.6531C47.56 64.7708 47.5446 64.834 47.403 64.8973C47.0956 65.015 46.5244 65.0935 46.1385 65.0935C44.6386 65.0935 44.4184 64.1364 44.4184 63.1139C44.4184 62.353 44.5602 61.0973 46.0928 61.0973C47.4968 61.0973 47.7475 62.0086 47.7715 62.8545C47.7802 63.1379 47.7017 63.3341 47.3878 63.3341L45.3055 63.334ZM42.4576 61.8976C42.1349 61.8976 41.64 62.1243 41.4045 62.2507V64.2129C41.7577 64.3154 42.0411 64.346 42.3093 64.346C42.8739 64.346 43.0702 64.056 43.0702 63.0684C43.0702 62.0699 42.874 61.8976 42.4576 61.8976ZM42.3944 65.0938C42.1349 65.0938 41.7752 65.0458 41.4133 64.9194L41.4046 64.9281V66.3103C41.4046 66.3952 41.3828 66.4672 41.2564 66.4672H40.6982C40.5741 66.4672 40.55 66.4128 40.55 66.3103V61.3328C40.55 61.2304 40.5892 61.1758 40.6982 61.1758H41.2564C41.3677 61.1758 41.3982 61.2369 41.3982 61.3328V61.5683L41.4222 61.584C41.7035 61.3878 42.2071 61.1131 42.6628 61.1131C43.6896 61.1131 43.9578 61.8892 43.9578 63.0752C43.9578 64.355 43.6349 65.0938 42.3944 65.0938ZM38.3842 61.8501C37.7171 61.8501 37.5666 62.2752 37.5666 63.0906C37.5666 63.9234 37.717 64.3311 38.3755 64.3311C39.0905 64.3311 39.2323 63.9299 39.2323 63.0906C39.2323 62.2578 39.0992 61.8501 38.3842 61.8501ZM38.3755 65.0854C36.7992 65.0854 36.6968 63.9299 36.6968 63.0361C36.6968 62.297 36.8602 61.0957 38.3755 61.0957C39.8994 61.0957 40.1109 62.1095 40.1109 63.0361C40.1109 63.9299 40.0019 65.0854 38.3755 65.0854ZM35.0795 64.8729C35.0795 64.9667 35.0403 65.0211 34.9313 65.0211H34.3645C34.2554 65.0211 34.2162 64.9752 34.2162 64.8729V61.3323C34.2162 61.2297 34.2554 61.1753 34.3645 61.1753H34.9226C35.0403 61.1753 35.0796 61.2385 35.0796 61.3323V61.6768L35.0953 61.6925C35.3307 61.4745 35.8888 61.2063 36.2573 61.1365C36.3598 61.1125 36.4294 61.1365 36.4469 61.2694L36.5014 61.7948C36.5083 61.9061 36.5171 61.9518 36.351 61.9845C35.9128 62.0696 35.3547 62.2265 35.08 62.3442V64.8732L35.0795 64.8729ZM33.4008 65.022H32.8427C32.725 65.022 32.6944 64.9676 32.6944 64.8737V64.6296L32.6787 64.6209C32.3713 64.8345 31.8372 65.0918 31.3597 65.0918C30.3002 65.0918 30.1977 64.4639 30.1977 63.6398V61.331C30.1977 61.2373 30.2369 61.1761 30.346 61.1761H30.9193C31.0219 61.1761 31.0611 61.2305 31.0611 61.331V63.5373C31.0611 64.0104 31.1548 64.3069 31.6345 64.3069C31.9724 64.3069 32.4891 64.0562 32.6941 63.9537V61.331C32.6941 61.2373 32.7246 61.1761 32.8423 61.1761H33.4005C33.5095 61.1761 33.5487 61.2305 33.5487 61.331V64.8737C33.5487 64.974 33.5098 65.022 33.4008 65.022ZM26.5247 59.9659C26.5247 59.8634 26.5726 59.809 26.6816 59.809H29.5703C29.6642 59.809 29.7208 59.8634 29.7208 59.9572V60.4456C29.7208 60.5394 29.6816 60.5874 29.5639 60.5874H27.4208V61.9369H29.3197C29.4221 61.9369 29.4767 61.9848 29.4767 62.0785V62.5647C29.4767 62.6585 29.4374 62.7063 29.3197 62.7063H27.4208V64.252H29.6184C29.712 64.252 29.7602 64.3 29.7602 64.4026V64.88C29.7602 64.9826 29.7209 65.0216 29.6097 65.0216H26.6817C26.5727 65.0216 26.5247 64.9737 26.5247 64.88L26.5247 59.9659Z\" fill=\"#526E6E\"/>\\n<path d=\"M63.2159 73.3063H62.6512C62.5487 73.3063 62.5007 73.2584 62.5007 73.1581L62.5094 70.9518C62.5094 70.4874 62.4004 70.1822 61.9448 70.1822C61.6308 70.1822 61.0814 70.4329 60.8678 70.5354V73.1581C60.8678 73.2519 60.8285 73.3063 60.7195 73.3063H60.1614C60.0524 73.3063 60.0131 73.2584 60.0131 73.1581V69.6154C60.0131 69.5151 60.0524 69.4605 60.1614 69.4605H60.7195C60.8285 69.4605 60.8678 69.5149 60.8678 69.6154V69.853C60.8765 69.853 60.8835 69.86 60.8918 69.86C61.1818 69.6572 61.7334 69.3891 62.2108 69.3891C63.2704 69.3891 63.3663 70.0889 63.3663 70.8803V73.1586C63.3663 73.2524 63.3337 73.3068 63.2158 73.3068M57.8624 70.1345C57.1953 70.1345 57.0471 70.5596 57.0471 71.375C57.0471 72.2078 57.1953 72.6155 57.8537 72.6155C58.5688 72.6155 58.7105 72.2143 58.7105 71.375C58.7105 70.5422 58.5774 70.1345 57.8624 70.1345ZM57.8538 73.3698C56.2775 73.3698 56.1751 72.2143 56.1751 71.3205C56.1751 70.5814 56.3385 69.3801 57.8538 69.3801C59.3777 69.3801 59.5892 70.3939 59.5892 71.3205C59.5892 72.2143 59.4802 73.3698 57.8538 73.3698ZM55.5943 73.1573C55.5943 73.2424 55.5637 73.3055 55.4525 73.3055H54.8943C54.7853 73.3055 54.7374 73.2596 54.7374 73.1573V69.608C54.7374 69.499 54.7853 69.4597 54.8943 69.4597H55.4525C55.5638 69.4597 55.5943 69.5229 55.5943 69.608V73.1573ZM55.1779 68.895C54.7702 68.895 54.7157 68.6661 54.7157 68.4393C54.7157 68.1886 54.8008 67.9902 55.1779 67.9902C55.5638 67.9902 55.6422 68.1712 55.6422 68.4393C55.6422 68.6813 55.5704 68.895 55.1779 68.895ZM52.6273 73.3695C52.2349 73.3695 51.7095 73.3151 51.4108 73.1973C51.2538 73.1342 51.2211 73.0622 51.2451 72.9379L51.2995 72.6785C51.3236 72.552 51.378 72.5456 51.5045 72.5607C51.8489 72.6151 52.3525 72.6546 52.6185 72.6546C53.1221 72.6546 53.327 72.5215 53.327 72.2076C53.327 71.8457 53.1919 71.7672 52.6969 71.6975C51.9274 71.5862 51.2537 71.4228 51.2537 70.566C51.2537 69.7899 51.8489 69.3822 52.7296 69.3822C53.0501 69.3822 53.593 69.428 53.9222 69.5543C54.0552 69.6087 54.1118 69.672 54.0879 69.7898L54.0247 70.071C54.0008 70.1823 53.955 70.1974 53.8132 70.1823C53.4753 70.143 53.0349 70.0951 52.745 70.0951C52.2435 70.0951 52.1258 70.2367 52.1258 70.5355C52.1258 70.8407 52.3133 70.8799 52.793 70.9584C53.5386 71.0695 54.2122 71.2179 54.2122 72.1531C54.2122 73.071 53.4362 73.3695 52.6273 73.3695ZM49.3387 73.3695C48.9463 73.3695 48.4208 73.3151 48.1222 73.1973C47.9652 73.1342 47.9325 73.0622 47.9565 72.9379L48.0109 72.6785C48.035 72.552 48.0894 72.5456 48.2158 72.5607C48.5603 72.6152 49.0639 72.6546 49.3299 72.6546C49.8335 72.6546 50.0384 72.5215 50.0384 72.2076C50.0384 71.8457 49.9033 71.7672 49.4084 71.6975C48.6388 71.5862 47.9651 71.4228 47.9651 70.566C47.9651 69.7899 48.5603 69.3822 49.441 69.3822C49.7615 69.3822 50.3044 69.428 50.6336 69.5543C50.7667 69.6087 50.8233 69.672 50.7993 69.7898L50.7361 70.071C50.7121 70.1823 50.6664 70.1975 50.5247 70.1823C50.1867 70.143 49.7463 70.0951 49.4564 70.0951C48.9549 70.0951 48.8372 70.2367 48.8372 70.5355C48.8372 70.8407 49.0247 70.8799 49.5044 70.9584C50.25 71.0695 50.9237 71.2179 50.9237 72.1532C50.9237 73.071 50.1475 73.3695 49.3387 73.3695ZM47.3922 73.1574C47.3922 73.2425 47.3617 73.3056 47.2504 73.3056H46.6923C46.5833 73.3056 46.5353 73.2598 46.5353 73.1574V69.6081C46.5353 69.4991 46.5833 69.4599 46.6923 69.4599H47.2504C47.3617 69.4599 47.3922 69.523 47.3922 69.6081V73.1574ZM46.9758 68.8951C46.5681 68.8951 46.5136 68.6662 46.5136 68.4395C46.5136 68.1887 46.5987 67.9904 46.9758 67.9904C47.3617 67.9904 47.4402 68.1713 47.4402 68.4395C47.4402 68.6815 47.3683 68.8951 46.9758 68.8951ZM45.7532 73.3064H45.1885C45.0774 73.3064 45.038 73.2585 45.038 73.1582V70.9279C45.038 70.3458 44.8985 70.1823 44.5039 70.1823C44.2139 70.1823 43.743 70.409 43.501 70.5354C43.501 70.6139 43.5079 70.7556 43.5079 70.9344V73.1582C43.5079 73.252 43.4774 73.3064 43.3597 73.3064H42.7863C42.6839 73.3064 42.6532 73.2584 42.6532 73.1582V70.8886C42.6532 70.409 42.5268 70.1823 42.1343 70.1823C41.8596 70.1823 41.4193 70.3785 41.1206 70.5355V73.1582C41.1206 73.252 41.0813 73.3064 40.9723 73.3064H40.4077C40.3051 73.3064 40.2659 73.2585 40.2659 73.1582V69.6154C40.2659 69.5152 40.3051 69.4606 40.4077 69.4606H40.9636C41.0814 69.4606 41.1206 69.5216 41.1206 69.6154V69.8444L41.1293 69.8531C41.4345 69.6394 41.8662 69.404 42.3 69.3887C42.7535 69.3887 43.1307 69.4825 43.3749 69.9381C43.7673 69.6481 44.2535 69.3887 44.7571 69.3887C45.7927 69.3887 45.8951 70.0645 45.8951 70.8494V73.1582C45.8951 73.252 45.8622 73.3064 45.7532 73.3064ZM39.6 73.3064H39.0354C38.9243 73.3064 38.8849 73.2585 38.8849 73.1582V70.9279C38.8849 70.3458 38.7453 70.1823 38.3507 70.1823C38.0608 70.1823 37.5898 70.409 37.3479 70.5354C37.3479 70.6139 37.3548 70.7556 37.3548 70.9344V73.1582C37.3548 73.252 37.3243 73.3064 37.2066 73.3064H36.6332C36.5308 73.3064 36.5001 73.2585 36.5001 73.1582V70.8886C36.5001 70.409 36.3737 70.1823 35.9812 70.1823C35.7065 70.1823 35.2662 70.3785 34.9675 70.5355V73.1582C34.9675 73.252 34.9282 73.3064 34.8192 73.3064H34.2546C34.152 73.3064 34.1128 73.2585 34.1128 73.1582V69.6154C34.1128 69.5152 34.152 69.4606 34.2546 69.4606H34.8105C34.9283 69.4606 34.9675 69.5216 34.9675 69.6154V69.8444L34.9762 69.8531C35.2814 69.6394 35.7131 69.404 36.147 69.3887C36.6004 69.3887 36.9776 69.4825 37.2218 69.9381C37.6142 69.6481 38.1004 69.3887 38.604 69.3887C39.6396 69.3887 39.742 70.0645 39.742 70.8494V73.1582C39.742 73.252 39.709 73.3064 39.6 73.3064ZM31.9388 70.1345C31.2716 70.1345 31.1212 70.5596 31.1212 71.3751C31.1212 72.2079 31.2717 72.6156 31.93 72.6156C32.6451 72.6156 32.7868 72.2144 32.7868 71.3751C32.7868 70.5422 32.6538 70.1345 31.9388 70.1345ZM31.93 73.3699C30.3538 73.3699 30.2513 72.2144 30.2513 71.3206C30.2513 70.5815 30.4147 69.3802 31.93 69.3802C33.454 69.3802 33.6655 70.394 33.6655 71.3206C33.6655 72.2144 33.5564 73.3699 31.93 73.3699ZM28.5718 68.0385C28.9555 68.0385 29.592 68.0929 30.0085 68.2652C30.1349 68.3219 30.1806 68.3852 30.1567 68.5094L30.0869 68.8321C30.0629 68.9259 30.0238 68.9651 29.882 68.9498C29.4983 68.9018 29.0274 68.8474 28.6197 68.8474C27.5514 68.8474 27.3945 69.7108 27.3945 70.7311C27.3945 71.7601 27.5907 72.5689 28.6197 72.5689C29.0732 72.5689 29.4591 72.521 29.882 72.4664C30.0325 72.4506 30.063 72.4904 30.0957 72.5928L30.1567 72.8915C30.1893 73.0158 30.1497 73.0877 30.0236 73.1422C29.6399 73.3056 28.9553 73.3777 28.5716 73.3777C26.821 73.3777 26.4525 72.0827 26.4525 70.7462C26.4525 69.4054 26.7818 68.0385 28.5718 68.0385Z\" fill=\"#526E6E\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_2037_315\">\\n<rect width=\"115.54\" height=\"80\" fill=\"white\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1mq2lzr\",\"data-framer-name\":\"logo itwillbe\",layoutDependency:layoutDependency,layoutId:\"a9GLZfFRn\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-116rogq\",\"data-framer-name\":\"logo-itwillbe-bn-neg\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:58,intrinsicWidth:177,layoutDependency:layoutDependency,layoutId:\"qCWjqEiw2\",svg:'<svg width=\"177\" height=\"58\" viewBox=\"0 0 177 58\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_2037_332)\">\\n<path d=\"M29.1606 19.5107H37.3798L40.5185 31.5315L44.1852 19.4227H51.1225L54.8361 31.6195L58.0628 19.5107H66.15L58.7697 43.5963H51.5215L47.6318 31.1795L43.6542 43.5963H36.45L29.1577 19.5107H29.1606Z\" fill=\"#526E6E\"/>\\n<path d=\"M68.7225 19.5723H77.1177V43.4173H68.7225V19.5723Z\" fill=\"#526E6E\"/>\\n<path d=\"M81.6028 13.2627H89.998V43.4174H81.6028V13.2627Z\" fill=\"#526E6E\"/>\\n<path d=\"M94.5447 7.08508H102.94V43.4174H94.5447V7.08508Z\" fill=\"#526E6E\"/>\\n<path d=\"M72.9172 18.3022C75.1642 18.3022 76.9857 16.4807 76.9857 14.2337C76.9857 11.9867 75.1642 10.1652 72.9172 10.1652C70.6702 10.1652 68.8486 11.9867 68.8486 14.2337C68.8486 16.4807 70.6702 18.3022 72.9172 18.3022Z\" fill=\"#526E6E\"/>\\n<path d=\"M0.971313 19.5723H9.36945V43.4789H0.971313V19.5723Z\" fill=\"#526E6E\"/>\\n<path d=\"M5.16607 18.3667C7.41306 18.3667 9.2346 16.5451 9.2346 14.2981C9.2346 12.0512 7.41306 10.2296 5.16607 10.2296C2.91908 10.2296 1.09753 12.0512 1.09753 14.2981C1.09753 16.5451 2.91908 18.3667 5.16607 18.3667Z\" fill=\"#526E6E\"/>\\n<path d=\"M136.791 36.5857L136.752 36.5035C133.725 30.0795 135.922 22.8313 142.428 19.763C150.032 16.1785 156.154 20.1003 159.204 26.5654C159.433 27.0523 159.703 27.6214 159.911 28.1699L145.192 35.1102C146.931 37.2222 149.257 37.6182 151.654 36.4859C153.484 35.6235 154.622 34.2419 155.479 31.9481L161.416 33.4734C160.565 37.1547 158.359 40.3814 153.968 42.4494C147.057 45.7083 140.011 43.4145 136.791 36.5827V36.5857ZM150.853 27.6214C149.419 25.3158 147.265 24.4417 145.153 25.439C143.121 26.3982 142.484 28.6363 143.209 31.2265L150.853 27.6214Z\" fill=\"#526E6E\"/>\\n<path d=\"M12.7487 36.0107V26.2896V19.5283V19.3141L21.1439 15.2397V19.5283H26.7113V26.2896H21.1439V34.3768C21.1439 36.0547 21.8948 36.7645 23.4407 36.7645C24.5465 36.7645 25.6055 36.4565 26.6233 35.9696V42.5549C25.1215 43.3939 23.1327 43.9248 20.7889 43.9248C15.7524 43.9248 12.7457 41.716 12.7457 36.0136L12.7487 36.0107Z\" fill=\"#526E6E\"/>\\n<path d=\"M159.547 42.332H161.231V43.9923H159.547V42.332Z\" fill=\"#526E6E\"/>\\n<path d=\"M162.328 41.7102V41.6926C162.328 40.3814 163.402 39.2843 164.88 39.2843C166.359 39.2843 167.417 40.3638 167.417 41.675V41.6926C167.417 43.0038 166.347 44.1008 164.865 44.1008C163.384 44.1008 162.328 43.0184 162.328 41.7102ZM165.842 41.7102V41.6926C165.842 41.1294 165.435 40.6542 164.863 40.6542C164.291 40.6542 163.9 41.1235 163.9 41.675V41.6926C163.9 42.2528 164.308 42.731 164.88 42.731C165.452 42.731 165.842 42.2616 165.842 41.7102Z\" fill=\"#526E6E\"/>\\n<path d=\"M168.098 39.387H169.714V40.3139C169.978 39.6832 170.404 39.2755 171.169 39.3107V41.012H171.034C170.192 41.012 169.714 41.496 169.714 42.5608V43.9894H168.098V39.384V39.387Z\" fill=\"#526E6E\"/>\\n<path d=\"M171.612 44.843L172.131 43.7694C172.624 44.0422 173.12 44.2035 173.739 44.2035C174.548 44.2035 174.947 43.8046 174.947 43.0712V42.8923C174.625 43.2678 174.199 43.5816 173.528 43.5816C172.395 43.5816 171.486 42.7632 171.486 41.4462V41.4286C171.486 40.0998 172.413 39.2843 173.478 39.2843C174.167 39.2843 174.575 39.5659 174.924 39.9326V39.387H176.54V42.8835C176.54 43.7254 176.352 44.312 175.945 44.7227C175.528 45.1392 174.88 45.371 173.918 45.371C173.023 45.371 172.275 45.1832 171.612 44.843ZM174.947 41.4462V41.4286C174.947 40.9182 174.557 40.5427 174.012 40.5427C173.466 40.5427 173.067 40.927 173.067 41.4374V41.455C173.067 41.9654 173.46 42.3408 174.012 42.3408C174.563 42.3408 174.947 41.9566 174.947 41.4462Z\" fill=\"#526E6E\"/>\\n<path d=\"M1.54043 53.8101C1.64896 54.0301 1.78683 54.2149 1.95403 54.3674C2.12123 54.52 2.3119 54.6344 2.52016 54.7106C2.72843 54.7869 2.94843 54.828 3.17723 54.828C3.54096 54.828 3.8519 54.7605 4.11296 54.6256C4.3711 54.4906 4.6087 54.3117 4.82576 54.0888L5.30976 54.5229C5.04576 54.8192 4.74656 55.0568 4.40923 55.2357C4.0719 55.4146 3.65536 55.5026 3.1567 55.5026C2.79883 55.5026 2.4615 55.4381 2.1447 55.3061C1.8279 55.1741 1.54923 54.9893 1.31456 54.7488C1.07696 54.5082 0.889231 54.2208 0.748431 53.8834C0.607631 53.5461 0.537231 53.1765 0.537231 52.7717C0.537231 52.3933 0.598831 52.0384 0.724965 51.704C0.848165 51.3696 1.02416 51.0792 1.2471 50.8357C1.47003 50.5893 1.73403 50.3957 2.04203 50.2549C2.35003 50.1141 2.68443 50.0437 3.04816 50.0437C3.43243 50.0437 3.77563 50.117 4.0807 50.2608C4.38283 50.4074 4.64096 50.604 4.84923 50.8533C5.0575 51.1026 5.2159 51.396 5.32443 51.7333C5.43296 52.0706 5.48576 52.4314 5.48576 52.8157V52.9272C5.48576 52.9682 5.48283 53.0122 5.47696 53.0592H1.33803C1.36443 53.3437 1.4319 53.593 1.54043 53.813V53.8101ZM4.68496 52.4813C4.66443 52.2466 4.6175 52.0208 4.5383 51.8037C4.4591 51.5866 4.3535 51.3989 4.21563 51.2376C4.07776 51.0762 3.91056 50.9472 3.71403 50.8474C3.5175 50.7506 3.28576 50.7008 3.0247 50.7008C2.7959 50.7008 2.5847 50.7477 2.3911 50.8386C2.1975 50.9296 2.02736 51.0557 1.87776 51.2112C1.7311 51.3696 1.61083 51.5573 1.51696 51.7714C1.4231 51.9885 1.3615 52.2232 1.3351 52.4784H4.68496V52.4813Z\" fill=\"#526E6E\"/>\\n<path d=\"M9.56897 50.1757V50.8445H7.92044V55.3853H7.14311V50.8445H6.42444V50.1669H7.14311V49.7123C7.14311 49.1403 7.28097 48.7032 7.55377 48.4069C7.82657 48.1107 8.21671 47.9611 8.72124 47.9611C8.90311 47.9611 9.06151 47.9699 9.19057 47.9904C9.32257 48.0109 9.45164 48.0432 9.58071 48.0931V48.7707C9.43991 48.7296 9.31084 48.6973 9.19644 48.6739C9.08204 48.6504 8.9559 48.6387 8.82097 48.6387C8.21377 48.6387 7.91164 49.0112 7.91164 49.7504V50.1757H9.56897Z\" fill=\"#526E6E\"/>\\n<path d=\"M13.2797 50.1757V50.8445H11.6311V55.3853H10.8538V50.8445H10.1351V50.1669H10.8538V49.7123C10.8538 49.1403 10.9917 48.7032 11.2645 48.4069C11.5373 48.1107 11.9274 47.9611 12.4319 47.9611C12.6138 47.9611 12.7722 47.9699 12.9013 47.9904C13.0333 48.0109 13.1623 48.0432 13.2914 48.0931V48.7707C13.1506 48.7296 13.0215 48.6973 12.9071 48.6739C12.7927 48.6504 12.6666 48.6387 12.5317 48.6387C11.9245 48.6387 11.6223 49.0112 11.6223 49.7504V50.1757H13.2797Z\" fill=\"#526E6E\"/>\\n<path d=\"M14.2916 49.0112V48.1517H15.1804V49.0112H14.2916ZM14.3415 55.3824V50.1552H15.1188V55.3824H14.3415Z\" fill=\"#526E6E\"/>\\n<path d=\"M20.525 55.2152C20.1906 55.4058 19.777 55.5026 19.2871 55.5026C18.9029 55.5026 18.5479 55.4293 18.2194 55.2856C17.8909 55.1418 17.6093 54.9453 17.3687 54.6989C17.1282 54.4525 16.9434 54.165 16.8085 53.8336C16.6735 53.5021 16.6061 53.153 16.6061 52.7834C16.6061 52.4138 16.6735 52.0618 16.8085 51.7274C16.9434 51.393 17.1311 51.1026 17.3687 50.8533C17.6093 50.604 17.8909 50.4074 18.2194 50.2608C18.545 50.117 18.9029 50.0437 19.2871 50.0437C19.5365 50.0437 19.7623 50.0672 19.9647 50.1141C20.1671 50.161 20.3519 50.2285 20.5221 50.3106C20.6922 50.3928 20.8447 50.4954 20.9885 50.6098C21.1293 50.7242 21.2613 50.8445 21.3815 50.9736L20.8653 51.5192C20.657 51.3021 20.4282 51.1173 20.1818 50.9618C19.9354 50.8064 19.6333 50.7301 19.2754 50.7301C19.0114 50.7301 18.765 50.7829 18.5362 50.8856C18.3074 50.9912 18.1079 51.1349 17.9407 51.3197C17.7735 51.5045 17.6415 51.7186 17.5477 51.965C17.4538 52.2114 17.4069 52.4754 17.4069 52.757C17.4069 53.0386 17.4567 53.3056 17.5535 53.5549C17.6503 53.8042 17.7853 54.0213 17.9583 54.2061C18.1314 54.3909 18.3338 54.5346 18.5655 54.6402C18.7973 54.7458 19.0525 54.7957 19.3282 54.7957C19.6655 54.7957 19.9647 54.7224 20.2229 54.5728C20.481 54.4261 20.7157 54.2384 20.9269 54.0154L21.4226 54.4818C21.1586 54.781 20.8623 55.0245 20.5279 55.2152H20.525Z\" fill=\"#526E6E\"/>\\n<path d=\"M22.725 49.0112V48.1517H23.6138V49.0112H22.725ZM22.7748 55.3824V50.1552H23.5522V55.3824H22.7748Z\" fill=\"#526E6E\"/>\\n<path d=\"M26.0425 53.8101C26.151 54.0301 26.2889 54.2149 26.4561 54.3674C26.6233 54.52 26.814 54.6344 27.0222 54.7106C27.2305 54.7869 27.4505 54.828 27.6793 54.828C28.043 54.828 28.354 54.7605 28.615 54.6256C28.8732 54.4906 29.1108 54.3117 29.3278 54.0888L29.8118 54.5229C29.5478 54.8192 29.2486 55.0568 28.9113 55.2357C28.574 55.4146 28.1574 55.5026 27.6588 55.5026C27.3009 55.5026 26.9636 55.4381 26.6468 55.3061C26.33 55.1741 26.0513 54.9893 25.8166 54.7488C25.579 54.5082 25.3913 54.2208 25.2505 53.8834C25.1097 53.5461 25.0393 53.1765 25.0393 52.7717C25.0393 52.3933 25.1009 52.0384 25.227 51.704C25.3502 51.3696 25.5262 51.0792 25.7492 50.8357C25.9721 50.5893 26.2361 50.3957 26.5441 50.2549C26.8521 50.1141 27.1865 50.0437 27.5502 50.0437C27.9345 50.0437 28.2777 50.117 28.5828 50.2608C28.8849 50.4074 29.143 50.604 29.3513 50.8533C29.5596 51.1026 29.718 51.396 29.8265 51.7333C29.935 52.0706 29.9878 52.4314 29.9878 52.8157V52.9272C29.9878 52.9682 29.9849 53.0122 29.979 53.0592H25.843C25.8694 53.3437 25.9369 53.593 26.0454 53.813L26.0425 53.8101ZM29.187 52.4813C29.1665 52.2466 29.1196 52.0208 29.0404 51.8037C28.9612 51.5866 28.8556 51.3989 28.7177 51.2376C28.5798 51.0762 28.4126 50.9472 28.2161 50.8474C28.0196 50.7506 27.7878 50.7008 27.5268 50.7008C27.298 50.7008 27.0868 50.7477 26.8932 50.8386C26.6996 50.9296 26.5294 51.0557 26.3798 51.2112C26.2332 51.3696 26.1129 51.5573 26.019 51.7714C25.9252 51.9885 25.8636 52.2232 25.8372 52.4784H29.1841L29.187 52.4813Z\" fill=\"#526E6E\"/>\\n<path d=\"M32.1293 55.3824H31.3519V50.1552H32.1293V51.0645C32.3053 50.78 32.5341 50.5394 32.8157 50.34C33.1002 50.1405 33.4669 50.0408 33.9186 50.0408C34.2354 50.0408 34.517 50.0906 34.7634 50.1933C35.0098 50.293 35.2181 50.4368 35.3911 50.6216C35.5642 50.8064 35.6933 51.0264 35.7842 51.2845C35.8751 51.5397 35.9221 51.8242 35.9221 52.1352V55.3824H35.1447V52.3288C35.1447 51.8448 35.0186 51.4605 34.7693 51.176C34.5199 50.8914 34.1621 50.7506 33.6986 50.7506C33.4757 50.7506 33.2674 50.7888 33.0767 50.868C32.8861 50.9472 32.7189 51.0557 32.5751 51.2024C32.4343 51.349 32.3229 51.5221 32.2466 51.7245C32.1703 51.9269 32.1293 52.1498 32.1293 52.3904V55.3824Z\" fill=\"#526E6E\"/>\\n<path d=\"M38.6325 53.8952C38.6325 54.2178 38.7146 54.4437 38.876 54.5728C39.0373 54.7018 39.2514 54.7664 39.5125 54.7664C39.6474 54.7664 39.7736 54.7517 39.8909 54.7253C40.0082 54.6989 40.1344 54.652 40.2693 54.5845V55.2533C40.1344 55.3266 39.9906 55.3824 39.8381 55.4205C39.6856 55.4586 39.5154 55.4762 39.3277 55.4762C39.1194 55.4762 38.9229 55.4498 38.741 55.3941C38.5592 55.3384 38.4008 55.2533 38.2717 55.136C38.1397 55.0186 38.037 54.8632 37.9637 54.6754C37.8904 54.4877 37.8522 54.2618 37.8522 53.9978V50.8416H37.1248V50.1552H37.8522V48.577H38.6296V50.1552H40.2869V50.8416H38.6296V53.8952H38.6325Z\" fill=\"#526E6E\"/>\\n<path d=\"M48.1423 54.5786C48.0455 54.7693 47.9135 54.9335 47.7492 55.0685C47.5849 55.2034 47.3884 55.3061 47.1625 55.3765C46.9367 55.4469 46.6932 55.4821 46.4292 55.4821C46.0508 55.4821 45.6695 55.4117 45.2852 55.2738C44.9009 55.1359 44.5607 54.9482 44.2644 54.7135L44.6575 54.1562C44.942 54.3733 45.2353 54.5375 45.5433 54.6519C45.8513 54.7663 46.1593 54.825 46.4673 54.825C46.7753 54.825 47.0423 54.7517 47.2447 54.6021C47.4471 54.4525 47.5468 54.253 47.5468 53.9949V53.9743C47.5468 53.8453 47.5116 53.7338 47.4412 53.6399C47.3708 53.5461 47.274 53.4639 47.1537 53.3935C47.0335 53.3231 46.8927 53.2615 46.7343 53.2058C46.5759 53.153 46.4116 53.1002 46.2444 53.0533C46.042 52.9917 45.8396 52.9271 45.6313 52.8567C45.426 52.7863 45.2412 52.6954 45.074 52.5898C44.9097 52.4813 44.7748 52.3463 44.6692 52.185C44.5636 52.0237 44.5137 51.8213 44.5137 51.5778V51.5573C44.5137 51.3343 44.5577 51.1319 44.6457 50.9442C44.7337 50.7594 44.8569 50.601 45.0153 50.469C45.1737 50.337 45.3615 50.2373 45.5815 50.1669C45.8015 50.0965 46.0391 50.0613 46.2943 50.0613C46.6169 50.0613 46.9455 50.1141 47.274 50.2167C47.6055 50.3223 47.9047 50.4602 48.1745 50.6362L47.8196 51.2229C47.5761 51.0674 47.3239 50.9442 47.0569 50.8533C46.79 50.7623 46.5289 50.7183 46.2737 50.7183C45.9628 50.7183 45.7164 50.7917 45.5345 50.9354C45.3527 51.0791 45.2617 51.261 45.2617 51.4751V51.4957C45.2617 51.6159 45.2999 51.7245 45.3732 51.8154C45.4465 51.9063 45.5463 51.9855 45.6724 52.053C45.7956 52.1205 45.9393 52.1821 46.1036 52.2349C46.2649 52.2877 46.4351 52.3434 46.6081 52.3962C46.8105 52.4578 47.01 52.5253 47.2095 52.5986C47.4089 52.6719 47.5879 52.7658 47.7492 52.8831C47.9105 52.9975 48.0396 53.1354 48.1393 53.2967C48.2391 53.4581 48.286 53.6575 48.286 53.8922V53.9127C48.286 54.1621 48.2361 54.3821 48.1393 54.5757L48.1423 54.5786Z\" fill=\"#526E6E\"/>\\n<path d=\"M54.6543 53.8189C54.5165 54.1533 54.3258 54.4437 54.0823 54.693C53.8389 54.9424 53.5485 55.1389 53.2141 55.2856C52.8797 55.4322 52.513 55.5026 52.1229 55.5026C51.7327 55.5026 51.3719 55.4293 51.0405 55.2856C50.709 55.1418 50.4245 54.9453 50.181 54.6989C49.9375 54.4525 49.7498 54.165 49.6149 53.8336C49.4799 53.5021 49.4125 53.153 49.4125 52.7834C49.4125 52.4138 49.4799 52.0618 49.6149 51.7274C49.7498 51.393 49.9375 51.1026 50.181 50.8533C50.4245 50.604 50.7119 50.4074 51.0463 50.2608C51.3807 50.117 51.7445 50.0437 52.1434 50.0437C52.5423 50.0437 52.8973 50.117 53.2317 50.2608C53.5661 50.4074 53.8535 50.601 54.097 50.8474C54.3405 51.0938 54.5282 51.3813 54.6631 51.7128C54.7981 52.0442 54.8655 52.3933 54.8655 52.7629C54.8655 53.1325 54.7951 53.4874 54.6573 53.8189H54.6543ZM53.9151 51.9797C53.8183 51.7304 53.6805 51.5133 53.5045 51.3285C53.3285 51.1437 53.1231 50.997 52.8885 50.8885C52.6538 50.78 52.3957 50.7272 52.1199 50.7272C51.8442 50.7272 51.5773 50.78 51.3426 50.8826C51.1079 50.9882 50.9055 51.132 50.7413 51.3168C50.577 51.5016 50.445 51.7157 50.3511 51.9621C50.2573 52.2085 50.2103 52.4725 50.2103 52.7541C50.2103 53.0357 50.2602 53.3026 50.357 53.552C50.4538 53.8013 50.5887 54.0154 50.7618 54.1973C50.9349 54.3792 51.1373 54.5229 51.3749 54.6314C51.6125 54.74 51.8677 54.7928 52.1434 54.7928C52.4191 54.7928 52.6861 54.74 52.9207 54.6373C53.1554 54.5317 53.3578 54.3909 53.5279 54.209C53.6951 54.0272 53.8271 53.813 53.921 53.5696C54.0149 53.3232 54.0618 53.0592 54.0618 52.7776C54.0618 52.496 54.0119 52.229 53.9151 51.9797Z\" fill=\"#526E6E\"/>\\n<path d=\"M56.338 55.3823V47.9991H57.1153V55.3823H56.338Z\" fill=\"#526E6E\"/>\\n<path d=\"M58.9458 49.0112V48.1517H59.8346V49.0112H58.9458ZM58.9957 55.3824V50.1552H59.773V55.3824H58.9957Z\" fill=\"#526E6E\"/>\\n<path d=\"M65.7805 55.3823V54.3322C65.672 54.4877 65.5517 54.6343 65.4226 54.7781C65.2906 54.9189 65.144 55.045 64.9826 55.1535C64.8213 55.2621 64.6394 55.3471 64.4429 55.4058C64.2434 55.4674 64.0234 55.4967 63.78 55.4967C63.4632 55.4967 63.1552 55.4351 62.8589 55.3149C62.5626 55.1946 62.2957 55.0157 62.061 54.7839C61.8264 54.5522 61.6357 54.2677 61.4949 53.9303C61.3541 53.593 61.2837 53.2087 61.2837 52.7775C61.2837 52.3463 61.3541 51.9621 61.4949 51.6247C61.6357 51.2874 61.8264 51.0029 62.061 50.7711C62.2957 50.5394 62.5626 50.3605 62.8589 50.2343C63.1552 50.1111 63.4632 50.0466 63.78 50.0466C64.0234 50.0466 64.2464 50.0759 64.4488 50.1375C64.6512 50.1991 64.833 50.2783 64.9944 50.381C65.1557 50.4837 65.3024 50.601 65.4344 50.7359C65.5664 50.8709 65.6808 51.0117 65.7834 51.1613V48.005H66.5608V55.3882H65.7834L65.7805 55.3823ZM65.6544 51.9386C65.5488 51.6893 65.408 51.4781 65.229 51.305C65.0501 51.1319 64.8477 50.9941 64.6218 50.8973C64.396 50.8005 64.1613 50.7506 63.9178 50.7506C63.6626 50.7506 63.4221 50.7975 63.1992 50.8855C62.9762 50.9735 62.7826 51.1055 62.6184 51.2786C62.4541 51.4487 62.3221 51.6599 62.2253 51.9122C62.1285 52.1645 62.0786 52.4461 62.0786 52.7629C62.0786 53.0797 62.1285 53.3495 62.2253 53.5989C62.3221 53.8482 62.457 54.0594 62.6242 54.2383C62.7914 54.4173 62.988 54.5522 63.2109 54.6461C63.4338 54.7399 63.6685 54.7869 63.9178 54.7869C64.1672 54.7869 64.396 54.7399 64.6218 54.6402C64.8477 54.5434 65.0501 54.4085 65.229 54.2325C65.408 54.0594 65.5488 53.8453 65.6544 53.593C65.76 53.3407 65.8098 53.065 65.8098 52.7629C65.8098 52.4607 65.757 52.185 65.6544 51.9386Z\" fill=\"#526E6E\"/>\\n<path d=\"M69.3444 50.8768C69.0922 50.9472 68.8428 51.0411 68.6023 51.1555L68.3706 50.519C68.661 50.384 68.9543 50.2784 69.2506 50.1992C69.5468 50.123 69.8871 50.0819 70.2714 50.0819C70.9871 50.0819 71.5356 50.2579 71.9199 50.6128C72.3042 50.9678 72.4948 51.4899 72.4948 52.1851V55.3795H71.7468V54.5904C71.565 54.8251 71.3215 55.0363 71.0135 55.2182C70.7055 55.4 70.3212 55.491 69.8548 55.491C69.6114 55.491 69.3738 55.4587 69.142 55.3912C68.9103 55.3238 68.6991 55.2211 68.5143 55.0832C68.3295 54.9454 68.1799 54.7752 68.0684 54.5728C67.957 54.3704 67.9012 54.1328 67.9012 53.8542C67.9012 53.5755 67.954 53.332 68.0626 53.1208C68.1711 52.9096 68.3236 52.7307 68.5231 52.5899C68.7226 52.4491 68.9572 52.3406 69.23 52.2672C69.5028 52.1939 69.805 52.1558 70.1364 52.1558C70.4679 52.1558 70.7671 52.1763 71.0164 52.2174C71.2658 52.2584 71.5092 52.3112 71.7439 52.3787V52.1968C71.7439 51.7246 71.606 51.3696 71.3332 51.1291C71.0604 50.8886 70.6762 50.7712 70.1863 50.7712C69.8754 50.7712 69.5938 50.8064 69.3415 50.8768H69.3444ZM69.0951 53.027C68.834 53.2235 68.702 53.4875 68.702 53.8248C68.702 53.992 68.7372 54.1416 68.8076 54.2707C68.878 54.3998 68.9748 54.5083 69.0951 54.5992C69.2154 54.6902 69.3562 54.7606 69.5146 54.8075C69.673 54.8544 69.8402 54.8779 70.0132 54.8779C70.2538 54.8779 70.4826 54.8427 70.6938 54.7723C70.905 54.7019 71.0898 54.6051 71.2482 54.479C71.4066 54.3558 71.5298 54.2062 71.6207 54.0331C71.7116 53.86 71.7556 53.6723 71.7556 53.4611V52.9566C71.562 52.9038 71.3362 52.851 71.0868 52.804C70.8346 52.7571 70.5471 52.7336 70.2244 52.7336C69.7346 52.7336 69.3591 52.8304 69.0951 53.027Z\" fill=\"#526E6E\"/>\\n<path d=\"M74.9325 55.3823H74.1552V50.1551H74.9325V51.5191C75.0263 51.3021 75.1437 51.1055 75.2874 50.9237C75.4282 50.7418 75.5895 50.5834 75.7714 50.4543C75.9533 50.3253 76.1527 50.2226 76.3669 50.1551C76.581 50.0877 76.8157 50.0583 77.065 50.0642V50.9031H77.0034C76.7189 50.9031 76.4519 50.953 76.1997 51.0557C75.9474 51.1583 75.7274 51.3079 75.5367 51.5103C75.349 51.7127 75.1994 51.965 75.0909 52.2642C74.9823 52.5634 74.9296 52.9095 74.9296 53.2997V55.3823H74.9325Z\" fill=\"#526E6E\"/>\\n<path d=\"M78.2676 49.0112V48.1517H79.1564V49.0112H78.2676ZM78.3174 55.3824V50.1552H79.0948V55.3824H78.3174Z\" fill=\"#526E6E\"/>\\n<path d=\"M81.9607 53.8952C81.9607 54.2178 82.0429 54.4437 82.2042 54.5728C82.3655 54.7018 82.5797 54.7664 82.8407 54.7664C82.9757 54.7664 83.1018 54.7517 83.2191 54.7253C83.3365 54.6989 83.4626 54.652 83.5975 54.5845V55.2533C83.4626 55.3266 83.3189 55.3824 83.1663 55.4205C83.0138 55.4586 82.8437 55.4762 82.6559 55.4762C82.4477 55.4762 82.2511 55.4498 82.0693 55.3941C81.8874 55.3384 81.729 55.2533 81.5999 55.136C81.4679 55.0186 81.3653 54.8632 81.2919 54.6754C81.2186 54.4877 81.1805 54.2618 81.1805 53.9978V50.8416H80.453V50.1552H81.1805V48.577H81.9578V50.1552H83.6151V50.8416H81.9578V53.8952H81.9607Z\" fill=\"#526E6E\"/>\\n<path d=\"M87.5429 55.5554C87.32 56.0951 87.0736 56.4765 86.8008 56.6994C86.528 56.9223 86.1965 57.0338 85.8034 57.0338C85.5864 57.0338 85.3928 57.0133 85.2168 56.9693C85.0408 56.9253 84.8648 56.8607 84.6917 56.7727L84.9557 56.1567C85.0848 56.2242 85.2109 56.2741 85.3341 56.3034C85.4573 56.3327 85.604 56.3503 85.7741 56.3503C86.0088 56.3503 86.2082 56.2799 86.3696 56.1391C86.5309 55.9983 86.6893 55.7402 86.8448 55.3706L84.4688 50.1639H85.3282L87.229 54.5229L88.9069 50.1639H89.737L87.5429 55.5642V55.5554Z\" fill=\"#526E6E\"/>\\n<path d=\"M115.981 40.4401V43.4057H107.44V0.969116H115.981V22.3238C117.645 20.2998 119.713 18.5486 123.353 18.5486C129.152 18.5486 134.142 23.3592 134.142 31.1355V31.2265C134.142 39.1377 129.152 43.9483 123.397 43.9483C119.71 43.9483 117.554 42.2851 115.979 40.443L115.981 40.4401ZM125.735 31.2705V31.1795C125.735 27.9881 123.532 25.6942 120.745 25.6942C117.959 25.6942 115.8 27.9881 115.8 31.1795V31.2705C115.8 34.5059 118.003 36.7998 120.745 36.7998C123.488 36.7998 125.735 34.5529 125.735 31.2705Z\" fill=\"#526E6E\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_2037_332\">\\n<rect width=\"176\" height=\"56.0619\" fill=\"white\" transform=\"translate(0.540161 0.969116)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-7iyrpc\",\"data-framer-name\":\"logo tutecho\",layoutDependency:layoutDependency,layoutId:\"xeNJ52C87\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"R0Y7SUJNIFBsZXggU2Fucy02MDA=\",\"--framer-font-family\":'\"IBM Plex Sans\", \"IBM Plex Sans Placeholder\", sans-serif',\"--framer-font-size\":\"44px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(82, 110, 110))\"},children:[/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"R0Y7SUJNIFBsZXggU2Fucy1pdGFsaWM=\",\"--framer-font-style\":\"italic\",\"--framer-font-weight\":\"400\"},children:\"tu\"}),\"TECH\\xd4\"]})}),className:\"framer-tk3hqq\",\"data-framer-name\":\"tuTECH\\xd4\",fonts:[\"GF;IBM Plex Sans-600\",\"GF;IBM Plex Sans-italic\"],layoutDependency:layoutDependency,layoutId:\"iYnAdwIKf\",style:{\"--extracted-r6o4lv\":\"rgb(82, 110, 110)\",\"--framer-paragraph-spacing\":\"0px\"},transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-pdrvc9\",\"data-framer-name\":\"logo capsa\",layoutDependency:layoutDependency,layoutId:\"mu9ZfQyKm\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-fos0b6\",\"data-framer-name\":\"Group 2\",layoutDependency:layoutDependency,layoutId:\"fVr5ePY80\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RUIgR2FyYW1vbmQtNjAw\",\"--framer-font-family\":'\"EB Garamond\", \"EB Garamond Placeholder\", serif',\"--framer-font-size\":\"55px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(82, 110, 110))\"},children:\"CAPSA FOOD\"})}),className:\"framer-1o66t45\",\"data-framer-name\":\"CAPSA FOOD\",fonts:[\"GF;EB Garamond-600\"],layoutDependency:layoutDependency,layoutId:\"g7O_8Kwxv\",style:{\"--extracted-r6o4lv\":\"rgb(82, 110, 110)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-bcbydw\",\"data-framer-name\":\"Group 1\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:70,intrinsicWidth:101,layoutDependency:layoutDependency,layoutId:\"kgrpimlQO\",svg:'<svg width=\"101\" height=\"70\" viewBox=\"0 0 101 70\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M50.5 18.8L72.5836 57.05H28.4164L50.5 18.8Z\" fill=\"#526E6E\"/>\\n<path d=\"M56 20L78 57H101L68 0L56 20Z\" fill=\"#526E6E\"/>\\n<path d=\"M45 20L23 57H0L33 0L45 20Z\" fill=\"#526E6E\"/>\\n</svg>\\n',withExternalLayout:true})]})})],speed:40,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-NeGGv.framer-17g2o1i, .framer-NeGGv .framer-17g2o1i { display: block; }\",\".framer-NeGGv.framer-1btikmp { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1440px; }\",\".framer-NeGGv .framer-1endt71-container, .framer-NeGGv .framer-1d0lakj-container { flex: none; height: 144px; position: relative; width: 1136px; }\",\".framer-NeGGv .framer-10j2p7f { height: 80px; overflow: hidden; position: relative; width: 135px; }\",\".framer-NeGGv .framer-ksmcnf, .framer-NeGGv .framer-1jxr782, .framer-NeGGv .framer-1fu1lzp, .framer-NeGGv .framer-b425qj, .framer-NeGGv .framer-tejw9, .framer-NeGGv .framer-1vu7dek, .framer-NeGGv .framer-p8dune, .framer-NeGGv .framer-9g5eej, .framer-NeGGv .framer-116rogq { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-NeGGv .framer-1rq85v3, .framer-NeGGv .framer-1jwv29d { height: 52px; overflow: hidden; position: relative; width: 176px; }\",\".framer-NeGGv .framer-6lm68k, .framer-NeGGv .framer-iz8r3c { height: 30px; overflow: hidden; position: relative; width: 176px; }\",\".framer-NeGGv .framer-1qlshm9, .framer-NeGGv .framer-1tc6qtx { height: 80px; overflow: hidden; position: relative; width: 116px; }\",\".framer-NeGGv .framer-17m2iyw, .framer-NeGGv .framer-1mq2lzr { height: 58px; overflow: hidden; position: relative; width: 177px; }\",\".framer-NeGGv .framer-1qyy1hm, .framer-NeGGv .framer-7iyrpc { height: 63px; overflow: hidden; position: relative; width: 215px; }\",\".framer-NeGGv .framer-1dr4c7i, .framer-NeGGv .framer-tk3hqq { flex: none; height: auto; left: 50%; position: absolute; top: 49%; white-space: pre; width: auto; }\",\".framer-NeGGv .framer-rpg3xr, .framer-NeGGv .framer-pdrvc9 { height: 73px; overflow: hidden; position: relative; width: 461px; }\",\".framer-NeGGv .framer-csfhml, .framer-NeGGv .framer-fos0b6 { bottom: 0px; flex: none; left: 0px; overflow: visible; position: absolute; right: 0px; top: 0px; }\",\".framer-NeGGv .framer-buq1kz, .framer-NeGGv .framer-1o66t45 { flex: none; height: auto; left: 108px; position: absolute; top: 1px; white-space: pre; width: auto; }\",\".framer-NeGGv .framer-1n87ib9, .framer-NeGGv .framer-bcbydw { flex: none; height: 70px; left: 0px; position: absolute; top: 0px; width: 101px; }\",\".framer-NeGGv .framer-14n8e98 { height: 80px; overflow: hidden; position: relative; width: 133px; }\",\".framer-NeGGv .framer-sgegq4 { flex: none; height: 52px; left: 0px; position: absolute; top: 0px; width: 176px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-NeGGv.framer-1btikmp { gap: 0px; } .framer-NeGGv.framer-1btikmp > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-NeGGv.framer-1btikmp > :first-child { margin-left: 0px; } .framer-NeGGv.framer-1btikmp > :last-child { margin-right: 0px; } }\",\".framer-NeGGv.framer-v-128xxfd .framer-1endt71-container { order: 0; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 144\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"zTF5EjgUC\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerRrv0UJsgB=withCSS(Component,css,\"framer-NeGGv\");export default FramerRrv0UJsgB;FramerRrv0UJsgB.displayName=\"Logo carousel\";FramerRrv0UJsgB.defaultProps={height:144,width:1440};addPropertyControls(FramerRrv0UJsgB,{variant:{options:[\"YCGX10UiM\",\"zTF5EjgUC\"],optionTitles:[\"Variant 1\",\"Variant 2\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerRrv0UJsgB,[{explicitInter:true,fonts:[{family:\"IBM Plex Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/ibmplexsans/v21/zYXGKVElMYYaJe8bpLHnCwDKr932-G7dytD-Dmu1swZSAXcomDVmadSDNF5zBaI5loa26g.woff2\",weight:\"600\"},{family:\"IBM Plex Sans\",source:\"google\",style:\"italic\",url:\"https://fonts.gstatic.com/s/ibmplexsans/v21/zYXEKVElMYYaJe8bpLHnCwDKhdTEG46kmUZQCX598fQbM4jw8V78x9OWIhqbQ6g4tIOm6vje.woff2\",weight:\"400\"},{family:\"EB Garamond\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/ebgaramond/v30/SlGDmQSNjdsmc35JDF1K5E55YMjF_7DPuGi-NfNUBoV-e6yHgQ.woff2\",weight:\"600\"}]},...TickerFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerRrv0UJsgB\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"144\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"zTF5EjgUC\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"1440\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Rrv0UJsgB.map"],
  "mappings": "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",
  "names": ["noopReturn", "e", "velocityPerSecond", "calcBezier", "n", "e", "i", "binarySubdivide", "o", "r", "c", "u", "a", "s", "cubicBezier", "noopReturn", "getTForX", "t", "o", "cubicBezier", "__rest", "e", "t", "r", "o", "n", "e", "t", "r", "s", "calcGeneratorVelocity", "n", "r", "a", "velocityPerSecond", "calcDampingRatio", "e", "t", "hasReachedTarget", "spring", "o", "c", "i", "h", "u", "d", "f", "g", "glide", "isOutOfBounds", "nearestBoundary", "l", "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", "__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", "Z", "childrenStyles", "initialResize", "ue", "frame", "resize", "contentSize", "child", "index", "ref", "p", "LayoutGroup", "q", "isInView", "useInView", "i", "childIndex", "animateToValue", "initialTime", "prevTime", "xOrY", "isHover", "isReducedMotion", "useReducedMotion", "listRef", "animationRef", "playOrPause", "hidden", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "containerStyle", "u", "motion", "isValidNumber", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "addPropertyControls", "ControlType", "num", "min", "max", "value", "TickerFonts", "getFonts", "Ticker", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transformTemplate1", "_", "t", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "ref1", "pe", "isDisplayed", "isDisplayed1", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "ComponentViewportProvider", "SVG", "RichText2", "css", "FramerRrv0UJsgB", "withCSS", "Rrv0UJsgB_default", "addPropertyControls", "ControlType", "addFonts"]
}
