{
  "version": 3,
  "sources": ["ssg:https://ga.jspm.io/npm:@motionone/utils@10.14.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:@motionone/easing@10.12.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:@motionone/animation@10.12.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:tslib@2.4.0/tslib.es6.js", "ssg:https://ga.jspm.io/npm:hey-listen@1.0.8/dist/index.js", "ssg:https://ga.jspm.io/npm:@motionone/generators@10.12.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:@motionone/dom@10.13.1/dist/index.es.js", "ssg:https://framerusercontent.com/modules/UIrMjSS6ZX89L0CsT8k6/ZtFjxnixyznUo5AKQme5/Carousel.js", "ssg:https://framerusercontent.com/modules/zJLaOvqPadudU4tA6P1b/KWxqa0gBBrPrbu75LULk/vXpvZjRde.js"],
  "sourcesContent": ["function addUniqueItem(t,e){-1===t.indexOf(e)&&t.push(e)}function removeItem(t,e){const n=t.indexOf(e);n>-1&&t.splice(n,1)}const clamp=(t,e,n)=>Math.min(Math.max(n,t),e);const t={duration:.3,delay:0,endDelay:0,repeat:0,easing:\"ease\"};const isNumber=t=>\"number\"===typeof t;const isEasingList=t=>Array.isArray(t)&&!isNumber(t[0]);const wrap=(t,e,n)=>{const o=e-t;return((n-t)%o+o)%o+t};function getEasingForSegment(t,e){return isEasingList(t)?t[wrap(0,t.length,e)]:t}const mix=(t,e,n)=>-n*t+n*e+t;const noop=()=>{};const noopReturn=t=>t;const progress=(t,e,n)=>e-t===0?1:(n-t)/(e-t);function fillOffset(t,e){const n=t[t.length-1];for(let o=1;o<=e;o++){const s=progress(0,e,o);t.push(mix(n,1,s))}}function defaultOffset(t){const e=[0];fillOffset(e,t-1);return e}function interpolate(t,e=defaultOffset(t.length),n=noopReturn){const o=t.length;const s=o-e.length;s>0&&fillOffset(e,s);return s=>{let f=0;for(;f<o-2;f++)if(s<e[f+1])break;let r=clamp(0,1,progress(e[f],e[f+1],s));const c=getEasingForSegment(n,f);r=c(r);return mix(t[f],t[f+1],r)}}const isCubicBezier=t=>Array.isArray(t)&&isNumber(t[0]);const isEasingGenerator=t=>\"object\"===typeof t&&Boolean(t.createAnimation);const isFunction=t=>\"function\"===typeof t;const isString=t=>\"string\"===typeof t;const e={ms:t=>1e3*t,s:t=>t/1e3};\n/*\n  Convert velocity into velocity per second\n\n  @param [number]: Unit per frame\n  @param [number]: Frame duration in ms\n*/function velocityPerSecond(t,e){return e?t*(1e3/e):0}export{addUniqueItem,clamp,defaultOffset,t as defaults,fillOffset,getEasingForSegment,interpolate,isCubicBezier,isEasingGenerator,isEasingList,isFunction,isNumber,isString,mix,noop,noopReturn,progress,removeItem,e as time,velocityPerSecond,wrap};\n\n//# sourceMappingURL=index.es.js.map", "import{noopReturn as t,clamp as n}from\"@motionone/utils\";const calcBezier=(t,n,e)=>(((1-3*e+3*n)*t+(3*e-6*n))*t+3*n)*t;const e=1e-7;const i=12;function binarySubdivide(t,n,o,r,c){let u;let a;let s=0;do{a=n+(o-n)/2;u=calcBezier(a,r,c)-t;u>0?o=a:n=a}while(Math.abs(u)>e&&++s<i);return a}function cubicBezier(n,e,i,o){if(n===e&&i===o)return t;const getTForX=t=>binarySubdivide(t,0,1,n,i);return t=>0===t||1===t?t:calcBezier(getTForX(t),e,o)}const steps=(t,e=\"end\")=>i=>{i=\"end\"===e?Math.min(i,.999):Math.max(i,.001);const o=i*t;const r=\"end\"===e?Math.floor(o):Math.ceil(o);return n(0,1,r/t)};export{cubicBezier,steps};\n\n//# sourceMappingURL=index.es.js.map", "import{noopReturn as t,defaults as i,isEasingGenerator as e,isEasingList as s,interpolate as a}from\"@motionone/utils\";import{cubicBezier as n,steps as r}from\"@motionone/easing\";const o={ease:n(.25,.1,.25,1),\"ease-in\":n(.42,0,1,1),\"ease-in-out\":n(.42,0,.58,1),\"ease-out\":n(0,0,.58,1)};const h=/\\((.*?)\\)/;function getEasingFunction(i){if(\"function\"===typeof i)return i;if(Array.isArray(i))return n(...i);if(o[i])return o[i];if(i.startsWith(\"steps\")){const t=h.exec(i);if(t){const i=t[1].split(\",\");return r(parseFloat(i[0]),i[1].trim())}}return t}class Animation{constructor(n,r=[0,1],{easing:o,duration:h=i.duration,delay:u=i.delay,endDelay:l=i.endDelay,repeat:m=i.repeat,offset:c,direction:p=\"normal\"}={}){this.startTime=null;this.rate=1;this.t=0;this.cancelTimestamp=null;this.easing=t;this.duration=0;this.totalDuration=0;this.repeat=0;this.playState=\"idle\";this.finished=new Promise(((t,i)=>{this.resolve=t;this.reject=i}));o=o||i.easing;if(e(o)){const t=o.createAnimation(r,(()=>\"0\"),true);o=t.easing;void 0!==t.keyframes&&(r=t.keyframes);void 0!==t.duration&&(h=t.duration)}this.repeat=m;this.easing=s(o)?t:getEasingFunction(o);this.updateDuration(h);const d=a(r,c,s(o)?o.map(getEasingFunction):t);this.tick=t=>{var i;u=u;let e=0;e=void 0!==this.pauseTime?this.pauseTime:(t-this.startTime)*this.rate;this.t=e;e/=1e3;e=Math.max(e-u,0);\"finished\"===this.playState&&void 0===this.pauseTime&&(e=this.totalDuration);const s=e/this.duration;let a=Math.floor(s);let r=s%1;!r&&s>=1&&(r=1);1===r&&a--;const o=a%2;(\"reverse\"===p||\"alternate\"===p&&o||\"alternate-reverse\"===p&&!o)&&(r=1-r);const h=e>=this.totalDuration?1:Math.min(r,1);const m=d(this.easing(h));n(m);const c=void 0===this.pauseTime&&(\"finished\"===this.playState||e>=this.totalDuration+l);if(c){this.playState=\"finished\";null===(i=this.resolve)||void 0===i?void 0:i.call(this,m)}else\"idle\"!==this.playState&&(this.frameRequestId=requestAnimationFrame(this.tick))};this.play()}play(){const t=performance.now();this.playState=\"running\";void 0!==this.pauseTime?this.startTime=t-this.pauseTime:this.startTime||(this.startTime=t);this.cancelTimestamp=this.startTime;this.pauseTime=void 0;this.frameRequestId=requestAnimationFrame(this.tick)}pause(){this.playState=\"paused\";this.pauseTime=this.t}finish(){this.playState=\"finished\";this.tick(0)}stop(){var t;this.playState=\"idle\";void 0!==this.frameRequestId&&cancelAnimationFrame(this.frameRequestId);null===(t=this.reject)||void 0===t?void 0:t.call(this,false)}cancel(){this.stop();this.tick(this.cancelTimestamp)}reverse(){this.rate*=-1}commitStyles(){}updateDuration(t){this.duration=t;this.totalDuration=t*(this.repeat+1)}get currentTime(){return this.t}set currentTime(t){void 0!==this.pauseTime||0===this.rate?this.pauseTime=t:this.startTime=performance.now()-t/this.rate}get playbackRate(){return this.rate}set playbackRate(t){this.rate=t}}export{Animation,getEasingFunction};\n\n//# sourceMappingURL=index.es.js.map", "var extendStatics=function(e,t){extendStatics=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var r in t)Object.prototype.hasOwnProperty.call(t,r)&&(e[r]=t[r])};return extendStatics(e,t)};function __extends(e,t){if(\"function\"!==typeof t&&null!==t)throw new TypeError(\"Class extends value \"+String(t)+\" is not a constructor or null\");extendStatics(e,t);function __(){this.constructor=e}e.prototype=null===t?Object.create(t):(__.prototype=t.prototype,new __)}var __assign=function(){__assign=Object.assign||function __assign(e){for(var t,r=1,n=arguments.length;r<n;r++){t=arguments[r];for(var o in t)Object.prototype.hasOwnProperty.call(t,o)&&(e[o]=t[o])}return e};return __assign.apply(this,arguments)};function __rest(e,t){var r={};for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&t.indexOf(n)<0&&(r[n]=e[n]);if(null!=e&&\"function\"===typeof Object.getOwnPropertySymbols){var o=0;for(n=Object.getOwnPropertySymbols(e);o<n.length;o++)t.indexOf(n[o])<0&&Object.prototype.propertyIsEnumerable.call(e,n[o])&&(r[n[o]]=e[n[o]])}return r}function __decorate(e,t,r,n){var o,a=arguments.length,i=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if(\"object\"===typeof Reflect&&\"function\"===typeof Reflect.decorate)i=Reflect.decorate(e,t,r,n);else for(var c=e.length-1;c>=0;c--)(o=e[c])&&(i=(a<3?o(i):a>3?o(t,r,i):o(t,r))||i);return a>3&&i&&Object.defineProperty(t,r,i),i}function __param(e,t){return function(r,n){t(r,n,e)}}function __metadata(e,t){if(\"object\"===typeof Reflect&&\"function\"===typeof Reflect.metadata)return Reflect.metadata(e,t)}function __awaiter(e,t,r,n){function adopt(e){return e instanceof r?e:new r((function(t){t(e)}))}return new(r||(r=Promise))((function(r,o){function fulfilled(e){try{step(n.next(e))}catch(e){o(e)}}function rejected(e){try{step(n.throw(e))}catch(e){o(e)}}function step(e){e.done?r(e.value):adopt(e.value).then(fulfilled,rejected)}step((n=n.apply(e,t||[])).next())}))}function __generator(e,t){var r,n,o,a,i={label:0,sent:function(){if(1&o[0])throw o[1];return o[1]},trys:[],ops:[]};return a={next:verb(0),throw:verb(1),return:verb(2)},\"function\"===typeof Symbol&&(a[Symbol.iterator]=function(){return this}),a;function verb(e){return function(t){return step([e,t])}}function step(a){if(r)throw new TypeError(\"Generator is already executing.\");while(i)try{if(r=1,n&&(o=2&a[0]?n.return:a[0]?n.throw||((o=n.return)&&o.call(n),0):n.next)&&!(o=o.call(n,a[1])).done)return o;(n=0,o)&&(a=[2&a[0],o.value]);switch(a[0]){case 0:case 1:o=a;break;case 4:i.label++;return{value:a[1],done:false};case 5:i.label++;n=a[1];a=[0];continue;case 7:a=i.ops.pop();i.trys.pop();continue;default:if(!(o=i.trys,o=o.length>0&&o[o.length-1])&&(6===a[0]||2===a[0])){i=0;continue}if(3===a[0]&&(!o||a[1]>o[0]&&a[1]<o[3])){i.label=a[1];break}if(6===a[0]&&i.label<o[1]){i.label=o[1];o=a;break}if(o&&i.label<o[2]){i.label=o[2];i.ops.push(a);break}o[2]&&i.ops.pop();i.trys.pop();continue}a=t.call(e,i)}catch(e){a=[6,e];n=0}finally{r=o=0}if(5&a[0])throw a[1];return{value:a[0]?a[1]:void 0,done:true}}}var e=Object.create?function(e,t,r,n){void 0===n&&(n=r);var o=Object.getOwnPropertyDescriptor(t,r);o&&!(\"get\"in o?!t.__esModule:o.writable||o.configurable)||(o={enumerable:true,get:function(){return t[r]}});Object.defineProperty(e,n,o)}:function(e,t,r,n){void 0===n&&(n=r);e[n]=t[r]};function __exportStar(t,r){for(var n in t)\"default\"===n||Object.prototype.hasOwnProperty.call(r,n)||e(r,t,n)}function __values(e){var t=\"function\"===typeof Symbol&&Symbol.iterator,r=t&&e[t],n=0;if(r)return r.call(e);if(e&&\"number\"===typeof e.length)return{next:function(){e&&n>=e.length&&(e=void 0);return{value:e&&e[n++],done:!e}}};throw new TypeError(t?\"Object is not iterable.\":\"Symbol.iterator is not defined.\")}function __read(e,t){var r=\"function\"===typeof Symbol&&e[Symbol.iterator];if(!r)return e;var n,o,a=r.call(e),i=[];try{while((void 0===t||t-- >0)&&!(n=a.next()).done)i.push(n.value)}catch(e){o={error:e}}finally{try{n&&!n.done&&(r=a.return)&&r.call(a)}finally{if(o)throw o.error}}return i}\n/** @deprecated */function __spread(){for(var e=[],t=0;t<arguments.length;t++)e=e.concat(__read(arguments[t]));return e}\n/** @deprecated */function __spreadArrays(){for(var e=0,t=0,r=arguments.length;t<r;t++)e+=arguments[t].length;var n=Array(e),o=0;for(t=0;t<r;t++)for(var a=arguments[t],i=0,c=a.length;i<c;i++,o++)n[o]=a[i];return n}function __spreadArray(e,t,r){if(r||2===arguments.length)for(var n,o=0,a=t.length;o<a;o++)if(n||!(o in t)){n||(n=Array.prototype.slice.call(t,0,o));n[o]=t[o]}return e.concat(n||Array.prototype.slice.call(t))}function __await(e){return this instanceof __await?(this.v=e,this):new __await(e)}function __asyncGenerator(e,t,r){if(!Symbol.asyncIterator)throw new TypeError(\"Symbol.asyncIterator is not defined.\");var n,o=r.apply(e,t||[]),a=[];return n={},verb(\"next\"),verb(\"throw\"),verb(\"return\"),n[Symbol.asyncIterator]=function(){return this},n;function verb(e){o[e]&&(n[e]=function(t){return new Promise((function(r,n){a.push([e,t,r,n])>1||resume(e,t)}))})}function resume(e,t){try{step(o[e](t))}catch(e){settle(a[0][3],e)}}function step(e){e.value instanceof __await?Promise.resolve(e.value.v).then(fulfill,reject):settle(a[0][2],e)}function fulfill(e){resume(\"next\",e)}function reject(e){resume(\"throw\",e)}function settle(e,t){(e(t),a.shift(),a.length)&&resume(a[0][0],a[0][1])}}function __asyncDelegator(e){var t,r;return t={},verb(\"next\"),verb(\"throw\",(function(e){throw e})),verb(\"return\"),t[Symbol.iterator]=function(){return this},t;function verb(n,o){t[n]=e[n]?function(t){return(r=!r)?{value:__await(e[n](t)),done:\"return\"===n}:o?o(t):t}:o}}function __asyncValues(e){if(!Symbol.asyncIterator)throw new TypeError(\"Symbol.asyncIterator is not defined.\");var t,r=e[Symbol.asyncIterator];return r?r.call(e):(e=\"function\"===typeof __values?__values(e):e[Symbol.iterator](),t={},verb(\"next\"),verb(\"throw\"),verb(\"return\"),t[Symbol.asyncIterator]=function(){return this},t);function verb(r){t[r]=e[r]&&function(t){return new Promise((function(n,o){t=e[r](t),settle(n,o,t.done,t.value)}))}}function settle(e,t,r,n){Promise.resolve(n).then((function(t){e({value:t,done:r})}),t)}}function __makeTemplateObject(e,t){Object.defineProperty?Object.defineProperty(e,\"raw\",{value:t}):e.raw=t;return e}var t=Object.create?function(e,t){Object.defineProperty(e,\"default\",{enumerable:true,value:t})}:function(e,t){e.default=t};function __importStar(r){if(r&&r.__esModule)return r;var n={};if(null!=r)for(var o in r)\"default\"!==o&&Object.prototype.hasOwnProperty.call(r,o)&&e(n,r,o);t(n,r);return n}function __importDefault(e){return e&&e.__esModule?e:{default:e}}function __classPrivateFieldGet(e,t,r,n){if(\"a\"===r&&!n)throw new TypeError(\"Private accessor was defined without a getter\");if(\"function\"===typeof t?e!==t||!n:!t.has(e))throw new TypeError(\"Cannot read private member from an object whose class did not declare it\");return\"m\"===r?n:\"a\"===r?n.call(e):n?n.value:t.get(e)}function __classPrivateFieldSet(e,t,r,n,o){if(\"m\"===n)throw new TypeError(\"Private method is not writable\");if(\"a\"===n&&!o)throw new TypeError(\"Private accessor was defined without a setter\");if(\"function\"===typeof t?e!==t||!o:!t.has(e))throw new TypeError(\"Cannot write private member to an object whose class did not declare it\");return\"a\"===n?o.call(e,r):o?o.value=r:t.set(e,r),r}function __classPrivateFieldIn(e,t){if(null===t||\"object\"!==typeof t&&\"function\"!==typeof t)throw new TypeError(\"Cannot use 'in' operator on non-object\");return\"function\"===typeof e?t===e:e.has(t)}export{__assign,__asyncDelegator,__asyncGenerator,__asyncValues,__await,__awaiter,__classPrivateFieldGet,__classPrivateFieldIn,__classPrivateFieldSet,e as __createBinding,__decorate,__exportStar,__extends,__generator,__importDefault,__importStar,__makeTemplateObject,__metadata,__param,__read,__rest,__spread,__spreadArray,__spreadArrays,__values};\n\n//# sourceMappingURL=tslib.es6.js.map", "var n={};Object.defineProperty(n,\"__esModule\",{value:true});n.warning=function(){};n.invariant=function(){};const e=n.__esModule,t=n.warning,r=n.invariant;export default n;export{e as __esModule,r as invariant,t as warning};\n\n//# sourceMappingURL=index.js.map", "import{velocityPerSecond as e,time as t}from\"@motionone/utils\";const s=5;function calcGeneratorVelocity(t,n,r){const a=Math.max(n-s,0);return e(r-t(a),n-a)}const n={stiffness:100,damping:10,mass:1};const calcDampingRatio=(e=n.stiffness,t=n.damping,s=n.mass)=>t/(2*Math.sqrt(e*s));function hasReachedTarget(e,t,s){return e<t&&s>=t||e>t&&s<=t}const spring=({stiffness:e=n.stiffness,damping:s=n.damping,mass:r=n.mass,from:a=0,to:o=1,velocity:c=0,restSpeed:i=2,restDistance:h=.5}={})=>{c=c?t.s(c):0;const u={done:false,hasReachedTarget:false,current:a,target:o};const d=o-a;const f=Math.sqrt(e/r)/1e3;const l=calcDampingRatio(e,s,r);let g;if(l<1){const e=f*Math.sqrt(1-l*l);g=t=>o-Math.exp(-l*f*t)*((l*f*d-c)/e*Math.sin(e*t)+d*Math.cos(e*t))}else g=e=>o-Math.exp(-f*e)*(d+(f*d-c)*e);return e=>{u.current=g(e);const t=0===e?c:calcGeneratorVelocity(g,e,u.current);const s=Math.abs(t)<=i;const n=Math.abs(o-u.current)<=h;u.done=s&&n;u.hasReachedTarget=hasReachedTarget(a,o,u.current);return u}};const glide=({from:e=0,velocity:s=0,power:n=.8,decay:r=.325,bounceDamping:a,bounceStiffness:o,changeTarget:c,min:i,max:h,restDistance:u=.5,restSpeed:d})=>{r=t.ms(r);const f={hasReachedTarget:false,done:false,current:e,target:e};const isOutOfBounds=e=>void 0!==i&&e<i||void 0!==h&&e>h;const nearestBoundary=e=>void 0===i?h:void 0===h||Math.abs(i-e)<Math.abs(h-e)?i:h;let l=n*s;const g=e+l;const m=void 0===c?g:c(g);f.target=m;m!==g&&(l=m-e);const calcDelta=e=>-l*Math.exp(-e/r);const calcLatest=e=>m+calcDelta(e);const applyFriction=e=>{const t=calcDelta(e);const s=calcLatest(e);f.done=Math.abs(t)<=u;f.current=f.done?m:s};let p;let M;const checkCatchBoundary=e=>{if(isOutOfBounds(f.current)){p=e;M=spring({from:f.current,to:nearestBoundary(f.current),velocity:calcGeneratorVelocity(calcLatest,e,f.current),damping:a,stiffness:o,restDistance:u,restSpeed:d})}};checkCatchBoundary(0);return e=>{let t=false;if(!M&&void 0===p){t=true;applyFriction(e);checkCatchBoundary(e)}if(void 0!==p&&e>p){f.hasReachedTarget=true;return M(e-p)}f.hasReachedTarget=false;!t&&applyFriction(e);return f}};const r=10;const a=1e4;function pregenerateKeyframes(e){let t;let s=r;let n=e(0);const o=[n.current];while(!n.done&&s<a){n=e(s);o.push(n.done?n.target:n.current);void 0===t&&n.hasReachedTarget&&(t=s);s+=r}const c=s-r;1===o.length&&o.push(n.current);return{keyframes:o,duration:c/1e3,overshootDuration:(null!==t&&void 0!==t?t:c)/1e3}}export{calcGeneratorVelocity,glide,pregenerateKeyframes,spring};\n\n//# sourceMappingURL=index.es.js.map", "import{MotionValue as e}from\"@motionone/types\";import{noopReturn as t,addUniqueItem as n,progress as o,isFunction as i,defaults as s,isCubicBezier as r,isEasingGenerator as a,isEasingList as c,isNumber as l,time as f,noop as u,removeItem as d,mix as g,getEasingForSegment as m,isString as h,defaultOffset as p,fillOffset as v,velocityPerSecond as y,interpolate as w}from\"@motionone/utils\";import{Animation as E,getEasingFunction as b}from\"@motionone/animation\";import{__rest as S}from\"tslib\";import{invariant as A}from\"hey-listen\";import{pregenerateKeyframes as O,calcGeneratorVelocity as x,spring as V,glide as z}from\"@motionone/generators\";const W=new WeakMap;function getAnimationData(e){W.has(e)||W.set(e,{transforms:[],values:new Map});return W.get(e)}function getMotionValue(t,n){t.has(n)||t.set(n,new e);return t.get(n)}const L=[\"\",\"X\",\"Y\",\"Z\"];const T=[\"translate\",\"scale\",\"rotate\",\"skew\"];const D={x:\"translateX\",y:\"translateY\",z:\"translateZ\"};const M={syntax:\"<angle>\",initialValue:\"0deg\",toDefaultUnit:e=>e+\"deg\"};const k={translate:{syntax:\"<length-percentage>\",initialValue:\"0px\",toDefaultUnit:e=>e+\"px\"},rotate:M,scale:{syntax:\"<number>\",initialValue:1,toDefaultUnit:t},skew:M};const B=new Map;const asTransformCssVar=e=>`--motion-${e}`;const j=[\"x\",\"y\",\"z\"];T.forEach((e=>{L.forEach((t=>{j.push(e+t);B.set(asTransformCssVar(e+t),k[e])}))}));const compareTransformOrder=(e,t)=>j.indexOf(e)-j.indexOf(t);const P=new Set(j);const isTransform=e=>P.has(e);const addTransformToElement=(e,t)=>{D[t]&&(t=D[t]);const{transforms:o}=getAnimationData(e);n(o,t);e.style.transform=buildTransformTemplate(o)};const buildTransformTemplate=e=>e.sort(compareTransformOrder).reduce(transformListToString,\"\").trim();const transformListToString=(e,t)=>`${e} ${t}(var(${asTransformCssVar(t)}))`;const isCssVar=e=>e.startsWith(\"--\");const $=new Set;function registerCssVariable(e){if(!$.has(e)){$.add(e);try{const{syntax:t,initialValue:n}=B.has(e)?B.get(e):{};CSS.registerProperty({name:e,inherits:false,syntax:t,initialValue:n})}catch(e){}}}const testAnimation=(e,t)=>document.createElement(\"div\").animate(e,t);const C={cssRegisterProperty:()=>\"undefined\"!==typeof CSS&&Object.hasOwnProperty.call(CSS,\"registerProperty\"),waapi:()=>Object.hasOwnProperty.call(Element.prototype,\"animate\"),partialKeyframes:()=>{try{testAnimation({opacity:[1]})}catch(e){return false}return true},finished:()=>Boolean(testAnimation({opacity:[0,1]},{duration:.001}).finished),linearEasing:()=>{try{testAnimation({opacity:0},{easing:\"linear(0, 1)\"})}catch(e){return false}return true}};const R={};const H={};for(const e in C)H[e]=()=>{void 0===R[e]&&(R[e]=C[e]());return R[e]};const I=.015;const generateLinearEasingPoints=(e,t)=>{let n=\"\";const i=Math.round(t/I);for(let t=0;t<i;t++)n+=e(o(0,i-1,t))+\", \";return n.substring(0,n.length-2)};const convertEasing=(e,t)=>i(e)?H.linearEasing()?`linear(${generateLinearEasingPoints(e,t)})`:s.easing:r(e)?cubicBezierAsString(e):e;const cubicBezierAsString=([e,t,n,o])=>`cubic-bezier(${e}, ${t}, ${n}, ${o})`;function hydrateKeyframes(e,t){for(let n=0;n<e.length;n++)null===e[n]&&(e[n]=n?e[n-1]:t());return e}const keyframesList=e=>Array.isArray(e)?e:[e];function getStyleName(e){D[e]&&(e=D[e]);return isTransform(e)?asTransformCssVar(e):e}const N={get:(e,t)=>{t=getStyleName(t);let n=isCssVar(t)?e.style.getPropertyValue(t):getComputedStyle(e)[t];if(!n&&0!==n){const e=B.get(t);e&&(n=e.initialValue)}return n},set:(e,t,n)=>{t=getStyleName(t);isCssVar(t)?e.style.setProperty(t,n):e.style[t]=n}};function stopAnimation(e,t=true){if(e&&\"finished\"!==e.playState)try{if(e.stop)e.stop();else{t&&e.commitStyles();e.cancel()}}catch(e){}}function getDevToolsRecord(){return window.__MOTION_DEV_TOOLS_RECORD}function animateStyle(e,t,n,o={}){const r=getDevToolsRecord();const d=false!==o.record&&r;let g;let{duration:m=s.duration,delay:h=s.delay,endDelay:p=s.endDelay,repeat:v=s.repeat,easing:y=s.easing,direction:w,offset:b,allowWebkitAcceleration:S=false}=o;const A=getAnimationData(e);const O=isTransform(t);let x=H.waapi();O&&addTransformToElement(e,t);const V=getStyleName(t);const z=getMotionValue(A.values,V);const W=B.get(V);stopAnimation(z.animation,!(a(y)&&z.generator)&&false!==o.record);return()=>{const readInitialValue=()=>{var t,n;return null!==(n=null!==(t=N.get(e,V))&&void 0!==t?t:null===W||void 0===W?void 0:W.initialValue)&&void 0!==n?n:0};let s=hydrateKeyframes(keyframesList(n),readInitialValue);if(a(y)){const e=y.createAnimation(s,readInitialValue,O,V,z);y=e.easing;void 0!==e.keyframes&&(s=e.keyframes);void 0!==e.duration&&(m=e.duration)}isCssVar(V)&&(H.cssRegisterProperty()?registerCssVariable(V):x=false);O&&!H.linearEasing()&&(i(y)||c(y)&&y.some(i))&&(x=false);if(x){W&&(s=s.map((e=>l(e)?W.toDefaultUnit(e):e)));1!==s.length||H.partialKeyframes()&&!d||s.unshift(readInitialValue());const t={delay:f.ms(h),duration:f.ms(m),endDelay:f.ms(p),easing:c(y)?void 0:convertEasing(y,m),direction:w,iterations:v+1,fill:\"both\"};g=e.animate({[V]:s,offset:b,easing:c(y)?y.map((e=>convertEasing(e,m))):void 0},t);g.finished||(g.finished=new Promise(((e,t)=>{g.onfinish=e;g.oncancel=t})));const n=s[s.length-1];g.finished.then((()=>{N.set(e,V,n);g.cancel()})).catch(u);S||(g.playbackRate=1.000001)}else if(O){s=s.map((e=>\"string\"===typeof e?parseFloat(e):e));1===s.length&&s.unshift(parseFloat(readInitialValue()));const render=t=>{W&&(t=W.toDefaultUnit(t));N.set(e,V,t)};g=new E(render,s,Object.assign(Object.assign({},o),{duration:m,easing:y}))}else{const t=s[s.length-1];N.set(e,V,W&&l(t)?W.toDefaultUnit(t):t)}d&&r(e,t,s,{duration:m,delay:h,easing:y,repeat:v,offset:b},\"motion-one\");z.setAnimation(g);return g}}const getOptions=(e,t)=>e[t]?Object.assign(Object.assign({},e),e[t]):Object.assign({},e);function resolveElements(e,t){var n;if(\"string\"===typeof e)if(t){null!==(n=t[e])&&void 0!==n?n:t[e]=document.querySelectorAll(e);e=t[e]}else e=document.querySelectorAll(e);else e instanceof Element&&(e=[e]);return Array.from(e||[])}const createAnimation=e=>e();const withControls=(e,t,n=s.duration)=>new Proxy({animations:e.map(createAnimation).filter(Boolean),duration:n,options:t},F);const getActiveAnimation=e=>e.animations[0];const F={get:(e,t)=>{const n=getActiveAnimation(e);switch(t){case\"duration\":return e.duration;case\"currentTime\":return f.s((null===n||void 0===n?void 0:n[t])||0);case\"playbackRate\":case\"playState\":return null===n||void 0===n?void 0:n[t];case\"finished\":e.finished||(e.finished=Promise.all(e.animations.map(selectFinished)).catch(u));return e.finished;case\"stop\":return()=>{e.animations.forEach((e=>stopAnimation(e)))};case\"forEachNative\":return t=>{e.animations.forEach((n=>t(n,e)))};default:return\"undefined\"===typeof(null===n||void 0===n?void 0:n[t])?void 0:()=>e.animations.forEach((e=>e[t]()))}},set:(e,t,n)=>{switch(t){case\"currentTime\":n=f.ms(n);case\"currentTime\":case\"playbackRate\":for(let o=0;o<e.animations.length;o++)e.animations[o][t]=n;return true}return false}};const selectFinished=e=>e.finished;function stagger(e=.1,{start:t=0,from:n=0,easing:o}={}){return(i,s)=>{const r=l(n)?n:getFromIndex(n,s);const a=Math.abs(r-i);let c=e*a;if(o){const t=s*e;const n=b(o);c=n(c/t)*t}return t+c}}function getFromIndex(e,t){if(\"first\"===e)return 0;{const n=t-1;return\"last\"===e?n:n/2}}function resolveOption(e,t,n){return i(e)?e(t,n):e}function animate(e,t,n={}){e=resolveElements(e);const o=e.length;const i=[];for(let s=0;s<o;s++){const r=e[s];for(const e in t){const a=getOptions(n,e);a.delay=resolveOption(a.delay,s,o);const c=animateStyle(r,e,t[e],a);i.push(c)}}return withControls(i,n,n.duration)}function calcNextTime(e,t,n,o){var i;return l(t)?t:t.startsWith(\"-\")||t.startsWith(\"+\")?Math.max(0,e+parseFloat(t)):\"<\"===t?n:null!==(i=o.get(t))&&void 0!==i?i:e}function eraseKeyframes(e,t,n){for(let o=0;o<e.length;o++){const i=e[o];if(i.at>t&&i.at<n){d(e,i);o--}}}function addKeyframes(e,t,n,o,i,s){eraseKeyframes(e,i,s);for(let r=0;r<t.length;r++)e.push({value:t[r],at:g(i,s,o[r]),easing:m(n,r)})}function compareByTime(e,t){return e.at===t.at?null===e.value?1:-1:e.at-t.at}function timeline(e,t={}){var n;const o=createAnimationsFromTimeline(e,t);const i=o.map((e=>animateStyle(...e))).filter(Boolean);return withControls(i,t,null===(n=o[0])||void 0===n?void 0:n[3].duration)}function createAnimationsFromTimeline(e,t={}){var{defaultOptions:n={}}=t,i=S(t,[\"defaultOptions\"]);const r=[];const c=new Map;const l={};const f=new Map;let u=0;let d=0;let g=0;for(let t=0;t<e.length;t++){const o=e[t];if(h(o)){f.set(o,d);continue}if(!Array.isArray(o)){f.set(o.name,calcNextTime(d,o.at,u,f));continue}const[i,r,m={}]=o;void 0!==m.at&&(d=calcNextTime(d,m.at,u,f));let y=0;const w=resolveElements(i,l);const E=w.length;for(let e=0;e<E;e++){const t=w[e];const o=getElementSequence(t,c);for(const t in r){const i=getValueSequence(t,o);let c=keyframesList(r[t]);const l=getOptions(m,t);let{duration:f=n.duration||s.duration,easing:u=n.easing||s.easing}=l;if(a(u)){const e=isTransform(t);A(2===c.length||!e,\"spring must be provided 2 keyframes within timeline\");const n=u.createAnimation(c,(()=>\"0\"),e);u=n.easing;void 0!==n.keyframes&&(c=n.keyframes);void 0!==n.duration&&(f=n.duration)}const h=resolveOption(m.delay,e,E)||0;const w=d+h;const b=w+f;let{offset:S=p(c.length)}=l;1===S.length&&0===S[0]&&(S[1]=1);const O=length-c.length;O>0&&v(S,O);1===c.length&&c.unshift(null);addKeyframes(i,c,u,S,w,b);y=Math.max(h+f,y);g=Math.max(b,g)}}u=d;d+=y}c.forEach(((e,t)=>{for(const a in e){const c=e[a];c.sort(compareByTime);const l=[];const f=[];const u=[];for(let e=0;e<c.length;e++){const{at:t,value:n,easing:i}=c[e];l.push(n);f.push(o(0,g,t));u.push(i||s.easing)}if(0!==f[0]){f.unshift(0);l.unshift(l[0]);u.unshift(\"linear\")}if(1!==f[f.length-1]){f.push(1);l.push(null)}r.push([t,a,l,Object.assign(Object.assign(Object.assign({},n),{duration:g,easing:u,offset:f}),i)])}}));return r}function getElementSequence(e,t){!t.has(e)&&t.set(e,{});return t.get(e)}function getValueSequence(e,t){t[e]||(t[e]=[]);return t[e]}function createGeneratorEasing(e){const t=new WeakMap;return(n={})=>{const o=new Map;const getGenerator=(t=0,i=100,s=0,r=false)=>{const a=`${t}-${i}-${s}-${r}`;o.has(a)||o.set(a,e(Object.assign({from:t,to:i,velocity:s,restSpeed:r?.05:2,restDistance:r?.01:.5},n)));return o.get(a)};const getKeyframes=e=>{t.has(e)||t.set(e,O(e));return t.get(e)};return{createAnimation:(e,t,n,o,i)=>{var s,r;let a;const c=e.length;let l=n&&c<=2&&e.every(isNumberOrNull);if(l){const n=e[c-1];const l=1===c?null:e[0];let f=0;let u=0;const d=null===i||void 0===i?void 0:i.generator;if(d){const{animation:t,generatorStartTime:n}=i;const o=(null===t||void 0===t?void 0:t.startTime)||n||0;const r=(null===t||void 0===t?void 0:t.currentTime)||performance.now()-o;const a=d(r).current;u=null!==(s=l)&&void 0!==s?s:a;(1===c||2===c&&null===e[0])&&(f=x((e=>d(e).current),r,a))}else u=null!==(r=l)&&void 0!==r?r:parseFloat(t());const g=getGenerator(u,n,f,null===o||void 0===o?void 0:o.includes(\"scale\"));const m=getKeyframes(g);a=Object.assign(Object.assign({},m),{easing:\"linear\"});if(i){i.generator=g;i.generatorStartTime=performance.now()}}else{const e=getKeyframes(getGenerator(0,100));a={easing:\"ease\",duration:e.overshootDuration}}return a}}}}const isNumberOrNull=e=>\"string\"!==typeof e;const U=createGeneratorEasing(V);const q=createGeneratorEasing(z);const K={any:0,all:1};function inView$1(e,t,{root:n,margin:o,amount:s=\"any\"}={}){if(\"undefined\"===typeof IntersectionObserver)return()=>{};const r=resolveElements(e);const a=new WeakMap;const onIntersectionChange=e=>{e.forEach((e=>{const n=a.get(e.target);if(e.isIntersecting!==Boolean(n))if(e.isIntersecting){const n=t(e);i(n)?a.set(e.target,n):c.unobserve(e.target)}else if(n){n(e);a.delete(e.target)}}))};const c=new IntersectionObserver(onIntersectionChange,{root:n,rootMargin:o,threshold:\"number\"===typeof s?s:K[s]});r.forEach((e=>c.observe(e)));return()=>c.disconnect()}const G=new WeakMap;let _;function getElementSize(e,t){if(t){const{inlineSize:e,blockSize:n}=t[0];return{width:e,height:n}}return e instanceof SVGElement&&\"getBBox\"in e?e.getBBox():{width:e.offsetWidth,height:e.offsetHeight}}function notifyTarget({target:e,contentRect:t,borderBoxSize:n}){var o;null===(o=G.get(e))||void 0===o?void 0:o.forEach((o=>{o({target:e,contentSize:t,get size(){return getElementSize(e,n)}})}))}function notifyAll(e){e.forEach(notifyTarget)}function createResizeObserver(){\"undefined\"!==typeof ResizeObserver&&(_=new ResizeObserver(notifyAll))}function resizeElement(e,t){_||createResizeObserver();const n=resolveElements(e);n.forEach((e=>{let n=G.get(e);if(!n){n=new Set;G.set(e,n)}n.add(t);null===_||void 0===_?void 0:_.observe(e)}));return()=>{n.forEach((e=>{const n=G.get(e);null===n||void 0===n?void 0:n.delete(t);(null===n||void 0===n?void 0:n.size)||(null===_||void 0===_?void 0:_.unobserve(e))}))}}const Z=new Set;let X;function createWindowResizeHandler(){X=()=>{const e={width:window.innerWidth,height:window.innerHeight};const t={target:window,size:e,contentSize:e};Z.forEach((e=>e(t)))};window.addEventListener(\"resize\",X)}function resizeWindow(e){Z.add(e);X||createWindowResizeHandler();return()=>{Z.delete(e);!Z.size&&X&&(X=void 0)}}function resize(e,t){return i(e)?resizeWindow(e):resizeElement(e,t)}const Y=50;const createAxisInfo=()=>({current:0,offset:[],progress:0,scrollLength:0,targetOffset:0,targetLength:0,containerLength:0,velocity:0});const createScrollInfo=()=>({time:0,x:createAxisInfo(),y:createAxisInfo()});const J={x:{length:\"Width\",position:\"Left\"},y:{length:\"Height\",position:\"Top\"}};function updateAxisInfo(e,t,n,i){const s=n[t];const{length:r,position:a}=J[t];const c=s.current;const l=n.time;s.current=e[\"scroll\"+a];s.scrollLength=e[\"scroll\"+r]-e[\"client\"+r];s.offset.length=0;s.offset[0]=0;s.offset[1]=s.scrollLength;s.progress=o(0,s.scrollLength,s.current);const f=i-l;s.velocity=f>Y?0:y(s.current-c,f)}function updateScrollInfo(e,t,n){updateAxisInfo(e,\"x\",t,n);updateAxisInfo(e,\"y\",t,n);t.time=n}function calcInset(e,t){let n={x:0,y:0};let o=e;while(o&&o!==t)if(o instanceof HTMLElement){n.x+=o.offsetLeft;n.y+=o.offsetTop;o=o.offsetParent}else if(o instanceof SVGGraphicsElement&&\"getBBox\"in o){const{top:e,left:t}=o.getBBox();n.x+=t;n.y+=e;while(o&&\"svg\"!==o.tagName)o=o.parentNode}return n}const Q={Enter:[[0,1],[1,1]],Exit:[[0,0],[1,0]],Any:[[1,0],[0,1]],All:[[0,0],[1,1]]};const ee={start:0,center:.5,end:1};function resolveEdge(e,t,n=0){let o=0;void 0!==ee[e]&&(e=ee[e]);if(h(e)){const t=parseFloat(e);e.endsWith(\"px\")?o=t:e.endsWith(\"%\")?e=t/100:e.endsWith(\"vw\")?o=t/100*document.documentElement.clientWidth:e.endsWith(\"vh\")?o=t/100*document.documentElement.clientHeight:e=t}l(e)&&(o=t*e);return n+o}const te=[0,0];function resolveOffset(e,t,n,o){let i=Array.isArray(e)?e:te;let s=0;let r=0;if(l(e))i=[e,e];else if(h(e)){e=e.trim();i=e.includes(\" \")?e.split(\" \"):[e,ee[e]?e:\"0\"]}s=resolveEdge(i[0],n,o);r=resolveEdge(i[1],t);return s-r}const ne={x:0,y:0};function resolveOffsets(e,t,n){let{offset:o=Q.All}=n;const{target:i=e,axis:s=\"y\"}=n;const r=\"y\"===s?\"height\":\"width\";const a=i!==e?calcInset(i,e):ne;const c=i===e?{width:e.scrollWidth,height:e.scrollHeight}:{width:i.clientWidth,height:i.clientHeight};const l={width:e.clientWidth,height:e.clientHeight};t[s].offset.length=0;let f=!t[s].interpolate;const u=o.length;for(let e=0;e<u;e++){const n=resolveOffset(o[e],l[r],c[r],a[s]);f||n===t[s].interpolatorOffsets[e]||(f=true);t[s].offset[e]=n}if(f){t[s].interpolate=w(p(u),t[s].offset);t[s].interpolatorOffsets=[...t[s].offset]}t[s].progress=t[s].interpolate(t[s].current)}function measure(e,t=e,n){n.x.targetOffset=0;n.y.targetOffset=0;if(t!==e){let o=t;while(o&&o!=e){n.x.targetOffset+=o.offsetLeft;n.y.targetOffset+=o.offsetTop;o=o.offsetParent}}n.x.targetLength=t===e?t.scrollWidth:t.clientWidth;n.y.targetLength=t===e?t.scrollHeight:t.clientHeight;n.x.containerLength=e.clientWidth;n.y.containerLength=e.clientHeight}function createOnScrollHandler(e,t,n,o={}){const s=o.axis||\"y\";return{measure:()=>measure(e,o.target,n),update:t=>{updateScrollInfo(e,n,t);(o.offset||o.target)&&resolveOffsets(e,n,o)},notify:i(t)?()=>t(n):scrubAnimation(t,n[s])}}function scrubAnimation(e,n){e.pause();e.forEachNative(((e,{easing:n})=>{var o,i;if(e.updateDuration){n||(e.easing=t);e.updateDuration(1)}else{const t={duration:1e3};n||(t.easing=\"linear\");null===(i=null===(o=e.effect)||void 0===o?void 0:o.updateTiming)||void 0===i?void 0:i.call(o,t)}}));return()=>{e.currentTime=n.progress}}const oe=new WeakMap;const ie=new WeakMap;const se=new WeakMap;const getEventTarget=e=>e===document.documentElement?window:e;function scroll(e,t={}){var{container:n=document.documentElement}=t,o=S(t,[\"container\"]);let i=se.get(n);if(!i){i=new Set;se.set(n,i)}const s=createScrollInfo();const r=createOnScrollHandler(n,e,s,o);i.add(r);if(!oe.has(n)){const listener=()=>{const e=performance.now();for(const e of i)e.measure();for(const t of i)t.update(e);for(const e of i)e.notify()};oe.set(n,listener);const e=getEventTarget(n);window.addEventListener(\"resize\",listener,{passive:true});n!==document.documentElement&&ie.set(n,resize(n,listener));e.addEventListener(\"scroll\",listener,{passive:true})}const a=oe.get(n);const c=requestAnimationFrame(a);return()=>{var t;\"function\"!==typeof e&&e.stop();cancelAnimationFrame(c);const o=se.get(n);if(!o)return;o.delete(r);if(o.size)return;const i=oe.get(n);oe.delete(n);if(i){getEventTarget(n).removeEventListener(\"scroll\",i);null===(t=ie.get(n))||void 0===t?void 0:t();window.removeEventListener(\"resize\",i)}}}function hasChanged(e,t){return typeof e!==typeof t||(Array.isArray(e)&&Array.isArray(t)?!shallowCompare(e,t):e!==t)}function shallowCompare(e,t){const n=t.length;if(n!==e.length)return false;for(let o=0;o<n;o++)if(t[o]!==e[o])return false;return true}function isVariant(e){return\"object\"===typeof e}function resolveVariant(e,t){return isVariant(e)?e:e&&t?t[e]:void 0}let re;function processScheduledAnimations(){if(!re)return;const e=re.sort(compareByDepth).map(fireAnimateUpdates);e.forEach(fireNext);e.forEach(fireNext);re=void 0}function scheduleAnimation(e){if(re)n(re,e);else{re=[e];requestAnimationFrame(processScheduledAnimations)}}function unscheduleAnimation(e){re&&d(re,e)}const compareByDepth=(e,t)=>e.getDepth()-t.getDepth();const fireAnimateUpdates=e=>e.animateUpdates();const fireNext=e=>e.next();const motionEvent=(e,t)=>new CustomEvent(e,{detail:{target:t}});function dispatchPointerEvent(e,t,n){e.dispatchEvent(new CustomEvent(t,{detail:{originalEvent:n}}))}function dispatchViewEvent(e,t,n){e.dispatchEvent(new CustomEvent(t,{detail:{originalEntry:n}}))}const ae={isActive:e=>Boolean(e.inView),subscribe:(e,{enable:t,disable:n},{inViewOptions:o={}})=>{const{once:i}=o,s=S(o,[\"once\"]);return inView$1(e,(o=>{t();dispatchViewEvent(e,\"viewenter\",o);if(!i)return t=>{n();dispatchViewEvent(e,\"viewleave\",t)}}),s)}};const mouseEvent=(e,t,n)=>o=>{if(!o.pointerType||\"mouse\"===o.pointerType){n();dispatchPointerEvent(e,t,o)}};const ce={isActive:e=>Boolean(e.hover),subscribe:(e,{enable:t,disable:n})=>{const o=mouseEvent(e,\"hoverstart\",t);const i=mouseEvent(e,\"hoverend\",n);e.addEventListener(\"pointerenter\",o);e.addEventListener(\"pointerleave\",i);return()=>{e.removeEventListener(\"pointerenter\",o);e.removeEventListener(\"pointerleave\",i)}}};const le={isActive:e=>Boolean(e.press),subscribe:(e,{enable:t,disable:n})=>{const onPointerUp=t=>{n();dispatchPointerEvent(e,\"pressend\",t);window.removeEventListener(\"pointerup\",onPointerUp)};const onPointerDown=n=>{t();dispatchPointerEvent(e,\"pressstart\",n);window.addEventListener(\"pointerup\",onPointerUp)};e.addEventListener(\"pointerdown\",onPointerDown);return()=>{e.removeEventListener(\"pointerdown\",onPointerDown);window.removeEventListener(\"pointerup\",onPointerUp)}}};const fe={inView:ae,hover:ce,press:le};const ue=[\"initial\",\"animate\",...Object.keys(fe),\"exit\"];const de=new WeakMap;function createMotionState(e={},t){let n;let o=t?t.getDepth()+1:0;const i={initial:true,animate:true};const s={};const r={};for(const n of ue)r[n]=\"string\"===typeof e[n]?e[n]:null===t||void 0===t?void 0:t.getContext()[n];const a=false===e.initial?\"animate\":\"initial\";let c=resolveVariant(e[a]||r[a],e.variants)||{},l=S(c,[\"transition\"]);const f=Object.assign({},l);function*animateUpdates(){var t,o;const s=l;l={};const r={};for(const n of ue){if(!i[n])continue;const s=resolveVariant(e[n]);if(s)for(const n in s)if(\"transition\"!==n){l[n]=s[n];r[n]=getOptions(null!==(o=null!==(t=s.transition)&&void 0!==t?t:e.transition)&&void 0!==o?o:{},n)}}const a=new Set([...Object.keys(l),...Object.keys(s)]);const c=[];a.forEach((e=>{var t;void 0===l[e]&&(l[e]=f[e]);if(hasChanged(s[e],l[e])){null!==(t=f[e])&&void 0!==t?t:f[e]=N.get(n,e);c.push(animateStyle(n,e,l[e],r[e]))}}));yield;const d=c.map((e=>e())).filter(Boolean);if(!d.length)return;const g=l;n.dispatchEvent(motionEvent(\"motionstart\",g));Promise.all(d.map((e=>e.finished))).then((()=>{n.dispatchEvent(motionEvent(\"motioncomplete\",g))})).catch(u)}const setGesture=(e,t)=>()=>{i[e]=t;scheduleAnimation(d)};const updateGestureSubscriptions=()=>{for(const t in fe){const o=fe[t].isActive(e);const i=s[t];if(o&&!i)s[t]=fe[t].subscribe(n,{enable:setGesture(t,true),disable:setGesture(t,false)},e);else if(!o&&i){i();delete s[t]}}};const d={update:t=>{if(n){e=t;updateGestureSubscriptions();scheduleAnimation(d)}},setActive:(e,t)=>{if(n){i[e]=t;scheduleAnimation(d)}},animateUpdates:animateUpdates,getDepth:()=>o,getTarget:()=>l,getOptions:()=>e,getContext:()=>r,mount:e=>{A(Boolean(e),\"Animation state must be mounted with valid Element\");n=e;de.set(n,d);updateGestureSubscriptions();return()=>{de.delete(n);unscheduleAnimation(d);for(const e in s)s[e]()}},isMounted:()=>Boolean(n)};return d}function createStyles(e){const t={};const n=[];for(let o in e){const i=e[o];if(isTransform(o)){D[o]&&(o=D[o]);n.push(o);o=asTransformCssVar(o)}let s=Array.isArray(i)?i[0]:i;const r=B.get(o);r&&(s=l(i)?r.toDefaultUnit(i):i);t[o]=s}n.length&&(t.transform=buildTransformTemplate(n));return t}const camelLetterToPipeLetter=e=>`-${e.toLowerCase()}`;const camelToPipeCase=e=>e.replace(/[A-Z]/g,camelLetterToPipeLetter);function createStyleString(e={}){const t=createStyles(e);let n=\"\";for(const e in t){n+=e.startsWith(\"--\")?e:camelToPipeCase(e);n+=`: ${t[e]}; `}return n}export{Q as ScrollOffset,animate,animateStyle,createMotionState,createStyleString,createStyles,getAnimationData,getStyleName,q as glide,inView$1 as inView,de as mountedStates,resize,scroll,U as spring,stagger,N as style,timeline,withControls};\n\n//# sourceMappingURL=index.es.js.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useCallback,useLayoutEffect,useEffect,useState,useRef,cloneElement}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{scroll,resize}from\"@motionone/dom\";import{clamp,progress}from\"@motionone/utils\";import{animate,motion,useMotionValue,useTransform,useReducedMotion}from\"framer-motion\";import{usePadding,paddingControl}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";/**\n * Calculate the width of the fade mask. Fade width and inset are provided\n * as percentages. There's a fade on the left and the right, so we return\n * a maximum of 50%.\n */function calcMaskWidth([inset,width]){return inset+(100-inset)*(width/100)*.5;}/**\n * Use media queries to determine if this device uses a mouse as\n * the primary input.\n */function useIsMouse(){const[isMouseDevice,setIsMouseDevice]=useState(false);useLayoutEffect(()=>{setIsMouseDevice(window.matchMedia(\"(pointer:fine)\").matches);},[]);return isMouseDevice;}/**\n * This checks a scroll position against the available scrollable\n * range. If we have hit an edge, start/end, we fade out the pagination\n * controls and mask. Likewise if we've just moved away from an edge we\n * fade them back in.\n */function checkLimit(progress,target,{edgeOpacity,moreItems,buttonRef},transition){if(moreItems.current&&progress===target){moreItems.current=false;animate(edgeOpacity,1,transition);buttonRef.current.setAttribute(\"disabled\",\"\");}else if(!moreItems.current&&progress!==target){moreItems.current=true;animate(edgeOpacity,0,transition);buttonRef.current.removeAttribute(\"disabled\");}}function useGUI(initialMoreItems,initialAlpha){const moreItems=useRef(initialMoreItems);const edgeOpacity=useMotionValue(moreItems.current?0:1);const fadeOpacity=useTransform(edgeOpacity,[0,1],[initialAlpha||0,1]);const buttonOpacity=useTransform(edgeOpacity,v=>1-v);const buttonRef=useRef(null);/**\n     * Returns a pointer-events CSS value for a given opacity.\n     * The threshold here is arbitrary, the theory being we\n     * should only enable pointer-events when the button is\n     * somewhat visible.\n     */const pointerEvents=useTransform(buttonOpacity,v=>v>.2?\"auto\":\"none\");/**\n     * Returns a cursor CSS value for a given pointer-events value.\n     * So only indicate\n     */const cursor=useTransform(pointerEvents,v=>v===\"auto\"?\"pointer\":\"default\");const buttonStyle={...baseButtonStyles,opacity:buttonOpacity,pointerEvents,cursor};return{moreItems,fadeOpacity,edgeOpacity,buttonStyle,buttonRef};}function setAriaVisible({element}){element.setAttribute(\"aria-hidden\",false);}function useScrollLimits(container,axis,scrollInfo,updateCurrentScroll,targetScroll,checkLimits,measureItems){useEffect(()=>{if(!container.current)return;const updateScrollInfo=info=>{scrollInfo.current=info[axis];/**\n             * If we've reached our target scroll, delete it.\n             * This way we know when to make calculations based on the\n             * actual current scroll or the target scroll.\n             */if(info[axis].current===targetScroll.current){targetScroll.current=undefined;}updateCurrentScroll(info[axis].current);checkLimits();};const stopScroll=scroll(updateScrollInfo,{container:container.current,axis});const stopResize=resize(container.current,()=>{measureItems();checkLimits();});return()=>{stopScroll();stopResize();};},[checkLimits,measureItems]);}/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth any-prefer-fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n */export default function Carousel({slots,gap,axis,align,sizingObject,fadeObject,arrowObject,snapObject,progressObject,ariaLabel,borderRadius,effectsObject,...props}){// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const numItems=Children.count(filteredSlots);const isCanvas=RenderTarget.current()===RenderTarget.canvas;const padding=usePadding(props);const axisLabel=axis?\"x\":\"y\";const{fadeContent,fadeWidth,fadeInset,fadeTransition,fadeAlpha}=fadeObject;const{snap,snapEdge,fluid}=snapObject;const{widthType,widthInset,widthColumns,heightType,heightInset,heightRows}=sizingObject;const{showScrollbar,showProgressDots,dotSize,dotsInset,dotsRadius,dotsPadding,dotsGap,dotsFill,dotsBackground,dotsActiveOpacity,dotsOpacity,dotsBlur}=progressObject;const{showMouseControls,arrowSize,arrowRadius,arrowFill,leftArrow,rightArrow,arrowPadding}=arrowObject;/**\n     * The latest scroll info on the scrollable axis as reported by Motion One.\n     */const scrollInfo=useRef(undefined);/**\n     * The target scroll we're currently animating to, calculated when\n     * a user presses a pagination button.\n     */const targetScroll=useRef(undefined);/**\n     * If we're performing a scroll animation, return the target scroll instead\n     * of the latest scroll position. This will help users paginate through\n     * a carousel much quicker.\n     */const currentScroll=useMotionValue(0);const updateCurrentScroll=newScroll=>{currentScroll.set(targetScroll.current!==undefined?targetScroll.current:newScroll);};/**\n     * We only want to display pagination buttons if the user has enabled the setting\n     * and this is actually a mouse device.\n     */const isMouseDevice=useIsMouse();/**\n     * Create all the motion values for the GUI at each end of the carousel.\n     */const start=useGUI(false,fadeAlpha);const end=useGUI(true,fadeAlpha);const startMaskInset=useMotionValue(fadeInset*.5);const endMaskInset=useTransform(startMaskInset,v=>100-v);const baseWidth=useMotionValue(fadeWidth);const startMaskWidth=useTransform([startMaskInset,baseWidth],calcMaskWidth);const endMaskWidth=useTransform(startMaskWidth,v=>100-v);const direction=useMotionValue(axis?\"right\":\"bottom\");const mask=useTransform([direction,start.fadeOpacity,startMaskInset,startMaskWidth,end.fadeOpacity,endMaskInset,endMaskWidth],latest=>{return`linear-gradient(to ${latest[0]}, rgb(0, 0, 0, ${latest[1]}) ${latest[2]}%, rgb(0, 0, 0, 1) ${latest[3]}%, rgba(0, 0, 0, 1) ${latest[6]}%, rgb(0, 0, 0, ${latest[4]}) ${latest[5]}%)`;});const carouselRef=useRef(null);/**\n     * Dots state\n     */const[numPages,setNumPages]=useState(isCanvas?4:1);/**\n     * Generate styles for components.\n     */const itemStyle={scrollSnapAlign:snapEdge,flexShrink:0};const childStyle={};if(align===\"stretch\"){if(axis){childStyle.height=\"100%\";itemStyle.height=\"auto\";}else{childStyle.width=\"100%\";itemStyle.width=\"auto\";}}if(!fluid){itemStyle.scrollSnapStop=\"always\";}if(widthType===\"stretch\"){itemStyle.width=`calc(100% - ${widthInset||0}px)`;childStyle.width=\"100%\";}else if(widthType===\"columns\"){itemStyle.width=`calc(${100/widthColumns}% - ${gap}px + ${gap/widthColumns}px)`;childStyle.width=\"100%\";}if(heightType===\"stretch\"){itemStyle.height=`calc(100% - ${heightInset||0}px)`;childStyle.height=\"100%\";}else if(heightType===\"rows\"){itemStyle.height=`calc(${100/heightRows}% - ${gap}px + ${gap/heightRows}px)`;childStyle.height=\"100%\";}const scrollOverflow=isCanvas?\"hidden\":\"auto\";const containerStyle={...baseContainerStyle,padding};const carouselStyle={...baseCarouselStyle,gap,alignItems:align,flexDirection:axis?\"row\":\"column\",overflowX:axis?scrollOverflow:\"hidden\",overflowY:axis?\"hidden\":scrollOverflow,scrollSnapType:snap?`${axisLabel} mandatory`:undefined,WebkitOverflowScrolling:\"touch\",WebkitMaskImage:fadeContent?mask:undefined,MozMaskImage:fadeContent?mask:undefined,maskImage:fadeContent?mask:undefined,borderRadius};const carouselA11y={[\"aria-roledescription\"]:\"carousel\"};if(ariaLabel){carouselA11y[\"aria-title\"]=ariaLabel;}const itemA11y={};if(align===\"stretch\"){itemA11y[\"aria-role\"]=\"group\";itemA11y[\"aria-roledescription\"]=\"slide\";}if(!isCanvas){const itemSizes=useRef([]);useScrollLimits(carouselRef,axisLabel,scrollInfo,updateCurrentScroll,targetScroll,useCallback(()=>{if(!scrollInfo.current)return;const{targetLength,containerLength,scrollLength}=scrollInfo.current;const current=currentScroll.get();if(!targetLength&&!containerLength)return;if(targetLength>containerLength){checkLimit(current,0,start,fadeTransition);checkLimit(current,scrollLength,end,fadeTransition);for(let i=0;i<itemSizes.current.length;i++){const{element,start,end}=itemSizes.current[i];if(end<current||start>current+containerLength){element.setAttribute(\"aria-hidden\",true);}else{element.setAttribute(\"aria-hidden\",false);}}}else{checkLimit(0,0,start,fadeTransition);checkLimit(1,1,end,fadeTransition);itemSizes.current.forEach(setAriaVisible);}// This used to be Math.ceil, which would round 3.05 to 4.\n// This now uses Math.round to ensure people get a perfect amount of dots\n// when using Columns or Rows \u2014\u00A0Benjamin\n/**\n                 * Update by Matt: changing back to ceil, might break dots but round was incorrectly\n                 * paginating for all widths - overshooting items at shorter viewports and\n                 * not paginating at all for wide.\n                 */let newNumPages=Math.ceil(targetLength/containerLength);if(!isNaN(newNumPages)){// If the number of dots is 65% of the number of items, make it 100%\nif(newNumPages/numItems>.65)newNumPages=numItems;if(newNumPages!==numPages)setNumPages(newNumPages);}},[numPages]),useCallback(()=>{if(!carouselRef.current)return;itemSizes.current=Array.from(carouselRef.current.children).map(element=>{return axis?{element,start:element.offsetLeft,end:element.offsetLeft+element.offsetWidth}:{element,start:element.offsetTop,end:element.offsetTop+element.offsetHeight};});},[]));}/**\n     * On the canvas, we want to keep the motion values updated\n     * with the latest props. Outside of the canvas these will never\n     * update.\n     */if(isCanvas){useEffect(()=>{baseWidth.set(fadeWidth);},[fadeWidth]);useEffect(()=>{startMaskInset.set(fadeInset*.5);},[fadeInset]);useEffect(()=>{direction.set(axis?\"right\":\"bottom\");},[axis]);}const findNextItem=(delta,target)=>{if(!scrollInfo.current)return;const{current}=scrollInfo.current;const{children}=carouselRef.current;let scrollTarget;let i=delta===1?0:children.length-1;while(scrollTarget===undefined){const item=children[i];const start=axis?item.offsetLeft:item.offsetTop;const length=axis?item.offsetWidth:item.offsetHeight;const end=start+length;const threshold=.05;if(delta===1){const visibility=progress(start,end,target);if(visibility<1-threshold){scrollTarget=start;}else if(i===children.length-1){scrollTarget=end;}}else if(delta===-1){const visibility=progress(start,end,target);if(visibility>threshold){scrollTarget=end;}else if(i===0){scrollTarget=start;}}i+=delta;}return scrollTarget;};const isReducedMotion=useReducedMotion();const goto=scrollTo=>{targetScroll.current=scrollTo;const options=axis?{left:scrollTo}:{top:scrollTo};carouselRef.current.scrollTo({...options,behavior:isReducedMotion?\"auto\":\"smooth\"});};const gotoPage=page=>{if(!scrollInfo.current)return;const{scrollLength}=scrollInfo.current;goto(page*(scrollLength/(numPages-1)));};const gotoDelta=delta=>()=>{if(!scrollInfo.current)return;const{containerLength,scrollLength}=scrollInfo.current;const current=currentScroll.get();const pageLength=scrollLength/numPages;const currentPage=clamp(0,numPages-1,Math.floor(current/pageLength));gotoPage(currentPage+delta);};/**\n     * Return placeholder if no children\n     */if(numItems===0){return /*#__PURE__*/_jsx(Placeholder,{});}const dots=[];const dotsBlurStyle={};if(numPages>1&&showProgressDots&&!showScrollbar){for(let i=0;i<numPages;i++){const isSelected=isCanvas&&!i||false;dots.push(/*#__PURE__*/_jsx(Dot,{dotStyle:{...dotStyle,width:dotSize,height:dotSize,backgroundColor:dotsFill},buttonStyle:baseButtonStyles,isSelected:isSelected,selectedOpacity:dotsActiveOpacity,opacity:dotsOpacity,onClick:()=>gotoPage(i),currentScroll:currentScroll,scrollInfo:scrollInfo,total:numPages,index:i,gap:dotsGap,padding:dotsPadding,axis:axis}));}if(dotsBlur){dotsBlurStyle.backdropFilter=dotsBlurStyle.WebkitBackdropFilter=dotsBlurStyle.MozBackdropFilter=`blur(${dotsBlur}px)`;}}return /*#__PURE__*/_jsxs(\"section\",{style:containerStyle,...carouselA11y,children:[/*#__PURE__*/_jsx(motion.ul,{ref:carouselRef,style:carouselStyle,className:\"framer--carousel\",\"data-show-scrollbar\":showScrollbar,\"aria-atomic\":\"false\",\"aria-live\":\"polite\",onWheel:()=>targetScroll.current=undefined,children:Children.map(filteredSlots,(child,index)=>{var _child_props;return /*#__PURE__*/_jsx(\"li\",{style:itemStyle,...itemA11y,\"aria-label\":`${index+1} of ${numItems}`,children:/*#__PURE__*/cloneElement(child,{...child.props,style:{...(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.style,...childStyle}})});})}),/*#__PURE__*/_jsxs(\"fieldset\",{style:{...controlsStyles,padding:arrowPadding,display:\"flex\",flexDirection:axis?\"row\":\"column\"},\"aria-label\":\"Carousel pagination controls\",className:\"framer--carousel-controls\",\"data-show-mouse-controls\":showMouseControls,children:[/*#__PURE__*/_jsx(motion.button,{ref:start.buttonRef,type:\"button\",style:{...start.buttonStyle,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!axis?90:0,display:showMouseControls?\"block\":\"none\"},onClick:gotoDelta(-1),\"aria-label\":\"Previous\",whileTap:{scale:.9},transition:{duration:.05},children:/*#__PURE__*/_jsx(\"img\",{alt:\"\",width:arrowSize,height:arrowSize,src:leftArrow||\"https://framerusercontent.com/images/6tTbkXggWgQCAJ4DO2QEdXXmgM.svg\"})}),/*#__PURE__*/_jsx(motion.button,{ref:end.buttonRef,type:\"button\",style:{...end.buttonStyle,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!axis?90:0,display:showMouseControls?\"block\":\"none\"},onClick:gotoDelta(1),\"aria-label\":\"Next\",whileTap:{scale:.9},transition:{duration:.05},children:/*#__PURE__*/_jsx(\"img\",{alt:\"\",width:arrowSize,height:arrowSize,src:rightArrow||\"https://framerusercontent.com/images/11KSGbIZoRSg4pjdnUoif6MKHI.svg\"})}),dots.length>1?/*#__PURE__*/_jsx(\"div\",{style:{...dotsContainerStyle,left:axis?\"50%\":dotsInset,top:!axis?\"50%\":\"unset\",transform:axis?\"translateX(-50%)\":\"translateY(-50%)\",flexDirection:axis?\"row\":\"column\",bottom:axis?dotsInset:\"unset\",borderRadius:dotsRadius,backgroundColor:dotsBackground,...dotsBlurStyle},children:dots}):null]}),/*#__PURE__*/_jsx(MouseStyles,{})]});}/* Default Properties */Carousel.defaultProps={gap:10,padding:10,progressObject:{showScrollbar:false,showProgressDots:false},sizingObject:{widthType:\"auto\",widthOffset:0,widthColumns:2,heightType:\"auto\",heightOffset:0,heightRows:2},borderRadius:0};/* Property Controls */addPropertyControls(Carousel,{slots:{type:ControlType.Array,title:\"Children\",control:{type:ControlType.ComponentInstance}},axis:{type:ControlType.Enum,title:\"Direction\",options:[true,false],optionIcons:[\"direction-horizontal\",\"direction-vertical\"],displaySegmentedControl:true},align:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{axis:{true:[\"align-top\",\"align-middle\",\"align-bottom\"],false:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},gap:{type:ControlType.Number,title:\"Gap\"},...paddingControl,sizingObject:{type:ControlType.Object,title:\"Sizing\",controls:{widthType:{type:ControlType.Enum,title:\"Width\",options:[\"auto\",\"stretch\",\"columns\"],optionTitles:[\"Auto\",\"Stretch\",\"Columns\"],defaultValue:\"auto\"},widthInset:{type:ControlType.Number,title:\"Inset\",min:0,max:500,defaultValue:0,hidden:props=>props.widthType!==\"stretch\"},widthColumns:{type:ControlType.Number,title:\"Columns\",min:1,max:10,defaultValue:2,displayStepper:true,hidden:props=>props.widthType!==\"columns\"},heightType:{type:ControlType.Enum,title:\"Height\",options:[\"auto\",\"stretch\",\"rows\"],optionTitles:[\"Auto\",\"Stretch\",\"Rows\"],defaultValue:\"auto\"},heightInset:{type:ControlType.Number,title:\"Inset\",min:0,max:500,defaultValue:0,hidden:props=>props.heightType!==\"stretch\"},heightRows:{type:ControlType.Number,title:\"Rows\",min:1,max:10,defaultValue:2,displayStepper:true,hidden:props=>props.heightType!==\"rows\"}}},snapObject:{type:ControlType.Object,title:\"Snapping\",controls:{snap:{type:ControlType.Boolean,title:\"Enable\"},snapEdge:{type:ControlType.Enum,title:\"Edge\",options:[\"start\",\"center\",\"end\"],optionTitles:[\"Left\",\"Center\",\"Right\"],defaultValue:\"center\",hidden:props=>!props.snap},fluid:{type:ControlType.Boolean,title:\"Fluid\",defaultValue:false,hidden:props=>!props.snap}}},fadeObject:{type:ControlType.Object,title:\"Fading\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Enable\",defaultValue:false},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden:props=>!props.fadeContent},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden:props=>!props.fadeContent},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",hidden:props=>!props.fadeContent,min:0,max:1,step:.05,defaultValue:0},fadeTransition:{type:ControlType.Transition,title:\"Transition\",hidden:props=>!props.fadeContent}}},progressObject:{type:ControlType.Object,title:\"Progress\",controls:{showScrollbar:{type:ControlType.Boolean,title:\"Scroll Bar\",defaultValue:false},showProgressDots:{type:ControlType.Boolean,title:\"Dots\",defaultValue:false,hidden:props=>props.showScrollbar},dotSize:{type:ControlType.Number,title:\"Size\",min:1,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsInset:{type:ControlType.Number,title:\"Inset\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsGap:{type:ControlType.Number,title:\"Gap\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsPadding:{type:ControlType.Number,title:\"Padding\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsFill:{type:ControlType.Color,title:\"Fill\",defaultValue:\"#fff\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBackground:{type:ControlType.Color,title:\"Backdrop\",defaultValue:\"rgba(0,0,0,0.2)\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:200,defaultValue:50,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsOpacity:{type:ControlType.Number,title:\"Opacity\",min:0,max:1,defaultValue:.5,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsActiveOpacity:{type:ControlType.Number,title:\"Current\",min:0,max:1,defaultValue:1,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBlur:{type:ControlType.Number,title:\"Blur\",min:0,max:50,defaultValue:4,step:1,hidden:props=>!props.showProgressDots||props.showScrollbar}}},arrowObject:{type:ControlType.Object,title:\"Arrows\",controls:{showMouseControls:{type:ControlType.Boolean,title:\"Show\",defaultValue:true},arrowFill:{type:ControlType.Color,title:\"Fill\",defaultValue:\"rgba(0,0,0,0.2)\",hidden:props=>!props.showMouseControls},leftArrow:{type:ControlType.Image,title:\"Previous\",hidden:props=>!props.showMouseControls},rightArrow:{type:ControlType.Image,title:\"Next\",hidden:props=>!props.showMouseControls},arrowSize:{type:ControlType.Number,title:\"Size\",min:0,max:200,displayStepper:true,defaultValue:40,hidden:props=>!props.showMouseControls},arrowRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,defaultValue:40,hidden:props=>!props.showMouseControls},arrowPadding:{type:ControlType.Number,title:\"Inset\",min:0,max:100,defaultValue:20,displayStepper:true,hidden:props=>!props.showMouseControls}}},ariaLabel:{type:ControlType.String,title:\"Aria Label\",placeholder:\"Movies...\"},borderRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,displayStepper:true,defaultValue:0}});function Dot({currentScroll,scrollInfo,isSelected,selectedOpacity,opacity:unselectedOpacity,total,index,dotStyle,buttonStyle,gap,padding,axis,...props}){const opacity=useTransform(currentScroll,v=>{var _scrollInfo_current,_scrollInfo_current1;if(!((_scrollInfo_current=scrollInfo.current)===null||_scrollInfo_current===void 0?void 0:_scrollInfo_current.scrollLength)){return index===0?selectedOpacity:unselectedOpacity;}const pageLength=((_scrollInfo_current1=scrollInfo.current)===null||_scrollInfo_current1===void 0?void 0:_scrollInfo_current1.scrollLength)/total;const minScroll=pageLength*index;const maxScroll=minScroll+pageLength;const isSelected=v>=minScroll&&(index<total-1?v<maxScroll:index===total-1);return isSelected?selectedOpacity:unselectedOpacity;});const inlinePadding=gap/2;let top=!axis&&index>0?inlinePadding:padding;let bottom=!axis&&index!==total-1?inlinePadding:padding;let right=axis&&index!==total-1?inlinePadding:padding;let left=axis&&index>0?inlinePadding:padding;return /*#__PURE__*/_jsx(\"button\",{\"aria-label\":`Scroll to page ${index+1}`,type:\"button\",...props,style:{...buttonStyle,padding:`${top}px ${right}px ${bottom}px ${left}px`},children:/*#__PURE__*/_jsx(motion.div,{style:{...dotStyle,opacity}})});}function Placeholder(){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 swipe between.\"})]});}function MouseStyles(){return /*#__PURE__*/_jsx(\"div\",{dangerouslySetInnerHTML:{__html:`<style>@media (pointer: fine) {\n                .framer--carousel[data-show-scrollbar=\"false\"]::-webkit-scrollbar {\n                    display: none;\n                    -webkit-appearance: none;\n                    width: 0;\n                    height: 0;\n                }\n\n                .framer--carousel[data-show-scrollbar=\"false\"]::-webkit-scrollbar-thumb {\n                    display: none;\n                }\n\n                .framer--carousel[data-show-scrollbar=\"false\"] {\n                    scrollbar-width: none;\n                    scrollbar-height: none;\n                }\n            }</style>`}});}/* 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:130,lineHeight:1.5,textAlign:\"center\"};const labelStyle={clip:\"rect(0 0 0 0)\",WebkitClipPath:\"inset(50%)\",clipPath:\"inset(50%)\",height:1,width:1,margin:-1,padding:0,overflow:\"hidden\",position:\"absolute\",whiteSpace:\"nowrap\"};/**\n * GUI styles\n */const baseContainerStyle={display:\"flex\",overflow:\"hidden\",width:\"100%\",height:\"100%\",position:\"relative\"};const baseCarouselStyle={padding:0,margin:0,listStyle:\"none\",position:\"relative\",display:\"flex\",flex:\"1 1 100%\",width:\"100%\",height:\"100%\"};const baseButtonStyles={border:\"none\",display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",background:\"transparent\",cursor:\"pointer\",margin:0,padding:0};const controlsStyles={display:\"flex\",justifyContent:\"space-between\",alignItems:\"center\",position:\"absolute\",top:0,left:0,right:0,bottom:0,pointerEvents:\"none\",border:0,padding:0,margin:0};/**\n * Dot styles\n */const dotsContainerStyle={display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",position:\"absolute\",pointerEvents:\"auto\"};const dotStyle={borderRadius:\"50%\",background:\"white\",cursor:\"pointer\",border:\"none\",placeContent:\"center\",placeItems:\"center\",padding:0};\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Carousel\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"400\",\"framerIntrinsicHeight\":\"200\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerDisableUnlink\":\"*\",\"framerSupportedLayoutWidth\":\"any-prefer-fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Carousel.map", "// Generated by Framer (cbb0119)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,Image,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Carousel from\"https://framerusercontent.com/modules/UIrMjSS6ZX89L0CsT8k6/ZtFjxnixyznUo5AKQme5/Carousel.js\";const CarouselFonts=getFonts(Carousel);const cycleOrder=[\"NsoloVQVP\",\"tVdX7v565\",\"lKVwUzVDR\"];const serializationHash=\"framer-1B1i7\";const variantClassNames={lKVwUzVDR:\"framer-v-vxvlvr\",NsoloVQVP:\"framer-v-1nd12ez\",tVdX7v565:\"framer-v-1ome1m6\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"NsoloVQVP\",\"Variant 2\":\"tVdX7v565\",Mobile:\"lKVwUzVDR\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"NsoloVQVP\"};};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:\"NsoloVQVP\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1nd12ez\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"NsoloVQVP\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({lKVwUzVDR:{\"data-framer-name\":\"Mobile\"},tVdX7v565:{\"data-framer-name\":\"Variant 2\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1k1v15j-container\",layoutDependency:layoutDependency,layoutId:\"X0tPgMX81-container\",style:{opacity:1},variants:{lKVwUzVDR:{opacity:.8}},children:/*#__PURE__*/_jsx(Carousel,{align:\"flex-start\",ariaLabel:\"\",arrowObject:{arrowFill:\"var(--token-5a8ef596-260e-455e-b941-68898e3a21fa, rgb(50, 50, 50))\",arrowPadding:20,arrowRadius:40,arrowSize:40,showMouseControls:true},axis:true,borderRadius:0,fadeObject:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeTransition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},fadeWidth:25},gap:60,height:\"100%\",id:\"X0tPgMX81\",layoutId:\"X0tPgMX81\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,progressObject:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:4,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false,showScrollbar:false},sizingObject:{heightInset:0,heightRows:1,heightType:\"auto\",widthColumns:8,widthInset:0,widthType:\"auto\"},slots:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1aj7dni\",\"data-framer-name\":\"Logo-NordicMilk-Wrapper\",layoutDependency:layoutDependency,layoutId:\"VVnC3quLC\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-wd1qy4\",\"data-framer-name\":\"Logo-Nordicmilk\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:47,intrinsicWidth:174,layoutDependency:layoutDependency,layoutId:\"OG4rQB4O3\",svg:'<svg width=\"174\" height=\"47\" viewBox=\"0 0 174 47\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M26.115 18.7925C25.8372 18.8782 25.5912 19.0447 25.4084 19.2708C25.2256 19.4969 25.1143 19.7722 25.0886 20.0618V20.1226C24.7242 22.7159 19.7077 24.0641 19.0153 21.0457C18.6206 19.3634 20.4425 16.6243 18.4505 16.6243C14.6911 16.6243 12.8145 25.4003 8.15625 25.4003C5.44148 25.4003 2.96357 21.2218 2.28336 16.8976C2.1676 16.1553 2.09258 15.4071 2.05865 14.6566C1.88252 11.9843 2.59917 7.9395 7.81614 5.86243C9.40735 5.22474 10.3912 4.14369 10.5066 2.89259C10.5492 2.41486 10.4582 1.9347 10.2437 1.50572C10.0292 1.07673 9.6997 0.715813 9.29195 0.463263C8.21091 -0.22302 6.72902 -0.144067 5.33823 0.681903C0.103044 3.78536 -0.243135 10.0834 0.0908969 14.8266C0.145557 15.8105 0.424929 18.1852 0.431002 18.2398C0.509955 18.8472 0.601054 19.4849 0.710374 20.159L4.25111 42.5331C4.32971 43.046 4.53845 43.5303 4.85742 43.9396C5.17638 44.3489 5.59492 44.6697 6.0731 44.8713C7.89509 45.6122 11.0714 46.0859 14.5757 46.0859C18.08 46.0859 21.1956 45.6001 23.0358 44.8713C23.5152 44.6536 23.9349 44.3235 24.2595 43.9091C24.5841 43.4947 24.8039 43.008 24.9004 42.4905C24.9004 42.4905 25.3012 40.6685 24.0865 41.2212C22.471 41.9622 19.6834 42.5331 16.586 42.697C15.3723 42.7666 14.1557 42.7666 12.942 42.697C12.8276 42.697 12.718 42.6516 12.6371 42.5707C12.5562 42.4899 12.5108 42.3802 12.5108 42.2658C12.5108 42.1515 12.5562 42.0418 12.6371 41.9609C12.718 41.8801 12.8276 41.8346 12.942 41.8346C16.5496 41.4702 21.6815 40.9783 24.4813 38.0084C25.3122 37.0653 25.8299 35.8876 25.9632 34.6378L27.937 20.3655C27.97 20.1284 27.943 19.8869 27.8586 19.6629C27.7743 19.4389 27.6352 19.2397 27.454 19.0833C27.2728 18.9269 27.0554 18.8183 26.8215 18.7675C26.5876 18.7167 26.3447 18.7253 26.115 18.7925ZM29.2428 9.18453C32.7653 9.14809 34.4476 11.4681 34.0589 13.3447C33.965 13.7159 33.7848 14.0596 33.5329 14.3478C33.2809 14.6361 32.9644 14.8607 32.6092 15.0034C32.2539 15.1461 31.87 15.2028 31.4887 15.1689C31.1073 15.135 30.7394 15.0115 30.4149 14.8084C28.5189 13.7274 26.3839 13.1347 24.2019 13.0836C24.0611 13.0836 23.9235 13.0414 23.807 12.9625C23.6904 12.8835 23.6001 12.7715 23.5478 12.6407C23.4955 12.51 23.4836 12.3666 23.5136 12.229C23.5436 12.0915 23.6141 11.966 23.7161 11.8689C25.0765 10.6603 27.2143 9.20275 29.2428 9.18453ZM53.3963 27.9146L53.2931 42.9521C53.3116 43.1784 53.2815 43.4059 53.2048 43.6196C53.128 43.8332 53.0065 44.028 52.8483 44.1908C52.6901 44.3536 52.4989 44.4807 52.2876 44.5635C52.0762 44.6463 51.8496 44.6829 51.6229 44.6709C51.2556 44.6586 50.8971 44.5556 50.5792 44.3713C50.2613 44.1869 49.9939 43.9268 49.8009 43.6141L41.7538 32.5L41.687 42.8246C41.6872 43.2985 41.5027 43.7538 41.1728 44.094C40.8428 44.4341 40.3933 44.6324 39.9196 44.6466C39.4364 44.6466 38.973 44.4546 38.6313 44.1129C38.2896 43.7712 38.0976 43.3078 38.0976 42.8246L38.2009 27.7567C38.1856 27.531 38.2189 27.3047 38.2983 27.093C38.3778 26.8812 38.5016 26.6889 38.6616 26.529C38.8215 26.3691 39.0138 26.2452 39.2255 26.1658C39.4373 26.0863 39.6636 26.0531 39.8893 26.0683C40.2554 26.0725 40.6146 26.1695 40.9332 26.35C41.2518 26.5305 41.5195 26.7888 41.7113 27.1008L49.7341 38.1846L49.807 27.8599C49.7611 27.5981 49.7731 27.3293 49.8421 27.0725C49.9112 26.8158 50.0355 26.5772 50.2066 26.3736C50.3776 26.17 50.5911 26.0064 50.8321 25.8941C51.0731 25.7818 51.3358 25.7236 51.6016 25.7236C51.8675 25.7236 52.1302 25.7818 52.3712 25.8941C52.6122 26.0064 52.8257 26.17 52.9967 26.3736C53.1677 26.5772 53.2921 26.8158 53.3612 27.0725C53.4302 27.3293 53.4422 27.5981 53.3963 27.8599V27.9146ZM69.9704 37.8566C69.9704 42.5452 65.9134 44.7984 62.9253 44.7741C59.9372 44.7498 55.9471 42.448 55.9775 37.7594C56.0078 33.0708 60.0101 30.7873 63.0225 30.8116C66.0348 30.8359 70.0007 33.1923 69.9704 37.8566ZM59.3846 37.7837C59.3846 40.2981 61.0851 41.7739 62.9496 41.786C64.8141 41.7982 66.545 40.3467 66.5632 37.8323C66.5814 35.318 64.8384 33.8118 63.0043 33.7996C61.1701 33.7875 59.4028 35.2451 59.3846 37.7837ZM81.4793 32.5364C81.4793 33.5021 80.7322 34.1519 79.2625 34.1458C78.4605 34.1183 77.6732 34.3659 77.0313 34.8476C76.3895 35.3293 75.9316 36.016 75.7339 36.7938L75.6914 43.1404C75.6654 43.5778 75.4733 43.9887 75.1544 44.2892C74.8355 44.5897 74.4139 44.757 73.9757 44.757C73.5375 44.757 73.1159 44.5897 72.797 44.2892C72.4781 43.9887 72.286 43.5778 72.26 43.1404L72.3329 32.7368C72.3189 32.5029 72.353 32.2686 72.4329 32.0484C72.5128 31.8281 72.637 31.6265 72.7977 31.456C72.9583 31.2855 73.1522 31.1496 73.3673 31.0567C73.5824 30.9639 73.8143 30.9159 74.0486 30.9159C74.2829 30.9159 74.5147 30.9639 74.7298 31.0567C74.945 31.1496 75.1388 31.2855 75.2995 31.456C75.4602 31.6265 75.5843 31.8281 75.6642 32.0484C75.7442 32.2686 75.7782 32.5029 75.7643 32.7368V34.0486C75.8797 33.1012 77.5195 30.9634 79.8759 31.012C80.0829 31.0004 80.29 31.0313 80.4845 31.1027C80.6791 31.1742 80.8569 31.2848 81.0071 31.4276C81.1574 31.5704 81.2767 31.7424 81.3579 31.9331C81.4391 32.1238 81.4804 32.3291 81.4793 32.5364ZM95.958 27.8114L95.8487 43.274C95.8304 43.7201 95.6433 44.1426 95.3254 44.456C95.0075 44.7694 94.5823 44.9504 94.136 44.9624C93.6823 44.9608 93.2476 44.7798 92.9268 44.459C92.6059 44.1381 92.425 43.7034 92.4234 43.2497V42.7517C92.2108 43.5594 90.8079 44.9685 88.5304 44.9502C85.6516 44.9502 82.2081 42.6788 82.2384 37.9113C82.2384 33.247 85.7731 30.9634 88.6275 30.9877C89.4196 30.9536 90.2048 31.1478 90.8896 31.5473C91.5744 31.9467 92.13 32.5346 92.4902 33.2409V32.8158C92.4812 32.7208 92.4812 32.6253 92.4902 32.5303L92.5205 27.8114C92.5331 27.3623 92.7191 26.9356 93.0396 26.6207C93.3601 26.3059 93.7901 26.1275 94.2393 26.123C94.6866 26.1334 95.1133 26.3137 95.4325 26.6273C95.7517 26.9409 95.9396 27.3643 95.958 27.8114ZM92.557 37.9841C92.557 35.0204 90.65 33.9333 89.1802 33.9272C87.4493 33.9272 85.6334 35.2633 85.6152 37.9356C85.597 40.6078 87.3947 41.9804 89.1256 41.9925C90.6196 42.0047 92.563 40.9418 92.5813 37.9841H92.557ZM102.432 32.8886L102.365 43.2618C102.379 43.4957 102.345 43.73 102.265 43.9503C102.185 44.1705 102.061 44.3721 101.901 44.5427C101.74 44.7132 101.546 44.8491 101.331 44.9419C101.116 45.0348 100.884 45.0827 100.65 45.0827C100.415 45.0827 100.184 45.0348 99.9684 44.9419C99.7533 44.8491 99.5594 44.7132 99.3987 44.5427C99.2381 44.3721 99.1139 44.1705 99.034 43.9503C98.9541 43.73 98.92 43.4957 98.9339 43.2618L98.9947 32.8644C98.9808 32.6305 99.0148 32.3962 99.0947 32.1759C99.1747 31.9557 99.2988 31.7541 99.4595 31.5836C99.6201 31.413 99.814 31.2771 100.029 31.1843C100.244 31.0914 100.476 31.0435 100.71 31.0435C100.945 31.0435 101.177 31.0914 101.392 31.1843C101.607 31.2771 101.801 31.413 101.961 31.5836C102.122 31.7541 102.246 31.9557 102.326 32.1759C102.406 32.3962 102.44 32.6305 102.426 32.8644L102.432 32.8886ZM98.9947 27.5745C98.9886 27.2285 99.0857 26.8886 99.2736 26.598C99.4614 26.3074 99.7315 26.0793 100.049 25.9427C100.367 25.8061 100.719 25.7672 101.059 25.831C101.399 25.8948 101.712 26.0583 101.959 26.3008C102.206 26.5434 102.375 26.8538 102.445 27.1928C102.514 27.5317 102.482 27.8837 102.351 28.204C102.22 28.5242 101.996 28.7983 101.709 28.9912C101.422 29.1841 101.084 29.2871 100.738 29.2872C100.283 29.2811 99.8472 29.0997 99.5225 28.7806C99.1978 28.4616 99.0087 28.0295 98.9947 27.5745ZM116.729 42.0533C116.696 42.3718 116.591 42.6786 116.422 42.9503C116.252 43.2219 116.023 43.4511 115.751 43.6202C114.621 44.6097 113.152 45.1252 111.651 45.0596C108.481 45.0596 104.673 42.7335 104.704 38.0692C104.734 33.4049 108.578 31.1213 111.749 31.1456C113.247 31.0924 114.709 31.6187 115.83 32.6153C116.096 32.7967 116.32 33.0342 116.485 33.3112C116.649 33.5882 116.751 33.898 116.783 34.2187C116.78 34.3968 116.741 34.5725 116.669 34.7352C116.596 34.898 116.492 35.0444 116.361 35.1657C116.231 35.2871 116.077 35.3809 115.91 35.4415C115.742 35.5021 115.564 35.5282 115.387 35.5184C114.891 35.497 114.419 35.2988 114.056 34.9596C113.449 34.4253 112.667 34.1316 111.858 34.1337C109.787 34.1337 108.129 35.5488 108.111 38.0874C108.092 40.626 109.738 42.0593 111.803 42.0715C112.613 42.0872 113.4 41.804 114.014 41.2759C114.381 40.9434 114.855 40.7519 115.35 40.7354C115.528 40.728 115.706 40.7566 115.872 40.8195C116.039 40.8823 116.191 40.9781 116.32 41.1012C116.448 41.2242 116.551 41.3719 116.621 41.5355C116.691 41.6991 116.728 41.8752 116.729 42.0533ZM143.202 28.4005L143.099 43.438C143.099 43.9212 142.907 44.3846 142.565 44.7263C142.224 45.068 141.76 45.26 141.277 45.26C140.794 45.26 140.33 45.068 139.989 44.7263C139.647 44.3846 139.455 43.9212 139.455 43.438L139.516 34.6317L134.76 43.4319C134.625 43.7206 134.411 43.9648 134.142 44.1359C133.873 44.307 133.561 44.3979 133.242 44.3979C132.923 44.3979 132.611 44.307 132.342 44.1359C132.073 43.9648 131.859 43.7206 131.724 43.4319L127.065 34.5709L127.005 43.3772C127.005 43.8511 126.821 44.3065 126.491 44.6466C126.161 44.9868 125.711 45.185 125.237 45.1992C124.754 45.1992 124.291 45.0073 123.949 44.6656C123.607 44.3239 123.415 43.8605 123.415 43.3772L123.519 28.3337C123.511 28.1168 123.548 27.9007 123.627 27.6987C123.707 27.4967 123.827 27.3132 123.98 27.1595C124.133 27.0057 124.316 26.8851 124.518 26.805C124.72 26.7249 124.936 26.6871 125.152 26.6939C125.527 26.7299 125.886 26.8602 126.196 27.0726C126.506 27.285 126.757 27.5726 126.926 27.9085L133.266 39.5085L139.795 27.9693C139.964 27.629 140.218 27.3377 140.531 27.1229C140.845 26.9082 141.208 26.7772 141.587 26.7425C141.804 26.7381 142.019 26.7783 142.22 26.8606C142.421 26.9429 142.603 27.0656 142.754 27.2211C142.906 27.3765 143.024 27.5614 143.101 27.7643C143.178 27.9671 143.212 28.1837 143.202 28.4005ZM150.745 33.247L150.672 43.6202C150.686 43.8541 150.652 44.0883 150.572 44.3086C150.492 44.5289 150.368 44.7304 150.208 44.901C150.047 45.0715 149.853 45.2074 149.638 45.3003C149.423 45.3931 149.191 45.441 148.957 45.441C148.722 45.441 148.491 45.3931 148.275 45.3003C148.06 45.2074 147.866 45.0715 147.706 44.901C147.545 44.7304 147.421 44.5289 147.341 44.3086C147.261 44.0883 147.227 43.8541 147.241 43.6202L147.314 33.247C147.3 33.0131 147.334 32.7788 147.414 32.5585C147.494 32.3383 147.618 32.1367 147.779 31.9662C147.939 31.7956 148.133 31.6598 148.348 31.5669C148.563 31.474 148.795 31.4261 149.03 31.4261C149.264 31.4261 149.496 31.474 149.711 31.5669C149.926 31.6598 150.12 31.7956 150.281 31.9662C150.441 32.1367 150.565 32.3383 150.645 32.5585C150.725 32.7788 150.759 33.0131 150.745 33.247ZM147.326 27.9571C147.321 27.6114 147.419 27.272 147.608 26.9822C147.796 26.6924 148.067 26.4652 148.385 26.3295C148.703 26.1939 149.054 26.1559 149.394 26.2204C149.734 26.2849 150.047 26.4489 150.293 26.6917C150.539 26.9345 150.707 27.245 150.777 27.5837C150.846 27.9225 150.813 28.2742 150.682 28.5941C150.55 28.914 150.327 29.1877 150.04 29.3803C149.753 29.573 149.415 29.6758 149.069 29.6759C148.612 29.6728 148.174 29.4915 147.848 29.1705C147.523 28.8495 147.336 28.4142 147.326 27.9571ZM156.205 45.3875C155.751 45.3859 155.316 45.2052 154.994 44.8845C154.672 44.5638 154.49 44.1291 154.486 43.6748L154.59 28.2426C154.59 27.7867 154.771 27.3496 155.093 27.0272C155.415 26.7049 155.853 26.5238 156.308 26.5238C156.764 26.5238 157.201 26.7049 157.524 27.0272C157.846 27.3496 158.027 27.7867 158.027 28.2426L157.906 43.6991C157.899 44.147 157.718 44.5746 157.4 44.8903C157.082 45.2059 156.653 45.3844 156.205 45.3875ZM174 44.0149C173.992 44.4118 173.828 44.7896 173.544 45.0668C173.26 45.3441 172.879 45.4985 172.482 45.4968C172.284 45.4979 172.088 45.4561 171.908 45.3743C171.727 45.2925 171.567 45.1727 171.437 45.0231L166.785 39.7758L165.194 41.2334V43.7477C165.168 44.1851 164.976 44.596 164.657 44.8965C164.338 45.197 163.916 45.3643 163.478 45.3643C163.04 45.3643 162.618 45.197 162.299 44.8965C161.98 44.596 161.788 44.1851 161.762 43.7477L161.872 28.3154C161.898 27.8781 162.09 27.4671 162.409 27.1666C162.728 26.8662 163.149 26.6988 163.587 26.6988C164.025 26.6988 164.447 26.8662 164.766 27.1666C165.085 27.4671 165.277 27.8781 165.303 28.3154L165.194 37.1946L170.417 32.1477C170.724 31.8416 171.137 31.6655 171.571 31.6558C171.98 31.6637 172.37 31.8314 172.657 32.1231C172.944 32.4148 173.106 32.8073 173.107 33.2166C173.108 33.6215 172.956 34.0119 172.682 34.3098L168.88 37.7959L173.538 42.9643C173.682 43.0997 173.796 43.2624 173.876 43.4429C173.955 43.6234 173.997 43.8179 174 44.0149Z\" fill=\"#323232\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-iwvnmo\",\"data-framer-name\":\"Logo-Printify-Wrapper\",layoutDependency:layoutDependency,layoutId:\"WRcgeyz6B\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:2208,intrinsicWidth:4010,pixelHeight:130,pixelWidth:500,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/eGv8imxl4IPmjpTF8EOZinlqeyE.svg\"},className:\"framer-1becl05\",\"data-framer-name\":\"image\",layoutDependency:layoutDependency,layoutId:\"PLvNnLqI_\",style:{opacity:.8}})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1nfvpvr\",\"data-framer-name\":\"Logo-Nordecon-Wrapper\",layoutDependency:layoutDependency,layoutId:\"Ryn_14tb5\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1uwlntq\",\"data-framer-name\":\"Logo-nordecon\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"V8QQJIArC\",opacity:1,style:{backgroundColor:\"rgba(0, 0, 0, 0)\"},svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 202 26\"><path d=\"M 82.976 13.203 L 82.976 5.96 L 88.785 5.96 C 91.523 5.96 92.758 7.651 92.758 9.581 C 92.758 11.512 91.523 13.203 88.785 13.203 Z M 91.724 16.099 C 94.528 15.203 96.633 12.72 96.633 9.581 C 96.633 5.34 93.76 2.167 89.085 2.167 L 79.102 2.167 L 79.102 23.823 L 82.976 23.823 L 82.976 16.995 L 87.717 16.995 C 87.717 16.995 91.051 22.152 91.058 22.164 C 92.123 23.675 94.399 24.489 96.928 23.789 C 96.93 23.789 91.724 16.099 91.724 16.099 Z M 104.326 20.031 L 108.215 20.031 C 112.724 20.031 115.594 16.824 115.594 12.996 C 115.594 9.167 112.724 5.96 108.215 5.96 L 104.326 5.96 Z M 100.452 2.165 L 108.215 2.165 C 115.293 2.165 119.47 7.269 119.47 12.996 C 119.47 18.721 115.127 23.825 108.215 23.825 L 100.452 23.825 Z M 169.487 20.479 C 173.146 20.479 176.453 17.202 176.453 12.997 C 176.453 8.789 173.146 5.514 169.487 5.514 C 165.827 5.514 162.519 8.789 162.519 12.997 C 162.519 17.202 165.827 20.479 169.487 20.479 Z M 169.487 1.718 C 175.578 1.718 180.408 6.65 180.408 12.997 C 180.408 19.341 175.578 24.273 169.487 24.273 C 163.397 24.273 158.568 19.341 158.568 12.997 C 158.568 6.651 163.397 1.719 169.487 1.719 Z M 65.421 20.479 C 69.085 20.479 72.389 17.202 72.389 12.997 C 72.389 8.789 69.084 5.514 65.421 5.514 C 61.761 5.514 58.456 8.789 58.456 12.997 C 58.456 17.202 61.761 20.479 65.421 20.479 Z M 65.421 1.718 C 71.514 1.718 76.342 6.65 76.342 12.997 C 76.342 19.341 71.514 24.273 65.421 24.273 C 59.33 24.273 54.502 19.341 54.502 12.997 C 54.502 6.651 59.33 1.719 65.421 1.719 Z M 153.469 19.317 C 153.376 19.375 151.915 20.479 149.865 20.479 C 146.191 20.479 142.873 17.203 142.873 12.998 C 142.873 8.789 146.191 5.514 149.865 5.514 C 151.956 5.514 153.402 6.637 153.402 6.637 C 155.43 7.958 157.974 6.792 158.555 6.198 C 156.106 3.063 153.117 1.719 149.865 1.719 C 143.751 1.719 138.903 6.651 138.903 12.997 C 138.903 19.342 143.751 24.273 149.865 24.273 C 153.117 24.273 156.281 22.808 158.555 19.796 C 158.114 19.323 155.521 17.974 153.469 19.316 Z\" fill=\"var(--token-5a8ef596-260e-455e-b941-68898e3a21fa, rgb(50, 50, 50)) /* {&quot;name&quot;:&quot;Off black&quot;} */\"></path><path d=\"M 139.009 23.823 C 139.009 21.734 137.098 20.029 135.075 20.029 L 126.517 20.029 L 126.517 14.617 L 135.303 14.617 L 135.303 10.823 L 126.517 10.823 L 126.517 5.961 L 135.107 5.961 C 137.113 5.943 138.967 4.247 139.009 2.169 C 139.009 2.165 122.641 2.167 122.641 2.167 L 122.641 23.823 C 122.641 23.823 139.009 23.829 139.009 23.823 Z M 51.888 2.169 L 48.006 2.169 L 48.006 16.106 L 37.087 3.442 C 35.937 2.185 34.623 1.805 33.561 1.702 L 33.559 23.823 L 37.441 23.823 L 37.441 9.884 L 48.36 22.549 C 49.391 23.747 50.826 24.187 51.887 24.29 L 51.889 2.169 Z M 201.354 2.169 L 197.474 2.169 L 197.474 16.106 C 197.474 16.106 186.553 3.443 186.553 3.442 C 185.402 2.185 184.09 1.805 183.027 1.702 L 183.027 23.822 L 186.907 23.822 L 186.907 9.884 C 186.907 9.884 197.825 22.547 197.825 22.549 C 198.856 23.747 200.29 24.187 201.354 24.29 L 201.354 2.169 Z M 3.686 3.807 C 8.601 -1.269 16.57 -1.269 21.483 3.807 C 26.398 8.881 26.398 17.108 21.483 22.185 C 16.57 27.259 8.601 27.259 3.687 22.185 C -1.229 17.108 -1.229 8.881 3.686 3.807 Z\" fill=\"var(--token-5a8ef596-260e-455e-b941-68898e3a21fa, rgb(50, 50, 50)) /* {&quot;name&quot;:&quot;Off black&quot;} */\"></path><path d=\"M 3.705 3.827 C 8.594 -1.22 16.52 -1.22 21.409 3.827 C 26.297 8.875 26.297 17.058 21.409 22.107 C 16.52 27.156 8.594 27.156 3.706 22.107 C -1.182 17.058 -1.182 8.875 3.706 3.827 Z\" fill=\"var(--token-5a8ef596-260e-455e-b941-68898e3a21fa, rgb(50, 50, 50)) /* {&quot;name&quot;:&quot;Off black&quot;} */\"></path><path d=\"M 3.727 3.848 C 8.59 -1.172 16.473 -1.172 21.334 3.848 C 26.196 8.868 26.196 17.008 21.334 22.029 C 16.473 27.051 8.59 27.051 3.727 22.029 C -1.135 17.008 -1.135 8.868 3.727 3.848 Z\" fill=\"var(--token-5a8ef596-260e-455e-b941-68898e3a21fa, rgb(50, 50, 50)) /* {&quot;name&quot;:&quot;Off black&quot;} */\"></path><path d=\"M 3.749 3.869 C 8.585 -1.125 16.426 -1.125 21.261 3.869 C 26.097 8.862 26.097 16.958 21.261 21.952 C 16.426 26.947 8.585 26.947 3.749 21.952 C -1.088 16.958 -1.088 8.863 3.749 3.869 Z\" fill=\"var(--token-5a8ef596-260e-455e-b941-68898e3a21fa, rgb(50, 50, 50)) /* {&quot;name&quot;:&quot;Off black&quot;} */\"></path><path d=\"M 3.768 3.889 C 8.578 -1.077 16.377 -1.077 21.186 3.889 C 25.996 8.856 25.996 16.908 21.186 21.876 C 16.377 26.843 8.579 26.843 3.769 21.876 C -1.042 16.908 -1.042 8.856 3.769 3.889 Z\" fill=\"var(--token-5a8ef596-260e-455e-b941-68898e3a21fa, rgb(50, 50, 50)) /* {&quot;name&quot;:&quot;Off black&quot;} */\"></path><path d=\"M 3.79 3.911 C 8.573 -1.029 16.33 -1.029 21.112 3.911 C 25.896 8.851 25.896 16.858 21.112 21.799 C 16.329 26.739 8.573 26.739 3.79 21.799 C -0.994 16.858 -0.994 8.85 3.79 3.911 Z\" fill=\"var(--token-5a8ef596-260e-455e-b941-68898e3a21fa, rgb(50, 50, 50)) /* {&quot;name&quot;:&quot;Off black&quot;} */\"></path><path d=\"M 3.808 3.931 C 8.565 -0.981 16.279 -0.981 21.035 3.931 C 25.793 8.843 25.793 16.807 21.035 21.721 C 16.279 26.635 8.565 26.635 3.809 21.721 C -0.95 16.807 -0.95 8.843 3.808 3.931 Z\" fill=\"var(--token-5a8ef596-260e-455e-b941-68898e3a21fa, rgb(50, 50, 50)) /* {&quot;name&quot;:&quot;Off black&quot;} */\"></path><path d=\"M 3.829 3.952 C 8.56 -0.934 16.231 -0.934 20.962 3.952 C 25.693 8.838 25.693 16.757 20.962 21.643 C 16.231 26.529 8.56 26.529 3.83 21.643 C -0.902 16.757 -0.902 8.838 3.829 3.952 Z\" fill=\"var(--token-5a8ef596-260e-455e-b941-68898e3a21fa, rgb(50, 50, 50)) /* {&quot;name&quot;:&quot;Off black&quot;} */\"></path><path d=\"M 3.849 3.973 C 8.553 -0.886 16.183 -0.886 20.887 3.973 C 25.591 8.83 25.591 16.707 20.887 21.566 C 16.183 26.425 8.553 26.425 3.85 21.566 C -0.856 16.707 -0.856 8.83 3.849 3.972 Z\" fill=\"var(--token-5a8ef596-260e-455e-b941-68898e3a21fa, rgb(50, 50, 50)) /* {&quot;name&quot;:&quot;Off black&quot;} */\"></path><path d=\"M 3.87 3.994 C 8.549 -0.838 16.134 -0.838 20.813 3.994 C 25.492 8.825 25.492 16.657 20.813 21.489 C 16.135 26.321 8.549 26.321 3.871 21.489 C -0.808 16.657 -0.808 8.825 3.87 3.994 Z\" fill=\"var(--token-5a8ef596-260e-455e-b941-68898e3a21fa, rgb(50, 50, 50)) /* {&quot;name&quot;:&quot;Off black&quot;} */\"></path><path d=\"M 3.891 4.015 C 8.543 -0.789 16.086 -0.789 20.738 4.015 C 25.391 8.819 25.391 16.607 20.738 21.412 C 16.086 26.217 8.543 26.217 3.891 21.412 C -0.763 16.607 -0.763 8.818 3.891 4.015 Z\" fill=\"var(--token-5a8ef596-260e-455e-b941-68898e3a21fa, rgb(50, 50, 50)) /* {&quot;name&quot;:&quot;Off black&quot;} */\"></path><path d=\"M 3.911 4.035 C 8.537 -0.741 16.039 -0.741 20.664 4.035 C 25.29 8.812 25.29 16.557 20.664 21.335 C 16.039 26.112 8.537 26.112 3.912 21.335 C -0.715 16.557 -0.715 8.812 3.912 4.035 Z\" fill=\"var(--token-5a8ef596-260e-455e-b941-68898e3a21fa, rgb(50, 50, 50)) /* {&quot;name&quot;:&quot;Off black&quot;} */\"></path><path d=\"M 3.932 4.056 C 8.532 -0.693 15.99 -0.693 20.589 4.056 C 25.189 8.806 25.189 16.506 20.589 21.258 C 15.99 26.007 8.532 26.007 3.932 21.258 C -0.669 16.506 -0.669 8.806 3.932 4.056 Z\" fill=\"var(--token-5a8ef596-260e-455e-b941-68898e3a21fa, rgb(50, 50, 50)) /* {&quot;name&quot;:&quot;Off black&quot;} */\"></path><path d=\"M 3.951 4.077 C 8.524 -0.646 15.94 -0.646 20.514 4.077 C 25.087 8.8 25.087 16.456 20.514 21.18 C 15.941 25.904 8.525 25.904 3.952 21.18 C -0.623 16.456 -0.623 8.8 3.951 4.077 Z\" fill=\"var(--token-5a8ef596-260e-455e-b941-68898e3a21fa, rgb(50, 50, 50)) /* {&quot;name&quot;:&quot;Off black&quot;} */\"></path><path d=\"M 3.971 4.098 C 8.519 -0.598 15.892 -0.598 20.438 4.098 C 24.987 8.794 24.987 16.406 20.438 21.104 C 15.892 25.8 8.519 25.8 3.971 21.104 C -0.577 16.406 -0.577 8.794 3.971 4.098 Z\" fill=\"var(--token-5a8ef596-260e-455e-b941-68898e3a21fa, rgb(50, 50, 50)) /* {&quot;name&quot;:&quot;Off black&quot;} */\"></path><path d=\"M 3.992 4.119 C 8.514 -0.55 15.844 -0.55 20.365 4.119 C 24.886 8.787 24.886 16.356 20.365 21.026 C 15.844 25.695 8.514 25.695 3.992 21.026 C -0.529 16.356 -0.529 8.787 3.992 4.119 Z\" fill=\"var(--token-5a8ef596-260e-455e-b941-68898e3a21fa, rgb(50, 50, 50)) /* {&quot;name&quot;:&quot;Off black&quot;} */\"></path><path d=\"M 4.012 4.14 C 8.507 -0.501 15.796 -0.501 20.29 4.14 C 24.785 8.782 24.785 16.306 20.29 20.95 C 15.796 25.591 8.507 25.591 4.013 20.95 C -0.483 16.306 -0.483 8.782 4.013 4.139 Z\" fill=\"var(--token-5a8ef596-260e-455e-b941-68898e3a21fa, rgb(50, 50, 50)) /* {&quot;name&quot;:&quot;Off black&quot;} */\"></path><path d=\"M 4.033 4.16 C 8.502 -0.454 15.747 -0.454 20.216 4.16 C 24.684 8.775 24.684 16.256 20.216 20.871 C 15.748 25.486 8.503 25.486 4.034 20.871 C -0.435 16.256 -0.435 8.775 4.034 4.16 Z\" fill=\"var(--token-5a8ef596-260e-455e-b941-68898e3a21fa, rgb(50, 50, 50)) /* {&quot;name&quot;:&quot;Off black&quot;} */\"></path><path d=\"M 4.055 4.181 C 6.16 1.983 9.064 0.741 12.099 0.741 C 15.133 0.741 18.037 1.983 20.143 4.181 C 24.585 8.768 24.585 16.206 20.143 20.793 C 15.7 25.382 8.497 25.382 4.055 20.793 C -0.389 16.205 -0.389 8.768 4.055 4.181 Z\" fill=\"var(--token-5a8ef596-260e-455e-b941-68898e3a21fa, rgb(50, 50, 50)) /* {&quot;name&quot;:&quot;Off black&quot;} */\"></path><path d=\"M 4.072 4.202 C 8.49 -0.358 15.65 -0.358 20.067 4.202 C 24.482 8.762 24.482 16.156 20.067 20.717 C 15.65 25.278 8.49 25.278 4.074 20.717 C -0.343 16.156 -0.343 8.762 4.072 4.202 Z\" fill=\"var(--token-5a8ef596-260e-455e-b941-68898e3a21fa, rgb(50, 50, 50)) /* {&quot;name&quot;:&quot;Off black&quot;} */\"></path><path d=\"M 4.095 4.223 C 8.486 -0.31 15.602 -0.31 19.992 4.223 C 24.383 8.756 24.383 16.105 19.992 20.64 C 15.602 25.174 8.486 25.174 4.096 20.64 C -0.296 16.105 -0.296 8.756 4.095 4.223 Z\" fill=\"var(--token-5a8ef596-260e-455e-b941-68898e3a21fa, rgb(50, 50, 50)) /* {&quot;name&quot;:&quot;Off black&quot;} */\"></path><path d=\"M 4.115 4.244 C 6.183 2.085 9.036 0.865 12.017 0.865 C 14.998 0.865 17.851 2.085 19.919 4.244 C 24.282 8.75 24.282 16.055 19.919 20.563 C 17.851 22.722 14.998 23.942 12.017 23.942 C 9.036 23.942 6.184 22.722 4.116 20.563 C -0.248 16.055 -0.248 8.749 4.115 4.244 Z\" fill=\"var(--token-5a8ef596-260e-455e-b941-68898e3a21fa, rgb(50, 50, 50)) /* {&quot;name&quot;:&quot;Off black&quot;} */\"></path><path d=\"M 4.135 4.265 C 8.473 -0.215 15.506 -0.215 19.843 4.265 C 24.18 8.743 24.18 16.005 19.843 20.485 C 15.506 24.965 8.473 24.965 4.135 20.485 C -0.202 16.006 -0.202 8.744 4.136 4.266 Z\" fill=\"var(--token-5a8ef596-260e-455e-b941-68898e3a21fa, rgb(50, 50, 50)) /* {&quot;name&quot;:&quot;Off black&quot;} */\"></path><path d=\"M 4.156 4.285 C 6.198 2.152 9.017 0.947 11.962 0.947 C 14.907 0.947 17.726 2.152 19.769 4.285 C 24.079 8.738 24.079 15.954 19.769 20.408 C 15.457 24.861 8.467 24.861 4.156 20.408 C -0.157 15.954 -0.157 8.738 4.156 4.285 Z\" fill=\"var(--token-5a8ef596-260e-455e-b941-68898e3a21fa, rgb(50, 50, 50)) /* {&quot;name&quot;:&quot;Off black&quot;} */\"></path><path d=\"M 4.177 4.306 C 8.462 -0.119 15.41 -0.119 19.695 4.306 C 23.98 8.731 23.98 15.905 19.695 20.331 C 17.665 22.452 14.863 23.65 11.936 23.65 C 9.009 23.65 6.208 22.452 4.177 20.331 C -0.108 15.905 -0.108 8.731 4.177 4.306 Z\" fill=\"var(--token-5a8ef596-260e-455e-b941-68898e3a21fa, rgb(50, 50, 50)) /* {&quot;name&quot;:&quot;Off black&quot;} */\"></path><path d=\"M 4.196 4.327 C 6.214 2.22 8.998 1.029 11.907 1.029 C 14.817 1.029 17.601 2.22 19.619 4.327 C 23.878 8.725 23.878 15.855 19.619 20.253 C 15.361 24.651 8.456 24.651 4.197 20.253 C -0.063 15.855 -0.063 8.725 4.197 4.327 Z\" fill=\"var(--token-5a8ef596-260e-455e-b941-68898e3a21fa, rgb(50, 50, 50)) /* {&quot;name&quot;:&quot;Off black&quot;} */\"></path><path d=\"M 4.216 4.348 C 8.45 -0.023 15.312 -0.023 19.544 4.348 C 23.777 8.719 23.777 15.804 19.544 20.177 C 17.539 22.271 14.772 23.455 11.88 23.455 C 8.989 23.455 6.222 22.271 4.217 20.177 C -0.016 15.805 -0.016 8.718 4.218 4.347 Z\" fill=\"var(--token-5a8ef596-260e-455e-b941-68898e3a21fa, rgb(50, 50, 50)) /* {&quot;name&quot;:&quot;Off black&quot;} */\"></path><path d=\"M 4.238 4.369 C 8.444 0.025 15.265 0.025 19.47 4.369 C 23.678 8.712 23.678 15.754 19.47 20.099 C 15.265 24.443 8.445 24.443 4.239 20.099 C 0.031 15.754 0.031 8.712 4.238 4.369 Z\" fill=\"var(--token-5a8ef596-260e-455e-b941-68898e3a21fa, rgb(50, 50, 50)) /* {&quot;name&quot;:&quot;Off black&quot;} */\"></path><path d=\"M 4.257 4.389 C 6.237 2.321 8.97 1.152 11.826 1.152 C 14.682 1.152 17.414 2.321 19.395 4.389 C 23.575 8.706 23.575 15.704 19.395 20.022 C 17.415 22.091 14.682 23.26 11.826 23.26 C 8.971 23.26 6.238 22.091 4.257 20.022 C 0.077 15.704 0.077 8.706 4.257 4.389 Z\" fill=\"var(--token-5a8ef596-260e-455e-b941-68898e3a21fa, rgb(50, 50, 50)) /* {&quot;name&quot;:&quot;Off black&quot;} */\"></path><path d=\"M 4.278 4.41 C 6.247 2.355 8.962 1.193 11.8 1.193 C 14.638 1.193 17.353 2.355 19.322 4.41 C 23.475 8.7 23.475 15.654 19.322 19.945 C 17.354 22.001 14.638 23.162 11.8 23.162 C 8.963 23.162 6.247 22.001 4.279 19.945 C 0.124 15.654 0.124 8.7 4.279 4.41 Z\" fill=\"var(--token-5a8ef596-260e-455e-b941-68898e3a21fa, rgb(50, 50, 50)) /* {&quot;name&quot;:&quot;Off black&quot;} */\"></path><path d=\"M 4.299 4.431 C 6.254 2.389 8.953 1.234 11.773 1.234 C 14.592 1.234 17.291 2.389 19.247 4.431 C 23.375 8.694 23.375 15.603 19.247 19.867 C 17.291 21.91 14.593 23.065 11.773 23.065 C 8.953 23.065 6.254 21.91 4.299 19.867 C 0.17 15.604 0.17 8.694 4.299 4.431 Z\" fill=\"var(--token-5a8ef596-260e-455e-b941-68898e3a21fa, rgb(50, 50, 50)) /* {&quot;name&quot;:&quot;Off black&quot;} */\"></path><path d=\"M 4.32 4.453 C 6.263 2.423 8.944 1.276 11.746 1.276 C 14.548 1.276 17.23 2.423 19.173 4.453 C 23.274 8.687 23.274 15.554 19.173 19.79 C 17.23 21.82 14.549 22.967 11.747 22.967 C 8.945 22.967 6.264 21.82 4.32 19.79 C 0.218 15.554 0.218 8.687 4.32 4.453 Z\" fill=\"var(--token-5a8ef596-260e-455e-b941-68898e3a21fa, rgb(50, 50, 50)) /* {&quot;name&quot;:&quot;Off black&quot;} */\"></path><path d=\"M 4.339 4.473 C 6.27 2.456 8.934 1.317 11.718 1.317 C 14.502 1.317 17.166 2.456 19.097 4.473 C 23.173 8.681 23.173 15.504 19.097 19.714 C 17.166 21.73 14.503 22.87 11.719 22.87 C 8.935 22.87 6.271 21.73 4.341 19.714 C 0.264 15.503 0.264 8.68 4.339 4.473 Z\" fill=\"var(--token-5a8ef596-260e-455e-b941-68898e3a21fa, rgb(50, 50, 50)) /* {&quot;name&quot;:&quot;Off black&quot;} */\"></path><path d=\"M 4.36 4.493 C 6.278 2.49 8.925 1.357 11.691 1.357 C 14.457 1.357 17.104 2.49 19.023 4.493 C 23.072 8.675 23.072 15.454 19.023 19.636 C 17.104 21.64 14.457 22.772 11.691 22.772 C 8.925 22.772 6.278 21.64 4.36 19.636 C 0.31 15.454 0.31 8.675 4.36 4.493 Z\" fill=\"var(--token-5a8ef596-260e-455e-b941-68898e3a21fa, rgb(50, 50, 50)) /* {&quot;name&quot;:&quot;Off black&quot;} */\"></path><path d=\"M 4.381 4.514 C 6.287 2.524 8.917 1.399 11.665 1.399 C 14.413 1.399 17.043 2.524 18.949 4.514 C 22.972 8.669 22.972 15.403 18.949 19.559 C 17.043 21.55 14.413 22.675 11.665 22.675 C 8.917 22.675 6.287 21.55 4.381 19.559 C 0.357 15.403 0.357 8.669 4.381 4.514 Z\" fill=\"var(--token-5a8ef596-260e-455e-b941-68898e3a21fa, rgb(50, 50, 50)) /* {&quot;name&quot;:&quot;Off black&quot;} */\"></path><path d=\"M 4.4 4.535 C 6.294 2.558 8.907 1.44 11.637 1.44 C 14.368 1.44 16.98 2.558 18.874 4.535 C 22.87 8.663 22.87 15.354 18.874 19.481 C 16.981 21.459 14.368 22.577 11.638 22.577 C 8.907 22.577 6.295 21.459 4.401 19.481 C 0.404 15.354 0.404 8.661 4.4 4.535 Z\" fill=\"var(--token-5a8ef596-260e-455e-b941-68898e3a21fa, rgb(50, 50, 50)) /* {&quot;name&quot;:&quot;Off black&quot;} */\"></path><path d=\"M 4.42 4.557 C 6.301 2.592 8.897 1.481 11.609 1.481 C 14.322 1.481 16.918 2.592 18.799 4.557 C 22.769 8.656 22.769 15.303 18.799 19.404 C 16.918 21.369 14.322 22.479 11.61 22.479 C 8.897 22.479 6.302 21.369 4.421 19.404 C 0.45 15.303 0.45 8.656 4.421 4.557 Z\" fill=\"var(--token-5a8ef596-260e-455e-b941-68898e3a21fa, rgb(50, 50, 50)) /* {&quot;name&quot;:&quot;Off black&quot;} */\"></path><path d=\"M 4.442 4.577 C 6.31 2.625 8.889 1.522 11.583 1.522 C 14.278 1.522 16.857 2.625 18.725 4.577 C 22.668 8.651 22.668 15.253 18.725 19.327 C 16.857 21.279 14.278 22.382 11.584 22.382 C 8.889 22.382 6.311 21.279 4.442 19.327 C 0.497 15.253 0.497 8.651 4.442 4.577 Z\" fill=\"var(--token-5a8ef596-260e-455e-b941-68898e3a21fa, rgb(50, 50, 50)) /* {&quot;name&quot;:&quot;Off black&quot;} */\"></path><path d=\"M 4.461 4.598 C 6.317 2.659 8.879 1.564 11.555 1.564 C 14.232 1.564 16.793 2.659 18.649 4.598 C 22.568 8.644 22.568 15.203 18.649 19.249 C 16.793 21.188 14.232 22.284 11.556 22.284 C 8.879 22.284 6.318 21.188 4.462 19.249 C 0.543 15.203 0.543 8.644 4.462 4.598 Z\" fill=\"var(--token-5a8ef596-260e-455e-b941-68898e3a21fa, rgb(50, 50, 50)) /* {&quot;name&quot;:&quot;Off black&quot;} */\"></path><path d=\"M 4.482 4.619 C 6.326 2.693 8.87 1.605 11.529 1.605 C 14.188 1.605 16.732 2.693 18.576 4.619 C 22.468 8.637 22.468 15.152 18.576 19.173 C 16.732 21.099 14.188 22.187 11.529 22.187 C 8.871 22.187 6.327 21.099 4.483 19.173 C 0.591 15.152 0.591 8.637 4.483 4.619 Z\" fill=\"var(--token-5a8ef596-260e-455e-b941-68898e3a21fa, rgb(50, 50, 50)) /* {&quot;name&quot;:&quot;Off black&quot;} */\"></path><path d=\"M 4.504 4.639 C 6.335 2.727 8.862 1.646 11.503 1.646 C 14.143 1.646 16.67 2.727 18.502 4.639 C 22.368 8.631 22.368 15.102 18.502 19.095 C 16.67 21.008 14.144 22.089 11.503 22.089 C 8.863 22.089 6.336 21.008 4.505 19.095 C 0.638 15.102 0.638 8.631 4.505 4.639 Z\" fill=\"var(--token-5a8ef596-260e-455e-b941-68898e3a21fa, rgb(50, 50, 50)) /* {&quot;name&quot;:&quot;Off black&quot;} */\"></path><path d=\"M 4.522 4.66 C 6.342 2.761 8.851 1.687 11.474 1.687 C 14.097 1.687 16.606 2.761 18.426 4.66 C 22.265 8.625 22.265 15.052 18.426 19.017 C 16.607 20.917 14.097 21.991 11.474 21.991 C 8.852 21.991 6.342 20.917 4.523 19.017 C 0.683 15.052 0.683 8.625 4.522 4.66 Z\" fill=\"var(--token-5a8ef596-260e-455e-b941-68898e3a21fa, rgb(50, 50, 50)) /* {&quot;name&quot;:&quot;Off black&quot;} */\"></path><path d=\"M 4.543 4.681 C 6.35 2.794 8.843 1.728 11.448 1.728 C 14.053 1.728 16.545 2.794 18.352 4.681 C 22.166 8.619 22.166 15.001 18.352 18.941 C 16.545 20.828 14.053 21.894 11.448 21.894 C 8.843 21.894 6.35 20.828 4.543 18.941 C 0.73 15.001 0.73 8.619 4.543 4.682 Z\" fill=\"var(--token-5a8ef596-260e-455e-b941-68898e3a21fa, rgb(50, 50, 50)) /* {&quot;name&quot;:&quot;Off black&quot;} */\"></path><path d=\"M 4.564 4.702 C 6.358 2.828 8.833 1.77 11.42 1.77 C 14.007 1.77 16.482 2.828 18.276 4.702 C 22.064 8.613 22.064 14.952 18.276 18.864 C 16.482 20.738 14.007 21.796 11.42 21.796 C 8.834 21.796 6.358 20.738 4.564 18.864 C 0.776 14.952 0.776 8.613 4.564 4.702 Z\" fill=\"var(--token-5a8ef596-260e-455e-b941-68898e3a21fa, rgb(50, 50, 50)) /* {&quot;name&quot;:&quot;Off black&quot;} */\"></path><path d=\"M 4.585 4.723 C 6.367 2.862 8.826 1.811 11.394 1.811 C 13.963 1.811 16.422 2.862 18.203 4.723 C 21.965 8.607 21.965 14.901 18.203 18.787 C 16.422 20.648 13.963 21.699 11.394 21.699 C 8.825 21.699 6.367 20.648 4.585 18.787 C 0.824 14.901 0.824 8.607 4.585 4.722 Z\" fill=\"var(--token-5a8ef596-260e-455e-b941-68898e3a21fa, rgb(50, 50, 50)) /* {&quot;name&quot;:&quot;Off black&quot;} */\"></path><path d=\"M 4.605 4.744 C 6.374 2.896 8.815 1.852 11.367 1.852 C 13.918 1.852 16.359 2.896 18.128 4.744 C 21.863 8.6 21.863 14.852 18.128 18.709 C 16.359 20.557 13.918 21.601 11.367 21.601 C 8.816 21.601 6.375 20.557 4.606 18.709 C 0.87 14.852 0.87 8.6 4.605 4.745 Z\" fill=\"var(--token-5a8ef596-260e-455e-b941-68898e3a21fa, rgb(50, 50, 50)) /* {&quot;name&quot;:&quot;Off black&quot;} */\"></path><path d=\"M 4.626 4.764 C 6.383 2.93 8.807 1.893 11.34 1.893 C 13.873 1.893 16.297 2.93 18.054 4.764 C 21.763 8.595 21.763 14.801 18.054 18.632 C 16.297 20.467 13.873 21.504 11.34 21.504 C 8.807 21.504 6.383 20.467 4.627 18.632 C 0.918 14.801 0.918 8.595 4.626 4.764 Z\" fill=\"var(--token-5a8ef596-260e-455e-b941-68898e3a21fa, rgb(50, 50, 50)) /* {&quot;name&quot;:&quot;Off black&quot;} */\"></path><path d=\"M 4.646 4.786 C 6.391 2.964 8.797 1.935 11.312 1.935 C 13.827 1.935 16.234 2.964 17.979 4.786 C 21.662 8.588 21.662 14.751 17.979 18.555 C 16.234 20.377 13.828 21.406 11.313 21.406 C 8.798 21.406 6.391 20.377 4.647 18.555 C 0.963 14.751 0.963 8.587 4.644 4.786 Z\" fill=\"var(--token-5a8ef596-260e-455e-b941-68898e3a21fa, rgb(50, 50, 50)) /* {&quot;name&quot;:&quot;Off black&quot;} */\"></path><path d=\"M 4.665 4.806 C 6.398 2.997 8.788 1.975 11.285 1.975 C 13.782 1.975 16.172 2.997 17.904 4.806 C 21.561 8.582 21.561 14.701 17.904 18.477 C 16.173 20.286 13.783 21.309 11.285 21.309 C 8.788 21.309 6.398 20.286 4.666 18.477 C 1.01 14.701 1.01 8.581 4.666 4.806 Z\" fill=\"var(--token-5a8ef596-260e-455e-b941-68898e3a21fa, rgb(50, 50, 50)) /* {&quot;name&quot;:&quot;Off black&quot;} */\"></path><path d=\"M 4.687 4.826 C 6.407 3.03 8.779 2.015 11.259 2.015 C 13.738 2.015 16.111 3.03 17.83 4.826 C 21.46 8.575 21.46 14.651 17.83 18.4 C 16.111 20.196 13.738 21.21 11.259 21.21 C 8.78 21.21 6.408 20.196 4.688 18.4 C 1.057 14.651 1.057 8.575 4.687 4.827 Z\" fill=\"var(--token-5a8ef596-260e-455e-b941-68898e3a21fa, rgb(50, 50, 50)) /* {&quot;name&quot;:&quot;Off black&quot;} */\"></path><path d=\"M 4.707 4.848 C 6.414 3.065 8.77 2.058 11.231 2.058 C 13.693 2.058 16.048 3.065 17.756 4.848 C 21.359 8.569 21.359 14.601 17.756 18.323 C 16.049 20.107 13.693 21.114 11.232 21.114 C 8.77 21.114 6.415 20.107 4.707 18.323 C 1.104 14.601 1.104 8.569 4.707 4.848 Z\" fill=\"var(--token-5a8ef596-260e-455e-b941-68898e3a21fa, rgb(50, 50, 50)) /* {&quot;name&quot;:&quot;Off black&quot;} */\"></path><path d=\"M 4.728 4.868 C 6.422 3.098 8.761 2.098 11.204 2.098 C 13.648 2.098 15.986 3.098 17.681 4.868 C 21.258 8.562 21.258 14.55 17.681 18.245 C 15.986 20.016 13.648 21.016 11.205 21.016 C 8.761 21.016 6.423 20.016 4.728 18.245 C 1.151 14.55 1.151 8.562 4.728 4.868 Z\" fill=\"var(--token-5a8ef596-260e-455e-b941-68898e3a21fa, rgb(50, 50, 50)) /* {&quot;name&quot;:&quot;Off black&quot;} */\"></path><path d=\"M 4.748 4.89 C 6.43 3.133 8.751 2.14 11.177 2.14 C 13.602 2.14 15.923 3.133 17.606 4.89 C 21.157 8.556 21.157 14.501 17.606 18.168 C 15.923 19.925 13.602 20.918 11.177 20.918 C 8.752 20.918 6.431 19.925 4.749 18.168 C 1.196 14.5 1.196 8.556 4.748 4.89 Z\" fill=\"var(--token-5a8ef596-260e-455e-b941-68898e3a21fa, rgb(50, 50, 50)) /* {&quot;name&quot;:&quot;Off black&quot;} */\"></path><path d=\"M 4.769 4.911 C 6.439 3.166 8.743 2.181 11.151 2.181 C 13.559 2.181 15.863 3.166 17.533 4.911 C 21.057 8.55 21.057 14.449 17.533 18.091 C 15.863 19.836 13.559 20.821 11.151 20.821 C 8.743 20.821 6.439 19.836 4.77 18.091 C 1.244 14.45 1.244 8.55 4.769 4.911 Z\" fill=\"var(--token-5a8ef596-260e-455e-b941-68898e3a21fa, rgb(50, 50, 50)) /* {&quot;name&quot;:&quot;Off black&quot;} */\"></path><path d=\"M 4.789 4.931 C 6.446 3.2 8.733 2.222 11.123 2.222 C 13.513 2.222 15.799 3.2 17.457 4.931 C 20.956 8.544 20.956 14.401 17.457 18.014 C 15.799 19.745 13.513 20.723 11.123 20.723 C 8.733 20.723 6.446 19.745 4.789 18.014 C 1.29 14.401 1.29 8.544 4.789 4.931 Z\" fill=\"var(--token-5a8ef596-260e-455e-b941-68898e3a21fa, rgb(50, 50, 50)) /* {&quot;name&quot;:&quot;Off black&quot;} */\"></path><path d=\"M 4.808 4.952 C 6.453 3.234 8.723 2.263 11.095 2.263 C 13.467 2.263 15.737 3.234 17.382 4.952 C 20.855 8.537 20.855 14.35 17.382 17.937 C 15.737 19.655 13.467 20.626 11.095 20.626 C 8.724 20.626 6.454 19.655 4.809 17.937 C 1.336 14.35 1.336 8.537 4.808 4.952 Z\" fill=\"var(--token-5a8ef596-260e-455e-b941-68898e3a21fa, rgb(50, 50, 50)) /* {&quot;name&quot;:&quot;Off black&quot;} */\"></path><path d=\"M 4.83 4.973 C 6.463 3.267 8.716 2.304 11.07 2.304 C 13.424 2.304 15.676 3.267 17.309 4.973 C 20.755 8.531 20.755 14.3 17.309 17.859 C 15.676 19.564 13.424 20.528 11.07 20.528 C 8.716 20.528 6.464 19.564 4.831 17.859 C 1.384 14.3 1.384 8.531 4.83 4.973 Z\" fill=\"var(--token-5a8ef596-260e-455e-b941-68898e3a21fa, rgb(50, 50, 50)) /* {&quot;name&quot;:&quot;Off black&quot;} */\"></path><path d=\"M 4.85 4.994 C 6.47 3.302 8.705 2.345 11.041 2.345 C 13.377 2.345 15.613 3.302 17.233 4.994 C 20.654 8.526 20.654 14.25 17.233 17.782 C 15.613 19.474 13.378 20.43 11.042 20.43 C 8.706 20.43 6.471 19.474 4.85 17.782 C 1.43 14.25 1.43 8.526 4.85 4.994 Z\" fill=\"var(--token-5a8ef596-260e-455e-b941-68898e3a21fa, rgb(50, 50, 50)) /* {&quot;name&quot;:&quot;Off black&quot;} */\"></path><path d=\"M 4.871 5.015 C 6.479 3.336 8.697 2.387 11.015 2.387 C 13.333 2.387 15.552 3.336 17.159 5.015 C 20.553 8.519 20.553 14.2 17.159 17.704 C 15.552 19.384 13.334 20.333 11.015 20.333 C 8.697 20.333 6.479 19.384 4.871 17.704 C 1.478 14.2 1.478 8.519 4.871 5.015 Z\" fill=\"var(--token-5a8ef596-260e-455e-b941-68898e3a21fa, rgb(50, 50, 50)) /* {&quot;name&quot;:&quot;Off black&quot;} */\"></path><path d=\"M 4.891 5.036 C 6.486 3.37 8.687 2.428 10.988 2.428 C 13.288 2.428 15.489 3.37 17.084 5.036 C 20.453 8.512 20.453 14.15 17.084 17.627 C 15.489 19.294 13.288 20.235 10.988 20.235 C 8.688 20.235 6.487 19.294 4.892 17.627 C 1.524 14.15 1.524 8.512 4.892 5.036 Z\" fill=\"var(--token-5a8ef596-260e-455e-b941-68898e3a21fa, rgb(50, 50, 50)) /* {&quot;name&quot;:&quot;Off black&quot;} */\"></path><path d=\"M 4.91 5.056 C 6.493 3.403 8.678 2.469 10.96 2.469 C 13.243 2.469 15.427 3.403 17.01 5.056 C 20.351 8.507 20.351 14.099 17.01 17.551 C 15.427 19.204 13.243 20.138 10.961 20.138 C 8.678 20.138 6.494 19.204 4.911 17.551 C 1.57 14.099 1.57 8.507 4.911 5.056 Z\" fill=\"var(--token-5a8ef596-260e-455e-b941-68898e3a21fa, rgb(50, 50, 50)) /* {&quot;name&quot;:&quot;Off black&quot;} */\"></path><path d=\"M 4.931 5.077 C 6.502 3.437 8.669 2.51 10.933 2.51 C 13.198 2.51 15.365 3.437 16.936 5.077 C 20.251 8.5 20.251 14.049 16.936 17.473 C 15.365 19.113 13.198 20.04 10.934 20.04 C 8.669 20.04 6.502 19.113 4.932 17.473 C 1.618 14.049 1.618 8.5 4.932 5.077 Z\" fill=\"var(--token-5a8ef596-260e-455e-b941-68898e3a21fa, rgb(50, 50, 50)) /* {&quot;name&quot;:&quot;Off black&quot;} */\"></path><path d=\"M 4.951 5.098 C 6.51 3.471 8.66 2.551 10.906 2.551 C 13.153 2.551 15.303 3.471 16.861 5.098 C 20.15 8.494 20.15 13.999 16.861 17.396 C 15.303 19.024 13.153 19.943 10.907 19.943 C 8.66 19.943 6.51 19.024 4.952 17.396 C 1.664 13.999 1.664 8.494 4.952 5.098 Z\" fill=\"var(--token-5a8ef596-260e-455e-b941-68898e3a21fa, rgb(50, 50, 50)) /* {&quot;name&quot;:&quot;Off black&quot;} */\"></path><path d=\"M 4.973 5.119 C 6.519 3.505 8.651 2.593 10.88 2.593 C 13.108 2.593 15.241 3.505 16.786 5.119 C 20.051 8.487 20.051 13.949 16.786 17.318 C 15.241 18.933 13.108 19.845 10.88 19.845 C 8.651 19.845 6.519 18.933 4.973 17.318 C 1.711 13.949 1.711 8.487 4.973 5.119 Z\" fill=\"var(--token-5a8ef596-260e-455e-b941-68898e3a21fa, rgb(50, 50, 50)) /* {&quot;name&quot;:&quot;Off black&quot;} */\"></path><path d=\"M 4.993 5.14 C 6.527 3.538 8.642 2.634 10.853 2.634 C 13.063 2.634 15.179 3.538 16.712 5.14 C 19.949 8.482 19.949 13.899 16.712 17.241 C 15.179 18.843 13.064 19.748 10.853 19.748 C 8.642 19.748 6.527 18.843 4.994 17.241 C 1.757 13.899 1.757 8.482 4.993 5.14 Z\" fill=\"var(--token-5a8ef596-260e-455e-b941-68898e3a21fa, rgb(50, 50, 50)) /* {&quot;name&quot;:&quot;Off black&quot;} */\"></path><path d=\"M 5.013 5.16 C 6.534 3.572 8.632 2.674 10.824 2.674 C 13.017 2.674 15.115 3.572 16.636 5.16 C 19.848 8.475 19.848 13.848 16.636 17.164 C 15.115 18.752 13.017 19.65 10.825 19.65 C 8.632 19.65 6.534 18.752 5.014 17.164 C 1.802 13.848 1.802 8.475 5.013 5.16 Z\" fill=\"var(--token-5a8ef596-260e-455e-b941-68898e3a21fa, rgb(50, 50, 50)) /* {&quot;name&quot;:&quot;Off black&quot;} */\"></path><path d=\"M 5.034 5.181 C 6.542 3.606 8.624 2.716 10.799 2.716 C 12.973 2.716 15.055 3.606 16.563 5.181 C 19.748 8.469 19.748 13.799 16.563 17.088 C 15.055 18.664 12.974 19.554 10.799 19.554 C 8.625 19.554 6.544 18.664 5.035 17.088 C 1.85 13.799 1.85 8.469 5.034 5.181 Z\" fill=\"var(--token-5a8ef596-260e-455e-b941-68898e3a21fa, rgb(50, 50, 50)) /* {&quot;name&quot;:&quot;Off black&quot;} */\"></path><path d=\"M 5.054 5.202 C 6.55 3.64 8.614 2.758 10.771 2.758 C 12.927 2.758 14.991 3.64 16.487 5.202 C 19.647 8.463 19.647 13.748 16.487 17.01 C 14.991 18.572 12.927 19.455 10.771 19.455 C 8.614 19.455 6.55 18.572 5.054 17.01 C 1.896 13.748 1.896 8.462 5.054 5.202 Z\" fill=\"var(--token-5a8ef596-260e-455e-b941-68898e3a21fa, rgb(50, 50, 50)) /* {&quot;name&quot;:&quot;Off black&quot;} */\"></path><path d=\"M 5.074 5.223 C 6.558 3.673 8.605 2.797 10.744 2.797 C 12.883 2.797 14.93 3.673 16.414 5.223 C 19.546 8.457 19.546 13.698 16.414 16.933 C 14.93 18.482 12.884 19.358 10.745 19.358 C 8.606 19.358 6.559 18.482 5.076 16.933 C 1.944 13.699 1.944 8.457 5.074 5.223 Z\" fill=\"var(--token-5a8ef596-260e-455e-b941-68898e3a21fa, rgb(50, 50, 50)) /* {&quot;name&quot;:&quot;Off black&quot;} */\"></path><path d=\"M 5.095 5.244 C 6.566 3.708 8.596 2.84 10.717 2.84 C 12.838 2.84 14.867 3.708 16.339 5.244 C 19.445 8.451 19.445 13.648 16.339 16.855 C 14.867 18.392 12.838 19.26 10.717 19.26 C 8.596 19.26 6.566 18.392 5.095 16.855 C 1.99 13.648 1.99 8.451 5.095 5.244 Z\" fill=\"var(--token-5a8ef596-260e-455e-b941-68898e3a21fa, rgb(50, 50, 50)) /* {&quot;name&quot;:&quot;Off black&quot;} */\"></path><path d=\"M 5.115 5.265 C 6.573 3.741 8.586 2.88 10.689 2.88 C 12.792 2.88 14.805 3.741 16.263 5.265 C 19.343 8.443 19.343 13.598 16.263 16.778 C 14.805 18.301 12.792 19.162 10.689 19.162 C 8.586 19.162 6.573 18.301 5.115 16.778 C 2.036 13.598 2.036 8.444 5.115 5.265 Z\" fill=\"var(--token-5a8ef596-260e-455e-b941-68898e3a21fa, rgb(50, 50, 50)) /* {&quot;name&quot;:&quot;Off black&quot;} */\"></path><path d=\"M 5.136 5.285 C 6.583 3.775 8.578 2.922 10.663 2.922 C 12.748 2.922 14.744 3.775 16.19 5.285 C 19.243 8.438 19.243 13.547 16.19 16.701 C 14.744 18.212 12.748 19.065 10.663 19.065 C 8.578 19.065 6.583 18.212 5.136 16.701 C 2.084 13.547 2.084 8.438 5.136 5.285 Z\" fill=\"var(--token-5a8ef596-260e-455e-b941-68898e3a21fa, rgb(50, 50, 50)) /* {&quot;name&quot;:&quot;Off black&quot;} */\"></path><path d=\"M 5.156 5.306 C 6.59 3.808 8.568 2.962 10.636 2.962 C 12.703 2.962 14.682 3.808 16.116 5.306 C 19.142 8.431 19.142 13.497 16.116 16.624 C 14.682 18.121 12.703 18.967 10.636 18.967 C 8.568 18.967 6.59 18.121 5.156 16.624 C 2.13 13.497 2.13 8.431 5.156 5.306 Z\" fill=\"var(--token-5a8ef596-260e-455e-b941-68898e3a21fa, rgb(50, 50, 50)) /* {&quot;name&quot;:&quot;Off black&quot;} */\"></path><path d=\"M 5.178 5.328 C 6.599 3.843 8.56 3.004 10.609 3.004 C 12.659 3.004 14.62 3.843 16.041 5.328 C 19.042 8.426 19.042 13.447 16.041 16.547 C 14.62 18.032 12.659 18.871 10.609 18.871 C 8.56 18.871 6.599 18.032 5.178 16.547 C 2.178 13.447 2.178 8.426 5.178 5.327 Z\" fill=\"var(--token-5a8ef596-260e-455e-b941-68898e3a21fa, rgb(50, 50, 50)) /* {&quot;name&quot;:&quot;Off black&quot;} */\"></path><path d=\"M 5.198 5.348 C 6.607 3.876 8.551 3.045 10.582 3.045 C 12.614 3.045 14.558 3.876 15.967 5.348 C 18.941 8.419 18.941 13.397 15.967 16.469 C 14.558 17.941 12.614 18.773 10.582 18.773 C 8.551 18.773 6.607 17.941 5.198 16.469 C 2.224 13.397 2.224 8.419 5.198 5.348 Z\" fill=\"var(--token-5a8ef596-260e-455e-b941-68898e3a21fa, rgb(50, 50, 50)) /* {&quot;name&quot;:&quot;Off black&quot;} */\"></path><path d=\"M 5.218 5.369 C 6.615 3.911 8.541 3.087 10.555 3.087 C 12.568 3.087 14.495 3.911 15.892 5.369 C 18.841 8.413 18.841 13.348 15.892 16.392 C 14.495 17.851 12.568 18.675 10.555 18.675 C 8.541 18.675 6.615 17.851 5.218 16.392 C 2.271 13.347 2.271 8.413 5.218 5.369 Z\" fill=\"var(--token-5a8ef596-260e-455e-b941-68898e3a21fa, rgb(50, 50, 50)) /* {&quot;name&quot;:&quot;Off black&quot;} */\"></path><path d=\"M 5.238 5.389 C 6.622 3.944 8.532 3.127 10.527 3.127 C 12.523 3.127 14.433 3.944 15.817 5.389 C 18.74 8.406 18.74 13.297 15.817 16.314 C 14.433 17.76 12.523 18.577 10.528 18.577 C 8.532 18.577 6.623 17.76 5.239 16.314 C 2.317 13.297 2.317 8.406 5.238 5.389 Z\" fill=\"var(--token-5a8ef596-260e-455e-b941-68898e3a21fa, rgb(50, 50, 50)) /* {&quot;name&quot;:&quot;Off black&quot;} */\"></path><path d=\"M 5.258 5.411 C 6.63 3.978 8.523 3.169 10.5 3.169 C 12.478 3.169 14.371 3.978 15.742 5.411 C 18.638 8.4 18.638 13.247 15.742 16.238 C 14.371 17.671 12.478 18.48 10.5 18.48 C 8.523 18.48 6.63 17.671 5.258 16.238 C 2.363 13.247 2.363 8.4 5.258 5.41 Z\" fill=\"var(--token-5a8ef596-260e-455e-b941-68898e3a21fa, rgb(50, 50, 50)) /* {&quot;name&quot;:&quot;Off black&quot;} */\"></path><path d=\"M 5.279 5.432 C 6.639 4.012 8.514 3.21 10.474 3.21 C 12.434 3.21 14.309 4.012 15.669 5.432 C 18.538 8.394 18.538 13.197 15.669 16.161 C 14.309 17.58 12.434 18.382 10.475 18.382 C 8.515 18.382 6.64 17.58 5.28 16.161 C 2.41 13.197 2.41 8.393 5.279 5.432 Z\" fill=\"var(--token-5a8ef596-260e-455e-b941-68898e3a21fa, rgb(50, 50, 50)) /* {&quot;name&quot;:&quot;Off black&quot;} */\"></path><path d=\"M 5.3 5.452 C 6.647 4.045 8.505 3.251 10.447 3.251 C 12.388 3.251 14.247 4.045 15.594 5.452 C 18.437 8.387 18.437 13.146 15.594 16.083 C 14.247 17.49 12.388 18.284 10.447 18.284 C 8.505 18.284 6.647 17.49 5.3 16.083 C 2.456 13.146 2.456 8.387 5.3 5.452 Z\" fill=\"var(--token-5a8ef596-260e-455e-b941-68898e3a21fa, rgb(50, 50, 50)) /* {&quot;name&quot;:&quot;Off black&quot;} */\"></path><path d=\"M 5.321 5.473 C 6.655 4.079 8.496 3.292 10.42 3.292 C 12.344 3.292 14.186 4.079 15.52 5.473 C 18.337 8.382 18.337 13.097 15.52 16.006 C 14.186 17.4 12.344 18.187 10.42 18.187 C 8.496 18.187 6.655 17.4 5.321 16.006 C 2.504 13.097 2.504 8.381 5.321 5.473 Z\" fill=\"var(--token-5a8ef596-260e-455e-b941-68898e3a21fa, rgb(50, 50, 50)) /* {&quot;name&quot;:&quot;Off black&quot;} */\"></path><path d=\"M 5.341 5.493 C 6.663 4.113 8.487 3.333 10.392 3.333 C 12.298 3.333 14.122 4.113 15.444 5.493 C 18.236 8.375 18.236 13.045 15.444 15.929 C 14.122 17.31 12.298 18.09 10.392 18.09 C 8.486 18.09 6.662 17.31 5.34 15.929 C 2.55 13.045 2.55 8.375 5.34 5.493 Z\" fill=\"var(--token-5a8ef596-260e-455e-b941-68898e3a21fa, rgb(50, 50, 50)) /* {&quot;name&quot;:&quot;Off black&quot;} */\"></path><path d=\"M 5.362 5.514 C 6.671 4.147 8.478 3.374 10.366 3.374 C 12.254 3.374 14.061 4.147 15.371 5.514 C 18.136 8.37 18.136 12.997 15.371 15.852 C 14.061 17.219 12.254 17.992 10.366 17.992 C 8.478 17.992 6.671 17.219 5.362 15.852 C 2.599 12.997 2.599 8.369 5.362 5.514 Z\" fill=\"var(--token-5a8ef596-260e-455e-b941-68898e3a21fa, rgb(50, 50, 50)) /* {&quot;name&quot;:&quot;Off black&quot;} */\"></path><path d=\"M 5.381 5.536 C 6.678 4.181 8.468 3.415 10.338 3.415 C 12.209 3.415 13.998 4.181 15.295 5.536 C 18.035 8.363 18.035 12.946 15.295 15.774 C 13.998 17.129 12.209 17.894 10.338 17.894 C 8.468 17.894 6.678 17.129 5.381 15.774 C 2.644 12.946 2.644 8.362 5.381 5.536 Z\" fill=\"var(--token-5a8ef596-260e-455e-b941-68898e3a21fa, rgb(50, 50, 50)) /* {&quot;name&quot;:&quot;Off black&quot;} */\"></path><path d=\"M 5.401 5.557 C 6.685 4.215 8.458 3.457 10.31 3.457 C 12.163 3.457 13.936 4.215 15.22 5.557 C 17.933 8.357 17.933 12.895 15.22 15.697 C 13.936 17.039 12.163 17.797 10.311 17.797 C 8.459 17.797 6.686 17.039 5.401 15.697 C 2.69 12.895 2.69 8.357 5.401 5.557 Z\" fill=\"var(--token-5a8ef596-260e-455e-b941-68898e3a21fa, rgb(50, 50, 50)) /* {&quot;name&quot;:&quot;Off black&quot;} */\"></path><path d=\"M 5.422 5.577 C 6.695 4.248 8.45 3.497 10.285 3.497 C 12.119 3.497 13.874 4.248 15.147 5.577 C 17.833 8.35 17.833 12.846 15.147 15.62 C 13.874 16.949 12.119 17.699 10.285 17.699 C 8.45 17.699 6.695 16.949 5.422 15.62 C 2.738 12.846 2.738 8.35 5.422 5.578 Z\" fill=\"var(--token-5a8ef596-260e-455e-b941-68898e3a21fa, rgb(50, 50, 50)) /* {&quot;name&quot;:&quot;Off black&quot;} */\"></path><path d=\"M 5.443 5.598 C 6.703 4.282 8.441 3.539 10.258 3.539 C 12.074 3.539 13.812 4.282 15.072 5.598 C 17.732 8.344 17.732 12.795 15.072 15.542 C 13.813 16.858 12.074 17.602 10.258 17.602 C 8.441 17.602 6.703 16.858 5.443 15.542 C 2.784 12.796 2.784 8.344 5.443 5.597 Z\" fill=\"var(--token-5a8ef596-260e-455e-b941-68898e3a21fa, rgb(50, 50, 50)) /* {&quot;name&quot;:&quot;Off black&quot;} */\"></path><path d=\"M 5.462 5.618 C 6.71 4.316 8.431 3.579 10.229 3.579 C 12.028 3.579 13.749 4.316 14.996 5.618 C 17.631 8.338 17.631 12.745 14.996 15.466 C 13.749 16.769 12.028 17.505 10.229 17.505 C 8.431 17.505 6.709 16.769 5.462 15.466 C 2.83 12.746 2.83 8.338 5.462 5.618 Z\" fill=\"var(--token-5a8ef596-260e-455e-b941-68898e3a21fa, rgb(50, 50, 50)) /* {&quot;name&quot;:&quot;Off black&quot;} */\"></path><path d=\"M 5.484 5.64 C 6.719 4.35 8.423 3.622 10.203 3.622 C 11.984 3.622 13.688 4.35 14.923 5.64 C 17.53 8.331 17.53 12.695 14.923 15.388 C 13.688 16.678 11.984 17.407 10.203 17.407 C 8.423 17.407 6.719 16.678 5.484 15.388 C 2.877 12.695 2.877 8.331 5.484 5.64 Z\" fill=\"var(--token-5a8ef596-260e-455e-b941-68898e3a21fa, rgb(50, 50, 50)) /* {&quot;name&quot;:&quot;Off black&quot;} */\"></path><path d=\"M 5.502 5.661 C 6.725 4.384 8.412 3.662 10.175 3.662 C 11.938 3.662 13.625 4.384 14.848 5.661 C 17.429 8.326 17.429 12.645 14.848 15.311 C 13.625 16.587 11.938 17.309 10.176 17.309 C 8.413 17.309 6.726 16.587 5.503 15.311 C 2.923 12.645 2.923 8.326 5.503 5.661 Z\" fill=\"var(--token-5a8ef596-260e-455e-b941-68898e3a21fa, rgb(50, 50, 50)) /* {&quot;name&quot;:&quot;Off black&quot;} */\"></path><path d=\"M 5.525 5.681 C 6.735 4.417 8.405 3.703 10.15 3.703 C 11.894 3.703 13.564 4.417 14.774 5.681 C 17.33 8.319 17.33 12.595 14.774 15.234 C 13.564 16.497 11.894 17.211 10.15 17.211 C 8.405 17.211 6.735 16.497 5.525 15.234 C 2.97 12.595 2.97 8.319 5.525 5.681 Z\" fill=\"var(--token-5a8ef596-260e-455e-b941-68898e3a21fa, rgb(50, 50, 50)) /* {&quot;name&quot;:&quot;Off black&quot;} */\"></path><path d=\"M 5.544 5.702 C 6.742 4.451 8.395 3.744 10.122 3.744 C 11.849 3.744 13.501 4.451 14.699 5.702 C 17.228 8.314 17.228 12.545 14.699 15.156 C 13.501 16.408 11.849 17.115 10.122 17.115 C 8.395 17.115 6.742 16.408 5.544 15.156 C 3.016 12.545 3.016 8.314 5.544 5.702 Z\" fill=\"var(--token-5a8ef596-260e-455e-b941-68898e3a21fa, rgb(50, 50, 50)) /* {&quot;name&quot;:&quot;Off black&quot;} */\"></path><path d=\"M 5.565 5.722 C 6.75 4.485 8.386 3.786 10.094 3.786 C 11.803 3.786 13.438 4.485 14.624 5.722 C 17.126 8.306 17.126 12.494 14.624 15.08 C 13.438 16.318 11.803 17.017 10.094 17.017 C 8.386 17.017 6.75 16.318 5.565 15.08 C 3.062 12.494 3.062 8.306 5.565 5.722 Z\" fill=\"var(--token-5a8ef596-260e-455e-b941-68898e3a21fa, rgb(50, 50, 50)) /* {&quot;name&quot;:&quot;Off black&quot;} */\"></path><path d=\"M 5.586 5.744 C 6.759 4.519 8.377 3.827 10.068 3.827 C 11.759 3.827 13.378 4.519 14.55 5.744 C 17.027 8.301 17.027 12.444 14.55 15.002 C 13.378 16.227 11.759 16.92 10.068 16.92 C 8.377 16.92 6.759 16.227 5.586 15.002 C 3.11 12.444 3.11 8.301 5.586 5.744 Z\" fill=\"var(--token-5a8ef596-260e-455e-b941-68898e3a21fa, rgb(50, 50, 50)) /* {&quot;name&quot;:&quot;Off black&quot;} */\"></path><path d=\"M 5.605 5.765 C 6.766 4.553 8.367 3.868 10.04 3.868 C 11.713 3.868 13.314 4.553 14.475 5.765 C 16.925 8.295 16.925 12.395 14.475 14.924 C 13.314 16.136 11.713 16.821 10.04 16.821 C 8.367 16.821 6.766 16.136 5.605 14.924 C 3.157 12.395 3.157 8.294 5.605 5.765 Z\" fill=\"var(--token-5a8ef596-260e-455e-b941-68898e3a21fa, rgb(50, 50, 50)) /* {&quot;name&quot;:&quot;Off black&quot;} */\"></path><path d=\"M 5.626 5.785 C 6.774 4.586 8.358 3.909 10.014 3.909 C 11.669 3.909 13.253 4.586 14.401 5.785 C 16.825 8.287 16.825 12.343 14.401 14.848 C 13.253 16.046 11.669 16.724 10.014 16.724 C 8.359 16.724 6.775 16.046 5.627 14.848 C 3.204 12.343 3.204 8.287 5.627 5.786 Z\" fill=\"var(--token-5a8ef596-260e-455e-b941-68898e3a21fa, rgb(50, 50, 50)) /* {&quot;name&quot;:&quot;Off black&quot;} */\"></path><path d=\"M 5.646 5.806 C 6.782 4.62 8.349 3.95 9.986 3.95 C 11.623 3.95 13.19 4.62 14.326 5.806 C 16.724 8.282 16.724 12.294 14.326 14.77 C 13.19 15.956 11.623 16.626 9.986 16.626 C 8.349 16.626 6.782 15.956 5.646 14.77 C 3.25 12.294 3.25 8.282 5.646 5.806 Z\" fill=\"var(--token-5a8ef596-260e-455e-b941-68898e3a21fa, rgb(50, 50, 50)) /* {&quot;name&quot;:&quot;Off black&quot;} */\"></path><path d=\"M 5.667 5.827 C 6.79 4.654 8.339 3.991 9.959 3.991 C 11.579 3.991 13.128 4.654 14.252 5.827 C 16.623 8.275 16.623 12.244 14.252 14.693 C 13.128 15.867 11.579 16.529 9.959 16.529 C 8.339 16.529 6.79 15.867 5.667 14.693 C 3.296 12.244 3.296 8.275 5.667 5.827 Z\" fill=\"var(--token-5a8ef596-260e-455e-b941-68898e3a21fa, rgb(50, 50, 50)) /* {&quot;name&quot;:&quot;Off black&quot;} */\"></path><path d=\"M 5.688 5.848 C 6.799 4.689 8.331 4.033 9.932 4.033 C 11.534 4.033 13.066 4.689 14.176 5.848 C 16.523 8.269 16.523 12.194 14.176 14.615 C 13.066 15.775 11.533 16.431 9.932 16.431 C 8.331 16.431 6.798 15.775 5.688 14.615 C 3.344 12.194 3.344 8.269 5.688 5.848 Z\" fill=\"var(--token-5a8ef596-260e-455e-b941-68898e3a21fa, rgb(50, 50, 50)) /* {&quot;name&quot;:&quot;Off black&quot;} */\"></path><path d=\"M 5.709 5.869 C 6.808 4.722 8.323 4.074 9.906 4.074 C 11.49 4.074 13.005 4.722 14.104 5.869 C 16.423 8.263 16.423 12.144 14.104 14.538 C 13.005 15.685 11.49 16.333 9.906 16.333 C 8.322 16.333 6.807 15.685 5.709 14.538 C 3.391 12.144 3.391 8.263 5.709 5.869 Z\" fill=\"var(--token-5a8ef596-260e-455e-b941-68898e3a21fa, rgb(50, 50, 50)) /* {&quot;name&quot;:&quot;Off black&quot;} */\"></path><path d=\"M 5.729 5.89 C 6.815 4.756 8.313 4.115 9.879 4.115 C 11.444 4.115 12.943 4.756 14.028 5.89 C 16.322 8.257 16.322 12.093 14.028 14.462 C 12.942 15.595 11.444 16.236 9.879 16.236 C 8.313 16.236 6.815 15.595 5.729 14.462 C 3.437 12.093 3.437 8.257 5.729 5.89 Z\" fill=\"var(--token-5a8ef596-260e-455e-b941-68898e3a21fa, rgb(50, 50, 50)) /* {&quot;name&quot;:&quot;Off black&quot;} */\"></path><path d=\"M 5.749 5.91 C 6.822 4.789 8.303 4.155 9.851 4.155 C 11.399 4.155 12.88 4.789 13.953 5.91 C 16.22 8.25 16.22 12.043 13.953 14.385 C 12.88 15.505 11.399 16.139 9.851 16.139 C 8.304 16.139 6.823 15.505 5.749 14.385 C 3.483 12.043 3.483 8.25 5.749 5.91 Z\" fill=\"var(--token-5a8ef596-260e-455e-b941-68898e3a21fa, rgb(50, 50, 50)) /* {&quot;name&quot;:&quot;Off black&quot;} */\"></path><path d=\"M 5.769 5.931 C 6.83 4.823 8.294 4.197 9.824 4.197 C 11.354 4.197 12.818 4.823 13.879 5.931 C 16.12 8.244 16.12 11.992 13.879 14.306 C 12.818 15.415 11.354 16.041 9.824 16.041 C 8.295 16.041 6.831 15.415 5.77 14.306 C 3.531 11.992 3.531 8.244 5.769 5.931 Z\" fill=\"var(--token-5a8ef596-260e-455e-b941-68898e3a21fa, rgb(50, 50, 50)) /* {&quot;name&quot;:&quot;Off black&quot;} */\"></path><path d=\"M 5.79 5.952 C 6.839 4.857 8.285 4.239 9.797 4.239 C 11.309 4.239 12.755 4.857 13.804 5.952 C 16.018 8.239 16.018 11.943 13.804 14.229 C 12.755 15.324 11.309 15.943 9.797 15.943 C 8.285 15.943 6.839 15.324 5.79 14.229 C 3.576 11.943 3.576 8.238 5.79 5.952 Z\" fill=\"var(--token-5a8ef596-260e-455e-b941-68898e3a21fa, rgb(50, 50, 50)) /* {&quot;name&quot;:&quot;Off black&quot;} */\"></path><path d=\"M 5.81 5.974 C 6.846 4.891 8.275 4.279 9.77 4.279 C 11.264 4.279 12.693 4.891 13.73 5.974 C 15.918 8.232 15.918 11.893 13.73 14.153 C 12.693 15.235 11.264 15.847 9.77 15.847 C 8.276 15.847 6.846 15.235 5.81 14.153 C 3.622 11.893 3.622 8.231 5.81 5.974 Z\" fill=\"var(--token-5a8ef596-260e-455e-b941-68898e3a21fa, rgb(50, 50, 50)) /* {&quot;name&quot;:&quot;Off black&quot;} */\"></path><path d=\"M 5.831 5.994 C 6.854 4.924 8.267 4.32 9.743 4.32 C 11.22 4.32 12.632 4.924 13.656 5.994 C 15.817 8.226 15.817 11.843 13.656 14.075 C 12.632 15.144 11.22 15.749 9.743 15.749 C 8.267 15.749 6.854 15.144 5.831 14.075 C 3.67 11.843 3.67 8.225 5.831 5.994 Z\" fill=\"var(--token-5a8ef596-260e-455e-b941-68898e3a21fa, rgb(50, 50, 50)) /* {&quot;name&quot;:&quot;Off black&quot;} */\"></path><path d=\"M 5.852 6.015 C 6.863 4.959 8.258 4.362 9.716 4.362 C 11.174 4.362 12.57 4.959 13.581 6.015 C 15.717 8.219 15.717 11.793 13.581 13.998 C 12.57 15.054 11.174 15.651 9.716 15.651 C 8.258 15.651 6.863 15.054 5.852 13.998 C 3.718 11.793 3.718 8.219 5.852 6.015 Z\" fill=\"var(--token-5a8ef596-260e-455e-b941-68898e3a21fa, rgb(50, 50, 50)) /* {&quot;name&quot;:&quot;Off black&quot;} */\"></path><path d=\"M 5.872 6.035 C 6.871 4.992 8.249 4.402 9.689 4.402 C 11.129 4.402 12.508 4.992 13.507 6.035 C 15.615 8.213 15.615 11.742 13.507 13.921 C 12.507 14.964 11.129 15.553 9.689 15.553 C 8.249 15.553 6.871 14.964 5.872 13.921 C 3.764 11.743 3.764 8.213 5.872 6.035 Z\" fill=\"var(--token-5a8ef596-260e-455e-b941-68898e3a21fa, rgb(50, 50, 50)) /* {&quot;name&quot;:&quot;Off black&quot;} */\"></path><path d=\"M 5.892 6.056 C 6.878 5.026 8.239 4.445 9.661 4.445 C 11.083 4.445 12.444 5.026 13.431 6.056 C 15.515 8.206 15.515 11.692 13.431 13.843 C 12.444 14.873 11.083 15.456 9.661 15.456 C 8.239 15.456 6.878 14.873 5.892 13.843 C 3.81 11.692 3.81 8.206 5.892 6.056 Z\" fill=\"var(--token-5a8ef596-260e-455e-b941-68898e3a21fa, rgb(50, 50, 50)) /* {&quot;name&quot;:&quot;Off black&quot;} */\"></path><path d=\"M 5.913 6.077 C 6.887 5.06 8.231 4.485 9.635 4.485 C 11.04 4.485 12.384 5.06 13.358 6.077 C 15.415 8.201 15.415 11.642 13.358 13.766 C 12.384 14.784 11.04 15.358 9.635 15.358 C 8.231 15.358 6.887 14.784 5.913 13.766 C 3.857 11.642 3.857 8.201 5.913 6.077 Z\" fill=\"var(--token-5a8ef596-260e-455e-b941-68898e3a21fa, rgb(50, 50, 50)) /* {&quot;name&quot;:&quot;Off black&quot;} */\"></path><path d=\"M 5.933 6.098 C 6.895 5.093 8.221 4.526 9.608 4.526 C 10.994 4.526 12.321 5.093 13.283 6.098 C 15.314 8.194 15.314 11.592 13.283 13.689 C 12.321 14.693 10.994 15.26 9.608 15.26 C 8.222 15.26 6.895 14.693 5.933 13.689 C 3.903 11.592 3.903 8.194 5.933 6.098 Z\" fill=\"var(--token-5a8ef596-260e-455e-b941-68898e3a21fa, rgb(50, 50, 50)) /* {&quot;name&quot;:&quot;Off black&quot;} */\"></path><path d=\"M 5.953 6.119 C 6.902 5.127 8.212 4.567 9.581 4.567 C 10.95 4.567 12.259 5.127 13.208 6.119 C 15.212 8.188 15.212 11.542 13.208 13.612 C 12.259 14.603 10.949 15.164 9.58 15.164 C 8.212 15.164 6.902 14.603 5.953 13.612 C 3.949 11.542 3.949 8.188 5.953 6.119 Z\" fill=\"var(--token-5a8ef596-260e-455e-b941-68898e3a21fa, rgb(50, 50, 50)) /* {&quot;name&quot;:&quot;Off black&quot;} */\"></path><path d=\"M 5.974 6.139 C 6.911 5.161 8.203 4.608 9.554 4.608 C 10.904 4.608 12.197 5.161 13.133 6.139 C 15.113 8.182 15.113 11.491 13.133 13.535 C 12.197 14.513 10.904 15.065 9.554 15.065 C 8.203 15.065 6.911 14.513 5.974 13.535 C 3.997 11.491 3.997 8.182 5.974 6.139 Z\" fill=\"var(--token-5a8ef596-260e-455e-b941-68898e3a21fa, rgb(50, 50, 50)) /* {&quot;name&quot;:&quot;Off black&quot;} */\"></path><path d=\"M 5.994 6.16 C 6.918 5.195 8.193 4.65 9.526 4.65 C 10.858 4.65 12.134 5.195 13.058 6.16 C 15.011 8.175 15.011 11.442 13.058 13.457 C 12.134 14.422 10.858 14.967 9.526 14.967 C 8.193 14.967 6.918 14.422 5.994 13.457 C 4.043 11.442 4.043 8.175 5.994 6.16 Z\" fill=\"var(--token-5a8ef596-260e-455e-b941-68898e3a21fa, rgb(50, 50, 50)) /* {&quot;name&quot;:&quot;Off black&quot;} */\"></path><path d=\"M 6.014 6.182 C 6.926 5.229 8.184 4.691 9.498 4.691 C 10.813 4.691 12.071 5.229 12.983 6.182 C 14.909 8.17 14.909 11.39 12.983 13.38 C 12.071 14.332 10.813 14.87 9.498 14.87 C 8.184 14.87 6.926 14.332 6.014 13.38 C 4.089 11.39 4.089 8.17 6.014 6.182 Z\" fill=\"var(--token-5a8ef596-260e-455e-b941-68898e3a21fa, rgb(50, 50, 50)) /* {&quot;name&quot;:&quot;Off black&quot;} */\"></path><path d=\"M 6.035 6.202 C 6.934 5.263 8.175 4.732 9.472 4.732 C 10.769 4.732 12.01 5.263 12.909 6.202 C 14.81 8.163 14.81 11.342 12.909 13.303 C 12.01 14.242 10.769 14.773 9.472 14.773 C 8.175 14.773 6.934 14.242 6.035 13.303 C 4.136 11.342 4.136 8.163 6.035 6.202 Z\" fill=\"var(--token-5a8ef596-260e-455e-b941-68898e3a21fa, rgb(50, 50, 50)) /* {&quot;name&quot;:&quot;Off black&quot;} */\"></path><path d=\"M 6.055 6.224 C 6.942 5.298 8.166 4.774 9.445 4.774 C 10.723 4.774 11.947 5.298 12.834 6.224 C 14.709 8.158 14.709 11.291 12.834 13.226 C 11.947 14.152 10.723 14.675 9.445 14.675 C 8.166 14.675 6.942 14.152 6.055 13.226 C 4.183 11.291 4.183 8.157 6.055 6.223 Z\" fill=\"var(--token-5a8ef596-260e-455e-b941-68898e3a21fa, rgb(50, 50, 50)) /* {&quot;name&quot;:&quot;Off black&quot;} */\"></path><path d=\"M 6.076 6.244 C 6.951 5.33 8.157 4.814 9.418 4.814 C 10.68 4.814 11.886 5.33 12.761 6.244 C 14.609 8.15 14.609 11.241 12.761 13.148 C 11.886 14.061 10.679 14.577 9.418 14.577 C 8.158 14.577 6.951 14.061 6.076 13.148 C 4.23 11.241 4.23 8.151 6.076 6.244 Z\" fill=\"var(--token-5a8ef596-260e-455e-b941-68898e3a21fa, rgb(50, 50, 50)) /* {&quot;name&quot;:&quot;Off black&quot;} */\"></path><path d=\"M 6.096 6.264 C 6.958 5.364 8.147 4.855 9.391 4.855 C 10.634 4.855 11.823 5.364 12.686 6.264 C 14.508 8.145 14.508 11.191 12.686 13.072 C 11.823 13.972 10.634 14.481 9.391 14.481 C 8.147 14.481 6.958 13.972 6.096 13.072 C 4.277 11.191 4.277 8.145 6.096 6.265 Z\" fill=\"var(--token-5a8ef596-260e-455e-b941-68898e3a21fa, rgb(50, 50, 50)) /* {&quot;name&quot;:&quot;Off black&quot;} */\"></path><path d=\"M 6.117 6.285 C 6.966 5.398 8.139 4.897 9.364 4.897 C 10.589 4.897 11.761 5.398 12.611 6.285 C 14.406 8.138 14.406 11.14 12.611 12.994 C 11.761 13.882 10.589 14.383 9.364 14.383 C 8.138 14.383 6.966 13.882 6.116 12.994 C 4.322 11.14 4.322 8.138 6.116 6.285 Z\" fill=\"var(--token-5a8ef596-260e-455e-b941-68898e3a21fa, rgb(50, 50, 50)) /* {&quot;name&quot;:&quot;Off black&quot;} */\"></path><path d=\"M 6.138 6.307 C 6.975 5.432 8.13 4.938 9.337 4.938 C 10.544 4.938 11.7 5.432 12.537 6.307 C 14.306 8.132 14.306 11.091 12.537 12.916 C 11.7 13.791 10.544 14.285 9.337 14.285 C 8.13 14.285 6.975 13.791 6.138 12.916 C 4.37 11.09 4.37 8.132 6.138 6.307 Z\" fill=\"var(--token-5a8ef596-260e-455e-b941-68898e3a21fa, rgb(50, 50, 50)) /* {&quot;name&quot;:&quot;Off black&quot;} */\"></path><path d=\"M 6.157 6.328 C 6.982 5.466 8.12 4.979 9.309 4.979 C 10.499 4.979 11.637 5.466 12.462 6.328 C 14.205 8.126 14.205 11.04 12.462 12.84 C 11.637 13.701 10.499 14.188 9.309 14.188 C 8.12 14.188 6.982 13.701 6.157 12.84 C 4.416 11.04 4.416 8.126 6.157 6.328 Z\" fill=\"var(--token-5a8ef596-260e-455e-b941-68898e3a21fa, rgb(50, 50, 50)) /* {&quot;name&quot;:&quot;Off black&quot;} */\"></path><path d=\"M 6.178 6.348 C 6.991 5.5 8.112 5.02 9.283 5.02 C 10.455 5.02 11.576 5.5 12.388 6.348 C 14.104 8.119 14.104 10.99 12.388 12.763 C 11.575 13.611 10.454 14.09 9.283 14.09 C 8.112 14.09 6.991 13.611 6.178 12.763 C 4.463 10.99 4.463 8.119 6.178 6.348 Z\" fill=\"var(--token-5a8ef596-260e-455e-b941-68898e3a21fa, rgb(50, 50, 50)) /* {&quot;name&quot;:&quot;Off black&quot;} */\"></path><path d=\"M 6.197 6.369 C 6.997 5.533 8.102 5.061 9.255 5.061 C 10.409 5.061 11.513 5.533 12.313 6.369 C 14.003 8.114 14.003 10.94 12.313 12.685 C 11.513 13.52 10.409 13.992 9.256 13.992 C 8.102 13.992 6.998 13.52 6.198 12.685 C 4.509 10.94 4.509 8.114 6.198 6.369 Z\" fill=\"var(--token-5a8ef596-260e-455e-b941-68898e3a21fa, rgb(50, 50, 50)) /* {&quot;name&quot;:&quot;Off black&quot;} */\"></path><path d=\"M 6.218 6.389 C 7.006 5.567 8.093 5.103 9.228 5.103 C 10.364 5.103 11.45 5.567 12.238 6.389 C 13.902 8.107 13.902 10.89 12.238 12.608 C 11.45 13.43 10.364 13.895 9.228 13.895 C 8.093 13.895 7.006 13.43 6.218 12.608 C 4.556 10.89 4.556 8.107 6.218 6.389 Z\" fill=\"var(--token-5a8ef596-260e-455e-b941-68898e3a21fa, rgb(50, 50, 50)) /* {&quot;name&quot;:&quot;Off black&quot;} */\"></path><path d=\"M 6.239 6.411 C 7.015 5.601 8.084 5.144 9.202 5.144 C 10.319 5.144 11.388 5.601 12.164 6.411 C 13.802 8.101 13.802 10.84 12.164 12.53 C 11.388 13.34 10.319 13.797 9.202 13.797 C 8.084 13.797 7.015 13.34 6.239 12.53 C 4.603 10.84 4.603 8.101 6.239 6.411 Z\" fill=\"var(--token-5a8ef596-260e-455e-b941-68898e3a21fa, rgb(50, 50, 50)) /* {&quot;name&quot;:&quot;Off black&quot;} */\"></path><path d=\"M 6.259 6.431 C 7.021 5.634 8.074 5.183 9.174 5.183 C 10.274 5.183 11.327 5.634 12.089 6.431 C 13.7 8.095 13.7 10.79 12.089 12.453 C 11.326 13.25 10.274 13.7 9.174 13.7 C 8.074 13.7 7.022 13.25 6.259 12.453 C 4.649 10.79 4.649 8.095 6.259 6.431 Z\" fill=\"var(--token-5a8ef596-260e-455e-b941-68898e3a21fa, rgb(50, 50, 50)) /* {&quot;name&quot;:&quot;Off black&quot;} */\"></path><path d=\"M 6.281 6.452 C 7.031 5.668 8.066 5.226 9.148 5.226 C 10.23 5.226 11.265 5.668 12.015 6.452 C 13.601 8.088 13.601 10.74 12.015 12.376 C 11.265 13.16 10.23 13.602 9.148 13.602 C 8.066 13.602 7.031 13.16 6.281 12.376 C 4.697 10.74 4.697 8.088 6.281 6.453 Z\" fill=\"var(--token-5a8ef596-260e-455e-b941-68898e3a21fa, rgb(50, 50, 50)) /* {&quot;name&quot;:&quot;Off black&quot;} */\"></path><path d=\"M 6.3 6.473 C 7.038 5.702 8.056 5.267 9.12 5.267 C 10.184 5.267 11.202 5.702 11.94 6.473 C 13.499 8.082 13.499 10.689 11.94 12.299 C 11.202 13.069 10.184 13.504 9.12 13.504 C 8.056 13.504 7.038 13.069 6.3 12.299 C 4.743 10.689 4.743 8.082 6.3 6.473 Z\" fill=\"var(--token-5a8ef596-260e-455e-b941-68898e3a21fa, rgb(50, 50, 50)) /* {&quot;name&quot;:&quot;Off black&quot;} */\"></path><path d=\"M 6.321 6.494 C 7.047 5.737 8.048 5.309 9.094 5.309 C 10.14 5.309 11.141 5.737 11.866 6.494 C 13.399 8.075 13.399 10.639 11.866 12.222 C 11.141 12.979 10.14 13.407 9.094 13.407 C 8.048 13.407 7.047 12.979 6.321 12.222 C 4.791 10.639 4.791 8.075 6.321 6.493 Z\" fill=\"var(--token-5a8ef596-260e-455e-b941-68898e3a21fa, rgb(50, 50, 50)) /* {&quot;name&quot;:&quot;Off black&quot;} */\"></path><path d=\"M 6.341 6.515 C 7.054 5.77 8.038 5.349 9.067 5.349 C 10.095 5.349 11.079 5.77 11.792 6.515 C 13.298 8.07 13.298 10.589 11.792 12.145 C 11.079 12.89 10.095 13.311 9.067 13.311 C 8.038 13.311 7.054 12.89 6.341 12.145 C 4.837 10.589 4.837 8.07 6.341 6.515 Z\" fill=\"var(--token-5a8ef596-260e-455e-b941-68898e3a21fa, rgb(50, 50, 50)) /* {&quot;name&quot;:&quot;Off black&quot;} */\"></path><path d=\"M 6.361 6.536 C 7.062 5.804 8.029 5.39 9.039 5.39 C 10.049 5.39 11.015 5.804 11.716 6.536 C 13.197 8.063 13.197 10.539 11.716 12.067 C 11.015 12.799 10.049 13.212 9.039 13.212 C 8.029 13.212 7.062 12.799 6.361 12.067 C 4.883 10.539 4.883 8.063 6.361 6.536 Z\" fill=\"var(--token-5a8ef596-260e-455e-b941-68898e3a21fa, rgb(50, 50, 50)) /* {&quot;name&quot;:&quot;Off black&quot;} */\"></path><path d=\"M 6.382 6.557 C 7.071 5.838 8.02 5.432 9.012 5.432 C 10.005 5.432 10.954 5.838 11.642 6.557 C 13.097 8.057 13.097 10.489 11.642 11.99 C 10.954 12.709 10.005 13.115 9.012 13.115 C 8.02 13.115 7.071 12.709 6.382 11.99 C 4.93 10.489 4.93 8.058 6.382 6.556 Z\" fill=\"var(--token-5a8ef596-260e-455e-b941-68898e3a21fa, rgb(50, 50, 50)) /* {&quot;name&quot;:&quot;Off black&quot;} */\"></path><path d=\"M 6.403 6.577 C 7.078 5.871 8.011 5.472 8.985 5.472 C 9.959 5.472 10.892 5.871 11.567 6.577 C 12.996 8.051 12.996 10.438 11.567 11.913 C 10.892 12.619 9.959 13.017 8.985 13.017 C 8.011 13.017 7.078 12.619 6.403 11.913 C 4.976 10.438 4.976 8.051 6.403 6.577 Z\" fill=\"var(--token-5a8ef596-260e-455e-b941-68898e3a21fa, rgb(50, 50, 50)) /* {&quot;name&quot;:&quot;Off black&quot;} */\"></path><path d=\"M 6.423 6.597 C 7.086 5.905 8.001 5.513 8.957 5.513 C 9.914 5.513 10.829 5.905 11.492 6.597 C 12.895 8.044 12.895 10.388 11.492 11.835 C 10.829 12.528 9.914 12.919 8.957 12.919 C 8.001 12.919 7.086 12.528 6.423 11.835 C 5.022 10.389 5.022 8.045 6.423 6.598 Z\" fill=\"var(--token-5a8ef596-260e-455e-b941-68898e3a21fa, rgb(50, 50, 50)) /* {&quot;name&quot;:&quot;Off black&quot;} */\"></path><path d=\"M 6.443 6.619 C 7.094 5.938 7.992 5.554 8.931 5.554 C 9.87 5.554 10.768 5.938 11.419 6.619 C 12.794 8.038 12.794 10.338 11.419 11.759 C 10.768 12.438 9.869 12.822 8.931 12.822 C 7.992 12.822 7.094 12.438 6.443 11.759 C 5.069 10.338 5.069 8.037 6.443 6.619 Z\" fill=\"var(--token-5a8ef596-260e-455e-b941-68898e3a21fa, rgb(50, 50, 50)) /* {&quot;name&quot;:&quot;Off black&quot;} */\"></path><path d=\"M 6.464 6.64 C 7.103 5.973 7.984 5.596 8.904 5.596 C 9.825 5.596 10.706 5.973 11.344 6.64 C 12.694 8.032 12.694 10.288 11.344 11.681 C 10.706 12.348 9.825 12.724 8.904 12.724 C 7.984 12.724 7.103 12.348 6.464 11.681 C 5.117 10.288 5.117 8.032 6.464 6.64 Z\" fill=\"var(--token-5a8ef596-260e-455e-b941-68898e3a21fa, rgb(50, 50, 50)) /* {&quot;name&quot;:&quot;Off black&quot;} */\"></path><path d=\"M 6.484 6.66 C 7.11 6.006 7.974 5.636 8.877 5.636 C 9.78 5.636 10.644 6.006 11.27 6.66 C 12.593 8.025 12.593 10.237 11.27 11.604 C 10.644 12.258 9.78 12.627 8.877 12.627 C 7.974 12.627 7.11 12.258 6.484 11.604 C 5.163 10.237 5.163 8.026 6.484 6.66 Z\" fill=\"var(--token-5a8ef596-260e-455e-b941-68898e3a21fa, rgb(50, 50, 50)) /* {&quot;name&quot;:&quot;Off black&quot;} */\"></path><path d=\"M 6.504 6.681 C 7.118 6.04 7.965 5.678 8.849 5.678 C 9.734 5.678 10.58 6.04 11.194 6.681 C 12.492 8.019 12.492 10.188 11.194 11.526 C 10.58 12.167 9.734 12.529 8.849 12.529 C 7.965 12.529 7.118 12.167 6.504 11.526 C 5.209 10.188 5.209 8.019 6.504 6.681 Z\" fill=\"var(--token-5a8ef596-260e-455e-b941-68898e3a21fa, rgb(50, 50, 50)) /* {&quot;name&quot;:&quot;Off black&quot;} */\"></path><path d=\"M 6.524 6.702 C 7.125 6.074 7.954 5.72 8.821 5.72 C 9.688 5.72 10.518 6.074 11.119 6.702 C 12.39 8.014 12.39 10.138 11.119 11.449 C 10.518 12.077 9.688 12.431 8.821 12.431 C 7.955 12.431 7.125 12.077 6.524 11.449 C 5.255 10.138 5.255 8.014 6.524 6.702 Z\" fill=\"var(--token-5a8ef596-260e-455e-b941-68898e3a21fa, rgb(50, 50, 50)) /* {&quot;name&quot;:&quot;Off black&quot;} */\"></path><path d=\"M 6.546 6.723 C 7.134 6.107 7.947 5.76 8.796 5.76 C 9.645 5.76 10.457 6.107 11.046 6.723 C 12.29 8.007 12.29 10.087 11.046 11.372 C 10.457 11.987 9.645 12.334 8.796 12.334 C 7.947 12.334 7.134 11.987 6.546 11.372 C 5.303 10.088 5.303 8.008 6.546 6.723 Z\" fill=\"var(--token-5a8ef596-260e-455e-b941-68898e3a21fa, rgb(50, 50, 50)) /* {&quot;name&quot;:&quot;Off black&quot;} */\"></path><path d=\"M 6.567 6.744 C 7.143 6.142 7.938 5.802 8.769 5.802 C 9.6 5.802 10.395 6.142 10.972 6.744 C 12.191 8.001 12.191 10.037 10.972 11.295 C 10.395 11.896 9.6 12.236 8.769 12.236 C 7.938 12.236 7.143 11.896 6.567 11.295 C 5.351 10.037 5.351 8.001 6.567 6.745 Z\" fill=\"var(--token-5a8ef596-260e-455e-b941-68898e3a21fa, rgb(50, 50, 50)) /* {&quot;name&quot;:&quot;Off black&quot;} */\"></path><path d=\"M 6.587 6.765 C 7.151 6.176 7.929 5.843 8.742 5.843 C 9.555 5.843 10.333 6.176 10.897 6.765 C 12.089 7.994 12.089 9.987 10.897 11.217 C 10.333 11.806 9.555 12.139 8.742 12.139 C 7.929 12.139 7.151 11.806 6.587 11.217 C 5.397 9.987 5.397 7.994 6.587 6.765 Z\" fill=\"var(--token-5a8ef596-260e-455e-b941-68898e3a21fa, rgb(50, 50, 50)) /* {&quot;name&quot;:&quot;Off black&quot;} */\"></path><path d=\"M 6.606 6.786 C 7.158 6.21 7.919 5.884 8.714 5.884 C 9.509 5.884 10.27 6.21 10.822 6.786 C 11.987 8.001 11.987 9.925 10.822 11.14 C 10.27 11.716 9.509 12.041 8.714 12.041 C 7.919 12.041 7.158 11.716 6.606 11.14 C 5.443 9.937 5.443 7.988 6.606 6.785 Z\" fill=\"var(--token-5a8ef596-260e-455e-b941-68898e3a21fa, rgb(50, 50, 50)) /* {&quot;name&quot;:&quot;Off black&quot;} */\"></path><path d=\"M 6.628 6.806 C 7.167 6.243 7.911 5.925 8.688 5.925 C 9.465 5.925 10.209 6.243 10.748 6.806 C 11.889 7.993 11.889 9.876 10.748 11.063 C 10.209 11.626 9.465 11.944 8.688 11.944 C 7.91 11.944 7.166 11.626 6.627 11.063 C 5.489 9.875 5.489 7.994 6.627 6.805 Z\" fill=\"var(--token-5a8ef596-260e-455e-b941-68898e3a21fa, rgb(50, 50, 50)) /* {&quot;name&quot;:&quot;Off black&quot;} */\"></path><path d=\"M 6.647 6.827 C 7.174 6.277 7.901 5.967 8.66 5.967 C 9.42 5.967 10.146 6.277 10.673 6.827 C 11.786 7.987 11.786 9.826 10.673 10.986 C 10.146 11.535 9.419 11.846 8.66 11.846 C 7.901 11.846 7.174 11.535 6.647 10.986 C 5.536 9.836 5.536 7.975 6.647 6.827 Z\" fill=\"var(--token-5a8ef596-260e-455e-b941-68898e3a21fa, rgb(50, 50, 50)) /* {&quot;name&quot;:&quot;Off black&quot;} */\"></path><path d=\"M 6.668 6.848 C 7.182 6.311 7.891 6.007 8.633 6.007 C 9.374 6.007 10.084 6.311 10.598 6.848 C 11.685 7.981 11.685 9.776 10.598 10.909 C 10.083 11.445 9.374 11.748 8.633 11.748 C 7.891 11.748 7.182 11.445 6.668 10.909 C 5.582 9.775 5.582 7.981 6.668 6.848 Z\" fill=\"var(--token-5a8ef596-260e-455e-b941-68898e3a21fa, rgb(50, 50, 50)) /* {&quot;name&quot;:&quot;Off black&quot;} */\"></path><path d=\"M 6.689 6.869 C 7.19 6.344 7.883 6.048 8.606 6.048 C 9.33 6.048 10.023 6.344 10.524 6.869 C 11.585 7.974 11.585 9.726 10.524 10.831 C 10.022 11.356 9.33 11.652 8.606 11.652 C 7.883 11.652 7.19 11.356 6.689 10.831 C 5.629 9.725 5.629 7.975 6.689 6.869 Z\" fill=\"var(--token-5a8ef596-260e-455e-b941-68898e3a21fa, rgb(50, 50, 50)) /* {&quot;name&quot;:&quot;Off black&quot;} */\"></path><path d=\"M 6.709 6.89 C 7.198 6.379 7.873 6.09 8.579 6.09 C 9.285 6.09 9.96 6.379 10.449 6.89 C 11.484 7.968 11.484 9.676 10.449 10.754 C 9.96 11.265 9.284 11.554 8.579 11.554 C 7.873 11.554 7.198 11.265 6.708 10.754 C 5.675 9.675 5.675 7.969 6.708 6.89 Z\" fill=\"var(--token-5a8ef596-260e-455e-b941-68898e3a21fa, rgb(50, 50, 50)) /* {&quot;name&quot;:&quot;Off black&quot;} */\"></path><path d=\"M 6.731 6.91 C 7.207 6.412 7.865 6.131 8.553 6.131 C 9.24 6.131 9.898 6.412 10.375 6.91 C 11.384 7.961 11.384 9.627 10.375 10.677 C 9.898 11.175 9.24 11.456 8.553 11.456 C 7.865 11.456 7.208 11.175 6.731 10.677 C 5.723 9.626 5.723 7.961 6.731 6.91 Z\" fill=\"var(--token-5a8ef596-260e-455e-b941-68898e3a21fa, rgb(50, 50, 50)) /* {&quot;name&quot;:&quot;Off black&quot;} */\"></path><path d=\"M 6.749 6.931 C 7.214 6.446 7.855 6.171 8.524 6.171 C 9.194 6.171 9.835 6.446 10.3 6.931 C 11.283 7.954 11.283 9.577 10.3 10.6 C 9.835 11.085 9.194 11.359 8.524 11.359 C 7.855 11.359 7.214 11.085 6.749 10.6 C 5.769 9.576 5.769 7.956 6.749 6.931 Z\" fill=\"var(--token-5a8ef596-260e-455e-b941-68898e3a21fa, rgb(50, 50, 50)) /* {&quot;name&quot;:&quot;Off black&quot;} */\"></path><path d=\"M 6.769 6.952 C 7.222 6.479 7.845 6.212 8.497 6.212 C 9.149 6.212 9.773 6.479 10.225 6.952 C 11.182 7.948 11.182 9.527 10.225 10.523 C 9.773 10.995 9.149 11.261 8.497 11.261 C 7.846 11.261 7.222 10.995 6.769 10.523 C 5.815 9.526 5.815 7.949 6.769 6.952 Z\" fill=\"var(--token-5a8ef596-260e-455e-b941-68898e3a21fa, rgb(50, 50, 50)) /* {&quot;name&quot;:&quot;Off black&quot;} */\"></path><path d=\"M 6.79 6.973 C 7.23 6.513 7.837 6.254 8.471 6.254 C 9.105 6.254 9.712 6.513 10.152 6.973 C 11.082 7.941 11.082 9.476 10.152 10.445 C 9.712 10.904 9.105 11.164 8.471 11.164 C 7.837 11.164 7.23 10.904 6.79 10.445 C 5.862 9.476 5.862 7.942 6.79 6.973 Z\" fill=\"var(--token-5a8ef596-260e-455e-b941-68898e3a21fa, rgb(50, 50, 50)) /* {&quot;name&quot;:&quot;Off black&quot;} */\"></path><path d=\"M 10.076 6.994 C 10.98 7.935 10.98 9.427 10.076 10.368 C 9.648 10.814 9.059 11.066 8.443 11.066 C 7.827 11.066 7.238 10.814 6.811 10.368 C 5.909 9.426 5.909 7.936 6.811 6.994 C 7.238 6.548 7.827 6.295 8.443 6.295 C 9.059 6.295 9.649 6.548 10.076 6.994 Z\" fill=\"var(--token-5a8ef596-260e-455e-b941-68898e3a21fa, rgb(50, 50, 50)) /* {&quot;name&quot;:&quot;Off black&quot;} */\"></path><path d=\"M 2.835 4.781 C 4.376 3.781 9.791 6.147 14.504 11.013 C 19.216 15.879 21.507 21.472 20.54 23.062 L 20.549 23.073 C 21.429 21.922 21.556 19.688 20.864 17.123 C 20.173 14.559 18.663 11.664 16.268 9.19 C 11.48 4.246 4.846 3.097 2.824 4.769 L 2.834 4.781 Z\" fill=\"var(--token-15101be7-f17b-4db5-b79f-c8cafe99bc39, rgb(250, 248, 244)) /* {&quot;name&quot;:&quot;Warm white&quot;} */\"></path></svg>',svgContentId:11850754332,withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-fjh78e\",\"data-framer-name\":\"Logo-FjordBank-Wrapper\",layoutDependency:layoutDependency,layoutId:\"r_NQu47Ee\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1hqyozo\",\"data-framer-name\":\"Logo-FjordBank\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:49,intrinsicWidth:125,layoutDependency:layoutDependency,layoutId:\"zUiwtwbLA\",svg:'<svg width=\"125\" height=\"49\" viewBox=\"0 0 125 49\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M27.7548 24.3141C28.4866 23.6193 29.1435 22.8447 29.7109 22.0057C30.4597 20.8958 31.0554 19.6699 31.4632 18.3601C31.8702 17.0511 32.0895 15.6576 32.0887 14.2253C32.0895 12.3151 31.6994 10.4758 30.9941 8.80894C29.935 6.3079 28.1763 4.19214 25.9582 2.69217C24.8491 1.94258 23.6232 1.34775 22.3134 0.940718C21.0045 0.53288 19.6117 0.314453 18.1802 0.314453H18.1786C16.0677 0.314453 14.3566 2.0256 14.3566 4.13572C14.3566 6.24665 16.0677 7.9578 18.1786 7.9578C19.054 7.9578 19.8688 8.1327 20.6168 8.44865C21.7363 8.92097 22.7011 9.72133 23.3774 10.7232C23.7159 11.2245 23.9827 11.7742 24.1648 12.3602C24.347 12.9462 24.4461 13.5676 24.4461 14.2253C24.4453 15.1006 24.2704 15.9155 23.9553 16.6635C23.4821 17.783 22.6818 18.7478 21.6799 19.4248C21.1786 19.7625 20.6289 20.0293 20.0437 20.2115C19.457 20.3936 18.8355 20.4928 18.1786 20.4928C16.0677 20.4928 14.3566 22.2039 14.3566 24.3141C14.3566 26.425 16.0677 28.1361 18.1786 28.1361C19.054 28.1361 19.8688 28.311 20.6168 28.6262C21.7363 29.0993 22.7011 29.8997 23.3774 30.9015C23.7159 31.4029 23.9827 31.9526 24.1648 32.5385C24.347 33.1245 24.4461 33.7459 24.4461 34.4036C24.4453 35.2797 24.2704 36.0938 23.9553 36.8418C23.4821 37.9621 22.6818 38.9269 21.6799 39.6032C21.1786 39.9417 20.6289 40.2077 20.0437 40.3898C19.457 40.572 18.8355 40.6711 18.1786 40.6711H3.82127C1.71034 40.6711 0 42.3823 0 44.4924C0 46.6033 1.71034 48.3145 3.82127 48.3145H18.1819C20.0905 48.3145 21.929 47.9243 23.5942 47.2191C26.0952 46.1608 28.2118 44.4021 29.7109 42.184C30.4597 41.0749 31.0554 39.8482 31.4632 38.5384C31.8702 37.2295 32.0895 35.8359 32.0887 34.4036C32.0895 32.4934 31.6994 30.6541 30.9941 28.9881C30.2405 27.2068 29.1314 25.6206 27.7548 24.3141Z\" fill=\"#797877\"/>\\n<path d=\"M25.9571 22.8705C24.848 22.1217 23.6221 21.5261 22.3123 21.1191C21.0034 20.7112 19.6106 20.4928 18.1792 20.4928H18.1775C16.0666 20.4928 14.3555 22.2039 14.3555 24.3141C14.3555 26.425 16.0666 28.1361 18.1775 28.1361H18.1808C20.0894 28.1361 21.9279 27.746 23.5931 27.0408C25.1471 26.3831 26.5527 25.4546 27.7537 24.3141C27.1967 23.7861 26.5963 23.3025 25.9571 22.8705Z\" fill=\"#232323\" fill-opacity=\"0.6\"/>\\n<path d=\"M44.2528 38.748H46.483C47.5921 38.748 47.9652 38.1992 47.9652 37.51C47.9652 36.8096 47.5332 36.2615 46.483 36.2615H44.2528V38.748ZM44.2528 35.1758H46.1791C47.3237 35.1758 47.5921 34.6028 47.5921 34.0668C47.5921 33.5413 47.3938 32.9569 46.1791 32.9569H44.2528V35.1758ZM46.051 31.7656C48.386 31.7656 48.7946 33.027 48.7946 33.9031C48.7946 34.7785 48.3747 35.3975 47.6267 35.6659C48.5963 35.8642 49.1678 36.6234 49.1678 37.639C49.1678 38.935 48.4327 39.9393 46.2259 39.9393H42.9922V31.7656H46.051Z\" fill=\"#797877\"/>\\n<path d=\"M68.3543 36.9152H70.6659L69.5101 34.066L68.3543 36.9152ZM67.163 39.9393H65.7734L69.1482 31.7656H69.8833L73.2225 39.9393H71.833L71.0979 38.1057H67.9102L67.163 39.9393Z\" fill=\"#797877\"/>\\n<path d=\"M96.0699 39.9392L91.7497 34.1715V39.9392H90.4883V31.7664H91.2242L95.5443 37.5333V31.7664H96.8049V39.9392H96.0699Z\" fill=\"#797877\"/>\\n<path d=\"M118.467 37.3351C118.023 36.6347 117.825 36.4018 117.124 36.4018H116.085V39.9393H114.824V31.7656H116.085V35.1871H117.03C117.731 35.1871 117.93 34.9421 118.385 34.253L119.973 31.7656H121.409L119.553 34.6495C119.073 35.3386 118.817 35.6078 118.525 35.7594C118.875 35.8754 119.144 36.1559 119.634 36.9273L121.573 39.9393H120.148L118.467 37.3351Z\" fill=\"#797877\"/>\\n<path d=\"M18.1778 20.4928H7.64254V7.9578H18.1778C20.2887 7.9578 21.9999 6.24665 21.9999 4.13572C21.9999 2.0256 20.2887 0.314453 18.1778 0.314453H3.82127C1.71034 0.314453 0 2.0256 0 4.13572V44.4924C0 46.6033 1.71034 48.3145 3.82127 48.3145C5.93139 48.3145 7.64254 46.6033 7.64254 44.4924V28.1353H18.1778C20.2887 28.1353 21.9999 26.425 21.9999 24.3141C21.9999 22.2039 20.2887 20.4928 18.1778 20.4928Z\" fill=\"#4E4E4D\"/>\\n<path d=\"M52.0115 11.7323H44.485C44.0804 11.7323 43.6855 11.8959 43.3993 12.1821C43.114 12.4682 42.9504 12.8631 42.9504 13.2678V26.1259C42.9504 26.9739 43.6371 27.6614 44.485 27.6614C45.3329 27.6614 46.0205 26.9739 46.0205 26.1259V21.3222H51.4578C52.3065 21.3222 52.9932 20.6354 52.9932 19.7875C52.9932 18.9396 52.3065 18.2521 51.4578 18.2521H46.0205V14.8032H52.0115C52.8586 14.8032 53.5461 14.1157 53.5461 13.2678C53.5461 12.4198 52.8586 11.7323 52.0115 11.7323ZM85.1068 21.7421C84.7264 22.6424 84.0872 23.4121 83.2845 23.9546C82.4809 24.4962 81.5217 24.8114 80.4763 24.8114C79.7784 24.8114 79.1215 24.6711 78.521 24.4172C77.6215 24.0376 76.8517 23.3984 76.3093 22.5956C75.7677 21.7913 75.4525 20.8329 75.4525 19.7875C75.4525 19.0895 75.5928 18.4318 75.8467 17.8322C76.2263 16.9319 76.8654 16.1621 77.6682 15.6197C78.4718 15.078 79.431 14.7637 80.4763 14.7629C81.1743 14.7629 81.8312 14.9039 82.4317 15.157C83.3312 15.5375 84.1018 16.1766 84.6434 16.9794C85.185 17.783 85.5002 18.7413 85.501 19.7875C85.501 20.4855 85.3599 21.1424 85.1068 21.7421ZM85.0037 13.0759C83.7141 12.2038 82.1496 11.692 80.4796 11.692H80.4763C79.3633 11.692 78.2945 11.9185 77.3249 12.3288C75.8708 12.9445 74.6376 13.969 73.7656 15.2602C72.8926 16.5498 72.3816 18.1159 72.3816 19.7875C72.3816 20.9006 72.6081 21.9694 73.0184 22.939C73.6342 24.393 74.6586 25.6262 75.9498 26.4983C77.2394 27.3712 78.8047 27.883 80.4763 27.8822C81.5902 27.8822 82.6582 27.6557 83.6278 27.2455C85.0827 26.6297 86.315 25.6053 87.188 24.3141C88.0609 23.0244 88.5719 21.4584 88.5711 19.7875C88.5711 18.6736 88.3446 17.6049 87.9343 16.636C87.3185 15.1812 86.2941 13.948 85.0037 13.0759ZM66.6534 11.7323H62.0196C61.1717 11.7323 60.4842 12.4198 60.4842 13.2678C60.4842 14.1157 61.1717 14.8032 62.0196 14.8032H65.1179V22.3152C65.1179 22.6634 65.0486 22.9882 64.9221 23.2864C64.7343 23.7321 64.4151 24.1166 64.0161 24.3866C63.6155 24.6558 63.144 24.8114 62.6217 24.8114C62.2719 24.8114 61.9479 24.742 61.6505 24.6163C61.204 24.4277 60.8195 24.1093 60.5503 23.7095C60.2811 23.309 60.1255 22.8375 60.1247 22.3152C60.1247 21.4664 59.4372 20.7797 58.5893 20.7797C57.7414 20.7797 57.0539 21.4664 57.0539 22.3152C57.0539 23.0793 57.2102 23.8151 57.4923 24.4825C57.9163 25.4836 58.6199 26.3307 59.5073 26.9303C60.3939 27.5308 61.4732 27.883 62.6217 27.8822C63.3858 27.8822 64.1217 27.7267 64.7891 27.4438C65.7901 27.0198 66.6372 26.3162 67.2369 25.4288C67.8366 24.5422 68.1888 23.4621 68.1888 22.3152V13.2678C68.1888 12.8631 68.0244 12.4682 67.7391 12.1821C67.4529 11.8959 67.058 11.7323 66.6534 11.7323ZM102.338 18.9114C102.113 19.4474 101.731 19.9084 101.251 20.2324C100.771 20.5556 100.202 20.7426 99.5754 20.7435H96.7979V14.7468H99.5754C99.9938 14.7468 100.384 14.8306 100.743 14.9821C101.279 15.2078 101.74 15.5907 102.063 16.0694C102.386 16.5498 102.574 17.1188 102.574 17.7451C102.574 18.1634 102.49 18.5535 102.338 18.9114ZM104.607 21.1392C105.261 20.1728 105.645 18.9968 105.645 17.7451C105.645 16.9109 105.475 16.1089 105.167 15.3819C104.705 14.2914 103.938 13.3677 102.97 12.7132C102.003 12.0596 100.827 11.6759 99.5754 11.6759H95.2625C94.8579 11.6759 94.463 11.8403 94.1768 12.1256C93.8915 12.4118 93.7271 12.8075 93.7271 13.2113V26.4475C93.7271 27.2955 94.4146 27.9822 95.2625 27.9822C96.1104 27.9822 96.7979 27.2955 96.7979 26.4475V23.8135H98.3495L102.835 27.6179C103.481 28.1668 104.451 28.087 104.999 27.4405C105.548 26.7941 105.467 25.8245 104.821 25.2764L102.322 23.1574C103.246 22.6875 104.031 21.9911 104.607 21.1392ZM121.373 21.8445C120.981 22.7722 120.323 23.5653 119.496 24.1238C118.668 24.6824 117.679 25.0064 116.601 25.0072H113.936V14.6517H116.601C117.32 14.6517 117.998 14.7959 118.617 15.0579C119.544 15.4496 120.338 16.1081 120.897 16.9351C121.454 17.7636 121.779 18.7526 121.78 19.8294C121.779 20.5484 121.635 21.2254 121.373 21.8445ZM122.186 14.2454C120.761 12.818 118.779 11.9314 116.601 11.9322H112.576C112.218 11.9322 111.868 12.0773 111.615 12.3304C111.362 12.5835 111.217 12.9333 111.217 13.2919V26.3669C111.217 26.7248 111.362 27.0746 111.615 27.3285C111.868 27.5816 112.218 27.7267 112.576 27.7267H116.601C118.779 27.7267 120.761 26.8401 122.186 25.4134C123.613 23.9884 124.5 22.0057 124.5 19.8294C124.5 17.6532 123.613 15.6705 122.186 14.2454ZM0 24.3141C0 26.425 1.71115 28.1361 3.82127 28.1361H7.64254V20.4928H3.82127C1.71115 20.4928 0 22.2039 0 24.3141ZM0 44.4924C0 46.6033 1.71115 48.3145 3.82127 48.3145C5.93219 48.3145 7.64254 46.6033 7.64254 44.4924V40.6711H3.82127C1.71115 40.6711 0 42.3823 0 44.4924ZM3.82127 0.314453C1.71115 0.314453 0 2.0256 0 4.13572C0 6.24665 1.71115 7.9578 3.82127 7.9578H7.64254V4.13572C7.64254 2.0256 5.93219 0.314453 3.82127 0.314453ZM18.1778 0.314453C16.0677 0.314453 14.3566 2.0256 14.3566 4.13572C14.3566 6.24665 16.0677 7.9578 18.1778 7.9578C20.2887 7.9578 21.9999 6.24665 21.9999 4.13572C21.9999 2.0256 20.2887 0.314453 18.1778 0.314453ZM18.1778 20.4928C16.0677 20.4928 14.3566 22.2039 14.3566 24.3141C14.3566 26.425 16.0677 28.1361 18.1778 28.1361C20.2887 28.1361 21.9999 26.425 21.9999 24.3141C21.9999 22.2039 20.2887 20.4928 18.1778 20.4928Z\" fill=\"#232323\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1y6hryy\",\"data-framer-name\":\"Logo-Ibis-Wrapper\",layoutDependency:layoutDependency,layoutId:\"nMkU1aYrg\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-m2jcie\",\"data-framer-name\":\"Logo-Ibis\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:70,intrinsicWidth:70,layoutDependency:layoutDependency,layoutId:\"nJocDG21B\",svg:'<svg width=\"70\" height=\"70\" viewBox=\"0 0 70 70\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M1.55035 0.0312359C2.15701 -0.103577 2.69626 0.233455 3.23551 0.368268C6.33621 1.31196 9.57172 1.91862 12.8072 2.59268C16.9864 3.40156 21.233 3.94081 25.4796 4.21044C29.7937 4.48006 34.1077 4.54747 38.4217 4.48006C42.4661 4.41266 46.5105 4.14303 50.4874 3.60378C54.1948 3.13193 57.8347 2.39046 61.4747 1.64899C63.4295 1.24455 65.3843 0.772707 67.2716 0.0986423C67.8109 -0.103577 68.4175 0.0312359 68.8894 0.368268C69.3612 0.7053 69.5635 1.24455 69.6309 1.7838C69.6309 2.25565 69.4286 2.72749 69.2938 3.13193C68.5524 5.55857 68.0131 7.9852 67.5413 10.4118C67.002 13.1081 66.4628 15.8043 66.1257 18.5006C65.3843 24.0279 65.1146 29.6227 65.1146 35.15C65.1146 39.464 65.3169 43.778 65.7213 48.092C66.1257 52.2038 66.8672 56.2482 67.7435 60.2926C68.2153 62.6518 68.7546 65.0111 69.5635 67.3029C69.9005 68.314 69.0916 69.3925 68.0805 69.5273C67.4065 69.5947 66.8672 69.2577 66.2606 69.1229C62.8228 68.1118 59.2503 67.4377 55.6777 66.7636C47.3867 65.2133 38.9609 64.8763 30.5351 65.0785C25.0078 65.2133 19.5479 65.6851 14.1554 66.6962C11.5939 67.1681 8.96506 67.6399 6.40361 68.2466C5.05548 68.5836 3.77477 68.9206 2.42664 69.3925C1.88738 69.5947 1.21332 69.5273 0.674065 69.1229C0.269626 68.7858 0 68.314 0 67.8421C0 67.3029 0.26963 66.831 0.404443 66.2918C1.28073 63.5281 1.81998 60.6296 2.42664 57.7312C3.16811 54.1586 3.70736 50.5187 4.04439 46.8787C4.44883 42.8343 4.58364 38.7225 4.58364 34.6107C4.58364 28.2071 4.24661 21.8035 3.16811 15.4673C2.69626 12.6362 2.15701 9.87258 1.48295 7.04151C1.14591 5.49116 0.741473 3.8734 0.202221 2.32306C0.134815 2.12084 0.0674106 1.85121 0.0674106 1.64899C0.134817 0.974926 0.741473 0.233455 1.55035 0.0312359ZM12.4702 22.6798C12.4702 23.0168 12.5376 23.4213 12.7398 23.6235C12.942 23.8257 13.2791 23.8931 13.6161 23.8931C14.762 23.8931 15.8405 23.8931 16.9864 23.8931C16.9864 22.9494 16.9864 21.9383 16.9864 20.9946C16.9864 20.6576 16.9864 20.3206 16.7168 20.051C16.5146 19.8487 16.1775 19.7813 15.8405 19.7813C14.6946 19.7813 13.6161 19.7813 12.4702 19.7813C12.4702 20.6576 12.4702 21.6687 12.4702 22.6798ZM20.4242 19.7139C20.4242 27.3309 20.4242 35.0152 20.4242 42.6321C20.4242 42.9691 20.4916 43.3736 20.8286 43.5758C21.3004 43.8454 21.8397 43.9802 22.3789 44.1151C24.0641 44.5195 25.8167 44.6543 27.5018 44.5869C29.187 44.5195 30.9396 44.1825 32.4225 43.2388C33.5684 42.4973 34.4447 41.4188 34.984 40.2055C35.7254 38.5203 35.9276 36.7003 35.9276 34.8804C35.9276 33.2626 35.7928 31.5775 35.1862 30.0271C34.7817 28.8812 34.1077 27.8027 33.0292 27.0612C31.8833 26.2523 30.5351 25.9827 29.187 26.0501C27.5692 26.1175 26.0189 26.859 24.873 28.0049C24.873 25.6457 24.873 23.3539 24.873 20.9946C24.873 20.6576 24.873 20.3206 24.6034 20.051C24.4011 19.8487 24.0641 19.7813 23.7271 19.7813C22.716 19.7139 21.5701 19.7139 20.4242 19.7139ZM38.5565 22.6124C38.5565 22.9494 38.6239 23.3539 38.8261 23.5561C39.0283 23.7583 39.3654 23.8257 39.7024 23.8257C40.7809 23.8257 41.9268 23.8257 43.0053 23.8257C43.0053 22.882 43.0053 21.8709 43.0053 20.9272C43.0053 20.5902 43.0053 20.2532 42.7357 19.9835C42.5335 19.7813 42.1964 19.7139 41.8594 19.7139C40.7135 19.7139 39.635 19.7139 38.4891 19.7139C38.5565 20.6576 38.5565 21.6687 38.5565 22.6124ZM47.8586 27.2634C46.8475 27.9375 46.106 29.016 45.8364 30.2293C45.5668 31.5775 45.769 33.1278 46.5779 34.2737C47.3867 35.4196 48.6001 36.0937 49.8134 36.7003C50.8245 37.2396 51.9704 37.5766 52.8467 38.3181C53.5207 38.9248 53.5881 40.1381 52.8467 40.6773C52.1726 41.1492 51.2963 41.2166 50.4874 41.2166C48.9371 41.2166 47.4541 40.8796 45.9712 40.5425C45.9712 41.3514 45.9712 42.0929 45.9712 42.9017C45.9712 43.441 46.3082 43.9128 46.7801 44.0476C48.1956 44.5195 49.6786 44.6543 51.1615 44.6543C52.5096 44.6543 53.8578 44.4521 55.0711 43.8454C56.0148 43.3736 56.8236 42.6321 57.2955 41.621C57.9021 40.4077 57.9696 38.9922 57.6325 37.7114C57.3629 36.5655 56.6214 35.5544 55.6777 34.8804C54.397 33.8693 52.9141 33.3974 51.4985 32.7234C51.0267 32.4537 50.42 32.1841 50.2178 31.5775C50.083 31.1056 50.2178 30.4315 50.6897 30.1619C51.1615 29.8249 51.7682 29.7575 52.3748 29.7575C53.9252 29.6901 55.4081 30.0271 56.8911 30.4315C56.8911 29.6901 56.8911 28.9486 56.8911 28.1397C56.8911 27.8027 56.7562 27.3983 56.4866 27.1286C56.2844 26.9264 55.9474 26.859 55.6777 26.7916C54.5992 26.522 53.5207 26.3198 52.3748 26.3198C50.8245 26.1849 49.2067 26.3872 47.8586 27.2634ZM12.4702 26.4546C12.4702 32.0493 12.4702 37.5766 12.4702 43.1714C12.4702 43.5084 12.5376 43.8454 12.7398 44.0476C12.942 44.3173 13.3465 44.3173 13.6161 44.3173C14.762 44.3173 15.8405 44.3173 16.9864 44.3173C16.9864 38.7899 16.9864 33.1952 16.9864 27.6679C16.9864 27.3309 16.919 27.0612 16.7168 26.7916C16.5146 26.522 16.1775 26.4546 15.8405 26.4546C14.6946 26.4546 13.5487 26.4546 12.4702 26.4546ZM38.5565 26.4546C38.5565 31.9819 38.5565 37.5766 38.5565 43.104C38.5565 43.441 38.6239 43.778 38.8261 43.9802C39.0283 44.1825 39.4328 44.2499 39.7024 44.2499C40.8483 44.2499 41.9268 44.2499 43.0727 44.2499C43.0727 38.7225 43.0727 33.1278 43.0727 27.6005C43.0727 27.2634 43.0053 26.9264 42.8031 26.6568C42.5335 26.3872 42.1964 26.3872 41.8594 26.3872C40.7809 26.4546 39.7024 26.4546 38.5565 26.4546ZM30.0633 53.6194C29.3892 53.7542 29.0522 54.4282 28.9848 55.1023C28.9174 55.7764 28.9848 56.5853 29.4566 57.1245C29.9959 57.5963 30.8048 57.5964 31.4114 57.2593C32.0181 56.9223 32.2203 56.1808 32.2203 55.5067C32.2203 54.9675 32.1529 54.2934 31.681 53.889C31.2766 53.4846 30.6025 53.4846 30.0633 53.6194ZM25.2774 53.6194C25.2774 54.8327 25.2774 56.046 25.2774 57.2593C25.4796 57.4615 25.8167 57.3267 26.0189 57.3941C26.0189 56.8549 26.0189 56.3156 26.0189 55.7764C26.4907 55.7764 27.03 55.7764 27.5018 55.7764C27.5018 56.3156 27.4344 56.8549 27.5018 57.3267C27.7041 57.4615 28.0411 57.3941 28.2433 57.3941C28.2433 56.2482 28.2433 55.1023 28.2433 54.0238C28.2433 53.889 28.2433 53.7542 28.1759 53.6868C27.9737 53.6194 27.7041 53.6868 27.5018 53.6868C27.5018 54.1586 27.5018 54.6979 27.5018 55.1697C27.03 55.1697 26.4907 55.1697 26.0189 55.1697C26.0189 54.6979 26.0189 54.226 26.0189 53.8216C25.8841 53.552 25.547 53.6868 25.2774 53.6194ZM32.4899 53.6868C32.4899 53.889 32.4899 54.0238 32.4899 54.226C32.8269 54.226 33.2314 54.226 33.5684 54.226C33.5684 55.1697 33.5684 56.1134 33.5684 57.0571C33.5684 57.1245 33.5684 57.3267 33.6358 57.3267C33.838 57.3941 34.1077 57.3267 34.3099 57.3267C34.3099 56.3156 34.3099 55.2371 34.3099 54.226C34.6469 54.226 34.984 54.226 35.2536 54.226C35.3884 54.0912 35.321 53.8216 35.321 53.6194C34.4447 53.6194 33.6358 53.6194 32.7595 53.6194C32.7595 53.6194 32.5573 53.6194 32.4899 53.6868ZM35.9276 53.6194C35.9276 54.4957 35.9276 55.3045 35.9276 56.1808C35.9276 56.4504 35.9276 56.7875 36.1299 57.0571C36.3321 57.3267 36.6691 57.3941 36.9387 57.3941C37.4106 57.3941 37.8824 57.3941 38.3543 57.3267C38.6239 57.2593 38.4891 56.9223 38.5565 56.7201C38.0846 56.7875 37.5454 56.9223 37.0062 56.7875C36.6017 56.5853 36.7365 56.1134 36.7365 55.7764C37.2084 55.7764 37.6802 55.8438 38.1521 55.7764C38.2869 55.6416 38.2195 55.3719 38.2195 55.1697C37.7476 55.1697 37.2084 55.1697 36.7365 55.1697C36.7365 54.9001 36.7365 54.5631 36.7365 54.2934C37.2758 54.2934 37.7476 54.2934 38.2869 54.2934C38.4891 54.1586 38.3543 53.889 38.4217 53.6868C37.5454 53.6194 36.7365 53.6194 35.9276 53.6194ZM39.0957 53.6194C39.0957 54.4957 39.0957 55.3719 39.0957 56.2482C39.0957 56.5853 39.1632 57.0571 39.5676 57.2593C40.0394 57.4615 40.5113 57.3941 41.0505 57.3267C41.1854 57.2593 41.3876 57.3267 41.455 57.1919C41.455 56.9897 41.455 56.8549 41.455 56.6527C41.0505 56.7201 40.5787 56.8549 40.1743 56.7201C39.972 56.6527 39.9046 56.4504 39.9046 56.2482C39.8372 55.3719 39.9046 54.5631 39.9046 53.6868C39.7024 53.4846 39.3654 53.6868 39.0957 53.6194ZM42.3987 53.7542C41.792 54.0238 41.7246 54.9001 42.1964 55.3719C42.5335 55.709 43.0727 55.7764 43.4772 56.046C43.6794 56.2482 43.6794 56.6527 43.4098 56.7201C42.9379 56.8549 42.4661 56.7201 41.9942 56.6527C41.9942 56.8549 41.9942 56.9897 41.9942 57.1919C42.129 57.3267 42.3313 57.3267 42.4661 57.3941C42.9379 57.4615 43.5446 57.4615 43.949 57.1919C44.4883 56.8549 44.4883 55.9786 44.0838 55.5742C43.7468 55.2371 43.2075 55.1697 42.8031 54.8327C42.6009 54.6979 42.6683 54.2934 42.8705 54.226C43.2749 54.0912 43.7468 54.226 44.1512 54.2934C44.1512 54.0912 44.2186 53.7542 43.949 53.6868C43.4772 53.552 42.8705 53.4846 42.3987 53.7542Z\" fill=\"#323232\"/>\\n<path d=\"M25.2774 31.1058C26.0862 30.3643 27.0973 29.6902 28.2433 29.7576C29.0521 29.6902 29.861 30.1621 30.2654 30.8361C30.9395 31.9146 31.0743 33.1279 31.2091 34.4087C31.2765 35.8916 31.2765 37.442 30.8047 38.8575C30.5351 39.8012 29.861 40.6775 28.9173 41.0145C27.6366 41.4863 26.2211 41.3515 24.9403 40.9471C24.9403 37.8464 24.9403 34.7457 24.9403 31.645C24.8729 31.308 25.1425 31.2406 25.2774 31.1058Z\" fill=\"#323232\"/>\\n<path d=\"M30.3332 54.1585C30.6029 54.0911 31.0073 54.0911 31.2095 54.4281C31.4117 54.7652 31.4117 55.1022 31.4117 55.5066C31.4117 55.8437 31.4117 56.1807 31.2095 56.5177C30.9399 56.9896 30.131 56.9222 29.9288 56.4503C29.7266 56.0459 29.794 55.5741 29.794 55.1022C29.8614 54.6978 29.9962 54.2933 30.3332 54.1585Z\" fill=\"#323232\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-hwfav6\",\"data-framer-name\":\"Logo-Utilitas-Wrapper\",layoutDependency:layoutDependency,layoutId:\"Q31qBoJkZ\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1usr8ga\",\"data-framer-name\":\"Logo-Utilitas\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:26,intrinsicWidth:150,layoutDependency:layoutDependency,layoutId:\"brmiNJy5k\",svg:'<svg width=\"150\" height=\"26\" viewBox=\"0 0 150 26\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<mask id=\"mask0_2079_787\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"0\" y=\"0\" width=\"150\" height=\"26\">\\n<path d=\"M150 0.0772705H0V25.9227H150V0.0772705Z\" fill=\"white\"/>\\n</mask>\\n<g mask=\"url(#mask0_2079_787)\">\\n<path d=\"M74.511 2.92944C74.0382 2.92944 73.5849 3.11723 73.2506 3.4515C72.9163 3.78577 72.7285 4.23915 72.7285 4.71188V22.2511C72.7285 22.738 72.9219 23.2049 73.2663 23.5493C73.6105 23.8935 74.0775 24.0869 74.5644 24.0869C75.0514 24.0869 75.5182 23.8935 75.8626 23.5493C76.2069 23.2049 76.4003 22.738 76.4003 22.2511V4.71188C76.4003 4.23915 76.2125 3.78577 75.8782 3.4515C75.5439 3.11723 75.0906 2.92944 74.6178 2.92944\" fill=\"#323232\"/>\\n<path d=\"M92.1186 20.611H84.3828V4.74731C84.3828 4.2604 84.1895 3.79341 83.8451 3.44911C83.5009 3.10481 83.0339 2.91138 82.547 2.91138C82.0601 2.91138 81.5931 3.10481 81.2487 3.44911C80.9044 3.79341 80.7109 4.2604 80.7109 4.74731V22.0904C80.7109 22.5632 80.8988 23.0165 81.233 23.3509C81.5673 23.6851 82.0206 23.8729 82.4934 23.8729H92.1186C92.3519 23.897 92.5877 23.872 92.8107 23.7992C93.0337 23.7265 93.239 23.6077 93.4132 23.4506C93.5875 23.2934 93.7267 23.1015 93.8221 22.8872C93.9174 22.6729 93.9666 22.4408 93.9666 22.2063C93.9666 21.9717 93.9174 21.7398 93.8221 21.5255C93.7267 21.311 93.5875 21.1191 93.4132 20.962C93.239 20.8049 93.0337 20.6862 92.8107 20.6134C92.5877 20.5406 92.3519 20.5155 92.1186 20.5397\" fill=\"#323232\"/>\\n<path d=\"M98.4319 2.92944C97.9591 2.92944 97.5058 3.11723 97.1715 3.4515C96.8372 3.78577 96.6494 4.23915 96.6494 4.71188V22.2511C96.6494 22.738 96.8428 23.2049 97.1871 23.5493C97.5314 23.8935 97.9984 24.0869 98.4853 24.0869C98.9723 24.0869 99.4392 23.8935 99.7835 23.5493C100.128 23.2049 100.321 22.738 100.321 22.2511V4.71188C100.321 4.23915 100.134 3.78577 99.7992 3.4515C99.4649 3.11723 99.0115 2.92944 98.5387 2.92944\" fill=\"#323232\"/>\\n<path d=\"M46.1527 24.1046C45.68 24.1991 45.189 24.102 44.788 23.8346C44.3868 23.5672 44.1083 23.1514 44.0138 22.6787C43.9193 22.2059 44.0164 21.715 44.2839 21.3138C44.5513 20.9127 44.967 20.6342 45.4398 20.5397C46.2711 20.1981 46.9781 19.6103 47.4657 18.8552C47.9532 18.1 48.1979 17.2137 48.1669 16.3153V4.72948C48.1669 4.2402 48.3612 3.77096 48.7072 3.42499C49.0532 3.07901 49.5224 2.88464 50.0116 2.88464C50.501 2.88464 50.9702 3.07901 51.3162 3.42499C51.6621 3.77096 51.8565 4.2402 51.8565 4.72948V16.3153C51.8897 17.9417 51.4288 19.5401 50.5345 20.899C49.6403 22.2579 48.3548 23.3135 46.8478 23.9263C46.6268 24.0162 46.3912 24.0645 46.1527 24.069\" fill=\"#323232\"/>\\n<path d=\"M40.6814 24.069C40.4369 24.0664 40.1951 24.0181 39.9684 23.9265C38.4934 23.2924 37.241 22.233 36.3711 20.8837C35.5012 19.5343 35.0532 17.9562 35.0845 16.351V4.76523C35.0845 4.27832 35.278 3.81134 35.6223 3.46705C35.9666 3.12274 36.4336 2.92932 36.9205 2.92932C37.4074 2.92932 37.8743 3.12274 38.2185 3.46705C38.5629 3.81134 38.7563 4.27832 38.7563 4.76523V16.351C38.7219 17.2363 38.9576 18.1109 39.432 18.8591C39.9062 19.6073 40.5969 20.1933 41.4122 20.5398C41.6378 20.629 41.843 20.7633 42.0148 20.9345C42.1868 21.1057 42.3219 21.3102 42.4121 21.5355C42.5022 21.7608 42.5453 22.0021 42.5389 22.2446C42.5325 22.4873 42.4767 22.7259 42.3748 22.9461C42.2355 23.2984 41.9876 23.5972 41.6671 23.7991C41.3467 24.001 40.9701 24.0956 40.5923 24.069\" fill=\"#323232\"/>\\n<path d=\"M143.259 11.8412C139.231 10.8787 138.285 10.1657 138.285 8.56154C138.285 7.18907 139.534 6.10177 141.691 6.10177C143.408 6.14055 145.077 6.68626 146.485 7.67033C146.774 7.84937 147.108 7.94212 147.447 7.93767C147.905 7.93825 148.345 7.76275 148.678 7.44752C149.009 7.13229 149.208 6.70148 149.23 6.24436C149.238 5.94953 149.165 5.65813 149.021 5.4009C148.877 5.14368 148.666 4.93013 148.41 4.78275C146.457 3.47408 144.148 2.79599 141.798 2.8399C137.644 2.8399 134.668 5.31748 134.668 8.90018C134.668 12.7502 137.18 14.0693 141.619 15.1388C145.487 16.03 146.324 16.9212 146.324 18.3293C146.324 19.88 144.899 20.9673 142.635 20.9673C141.458 20.9749 140.293 20.7381 139.213 20.2722C138.962 20.2417 138.706 20.2653 138.464 20.3411C138.223 20.417 138 20.5435 137.811 20.7122C137.623 20.8808 137.472 21.0878 137.369 21.3192C137.266 21.5507 137.215 21.8013 137.217 22.0546C137.233 22.2921 137.301 22.5233 137.414 22.7325C137.528 22.9417 137.685 23.1239 137.876 23.2666C139.365 23.8439 140.948 24.14 142.546 24.14C146.931 24.14 149.996 21.8051 149.996 17.9015C149.996 14.4436 147.732 12.8572 143.312 11.7877\" fill=\"#323232\"/>\\n<path d=\"M68.3435 3.10742H55.6704C55.174 3.10742 54.698 3.30461 54.3471 3.65559C53.9961 4.00658 53.7988 4.48262 53.7988 4.97899C53.7988 5.47536 53.9961 5.95139 54.3471 6.30238C54.698 6.65337 55.174 6.85055 55.6704 6.85055H60.1443V22.1973C60.1443 22.6938 60.3416 23.1698 60.6925 23.5208C61.0436 23.8717 61.5195 24.069 62.0159 24.069C62.5123 24.069 62.9884 23.8717 63.3393 23.5208C63.6903 23.1698 63.8874 22.6938 63.8874 22.1973V6.85055H68.3435C68.8399 6.85055 69.316 6.65337 69.6669 6.30238C70.0179 5.95139 70.2152 5.47536 70.2152 4.97899C70.2152 4.48262 70.0179 4.00658 69.6669 3.65559C69.316 3.30461 68.8399 3.10742 68.3435 3.10742Z\" fill=\"#323232\"/>\\n<path d=\"M116.969 6.85055C117.466 6.85055 117.942 6.65337 118.293 6.30238C118.643 5.95139 118.841 5.47536 118.841 4.97899C118.841 4.48262 118.643 4.00658 118.293 3.65559C117.942 3.30461 117.466 3.10742 116.969 3.10742H104.279C103.782 3.10742 103.306 3.30461 102.954 3.65559C102.603 4.00658 102.406 4.48262 102.406 4.97899C102.406 5.47536 102.603 5.95139 102.954 6.30238C103.306 6.65337 103.782 6.85055 104.279 6.85055H108.752V22.1973C108.752 22.6938 108.95 23.1698 109.3 23.5208C109.651 23.8717 110.127 24.069 110.624 24.069C111.12 24.069 111.597 23.8717 111.947 23.5208C112.298 23.1698 112.495 22.6938 112.495 22.1973V6.85055H116.969Z\" fill=\"#323232\"/>\\n<path d=\"M127.431 3.69561C127.344 3.46153 127.213 3.24683 127.043 3.06372C126.873 2.88061 126.669 2.73266 126.443 2.6284C126.216 2.52412 125.97 2.46555 125.722 2.45599C125.472 2.44642 125.223 2.48608 124.989 2.57269C124.755 2.65929 124.541 2.79116 124.357 2.96075C124.174 3.13034 124.026 3.33434 123.922 3.56109C123.818 3.78784 123.759 4.03293 123.749 4.28232C123.74 4.53172 123.78 4.78055 123.867 5.01463L127.787 15.3528H122.939L124.222 11.9127C124.309 11.6785 124.349 11.4297 124.34 11.1803C124.33 10.931 124.271 10.6859 124.167 10.4591C124.063 10.2324 123.915 10.0283 123.732 9.8588C123.549 9.6892 123.334 9.55733 123.1 9.47072C122.866 9.38412 122.617 9.34446 122.367 9.35402C122.118 9.36357 121.873 9.42217 121.646 9.52645C121.42 9.63073 121.216 9.77864 121.046 9.96172C120.876 10.1448 120.744 10.3596 120.658 10.5937L116.505 21.5735C116.419 21.804 116.38 22.0492 116.389 22.295C116.398 22.5406 116.456 22.7822 116.559 23.0057C116.661 23.2291 116.807 23.4301 116.988 23.5974C117.167 23.7645 117.379 23.8944 117.61 23.9798C117.819 24.0655 118.043 24.1078 118.269 24.1045C118.656 24.1109 119.034 23.9978 119.352 23.7809C119.672 23.5639 119.915 23.2536 120.052 22.8925L121.477 19.1138H129.177L130.621 22.8925C130.758 23.2536 131.001 23.5639 131.321 23.7809C131.64 23.9978 132.018 24.1109 132.404 24.1045C132.63 24.1078 132.855 24.0655 133.064 23.9798C133.302 23.9037 133.523 23.7781 133.71 23.6111C133.897 23.4442 134.047 23.2396 134.15 23.0108C134.252 22.7821 134.305 22.5342 134.305 22.2834C134.305 22.0327 134.253 21.7847 134.151 21.5557L127.431 3.69561Z\" fill=\"#323232\"/>\\n<path d=\"M19.3095 14.1942C21.5676 15.2409 23.9716 15.9382 26.4393 16.2619C26.9023 14.4407 27.0469 12.5533 26.8671 10.6828C25.3877 0.647713 13.9444 -0.742586 10.8252 3.44615C15.8338 2.94707 20.4325 8.24091 19.1848 14.1407\" fill=\"#323232\"/>\\n<path d=\"M10.3788 20.3793C4.62147 15.3528 4.47884 3.30348 11.7333 0.0772705C9.49246 0.266788 7.34123 1.04428 5.49695 2.33122C3.65267 3.61814 2.18068 5.36895 1.22955 7.40682C0.278423 9.4447 -0.118142 11.6975 0.0799526 13.9376C0.278046 16.1778 1.06379 18.326 2.35777 20.1653C4.79972 21.52 7.2773 21.3061 10.3788 20.3793Z\" fill=\"#323232\"/>\\n<path d=\"M12.3761 19.5417C13.2867 19.0477 14.1113 18.4096 14.8181 17.6523C10.9324 15.2638 8.81125 9.88088 8.59736 6.13773V5.90601C7.64504 8.29051 7.38907 10.8964 7.8592 13.4206C8.32934 15.9448 9.50626 18.2837 11.2532 20.1656C11.6626 20.0069 12.0615 19.8223 12.4474 19.6129\" fill=\"#323232\"/>\\n<path d=\"M10.9297 9.0072C11.0284 10.5893 11.47 12.1309 12.2241 13.5252C12.9782 14.9195 14.0267 16.1331 15.2966 17.0816C15.7682 16.4727 16.1523 15.8007 16.4375 15.0853C14.0334 13.6576 12.1144 11.5398 10.9297 9.0072Z\" fill=\"#323232\"/>\\n<path d=\"M18.5797 16.7076C17.5075 18.8934 15.7652 20.6794 13.6067 21.8054C11.6766 22.8374 9.52122 23.3762 7.33253 23.374C6.61026 23.3663 5.88951 23.3067 5.17578 23.1957C6.75387 24.3846 8.57034 25.2183 10.5007 25.6396C12.431 26.0609 14.4296 26.0599 16.3596 25.6366C18.2895 25.2134 20.1051 24.3779 21.682 23.1875C23.2589 21.997 24.5598 20.4798 25.4956 18.7396C23.112 18.3644 20.7874 17.6815 18.5797 16.7076Z\" fill=\"#323232\"/>\\n</g>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-11d8iec\",\"data-framer-name\":\"Logo-TKM-Wrapper\",layoutDependency:layoutDependency,layoutId:\"YDLeSn6RD\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2208,intrinsicWidth:4010,pixelHeight:221,pixelWidth:401,src:\"https://framerusercontent.com/images/yf1UjwS80b5MQRaTA5sZX5reutk.png\"},className:\"framer-1nvrkg1\",\"data-framer-name\":\"image\",layoutDependency:layoutDependency,layoutId:\"InziS3Ye7\",style:{opacity:.8}})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1yjmab1\",\"data-framer-name\":\"Logo-SpecialistVC-Wrapper\",layoutDependency:layoutDependency,layoutId:\"P5W03TmuT\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-eea56o\",\"data-framer-name\":\"Logo-SpecialistVC\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:33,intrinsicWidth:143,layoutDependency:layoutDependency,layoutId:\"zgQPby0ex\",svg:'<svg width=\"143\" height=\"33\" viewBox=\"0 0 143 33\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M142.448 0.561523H128.826V10.9792H142.448V0.561523ZM134.192 3.26474L132.863 6.82513L131.519 3.26474H130.116L132.244 8.74982H133.475L135.57 3.26474H134.192ZM139.875 6.83299L139.932 6.68063L141.138 7.20161L141.081 7.33038C140.896 7.80254 140.553 8.19626 140.111 8.44509C139.717 8.6672 139.279 8.799 138.828 8.83096C138.377 8.86292 137.924 8.79424 137.503 8.62989C137.195 8.49766 136.917 8.30361 136.687 8.05976C136.445 7.80031 136.256 7.49524 136.133 7.16229C135.872 6.41973 135.872 5.61056 136.133 4.868C136.258 4.53111 136.449 4.22287 136.696 3.96168C136.937 3.70807 137.232 3.50754 137.56 3.3768C137.912 3.23546 138.289 3.16466 138.669 3.16841C139.21 3.15437 139.742 3.30821 140.192 3.60879C140.595 3.8968 140.884 4.31359 141.008 4.78837L141.049 4.92403L139.834 5.33393L139.786 5.18943C139.719 4.95373 139.572 4.74899 139.37 4.61144C139.151 4.47224 138.895 4.40235 138.635 4.41091C138.438 4.40685 138.241 4.44227 138.057 4.5151C137.893 4.5912 137.745 4.70065 137.625 4.83654C137.497 4.98202 137.4 5.1511 137.34 5.33393C137.272 5.54922 137.239 5.7738 137.242 5.99942C137.237 6.23042 137.272 6.46142 137.348 6.68063C137.408 6.86346 137.505 7.03254 137.633 7.17802C137.752 7.30974 137.9 7.41394 138.065 7.48275C138.285 7.5666 138.52 7.60076 138.754 7.58274C138.988 7.56472 139.215 7.49498 139.419 7.37855C139.628 7.25076 139.788 7.06006 139.875 6.83299Z\" fill=\"#323232\"/>\\n<path d=\"M5.93528 23.4504C6.46428 23.4675 6.98724 23.3338 7.44319 23.065C7.62799 22.952 7.77839 22.7918 7.87964 22.6011C7.97984 22.4107 8.02607 22.1965 8.01332 21.9818C8.01332 21.2937 7.54935 20.8278 6.61158 20.5958L4.67116 20.0974C3.44963 19.8722 2.31816 19.3019 1.41059 18.4538C0.772058 17.7541 0.427442 16.8353 0.448243 15.8882C0.43433 15.2732 0.558618 14.6628 0.811948 14.1022C1.06707 13.5389 1.44412 13.0393 1.91584 12.6395C3.06743 11.719 4.52113 11.2616 5.9923 11.3567C7.30265 11.3151 8.59688 11.6549 9.71782 12.3347C10.2116 12.6428 10.6333 13.0535 10.9544 13.5389C11.2732 14.0219 11.4825 14.5688 11.5678 15.1412L8.1362 15.9433C8.11471 15.7208 8.04637 15.5054 7.93567 15.3112C7.82425 15.116 7.67324 14.9463 7.49234 14.8129C7.0867 14.5373 6.60436 14.3969 6.11419 14.4118C5.62658 14.3857 5.14435 14.5242 4.74489 14.805C4.57626 14.9215 4.43842 15.0771 4.34322 15.2586C4.24802 15.4401 4.19831 15.642 4.19834 15.847C4.19514 16.0107 4.22779 16.1731 4.29402 16.3229C4.36025 16.4727 4.45844 16.6061 4.58171 16.714C4.95524 16.9951 5.38579 17.1917 5.84485 17.291L7.75283 17.7805C10.4698 18.4971 11.8293 19.9106 11.8293 22.0231C11.8446 22.6412 11.7114 23.2541 11.441 23.8101C11.1689 24.3694 10.768 24.8562 10.2712 25.2306C9.0102 26.1063 7.49145 26.5328 5.95888 26.4416C4.48292 26.5252 3.01859 26.1376 1.77724 25.3348C1.29296 24.9884 0.884816 24.5465 0.577997 24.0362C0.272498 23.5284 0.0756846 22.9628 0 22.375L3.52205 21.798C3.53674 22.0374 3.60702 22.27 3.72731 22.4775C3.84761 22.685 4.01461 22.8616 4.21505 22.9933C4.72326 23.3245 5.32583 23.4848 5.93528 23.4504ZM22.3522 26.4495C21.3736 26.457 20.4034 26.2688 19.4986 25.896C18.7125 25.5923 18.0226 25.0826 17.5011 24.4206V32.776H13.8002V11.7577H17.2082L17.3792 13.362C17.8793 12.7194 18.5322 12.2122 19.2784 11.8865C20.2093 11.4753 21.2198 11.2752 22.2372 11.3006C23.2267 11.3038 24.2074 11.486 25.1321 11.8383C25.9986 12.1577 26.7857 12.6611 27.4391 13.3138C28.1128 13.9936 28.6254 14.816 28.9392 15.7202C29.3113 16.7477 29.4912 17.835 29.47 18.9276C29.487 20.021 29.3045 21.1083 28.9313 22.1361C28.6009 23.034 28.087 23.8532 27.4224 24.5415C26.7832 25.1863 26.0133 25.6867 25.1645 26.0091C24.2616 26.3256 23.3086 26.4752 22.3522 26.4505V26.4495ZM25.6619 18.8864C25.6887 18.3322 25.6038 17.7783 25.4122 17.2575C25.2199 16.7344 24.9252 16.2548 24.5452 15.847C24.1723 15.4681 23.7243 15.1714 23.23 14.976C22.7331 14.7798 22.2009 14.6888 21.667 14.7087C21.1275 14.6884 20.5895 14.7791 20.0864 14.975C19.5841 15.1716 19.128 15.4685 18.7495 15.847C18.3628 16.2525 18.0625 16.7324 17.8668 17.2575C17.6724 17.7803 17.5871 18.3373 17.6161 18.8942C17.5866 19.4526 17.6712 20.0109 17.8658 20.5358C18.0604 21.0607 18.3603 21.5424 18.7485 21.9503C19.1331 22.3255 19.5905 22.618 20.0924 22.8097C20.5944 23.0015 21.1302 23.0883 21.667 23.065C22.2001 23.0843 22.7315 22.9936 23.228 22.7987C23.7234 22.604 24.1717 22.3091 24.5452 21.9336C24.9257 21.5249 25.2208 21.0443 25.4132 20.5201C25.6048 19.9977 25.6894 19.4421 25.6619 18.8864ZM45.995 20.2419H35.0219C35.0485 20.6813 35.1694 21.1109 35.3797 21.5001C35.5891 21.8884 35.881 22.2275 36.2369 22.4959C36.9631 23.0084 37.8353 23.2728 38.7239 23.2498C39.4523 23.2946 40.1777 23.1229 40.8088 22.7564C41.4359 22.393 41.9394 21.8495 42.2538 21.1964L45.417 22.4399C44.9073 23.688 43.9944 24.7296 42.8239 25.3987C41.5843 26.1092 40.176 26.4722 38.7474 26.4495C37.7159 26.4704 36.6905 26.2849 35.7316 25.9039C34.8632 25.5574 34.0753 25.0361 33.4167 24.3724C32.7464 23.6899 32.2343 22.8684 31.9167 21.9661C31.2104 19.974 31.2104 17.7997 31.9167 15.8076C32.2441 14.91 32.755 14.0905 33.4167 13.4013C34.0796 12.7162 34.8831 12.1829 35.7719 11.8383C36.7305 11.4658 37.7515 11.2803 38.7799 11.2918C39.7893 11.2787 40.7918 11.4613 41.7318 11.8295C42.5918 12.1659 43.3681 12.6858 44.0064 13.3531C44.6456 14.0533 45.1436 14.8704 45.473 15.7595C45.834 16.7649 46.0109 17.8271 45.995 18.8952V20.2419ZM42.0984 17.6439C42.0907 16.7417 41.7309 15.8782 41.0958 15.2375C40.4387 14.6734 39.5884 14.3862 38.7239 14.4364C37.8375 14.3907 36.9657 14.6762 36.2782 15.2375C35.6089 15.8754 35.1822 16.726 35.0711 17.6439H42.0984ZM55.4533 11.3252C56.9942 11.2812 58.5121 11.7063 59.806 12.5441C60.9761 13.2893 61.8433 14.4261 62.2527 15.7516L58.9911 17.0501C58.7644 16.3531 58.3146 15.75 57.7113 15.3338C57.0804 14.8951 56.3267 14.668 55.5585 14.6851C55.0334 14.6536 54.508 14.742 54.0221 14.9436C53.5375 15.1451 53.1059 15.4547 52.7629 15.8479C52.0748 16.7228 51.7268 17.8139 51.7848 18.9188C51.7173 20.0267 52.0792 21.118 52.7953 21.9661C53.1416 22.3345 53.5636 22.6236 54.0323 22.8133C54.501 23.003 55.0053 23.0889 55.5103 23.065C56.2784 23.0791 57.0333 22.8642 57.6788 22.4477C58.2885 22.0535 58.7522 21.4703 58.999 20.7875L62.2605 21.967C61.8158 23.3209 60.9135 24.4775 59.7087 25.2384C58.44 26.0513 56.9588 26.47 55.4523 26.4416C54.4109 26.4579 53.3762 26.2726 52.4051 25.896C51.5194 25.5543 50.7142 25.0329 50.04 24.3646C49.3624 23.6834 48.8424 22.862 48.5164 21.9582C48.143 20.9887 47.9546 19.9577 47.961 18.9188C47.9387 17.8714 48.1155 16.8293 48.482 15.8479C48.8183 14.9488 49.3379 14.1294 50.0076 13.4416C50.673 12.7417 51.4822 12.1944 52.3795 11.8373C53.3625 11.4776 54.4045 11.3046 55.4533 11.3252ZM81.5025 26.0799C81.5025 25.8636 81.4298 25.6316 81.4052 25.3829C81.3806 25.1342 81.3403 24.8777 81.299 24.5808C80.8518 25.1603 80.266 25.618 79.5955 25.9118C78.7739 26.2716 77.8834 26.447 76.9867 26.4259C75.6018 26.4928 74.2399 26.0536 73.155 25.1903C72.6711 24.7666 72.2888 24.2395 72.0363 23.648C71.7857 23.0593 71.672 22.4213 71.7041 21.7822C71.6668 21.1567 71.7745 20.531 72.0187 19.9539C72.2644 19.3743 72.6392 18.8586 73.1147 18.446C74.2268 17.6104 75.5989 17.1957 76.9877 17.2752H81.2096V16.8093C81.2368 16.4549 81.1771 16.0993 81.0356 15.7732C80.8928 15.4455 80.673 15.1572 80.3947 14.9328C79.7768 14.519 79.0415 14.3166 78.299 14.3558C77.5878 14.3195 76.8815 14.4921 76.2671 14.8522C75.6572 15.2096 75.1672 15.7403 74.8595 16.3768L72.0875 14.8207C73.3349 12.4871 75.5033 11.3242 78.6096 11.3242C80.253 11.2569 81.8698 11.7551 83.1903 12.7358C84.3807 13.6824 84.9843 15.2228 84.9843 17.3558V22.8409C84.9843 23.5388 84.9843 24.1876 85.058 24.8059C85.0698 25.2365 85.1327 25.6641 85.2448 26.0808H81.5035L81.5025 26.0799ZM81.242 19.8575H77.8753C77.2602 19.8172 76.6507 19.9962 76.1551 20.3628C75.9544 20.5284 75.7954 20.7387 75.6906 20.9768C75.5858 21.2149 75.5381 21.4743 75.5515 21.7341C75.5328 21.9981 75.5804 22.2626 75.6901 22.5035C75.7999 22.7444 75.9681 22.954 76.1796 23.1132C76.7138 23.4764 77.3536 23.6514 77.9982 23.6106C78.4189 23.6126 78.8367 23.5477 79.2367 23.4179C79.6204 23.2981 79.9718 23.0924 80.264 22.8163C80.5785 22.5146 80.8213 22.1479 80.9737 21.7419C81.1674 21.2299 81.2586 20.6849 81.242 20.1377V19.8575ZM88.1082 4.5072H91.9812V26.0799H88.1328L88.1082 4.5072ZM107.952 23.4494C108.478 23.474 109.001 23.349 109.46 23.0886C109.643 22.9763 109.793 22.8164 109.894 22.626C109.994 22.4355 110.042 22.2214 110.031 22.0064C110.031 21.3163 109.566 20.8514 108.628 20.6184L106.655 20.0974C105.432 19.8759 104.3 19.3051 103.395 18.4538C102.75 17.7568 102.402 16.8363 102.424 15.8873C102.408 15.2673 102.531 14.6515 102.784 14.0854C103.039 13.5165 103.418 13.0114 103.892 12.607C105.044 11.6873 106.497 11.23 107.969 11.3242C109.279 11.2846 110.572 11.6242 111.694 12.3023C112.188 12.6129 112.608 13.0238 112.927 13.5084C113.244 13.9915 113.452 14.538 113.536 15.1097L110.104 15.9118C110.081 15.689 110.012 15.4733 109.901 15.2786C109.79 15.084 109.64 14.9146 109.46 14.7814C109.054 14.5056 108.572 14.3649 108.083 14.3794C107.595 14.3532 107.112 14.4917 106.712 14.7725C106.544 14.8967 106.409 15.0605 106.32 15.2493C106.23 15.4381 106.189 15.6461 106.199 15.8548C106.196 16.0183 106.229 16.1805 106.295 16.33C106.362 16.4796 106.46 16.6129 106.582 16.7208C106.957 17.003 107.388 17.2002 107.846 17.2988L109.754 17.7884C112.471 18.504 113.83 19.9185 113.83 22.03C113.845 22.6484 113.712 23.2614 113.442 23.818C113.17 24.3774 112.769 24.8642 112.272 25.2384C111.012 26.1155 109.492 26.5422 107.96 26.4495C106.484 26.5331 105.019 26.1455 103.778 25.3426C103.294 24.9963 102.885 24.5543 102.578 24.0441C102.272 23.5363 102.076 22.9706 102.001 22.3828L105.523 21.8058C105.537 22.0437 105.607 22.2757 105.727 22.4831C105.847 22.6895 106.014 22.8665 106.216 23.0011C106.731 23.3332 107.34 23.4904 107.952 23.4494ZM121.75 14.8777V26.1044H117.992V14.8787H115.171V11.7577H117.992V6.66584H121.75V14.8777ZM99.1668 11.7577H95.3273V26.0799H99.1668V11.7577ZM103.244 6.66584H99.4047V9.78487H103.244V6.66584ZM127.504 11.7577H123.665V14.8777H127.504V11.7577ZM69.0549 11.7577H65.2154V26.0799H69.0549V11.7577ZM73.1334 6.66584H69.2928V9.78487H73.1334V6.66584Z\" fill=\"#323232\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1on49ly\",\"data-framer-name\":\"Logo-SolisBiodyne-Wrapper\",layoutDependency:layoutDependency,layoutId:\"WI1Gz0mgb\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-15s4z8f\",\"data-framer-name\":\"Logo-SolisBiodyne\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:36,intrinsicWidth:144,layoutDependency:layoutDependency,layoutId:\"VVVU7oqNJ\",svg:'<svg width=\"144\" height=\"36\" viewBox=\"0 0 144 36\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M46.3252 5.38334C41.2286 2.3117 34.501 0.620972 27.3816 0.620972C20.2622 0.620972 13.5296 2.31224 8.43466 5.38334C2.99567 8.66279 0 13.1425 0 17.9982C0 22.8538 2.99567 27.3368 8.43466 30.6173C13.5378 33.6889 20.266 35.3791 27.3821 35.3791C34.4983 35.3791 41.2216 33.6889 46.3247 30.6195C51.768 27.3313 54.7648 22.8506 54.7648 17.9982C54.7648 13.1457 51.7669 8.66279 46.3252 5.38334ZM27.3816 2.59277C30.7505 2.59277 34.0186 2.98832 37.043 3.74036C33.0528 4.8478 29.8574 5.87385 27.3816 6.8592C24.9062 5.8733 21.7104 4.84725 17.7185 3.73927C20.744 2.98778 24.0126 2.59277 27.3816 2.59277ZM40.928 17.9982C40.928 23.3281 34.0099 27.741 28.8498 28.5223C32.5096 26.8918 34.2085 25.3482 34.3485 23.6905C34.5059 21.8343 32.654 20.0144 28.5449 18.0009C32.654 15.9857 34.5059 14.1658 34.3485 12.3096C34.2091 10.6617 32.5297 9.12671 28.916 7.5076C33.5574 8.35785 40.928 12.7312 40.928 17.9982ZM36.1402 9.51195C38.24 10.0133 40.323 10.6595 42.2102 11.4132C47.1679 13.3937 50.1277 15.8549 50.1277 17.9976C50.1277 20.1403 47.1668 22.6015 42.2075 24.5831C40.4587 25.2814 38.5428 25.887 36.5992 26.372C36.6274 26.3525 36.6562 26.3324 36.6844 26.3129C40.0642 23.9336 41.9259 20.9808 41.9259 17.9976C41.9259 14.532 39.2796 11.5754 36.1407 9.51141L36.1402 9.51195ZM13.8552 17.9982C13.8552 12.7312 21.2057 8.35731 25.8477 7.5076C22.234 9.12671 20.5546 10.6617 20.4152 12.3096C20.2578 14.1658 22.1097 15.9857 26.2188 18.0009C22.1097 20.0144 20.2578 21.8349 20.4152 23.6905C20.5552 25.3482 22.254 26.8918 25.9144 28.5234C20.7581 27.7421 13.8552 23.3286 13.8552 17.9982ZM18.1786 26.3769C16.2301 25.8913 14.3072 25.2836 12.553 24.5836C7.59363 22.6021 4.63323 20.1414 4.63323 17.9982C4.63323 15.8549 7.59255 13.3959 12.5497 11.4148C14.4423 10.659 16.5318 10.0111 18.6382 9.5087C15.5025 11.5722 12.8579 14.5293 12.8579 17.9982C12.8579 20.9813 14.7147 23.9347 18.0869 26.3124C18.1178 26.3341 18.1477 26.3558 18.1786 26.3769ZM21.4092 23.6059C21.2866 22.155 23.2985 20.4534 27.3816 18.5511C31.4646 20.4539 33.4766 22.1555 33.3539 23.6059C33.2226 25.1588 30.7462 26.6775 27.3816 28.059C24.0169 26.6781 21.5405 25.1588 21.4092 23.6059ZM27.3772 18.0009L27.3816 17.9911L27.3859 18.0009L27.3816 18.0095L27.3772 18.0009ZM33.3545 12.3937C33.4771 13.8451 31.4651 15.5462 27.3821 17.449C23.2996 15.5462 21.2871 13.8451 21.4098 12.3937C21.5411 10.8419 24.0175 9.32204 27.3821 7.94114C30.7473 9.32204 33.2232 10.8419 33.3545 12.3937ZM9.45311 28.9293C4.63052 26.0204 1.97234 22.1409 1.97234 17.9982C1.97234 13.8554 4.63052 9.97967 9.45311 7.07298C11.3593 5.92376 13.5193 4.9829 15.8509 4.26288C19.0988 5.13646 22.8102 6.20429 25.9784 7.39149C17.0478 7.85758 3.63594 12.4441 3.63594 17.9987C3.63594 23.5533 17.0549 28.1414 25.9828 28.6075C22.814 29.7953 19.1021 30.8631 15.8536 31.7378C13.521 31.0167 11.3603 30.0774 9.45365 28.9298L9.45311 28.9293ZM27.3816 33.4073C24.0131 33.4073 20.7451 33.0123 17.7206 32.2603C21.7109 31.1523 24.9062 30.1263 27.3816 29.1409C29.8563 30.1263 33.0517 31.1518 37.0414 32.2603C34.0175 33.0123 30.7495 33.4073 27.3816 33.4073ZM45.3068 28.9293C43.4001 30.0763 41.2406 31.0167 38.9085 31.7361C35.6605 30.8631 31.9486 29.7953 28.7809 28.607C37.7088 28.1398 51.1261 23.5565 51.1261 17.9982C51.1261 12.4398 37.7137 7.85812 28.7847 7.39094C31.9529 6.20374 35.6632 5.137 38.9112 4.26288C41.2416 4.98399 43.4006 5.92322 45.3073 7.07244C50.1305 9.97913 52.7919 13.8587 52.7919 17.9976C52.7919 22.1365 50.1305 26.0156 45.3073 28.9288L45.3068 28.9293Z\" fill=\"#323232\"/>\\n<path d=\"M71.7972 25.793C72.2405 25.1945 72.5047 24.4577 72.5047 23.6579C72.5047 21.6709 70.8883 20.0545 68.9008 20.0545H66.2546C65.6832 20.0545 65.2188 20.519 65.2188 21.0904V32.2467C65.2188 32.8186 65.6827 33.2819 66.2546 33.2819H69.6843C71.9155 33.2819 73.731 31.4664 73.731 29.2358C73.731 27.78 72.9551 26.5049 71.7977 25.7925L71.7972 25.793ZM67.2898 22.1256H68.9008C69.7467 22.1256 70.4336 22.8131 70.4336 23.6579C70.4336 24.5027 69.7462 25.1908 68.9008 25.1908H67.2898V22.1256ZM69.6843 31.2114H67.2898V27.2613H69.6843C70.7733 27.2613 71.6594 28.1474 71.6594 29.2358C71.6594 30.3243 70.7733 31.2114 69.6843 31.2114ZM77.7576 20.0545C77.1862 20.0545 76.7218 20.519 76.7218 21.0904V32.2467C76.7218 32.8186 77.1857 33.2819 77.7576 33.2819C78.3295 33.2819 78.7934 32.8186 78.7934 32.2467V21.0904C78.7934 20.5185 78.3295 20.0545 77.7576 20.0545ZM131.069 20.0545C130.498 20.0545 130.034 20.519 130.034 21.0904V29.0209L123.923 20.487C123.661 20.1202 123.193 19.9666 122.764 20.1034C122.336 20.2406 122.045 20.6395 122.045 21.0898V32.2461C122.045 32.818 122.509 33.2814 123.081 33.2814C123.652 33.2814 124.116 32.818 124.116 32.2461V24.3134L130.228 32.8484C130.426 33.1251 130.742 33.2814 131.069 33.2814C131.175 33.2814 131.282 33.2646 131.386 33.2309C131.815 33.0947 132.105 32.6954 132.105 32.2461V21.0898C132.105 20.5179 131.641 20.0545 131.069 20.0545ZM88.4988 19.9536C84.7962 19.9536 81.7847 22.9661 81.7847 26.6677C81.7847 30.3693 84.7962 33.3829 88.4988 33.3829C92.2015 33.3829 95.2129 30.3704 95.2129 26.6677C95.2129 22.965 92.201 19.9536 88.4988 19.9536ZM88.4988 31.3112C85.9383 31.3112 83.8564 29.2282 83.8564 26.6677C83.8564 24.1072 85.9383 22.0258 88.4988 22.0258C91.0593 22.0258 93.1418 24.1072 93.1418 26.6677C93.1418 29.2282 91.0588 31.3112 88.4988 31.3112ZM142.966 31.2114H137.827V27.7041H142.226C142.797 27.7041 143.261 27.2396 143.261 26.6677C143.261 26.0958 142.796 25.633 142.226 25.633H137.827V22.1256H142.966C143.538 22.1256 144.001 21.6622 144.001 21.0904C144.001 20.5185 143.538 20.0545 142.966 20.0545H136.792C136.219 20.0545 135.756 20.519 135.756 21.0904V32.2467C135.756 32.8186 136.219 33.2819 136.792 33.2819H142.966C143.538 33.2819 144.001 32.8186 144.001 32.2467C144.001 31.6748 143.538 31.2114 142.966 31.2114ZM101.429 20.0545H99.2401C98.6682 20.0545 98.2042 20.519 98.2042 21.0904V32.2467C98.2042 32.8186 98.6682 33.2819 99.2401 33.2819C99.2401 33.2819 101.434 33.2809 101.436 33.2809C105.079 33.2771 108.044 30.3129 108.044 26.6677C108.044 23.0225 105.076 20.054 101.43 20.054L101.429 20.0545ZM101.429 31.2103L100.275 31.2114V22.1256H101.429C103.934 22.1256 105.971 24.1631 105.971 26.6677C105.971 29.1723 103.934 31.2103 101.429 31.2103ZM119.518 20.2499C119.054 19.9156 118.407 20.0198 118.073 20.4837L114.773 25.0584L111.473 20.4837C111.139 20.0198 110.492 19.9156 110.027 20.2499C109.563 20.5847 109.459 21.2325 109.794 21.6959L113.737 27.1631V32.2467C113.737 32.8186 114.201 33.2819 114.773 33.2819C115.345 33.2819 115.808 32.8186 115.808 32.2467V27.1631L119.752 21.6959C120.087 21.232 119.982 20.5847 119.517 20.2499H119.518Z\" fill=\"#323232\"/>\\n<path d=\"M112.321 7.68232C110.227 7.1522 110.227 6.43055 110.227 5.90261C110.227 5.06918 111.18 4.68882 112.067 4.68882C113.041 4.68882 113.478 5.04096 113.777 5.38551C114.152 5.81796 114.806 5.863 115.238 5.48861C115.669 5.11313 115.716 4.45876 115.341 4.02685C114.516 3.07785 113.446 2.61719 112.067 2.61719C109.801 2.61719 108.156 3.99864 108.156 5.90261C108.156 8.46692 110.244 9.29329 111.813 9.68993C113.105 10.0166 114.644 10.6932 114.644 12.0594C114.644 13.3025 113.317 13.9743 112.067 13.9743C110.951 13.9743 109.966 13.3839 109.616 12.5055C109.404 11.9743 108.801 11.7133 108.271 11.926C107.74 12.1376 107.481 12.7399 107.692 13.2711C108.353 14.9309 110.111 16.0448 112.067 16.0448C114.718 16.0448 116.716 14.3313 116.716 12.0589C116.716 9.95309 115.155 8.39801 112.321 7.68124V7.68232ZM103.59 2.71811C103.018 2.71811 102.554 3.18203 102.554 3.75338V14.9097C102.554 15.4816 103.019 15.9455 103.59 15.9455C104.162 15.9455 104.626 15.4816 104.626 14.9097V3.75393C104.626 3.18203 104.163 2.71811 103.59 2.71811ZM69.3014 7.68232C67.207 7.1522 67.207 6.43055 67.207 5.90261C67.207 5.06918 68.1603 4.68882 69.0474 4.68882C70.0214 4.68882 70.4587 5.04096 70.7577 5.38551C71.1326 5.81796 71.787 5.863 72.2184 5.48861C72.6497 5.11313 72.6959 4.45876 72.3209 4.02685C71.4967 3.07785 70.4262 2.61719 69.0469 2.61719C66.7805 2.61719 65.1359 3.99864 65.1359 5.90261C65.1359 8.46692 67.2232 9.29329 68.793 9.68993C70.0843 10.0166 71.6242 10.6932 71.6242 12.0594C71.6242 13.3025 70.2965 13.9743 69.0469 13.9743C67.9302 13.9743 66.9454 13.3839 66.5954 12.5055C66.3844 11.9743 65.781 11.7133 65.2504 11.926C64.7192 12.1376 64.4598 12.7399 64.6714 13.2711C65.3323 14.9309 67.0908 16.0448 69.0469 16.0448C71.6975 16.0448 73.6953 14.3313 73.6953 12.0589C73.6953 9.95309 72.1354 8.39801 69.3008 7.68124L69.3014 7.68232ZM99.423 13.875H94.2836V3.75393C94.2836 3.18203 93.8202 2.71865 93.2478 2.71865C92.6753 2.71865 92.2125 3.18257 92.2125 3.75393V14.9102C92.2125 15.4821 92.6764 15.9461 93.2478 15.9461H99.423C99.9944 15.9461 100.458 15.4821 100.458 14.9102C100.458 14.3383 99.9944 13.875 99.423 13.875ZM82.5071 2.61773C78.8049 2.61773 75.793 5.63022 75.793 9.33236C75.793 13.0345 78.8049 16.0459 82.5071 16.0459C86.2092 16.0459 89.2201 13.0339 89.2201 9.33236C89.2201 5.63077 86.2087 2.61773 82.5071 2.61773ZM82.5071 13.9754C79.9466 13.9754 77.8641 11.8918 77.8641 9.33236C77.8641 6.77293 79.9466 4.68936 82.5071 4.68936C85.0676 4.68936 87.1495 6.7713 87.1495 9.33236C87.1495 11.8934 85.067 13.9754 82.5071 13.9754Z\" fill=\"#323232\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1c8ma8q\",\"data-framer-name\":\"Logo-Cobalt-Wrapper\",layoutDependency:layoutDependency,layoutId:\"v1W3CvWx8\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-8pgwtq\",\"data-framer-name\":\"Logo-Cobalt\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:41,intrinsicWidth:143,layoutDependency:layoutDependency,layoutId:\"KZkNluPr6\",svg:'<svg width=\"143\" height=\"41\" viewBox=\"0 0 143 41\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M71.2948 19.6704L71.0002 19.6112C72.6312 19.1292 74.3003 17.3614 74.3003 15.013C74.3003 11.3763 71.624 9.66772 68.0638 9.66772H61.3242V30.8072H68.2807C72.4524 30.8072 76.2235 28.9951 76.2235 24.8061C76.2235 22.1064 74.6911 20.0723 71.2948 19.6704ZM64.2804 12.1468H67.1269C69.7354 12.1468 71.5118 12.757 71.5118 15.3113C71.5118 17.5981 69.8587 18.5954 67.5965 18.5954H64.2804V12.1468ZM67.9824 28.2998H64.2804V21.1041H68.2511C71.0397 21.1041 73.2377 21.8684 73.2377 24.657C73.2377 27.3974 70.7228 28.2998 67.9824 28.2998Z\" fill=\"#323232\"/>\\n<path d=\"M112.546 9.66809H109.59V30.8076H121.98V28.1806H112.546V9.66809Z\" fill=\"#323232\"/>\\n<path d=\"M39.4991 33.8813C34.9514 33.8813 31.0706 36.5774 29.4902 40.5999H32.603C33.9738 38.1443 36.5454 36.4862 39.4991 36.4862C42.4528 36.4862 45.0244 38.1443 46.3952 40.5999H49.5116C47.9337 36.5675 44.0505 33.8813 39.4991 33.8813Z\" fill=\"#323232\"/>\\n<path d=\"M125.936 9.66809V12.2655H132.713V30.8076H135.669V12.2655H142.447V9.66809H125.936Z\" fill=\"#323232\"/>\\n<path d=\"M11.0986 28.657C6.57435 28.657 2.90687 24.8897 2.90687 20.2422C2.90687 15.5946 6.57435 11.8273 11.0986 11.8273C13.7195 11.8273 16.0457 13.0958 17.546 15.0621L19.887 13.3756C17.8579 10.7634 14.681 9.14355 11.0986 9.14355C4.96929 9.14355 0 13.8885 0 20.2422C0 26.5959 4.96929 31.3408 11.0986 31.3408C14.7168 31.3408 17.9195 29.6753 19.9462 27.0138L17.6113 25.3323C16.1147 27.3491 13.7577 28.657 11.0986 28.657Z\" fill=\"#323232\"/>\\n<path d=\"M39.4985 9.46936C33.5492 9.46936 28.7266 14.075 28.7266 20.2425C28.7266 26.4088 33.5492 31.0145 39.4985 31.0145C45.4478 31.0145 50.2704 26.3953 50.2704 20.2425C50.2704 14.0516 45.4478 9.46936 39.4985 9.46936ZM39.4985 28.4096C35.1061 28.4096 31.5471 24.752 31.5471 20.2425C31.5471 15.7318 35.1061 12.0742 39.4985 12.0742C43.8896 12.0742 47.4498 15.7318 47.4498 20.2425C47.4498 24.752 43.8896 28.4096 39.4985 28.4096Z\" fill=\"#323232\"/>\\n<path d=\"M39.5003 6.71982C44.0468 6.71982 47.9263 4.01759 49.5079 0H46.3964C45.0256 2.45691 42.454 4.11498 39.5003 4.11498C36.5466 4.11498 33.975 2.45691 32.603 0H29.4902C31.0706 4.02376 34.9526 6.71982 39.5003 6.71982Z\" fill=\"#323232\"/>\\n<path d=\"M92.2093 9.5835L82.8945 30.8192H86.2107L87.4139 27.7705H97.3413L98.5729 30.8192H102.043L92.5471 9.5835H92.2093ZM88.5973 24.8131C92.3499 15.8546 92.0824 16.5314 92.3634 15.7079C92.6161 16.4747 92.3659 15.8349 96.1234 24.8131H88.5973Z\" fill=\"#323232\"/>\\n</svg>\\n',withExternalLayout:true})})],snapObject:{fluid:false,snap:true,snapEdge:\"center\"},style:{height:\"100%\",width:\"100%\"},width:\"100%\",...addPropertyOverrides({lKVwUzVDR:{arrowObject:{arrowFill:\"rgba(50, 50, 50, 0.2)\",arrowPadding:20,arrowRadius:40,arrowSize:30,showMouseControls:true},gap:25,paddingLeft:20,paddingPerSide:true,paddingRight:20,snapObject:{fluid:false,snap:true,snapEdge:\"start\"}},tVdX7v565:{arrowObject:{arrowFill:\"var(--token-5a8ef596-260e-455e-b941-68898e3a21fa, rgb(50, 50, 50))\",arrowPadding:20,arrowRadius:40,arrowSize:40,showMouseControls:false},gap:100,paddingLeft:30,paddingPerSide:true,paddingRight:20}},baseVariant,gestureVariant)})})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-1B1i7.framer-m6ulmd, .framer-1B1i7 .framer-m6ulmd { display: block; }\",\".framer-1B1i7.framer-1nd12ez { height: 240px; overflow: hidden; position: relative; width: 1512px; }\",\".framer-1B1i7 .framer-1k1v15j-container { flex: none; height: 90px; left: calc(50.00000000000002% - 1512px / 2); position: absolute; top: calc(50.00000000000002% - 90px / 2); width: 1512px; }\",\".framer-1B1i7 .framer-1aj7dni { height: 70px; overflow: visible; position: relative; width: 174px; }\",\".framer-1B1i7 .framer-wd1qy4 { flex: none; height: 47px; left: 0px; position: absolute; top: 0px; width: 174px; }\",\".framer-1B1i7 .framer-iwvnmo, .framer-1B1i7 .framer-1nfvpvr { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 70px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-1B1i7 .framer-1becl05 { flex: none; height: 37px; overflow: visible; position: relative; width: 154px; }\",\".framer-1B1i7 .framer-1uwlntq { flex: none; height: 26px; position: relative; width: 202px; }\",\".framer-1B1i7 .framer-fjh78e { height: 70px; overflow: visible; position: relative; width: 125px; }\",\".framer-1B1i7 .framer-1hqyozo { flex: none; height: 49px; left: 0px; position: absolute; top: 10px; width: 125px; }\",\".framer-1B1i7 .framer-1y6hryy { height: 70px; overflow: visible; position: relative; width: 70px; }\",\".framer-1B1i7 .framer-m2jcie { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-1B1i7 .framer-hwfav6 { height: 70px; overflow: visible; position: relative; width: 150px; }\",\".framer-1B1i7 .framer-1usr8ga { flex: none; height: 26px; left: 0px; position: absolute; top: 22px; width: 150px; }\",\".framer-1B1i7 .framer-11d8iec { height: 48px; overflow: visible; position: relative; width: 108px; }\",\".framer-1B1i7 .framer-1nvrkg1 { flex: none; height: 51px; left: calc(49.0740740740741% - 133px / 2); overflow: visible; position: absolute; top: calc(70.83333333333336% - 51px / 2); width: 133px; }\",\".framer-1B1i7 .framer-1yjmab1 { height: 70px; overflow: visible; position: relative; width: 142px; }\",\".framer-1B1i7 .framer-eea56o { flex: none; height: 33px; left: 0px; position: absolute; top: 18px; width: 143px; }\",\".framer-1B1i7 .framer-1on49ly { height: 70px; overflow: visible; position: relative; width: 144px; }\",\".framer-1B1i7 .framer-15s4z8f { flex: none; height: 36px; left: 0px; position: absolute; top: 17px; width: 144px; }\",\".framer-1B1i7 .framer-1c8ma8q { height: 70px; overflow: visible; position: relative; width: 143px; }\",\".framer-1B1i7 .framer-8pgwtq { flex: none; height: 41px; left: 0px; position: absolute; top: 15px; width: 143px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-1B1i7 .framer-iwvnmo, .framer-1B1i7 .framer-1nfvpvr { gap: 0px; } .framer-1B1i7 .framer-iwvnmo > *, .framer-1B1i7 .framer-1nfvpvr > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-1B1i7 .framer-iwvnmo > :first-child, .framer-1B1i7 .framer-1nfvpvr > :first-child { margin-top: 0px; } .framer-1B1i7 .framer-iwvnmo > :last-child, .framer-1B1i7 .framer-1nfvpvr > :last-child { margin-bottom: 0px; } }\",\".framer-1B1i7.framer-v-1ome1m6.framer-1nd12ez { width: 1920px; }\",\".framer-1B1i7.framer-v-1ome1m6 .framer-1k1v15j-container { left: calc(50.00000000000002% - 1920px / 2); width: 1920px; }\",\".framer-1B1i7.framer-v-vxvlvr.framer-1nd12ez { height: 138px; width: 390px; }\",\".framer-1B1i7.framer-v-vxvlvr .framer-1k1v15j-container { left: calc(50.00000000000002% - 390px / 2); width: 390px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 240\n * @framerIntrinsicWidth 1512\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"tVdX7v565\":{\"layout\":[\"fixed\",\"fixed\"]},\"lKVwUzVDR\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramervXpvZjRde=withCSS(Component,css,\"framer-1B1i7\");export default FramervXpvZjRde;FramervXpvZjRde.displayName=\"Esgrid-Logo-Carousel\";FramervXpvZjRde.defaultProps={height:240,width:1512};addPropertyControls(FramervXpvZjRde,{variant:{options:[\"NsoloVQVP\",\"tVdX7v565\",\"lKVwUzVDR\"],optionTitles:[\"Variant 1\",\"Variant 2\",\"Mobile\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramervXpvZjRde,[{explicitInter:true,fonts:[]},...CarouselFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramervXpvZjRde\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"tVdX7v565\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"lKVwUzVDR\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"240\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"1512\",\"framerDisplayContentsDiv\":\"false\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./vXpvZjRde.map"],
  "mappings": "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",
  "names": ["clamp", "n", "isNumber", "isEasingList", "wrap", "n", "getEasingForSegment", "mix", "noopReturn", "progress", "n", "fillOffset", "s", "mix", "defaultOffset", "interpolate", "f", "r", "clamp", "getEasingForSegment", "isFunction", "isString", "e", "velocityPerSecond", "calcBezier", "n", "e", "i", "binarySubdivide", "o", "r", "c", "u", "a", "s", "cubicBezier", "noopReturn", "getTForX", "t", "o", "cubicBezier", "__rest", "e", "t", "r", "n", "o", "n", "e", "t", "r", "s", "calcGeneratorVelocity", "n", "r", "a", "velocityPerSecond", "calcDampingRatio", "e", "t", "hasReachedTarget", "spring", "o", "c", "h", "u", "d", "f", "l", "g", "glide", "i", "isOutOfBounds", "nearestBoundary", "m", "calcDelta", "calcLatest", "applyFriction", "p", "checkCatchBoundary", "pregenerateKeyframes", "L", "T", "M", "e", "k", "noopReturn", "B", "asTransformCssVar", "j", "T", "L", "t", "P", "j", "testAnimation", "e", "t", "C", "R", "H", "resolveElements", "e", "t", "n", "createGeneratorEasing", "e", "t", "n", "getGenerator", "i", "s", "r", "a", "getKeyframes", "pregenerateKeyframes", "o", "c", "isNumberOrNull", "l", "f", "u", "d", "calcGeneratorVelocity", "g", "m", "U", "spring", "q", "glide", "K", "inView$1", "resolveElements", "onIntersectionChange", "isFunction", "G", "_", "getElementSize", "notifyTarget", "notifyAll", "createResizeObserver", "resizeElement", "Z", "X", "createWindowResizeHandler", "window", "resizeWindow", "resize", "Y", "createAxisInfo", "createScrollInfo", "J", "updateAxisInfo", "progress", "velocityPerSecond", "updateScrollInfo", "calcInset", "Q", "ee", "resolveEdge", "isString", "isNumber", "te", "resolveOffset", "ne", "resolveOffsets", "interpolate", "defaultOffset", "measure", "createOnScrollHandler", "scrubAnimation", "noopReturn", "oe", "ie", "se", "getEventTarget", "scroll", "__rest", "listener", "dispatchPointerEvent", "e", "t", "n", "dispatchViewEvent", "ae", "i", "s", "__rest", "inView$1", "o", "mouseEvent", "ce", "le", "onPointerUp", "window", "onPointerDown", "fe", "ue", "calcMaskWidth", "inset", "width", "useIsMouse", "isMouseDevice", "setIsMouseDevice", "ye", "fe", "window", "checkLimit", "progress", "target", "edgeOpacity", "moreItems", "buttonRef", "transition", "animate", "useGUI", "initialMoreItems", "initialAlpha", "pe", "useMotionValue", "fadeOpacity", "useTransform", "buttonOpacity", "v", "pointerEvents", "cursor", "buttonStyle", "baseButtonStyles", "setAriaVisible", "element", "useScrollLimits", "container", "axis", "scrollInfo", "updateCurrentScroll", "targetScroll", "checkLimits", "measureItems", "ue", "stopScroll", "scroll", "info", "stopResize", "resize", "Carousel", "slots", "gap", "align", "sizingObject", "fadeObject", "arrowObject", "snapObject", "progressObject", "ariaLabel", "borderRadius", "effectsObject", "props", "filteredSlots", "numItems", "j", "isCanvas", "RenderTarget", "padding", "usePadding", "axisLabel", "fadeContent", "fadeWidth", "fadeInset", "fadeTransition", "fadeAlpha", "snap", "snapEdge", "fluid", "widthType", "widthInset", "widthColumns", "heightType", "heightInset", "heightRows", "showScrollbar", "showProgressDots", "dotSize", "dotsInset", "dotsRadius", "dotsPadding", "dotsGap", "dotsFill", "dotsBackground", "dotsActiveOpacity", "dotsOpacity", "dotsBlur", "showMouseControls", "arrowSize", "arrowRadius", "arrowFill", "leftArrow", "rightArrow", "arrowPadding", "currentScroll", "newScroll", "start", "end", "startMaskInset", "endMaskInset", "baseWidth", "startMaskWidth", "endMaskWidth", "direction", "mask", "latest", "carouselRef", "numPages", "setNumPages", "itemStyle", "childStyle", "scrollOverflow", "containerStyle", "baseContainerStyle", "carouselStyle", "baseCarouselStyle", "carouselA11y", "itemA11y", "itemSizes", "te", "targetLength", "containerLength", "scrollLength", "current", "i", "newNumPages", "findNextItem", "delta", "children", "scrollTarget", "item", "length", "threshold", "isReducedMotion", "useReducedMotion", "goto", "scrollTo", "options", "gotoPage", "page", "gotoDelta", "pageLength", "currentPage", "clamp", "p", "Placeholder", "dots", "dotsBlurStyle", "isSelected", "Dot", "dotStyle", "u", "motion", "child", "index", "_child_props", "q", "controlsStyles", "dotsContainerStyle", "MouseStyles", "addPropertyControls", "ControlType", "paddingControl", "selectedOpacity", "unselectedOpacity", "total", "opacity", "_scrollInfo_current", "_scrollInfo_current1", "minScroll", "maxScroll", "inlinePadding", "top", "bottom", "right", "left", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "baseContainerStyle", "baseCarouselStyle", "baseButtonStyles", "controlsStyles", "dotsContainerStyle", "dotStyle", "CarouselFonts", "getFonts", "Carousel", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "ComponentViewportProvider", "SVG", "Image2", "css", "FramervXpvZjRde", "withCSS", "vXpvZjRde_default", "addPropertyControls", "ControlType", "addFonts"]
}
