{
  "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/B2xAlJLcN0gOnt11mSPw/LHz3bw67SqHRmnCKTlE6/Ticker.js", "ssg:https://framerusercontent.com/modules/V9ryrjN5Am9WM1dJeyyJ/GzHgU466IQmt8g4qOKj8/UsePageVisibility.js", "ssg:https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/gveXKR6bwXNSCLv12kr3/SlideShow.js", "ssg:https://framerusercontent.com/modules/Akogxkm10U5qjg7izooc/oIo8vQhCDATlxIzqcvxo/augiA20Il.js"],
  "sourcesContent": ["function addUniqueItem(t,e){-1===t.indexOf(e)&&t.push(e)}function removeItem(t,e){const n=t.indexOf(e);n>-1&&t.splice(n,1)}const clamp=(t,e,n)=>Math.min(Math.max(n,t),e);const t={duration:.3,delay:0,endDelay:0,repeat:0,easing:\"ease\"};const isNumber=t=>\"number\"===typeof t;const isEasingList=t=>Array.isArray(t)&&!isNumber(t[0]);const wrap=(t,e,n)=>{const o=e-t;return((n-t)%o+o)%o+t};function getEasingForSegment(t,e){return isEasingList(t)?t[wrap(0,t.length,e)]:t}const mix=(t,e,n)=>-n*t+n*e+t;const noop=()=>{};const noopReturn=t=>t;const progress=(t,e,n)=>e-t===0?1:(n-t)/(e-t);function fillOffset(t,e){const n=t[t.length-1];for(let o=1;o<=e;o++){const s=progress(0,e,o);t.push(mix(n,1,s))}}function defaultOffset(t){const e=[0];fillOffset(e,t-1);return e}function interpolate(t,e=defaultOffset(t.length),n=noopReturn){const o=t.length;const s=o-e.length;s>0&&fillOffset(e,s);return s=>{let f=0;for(;f<o-2;f++)if(s<e[f+1])break;let r=clamp(0,1,progress(e[f],e[f+1],s));const c=getEasingForSegment(n,f);r=c(r);return mix(t[f],t[f+1],r)}}const isCubicBezier=t=>Array.isArray(t)&&isNumber(t[0]);const isEasingGenerator=t=>\"object\"===typeof t&&Boolean(t.createAnimation);const isFunction=t=>\"function\"===typeof t;const isString=t=>\"string\"===typeof t;const e={ms:t=>1e3*t,s:t=>t/1e3};\n/*\n  Convert velocity into velocity per second\n\n  @param [number]: Unit per frame\n  @param [number]: Frame duration in ms\n*/function velocityPerSecond(t,e){return e?t*(1e3/e):0}export{addUniqueItem,clamp,defaultOffset,t as defaults,fillOffset,getEasingForSegment,interpolate,isCubicBezier,isEasingGenerator,isEasingList,isFunction,isNumber,isString,mix,noop,noopReturn,progress,removeItem,e as time,velocityPerSecond,wrap};\n\n//# sourceMappingURL=index.es.js.map", "import{noopReturn as t,clamp as n}from\"@motionone/utils\";const calcBezier=(t,n,e)=>(((1-3*e+3*n)*t+(3*e-6*n))*t+3*n)*t;const e=1e-7;const i=12;function binarySubdivide(t,n,o,r,c){let u;let a;let s=0;do{a=n+(o-n)/2;u=calcBezier(a,r,c)-t;u>0?o=a:n=a}while(Math.abs(u)>e&&++s<i);return a}function cubicBezier(n,e,i,o){if(n===e&&i===o)return t;const getTForX=t=>binarySubdivide(t,0,1,n,i);return t=>0===t||1===t?t:calcBezier(getTForX(t),e,o)}const steps=(t,e=\"end\")=>i=>{i=\"end\"===e?Math.min(i,.999):Math.max(i,.001);const o=i*t;const r=\"end\"===e?Math.floor(o):Math.ceil(o);return n(0,1,r/t)};export{cubicBezier,steps};\n\n//# sourceMappingURL=index.es.js.map", "import{noopReturn as t,defaults as i,isEasingGenerator as e,isEasingList as s,interpolate as a}from\"@motionone/utils\";import{cubicBezier as n,steps as r}from\"@motionone/easing\";const o={ease:n(.25,.1,.25,1),\"ease-in\":n(.42,0,1,1),\"ease-in-out\":n(.42,0,.58,1),\"ease-out\":n(0,0,.58,1)};const h=/\\((.*?)\\)/;function getEasingFunction(i){if(\"function\"===typeof i)return i;if(Array.isArray(i))return n(...i);if(o[i])return o[i];if(i.startsWith(\"steps\")){const t=h.exec(i);if(t){const i=t[1].split(\",\");return r(parseFloat(i[0]),i[1].trim())}}return t}class Animation{constructor(n,r=[0,1],{easing:o,duration:h=i.duration,delay:u=i.delay,endDelay:l=i.endDelay,repeat:m=i.repeat,offset:c,direction:p=\"normal\"}={}){this.startTime=null;this.rate=1;this.t=0;this.cancelTimestamp=null;this.easing=t;this.duration=0;this.totalDuration=0;this.repeat=0;this.playState=\"idle\";this.finished=new Promise(((t,i)=>{this.resolve=t;this.reject=i}));o=o||i.easing;if(e(o)){const t=o.createAnimation(r,(()=>\"0\"),true);o=t.easing;void 0!==t.keyframes&&(r=t.keyframes);void 0!==t.duration&&(h=t.duration)}this.repeat=m;this.easing=s(o)?t:getEasingFunction(o);this.updateDuration(h);const d=a(r,c,s(o)?o.map(getEasingFunction):t);this.tick=t=>{var i;u=u;let e=0;e=void 0!==this.pauseTime?this.pauseTime:(t-this.startTime)*this.rate;this.t=e;e/=1e3;e=Math.max(e-u,0);\"finished\"===this.playState&&void 0===this.pauseTime&&(e=this.totalDuration);const s=e/this.duration;let a=Math.floor(s);let r=s%1;!r&&s>=1&&(r=1);1===r&&a--;const o=a%2;(\"reverse\"===p||\"alternate\"===p&&o||\"alternate-reverse\"===p&&!o)&&(r=1-r);const h=e>=this.totalDuration?1:Math.min(r,1);const m=d(this.easing(h));n(m);const c=void 0===this.pauseTime&&(\"finished\"===this.playState||e>=this.totalDuration+l);if(c){this.playState=\"finished\";null===(i=this.resolve)||void 0===i?void 0:i.call(this,m)}else\"idle\"!==this.playState&&(this.frameRequestId=requestAnimationFrame(this.tick))};this.play()}play(){const t=performance.now();this.playState=\"running\";void 0!==this.pauseTime?this.startTime=t-this.pauseTime:this.startTime||(this.startTime=t);this.cancelTimestamp=this.startTime;this.pauseTime=void 0;this.frameRequestId=requestAnimationFrame(this.tick)}pause(){this.playState=\"paused\";this.pauseTime=this.t}finish(){this.playState=\"finished\";this.tick(0)}stop(){var t;this.playState=\"idle\";void 0!==this.frameRequestId&&cancelAnimationFrame(this.frameRequestId);null===(t=this.reject)||void 0===t?void 0:t.call(this,false)}cancel(){this.stop();this.tick(this.cancelTimestamp)}reverse(){this.rate*=-1}commitStyles(){}updateDuration(t){this.duration=t;this.totalDuration=t*(this.repeat+1)}get currentTime(){return this.t}set currentTime(t){void 0!==this.pauseTime||0===this.rate?this.pauseTime=t:this.startTime=performance.now()-t/this.rate}get playbackRate(){return this.rate}set playbackRate(t){this.rate=t}}export{Animation,getEasingFunction};\n\n//# sourceMappingURL=index.es.js.map", "var extendStatics=function(e,t){extendStatics=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var r in t)Object.prototype.hasOwnProperty.call(t,r)&&(e[r]=t[r])};return extendStatics(e,t)};function __extends(e,t){if(\"function\"!==typeof t&&null!==t)throw new TypeError(\"Class extends value \"+String(t)+\" is not a constructor or null\");extendStatics(e,t);function __(){this.constructor=e}e.prototype=null===t?Object.create(t):(__.prototype=t.prototype,new __)}var __assign=function(){__assign=Object.assign||function __assign(e){for(var t,r=1,n=arguments.length;r<n;r++){t=arguments[r];for(var o in t)Object.prototype.hasOwnProperty.call(t,o)&&(e[o]=t[o])}return e};return __assign.apply(this,arguments)};function __rest(e,t){var r={};for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&t.indexOf(n)<0&&(r[n]=e[n]);if(null!=e&&\"function\"===typeof Object.getOwnPropertySymbols){var o=0;for(n=Object.getOwnPropertySymbols(e);o<n.length;o++)t.indexOf(n[o])<0&&Object.prototype.propertyIsEnumerable.call(e,n[o])&&(r[n[o]]=e[n[o]])}return r}function __decorate(e,t,r,n){var o,a=arguments.length,i=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if(\"object\"===typeof Reflect&&\"function\"===typeof Reflect.decorate)i=Reflect.decorate(e,t,r,n);else for(var c=e.length-1;c>=0;c--)(o=e[c])&&(i=(a<3?o(i):a>3?o(t,r,i):o(t,r))||i);return a>3&&i&&Object.defineProperty(t,r,i),i}function __param(e,t){return function(r,n){t(r,n,e)}}function __metadata(e,t){if(\"object\"===typeof Reflect&&\"function\"===typeof Reflect.metadata)return Reflect.metadata(e,t)}function __awaiter(e,t,r,n){function adopt(e){return e instanceof r?e:new r((function(t){t(e)}))}return new(r||(r=Promise))((function(r,o){function fulfilled(e){try{step(n.next(e))}catch(e){o(e)}}function rejected(e){try{step(n.throw(e))}catch(e){o(e)}}function step(e){e.done?r(e.value):adopt(e.value).then(fulfilled,rejected)}step((n=n.apply(e,t||[])).next())}))}function __generator(e,t){var r,n,o,a,i={label:0,sent:function(){if(1&o[0])throw o[1];return o[1]},trys:[],ops:[]};return a={next:verb(0),throw:verb(1),return:verb(2)},\"function\"===typeof Symbol&&(a[Symbol.iterator]=function(){return this}),a;function verb(e){return function(t){return step([e,t])}}function step(a){if(r)throw new TypeError(\"Generator is already executing.\");while(i)try{if(r=1,n&&(o=2&a[0]?n.return:a[0]?n.throw||((o=n.return)&&o.call(n),0):n.next)&&!(o=o.call(n,a[1])).done)return o;(n=0,o)&&(a=[2&a[0],o.value]);switch(a[0]){case 0:case 1:o=a;break;case 4:i.label++;return{value:a[1],done:false};case 5:i.label++;n=a[1];a=[0];continue;case 7:a=i.ops.pop();i.trys.pop();continue;default:if(!(o=i.trys,o=o.length>0&&o[o.length-1])&&(6===a[0]||2===a[0])){i=0;continue}if(3===a[0]&&(!o||a[1]>o[0]&&a[1]<o[3])){i.label=a[1];break}if(6===a[0]&&i.label<o[1]){i.label=o[1];o=a;break}if(o&&i.label<o[2]){i.label=o[2];i.ops.push(a);break}o[2]&&i.ops.pop();i.trys.pop();continue}a=t.call(e,i)}catch(e){a=[6,e];n=0}finally{r=o=0}if(5&a[0])throw a[1];return{value:a[0]?a[1]:void 0,done:true}}}var e=Object.create?function(e,t,r,n){void 0===n&&(n=r);var o=Object.getOwnPropertyDescriptor(t,r);o&&!(\"get\"in o?!t.__esModule:o.writable||o.configurable)||(o={enumerable:true,get:function(){return t[r]}});Object.defineProperty(e,n,o)}:function(e,t,r,n){void 0===n&&(n=r);e[n]=t[r]};function __exportStar(t,r){for(var n in t)\"default\"===n||Object.prototype.hasOwnProperty.call(r,n)||e(r,t,n)}function __values(e){var t=\"function\"===typeof Symbol&&Symbol.iterator,r=t&&e[t],n=0;if(r)return r.call(e);if(e&&\"number\"===typeof e.length)return{next:function(){e&&n>=e.length&&(e=void 0);return{value:e&&e[n++],done:!e}}};throw new TypeError(t?\"Object is not iterable.\":\"Symbol.iterator is not defined.\")}function __read(e,t){var r=\"function\"===typeof Symbol&&e[Symbol.iterator];if(!r)return e;var n,o,a=r.call(e),i=[];try{while((void 0===t||t-- >0)&&!(n=a.next()).done)i.push(n.value)}catch(e){o={error:e}}finally{try{n&&!n.done&&(r=a.return)&&r.call(a)}finally{if(o)throw o.error}}return i}\n/** @deprecated */function __spread(){for(var e=[],t=0;t<arguments.length;t++)e=e.concat(__read(arguments[t]));return e}\n/** @deprecated */function __spreadArrays(){for(var e=0,t=0,r=arguments.length;t<r;t++)e+=arguments[t].length;var n=Array(e),o=0;for(t=0;t<r;t++)for(var a=arguments[t],i=0,c=a.length;i<c;i++,o++)n[o]=a[i];return n}function __spreadArray(e,t,r){if(r||2===arguments.length)for(var n,o=0,a=t.length;o<a;o++)if(n||!(o in t)){n||(n=Array.prototype.slice.call(t,0,o));n[o]=t[o]}return e.concat(n||Array.prototype.slice.call(t))}function __await(e){return this instanceof __await?(this.v=e,this):new __await(e)}function __asyncGenerator(e,t,r){if(!Symbol.asyncIterator)throw new TypeError(\"Symbol.asyncIterator is not defined.\");var n,o=r.apply(e,t||[]),a=[];return n={},verb(\"next\"),verb(\"throw\"),verb(\"return\"),n[Symbol.asyncIterator]=function(){return this},n;function verb(e){o[e]&&(n[e]=function(t){return new Promise((function(r,n){a.push([e,t,r,n])>1||resume(e,t)}))})}function resume(e,t){try{step(o[e](t))}catch(e){settle(a[0][3],e)}}function step(e){e.value instanceof __await?Promise.resolve(e.value.v).then(fulfill,reject):settle(a[0][2],e)}function fulfill(e){resume(\"next\",e)}function reject(e){resume(\"throw\",e)}function settle(e,t){(e(t),a.shift(),a.length)&&resume(a[0][0],a[0][1])}}function __asyncDelegator(e){var t,r;return t={},verb(\"next\"),verb(\"throw\",(function(e){throw e})),verb(\"return\"),t[Symbol.iterator]=function(){return this},t;function verb(n,o){t[n]=e[n]?function(t){return(r=!r)?{value:__await(e[n](t)),done:\"return\"===n}:o?o(t):t}:o}}function __asyncValues(e){if(!Symbol.asyncIterator)throw new TypeError(\"Symbol.asyncIterator is not defined.\");var t,r=e[Symbol.asyncIterator];return r?r.call(e):(e=\"function\"===typeof __values?__values(e):e[Symbol.iterator](),t={},verb(\"next\"),verb(\"throw\"),verb(\"return\"),t[Symbol.asyncIterator]=function(){return this},t);function verb(r){t[r]=e[r]&&function(t){return new Promise((function(n,o){t=e[r](t),settle(n,o,t.done,t.value)}))}}function settle(e,t,r,n){Promise.resolve(n).then((function(t){e({value:t,done:r})}),t)}}function __makeTemplateObject(e,t){Object.defineProperty?Object.defineProperty(e,\"raw\",{value:t}):e.raw=t;return e}var t=Object.create?function(e,t){Object.defineProperty(e,\"default\",{enumerable:true,value:t})}:function(e,t){e.default=t};function __importStar(r){if(r&&r.__esModule)return r;var n={};if(null!=r)for(var o in r)\"default\"!==o&&Object.prototype.hasOwnProperty.call(r,o)&&e(n,r,o);t(n,r);return n}function __importDefault(e){return e&&e.__esModule?e:{default:e}}function __classPrivateFieldGet(e,t,r,n){if(\"a\"===r&&!n)throw new TypeError(\"Private accessor was defined without a getter\");if(\"function\"===typeof t?e!==t||!n:!t.has(e))throw new TypeError(\"Cannot read private member from an object whose class did not declare it\");return\"m\"===r?n:\"a\"===r?n.call(e):n?n.value:t.get(e)}function __classPrivateFieldSet(e,t,r,n,o){if(\"m\"===n)throw new TypeError(\"Private method is not writable\");if(\"a\"===n&&!o)throw new TypeError(\"Private accessor was defined without a setter\");if(\"function\"===typeof t?e!==t||!o:!t.has(e))throw new TypeError(\"Cannot write private member to an object whose class did not declare it\");return\"a\"===n?o.call(e,r):o?o.value=r:t.set(e,r),r}function __classPrivateFieldIn(e,t){if(null===t||\"object\"!==typeof t&&\"function\"!==typeof t)throw new TypeError(\"Cannot use 'in' operator on non-object\");return\"function\"===typeof e?t===e:e.has(t)}export{__assign,__asyncDelegator,__asyncGenerator,__asyncValues,__await,__awaiter,__classPrivateFieldGet,__classPrivateFieldIn,__classPrivateFieldSet,e as __createBinding,__decorate,__exportStar,__extends,__generator,__importDefault,__importStar,__makeTemplateObject,__metadata,__param,__read,__rest,__spread,__spreadArray,__spreadArrays,__values};\n\n//# sourceMappingURL=tslib.es6.js.map", "var n={};Object.defineProperty(n,\"__esModule\",{value:true});n.warning=function(){};n.invariant=function(){};const e=n.__esModule,t=n.warning,r=n.invariant;export default n;export{e as __esModule,r as invariant,t as warning};\n\n//# sourceMappingURL=index.js.map", "import{velocityPerSecond as e,time as t}from\"@motionone/utils\";const s=5;function calcGeneratorVelocity(t,n,r){const a=Math.max(n-s,0);return e(r-t(a),n-a)}const n={stiffness:100,damping:10,mass:1};const calcDampingRatio=(e=n.stiffness,t=n.damping,s=n.mass)=>t/(2*Math.sqrt(e*s));function hasReachedTarget(e,t,s){return e<t&&s>=t||e>t&&s<=t}const spring=({stiffness:e=n.stiffness,damping:s=n.damping,mass:r=n.mass,from:a=0,to:o=1,velocity:c=0,restSpeed:i=2,restDistance:h=.5}={})=>{c=c?t.s(c):0;const u={done:false,hasReachedTarget:false,current:a,target:o};const d=o-a;const f=Math.sqrt(e/r)/1e3;const l=calcDampingRatio(e,s,r);let g;if(l<1){const e=f*Math.sqrt(1-l*l);g=t=>o-Math.exp(-l*f*t)*((l*f*d-c)/e*Math.sin(e*t)+d*Math.cos(e*t))}else g=e=>o-Math.exp(-f*e)*(d+(f*d-c)*e);return e=>{u.current=g(e);const t=0===e?c:calcGeneratorVelocity(g,e,u.current);const s=Math.abs(t)<=i;const n=Math.abs(o-u.current)<=h;u.done=s&&n;u.hasReachedTarget=hasReachedTarget(a,o,u.current);return u}};const glide=({from:e=0,velocity:s=0,power:n=.8,decay:r=.325,bounceDamping:a,bounceStiffness:o,changeTarget:c,min:i,max:h,restDistance:u=.5,restSpeed:d})=>{r=t.ms(r);const f={hasReachedTarget:false,done:false,current:e,target:e};const isOutOfBounds=e=>void 0!==i&&e<i||void 0!==h&&e>h;const nearestBoundary=e=>void 0===i?h:void 0===h||Math.abs(i-e)<Math.abs(h-e)?i:h;let l=n*s;const g=e+l;const m=void 0===c?g:c(g);f.target=m;m!==g&&(l=m-e);const calcDelta=e=>-l*Math.exp(-e/r);const calcLatest=e=>m+calcDelta(e);const applyFriction=e=>{const t=calcDelta(e);const s=calcLatest(e);f.done=Math.abs(t)<=u;f.current=f.done?m:s};let p;let M;const checkCatchBoundary=e=>{if(isOutOfBounds(f.current)){p=e;M=spring({from:f.current,to:nearestBoundary(f.current),velocity:calcGeneratorVelocity(calcLatest,e,f.current),damping:a,stiffness:o,restDistance:u,restSpeed:d})}};checkCatchBoundary(0);return e=>{let t=false;if(!M&&void 0===p){t=true;applyFriction(e);checkCatchBoundary(e)}if(void 0!==p&&e>p){f.hasReachedTarget=true;return M(e-p)}f.hasReachedTarget=false;!t&&applyFriction(e);return f}};const r=10;const a=1e4;function pregenerateKeyframes(e){let t;let s=r;let n=e(0);const o=[n.current];while(!n.done&&s<a){n=e(s);o.push(n.done?n.target:n.current);void 0===t&&n.hasReachedTarget&&(t=s);s+=r}const c=s-r;1===o.length&&o.push(n.current);return{keyframes:o,duration:c/1e3,overshootDuration:(null!==t&&void 0!==t?t:c)/1e3}}export{calcGeneratorVelocity,glide,pregenerateKeyframes,spring};\n\n//# sourceMappingURL=index.es.js.map", "import{MotionValue as e}from\"@motionone/types\";import{noopReturn as t,addUniqueItem as n,progress as o,isFunction as i,defaults as s,isCubicBezier as r,isEasingGenerator as a,isEasingList as c,isNumber as l,time as f,noop as u,removeItem as d,mix as g,getEasingForSegment as m,isString as h,defaultOffset as p,fillOffset as v,velocityPerSecond as y,interpolate as w}from\"@motionone/utils\";import{Animation as E,getEasingFunction as b}from\"@motionone/animation\";import{__rest as S}from\"tslib\";import{invariant as A}from\"hey-listen\";import{pregenerateKeyframes as O,calcGeneratorVelocity as x,spring as V,glide as z}from\"@motionone/generators\";const W=new WeakMap;function getAnimationData(e){W.has(e)||W.set(e,{transforms:[],values:new Map});return W.get(e)}function getMotionValue(t,n){t.has(n)||t.set(n,new e);return t.get(n)}const L=[\"\",\"X\",\"Y\",\"Z\"];const T=[\"translate\",\"scale\",\"rotate\",\"skew\"];const D={x:\"translateX\",y:\"translateY\",z:\"translateZ\"};const M={syntax:\"<angle>\",initialValue:\"0deg\",toDefaultUnit:e=>e+\"deg\"};const k={translate:{syntax:\"<length-percentage>\",initialValue:\"0px\",toDefaultUnit:e=>e+\"px\"},rotate:M,scale:{syntax:\"<number>\",initialValue:1,toDefaultUnit:t},skew:M};const B=new Map;const asTransformCssVar=e=>`--motion-${e}`;const j=[\"x\",\"y\",\"z\"];T.forEach((e=>{L.forEach((t=>{j.push(e+t);B.set(asTransformCssVar(e+t),k[e])}))}));const compareTransformOrder=(e,t)=>j.indexOf(e)-j.indexOf(t);const P=new Set(j);const isTransform=e=>P.has(e);const addTransformToElement=(e,t)=>{D[t]&&(t=D[t]);const{transforms:o}=getAnimationData(e);n(o,t);e.style.transform=buildTransformTemplate(o)};const buildTransformTemplate=e=>e.sort(compareTransformOrder).reduce(transformListToString,\"\").trim();const transformListToString=(e,t)=>`${e} ${t}(var(${asTransformCssVar(t)}))`;const isCssVar=e=>e.startsWith(\"--\");const $=new Set;function registerCssVariable(e){if(!$.has(e)){$.add(e);try{const{syntax:t,initialValue:n}=B.has(e)?B.get(e):{};CSS.registerProperty({name:e,inherits:false,syntax:t,initialValue:n})}catch(e){}}}const testAnimation=(e,t)=>document.createElement(\"div\").animate(e,t);const C={cssRegisterProperty:()=>\"undefined\"!==typeof CSS&&Object.hasOwnProperty.call(CSS,\"registerProperty\"),waapi:()=>Object.hasOwnProperty.call(Element.prototype,\"animate\"),partialKeyframes:()=>{try{testAnimation({opacity:[1]})}catch(e){return false}return true},finished:()=>Boolean(testAnimation({opacity:[0,1]},{duration:.001}).finished),linearEasing:()=>{try{testAnimation({opacity:0},{easing:\"linear(0, 1)\"})}catch(e){return false}return true}};const R={};const H={};for(const e in C)H[e]=()=>{void 0===R[e]&&(R[e]=C[e]());return R[e]};const I=.015;const generateLinearEasingPoints=(e,t)=>{let n=\"\";const i=Math.round(t/I);for(let t=0;t<i;t++)n+=e(o(0,i-1,t))+\", \";return n.substring(0,n.length-2)};const convertEasing=(e,t)=>i(e)?H.linearEasing()?`linear(${generateLinearEasingPoints(e,t)})`:s.easing:r(e)?cubicBezierAsString(e):e;const cubicBezierAsString=([e,t,n,o])=>`cubic-bezier(${e}, ${t}, ${n}, ${o})`;function hydrateKeyframes(e,t){for(let n=0;n<e.length;n++)null===e[n]&&(e[n]=n?e[n-1]:t());return e}const keyframesList=e=>Array.isArray(e)?e:[e];function getStyleName(e){D[e]&&(e=D[e]);return isTransform(e)?asTransformCssVar(e):e}const N={get:(e,t)=>{t=getStyleName(t);let n=isCssVar(t)?e.style.getPropertyValue(t):getComputedStyle(e)[t];if(!n&&0!==n){const e=B.get(t);e&&(n=e.initialValue)}return n},set:(e,t,n)=>{t=getStyleName(t);isCssVar(t)?e.style.setProperty(t,n):e.style[t]=n}};function stopAnimation(e,t=true){if(e&&\"finished\"!==e.playState)try{if(e.stop)e.stop();else{t&&e.commitStyles();e.cancel()}}catch(e){}}function getDevToolsRecord(){return window.__MOTION_DEV_TOOLS_RECORD}function animateStyle(e,t,n,o={}){const r=getDevToolsRecord();const d=false!==o.record&&r;let g;let{duration:m=s.duration,delay:h=s.delay,endDelay:p=s.endDelay,repeat:v=s.repeat,easing:y=s.easing,direction:w,offset:b,allowWebkitAcceleration:S=false}=o;const A=getAnimationData(e);const O=isTransform(t);let x=H.waapi();O&&addTransformToElement(e,t);const V=getStyleName(t);const z=getMotionValue(A.values,V);const W=B.get(V);stopAnimation(z.animation,!(a(y)&&z.generator)&&false!==o.record);return()=>{const readInitialValue=()=>{var t,n;return null!==(n=null!==(t=N.get(e,V))&&void 0!==t?t:null===W||void 0===W?void 0:W.initialValue)&&void 0!==n?n:0};let s=hydrateKeyframes(keyframesList(n),readInitialValue);if(a(y)){const e=y.createAnimation(s,readInitialValue,O,V,z);y=e.easing;void 0!==e.keyframes&&(s=e.keyframes);void 0!==e.duration&&(m=e.duration)}isCssVar(V)&&(H.cssRegisterProperty()?registerCssVariable(V):x=false);O&&!H.linearEasing()&&(i(y)||c(y)&&y.some(i))&&(x=false);if(x){W&&(s=s.map((e=>l(e)?W.toDefaultUnit(e):e)));1!==s.length||H.partialKeyframes()&&!d||s.unshift(readInitialValue());const t={delay:f.ms(h),duration:f.ms(m),endDelay:f.ms(p),easing:c(y)?void 0:convertEasing(y,m),direction:w,iterations:v+1,fill:\"both\"};g=e.animate({[V]:s,offset:b,easing:c(y)?y.map((e=>convertEasing(e,m))):void 0},t);g.finished||(g.finished=new Promise(((e,t)=>{g.onfinish=e;g.oncancel=t})));const n=s[s.length-1];g.finished.then((()=>{N.set(e,V,n);g.cancel()})).catch(u);S||(g.playbackRate=1.000001)}else if(O){s=s.map((e=>\"string\"===typeof e?parseFloat(e):e));1===s.length&&s.unshift(parseFloat(readInitialValue()));const render=t=>{W&&(t=W.toDefaultUnit(t));N.set(e,V,t)};g=new E(render,s,Object.assign(Object.assign({},o),{duration:m,easing:y}))}else{const t=s[s.length-1];N.set(e,V,W&&l(t)?W.toDefaultUnit(t):t)}d&&r(e,t,s,{duration:m,delay:h,easing:y,repeat:v,offset:b},\"motion-one\");z.setAnimation(g);return g}}const getOptions=(e,t)=>e[t]?Object.assign(Object.assign({},e),e[t]):Object.assign({},e);function resolveElements(e,t){var n;if(\"string\"===typeof e)if(t){null!==(n=t[e])&&void 0!==n?n:t[e]=document.querySelectorAll(e);e=t[e]}else e=document.querySelectorAll(e);else e instanceof Element&&(e=[e]);return Array.from(e||[])}const createAnimation=e=>e();const withControls=(e,t,n=s.duration)=>new Proxy({animations:e.map(createAnimation).filter(Boolean),duration:n,options:t},F);const getActiveAnimation=e=>e.animations[0];const F={get:(e,t)=>{const n=getActiveAnimation(e);switch(t){case\"duration\":return e.duration;case\"currentTime\":return f.s((null===n||void 0===n?void 0:n[t])||0);case\"playbackRate\":case\"playState\":return null===n||void 0===n?void 0:n[t];case\"finished\":e.finished||(e.finished=Promise.all(e.animations.map(selectFinished)).catch(u));return e.finished;case\"stop\":return()=>{e.animations.forEach((e=>stopAnimation(e)))};case\"forEachNative\":return t=>{e.animations.forEach((n=>t(n,e)))};default:return\"undefined\"===typeof(null===n||void 0===n?void 0:n[t])?void 0:()=>e.animations.forEach((e=>e[t]()))}},set:(e,t,n)=>{switch(t){case\"currentTime\":n=f.ms(n);case\"currentTime\":case\"playbackRate\":for(let o=0;o<e.animations.length;o++)e.animations[o][t]=n;return true}return false}};const selectFinished=e=>e.finished;function stagger(e=.1,{start:t=0,from:n=0,easing:o}={}){return(i,s)=>{const r=l(n)?n:getFromIndex(n,s);const a=Math.abs(r-i);let c=e*a;if(o){const t=s*e;const n=b(o);c=n(c/t)*t}return t+c}}function getFromIndex(e,t){if(\"first\"===e)return 0;{const n=t-1;return\"last\"===e?n:n/2}}function resolveOption(e,t,n){return i(e)?e(t,n):e}function animate(e,t,n={}){e=resolveElements(e);const o=e.length;const i=[];for(let s=0;s<o;s++){const r=e[s];for(const e in t){const a=getOptions(n,e);a.delay=resolveOption(a.delay,s,o);const c=animateStyle(r,e,t[e],a);i.push(c)}}return withControls(i,n,n.duration)}function calcNextTime(e,t,n,o){var i;return l(t)?t:t.startsWith(\"-\")||t.startsWith(\"+\")?Math.max(0,e+parseFloat(t)):\"<\"===t?n:null!==(i=o.get(t))&&void 0!==i?i:e}function eraseKeyframes(e,t,n){for(let o=0;o<e.length;o++){const i=e[o];if(i.at>t&&i.at<n){d(e,i);o--}}}function addKeyframes(e,t,n,o,i,s){eraseKeyframes(e,i,s);for(let r=0;r<t.length;r++)e.push({value:t[r],at:g(i,s,o[r]),easing:m(n,r)})}function compareByTime(e,t){return e.at===t.at?null===e.value?1:-1:e.at-t.at}function timeline(e,t={}){var n;const o=createAnimationsFromTimeline(e,t);const i=o.map((e=>animateStyle(...e))).filter(Boolean);return withControls(i,t,null===(n=o[0])||void 0===n?void 0:n[3].duration)}function createAnimationsFromTimeline(e,t={}){var{defaultOptions:n={}}=t,i=S(t,[\"defaultOptions\"]);const r=[];const c=new Map;const l={};const f=new Map;let u=0;let d=0;let g=0;for(let t=0;t<e.length;t++){const o=e[t];if(h(o)){f.set(o,d);continue}if(!Array.isArray(o)){f.set(o.name,calcNextTime(d,o.at,u,f));continue}const[i,r,m={}]=o;void 0!==m.at&&(d=calcNextTime(d,m.at,u,f));let y=0;const w=resolveElements(i,l);const E=w.length;for(let e=0;e<E;e++){const t=w[e];const o=getElementSequence(t,c);for(const t in r){const i=getValueSequence(t,o);let c=keyframesList(r[t]);const l=getOptions(m,t);let{duration:f=n.duration||s.duration,easing:u=n.easing||s.easing}=l;if(a(u)){const e=isTransform(t);A(2===c.length||!e,\"spring must be provided 2 keyframes within timeline\");const n=u.createAnimation(c,(()=>\"0\"),e);u=n.easing;void 0!==n.keyframes&&(c=n.keyframes);void 0!==n.duration&&(f=n.duration)}const h=resolveOption(m.delay,e,E)||0;const w=d+h;const b=w+f;let{offset:S=p(c.length)}=l;1===S.length&&0===S[0]&&(S[1]=1);const O=length-c.length;O>0&&v(S,O);1===c.length&&c.unshift(null);addKeyframes(i,c,u,S,w,b);y=Math.max(h+f,y);g=Math.max(b,g)}}u=d;d+=y}c.forEach(((e,t)=>{for(const a in e){const c=e[a];c.sort(compareByTime);const l=[];const f=[];const u=[];for(let e=0;e<c.length;e++){const{at:t,value:n,easing:i}=c[e];l.push(n);f.push(o(0,g,t));u.push(i||s.easing)}if(0!==f[0]){f.unshift(0);l.unshift(l[0]);u.unshift(\"linear\")}if(1!==f[f.length-1]){f.push(1);l.push(null)}r.push([t,a,l,Object.assign(Object.assign(Object.assign({},n),{duration:g,easing:u,offset:f}),i)])}}));return r}function getElementSequence(e,t){!t.has(e)&&t.set(e,{});return t.get(e)}function getValueSequence(e,t){t[e]||(t[e]=[]);return t[e]}function createGeneratorEasing(e){const t=new WeakMap;return(n={})=>{const o=new Map;const getGenerator=(t=0,i=100,s=0,r=false)=>{const a=`${t}-${i}-${s}-${r}`;o.has(a)||o.set(a,e(Object.assign({from:t,to:i,velocity:s,restSpeed:r?.05:2,restDistance:r?.01:.5},n)));return o.get(a)};const getKeyframes=e=>{t.has(e)||t.set(e,O(e));return t.get(e)};return{createAnimation:(e,t,n,o,i)=>{var s,r;let a;const c=e.length;let l=n&&c<=2&&e.every(isNumberOrNull);if(l){const n=e[c-1];const l=1===c?null:e[0];let f=0;let u=0;const d=null===i||void 0===i?void 0:i.generator;if(d){const{animation:t,generatorStartTime:n}=i;const o=(null===t||void 0===t?void 0:t.startTime)||n||0;const r=(null===t||void 0===t?void 0:t.currentTime)||performance.now()-o;const a=d(r).current;u=null!==(s=l)&&void 0!==s?s:a;(1===c||2===c&&null===e[0])&&(f=x((e=>d(e).current),r,a))}else u=null!==(r=l)&&void 0!==r?r:parseFloat(t());const g=getGenerator(u,n,f,null===o||void 0===o?void 0:o.includes(\"scale\"));const m=getKeyframes(g);a=Object.assign(Object.assign({},m),{easing:\"linear\"});if(i){i.generator=g;i.generatorStartTime=performance.now()}}else{const e=getKeyframes(getGenerator(0,100));a={easing:\"ease\",duration:e.overshootDuration}}return a}}}}const isNumberOrNull=e=>\"string\"!==typeof e;const U=createGeneratorEasing(V);const q=createGeneratorEasing(z);const K={any:0,all:1};function inView$1(e,t,{root:n,margin:o,amount:s=\"any\"}={}){if(\"undefined\"===typeof IntersectionObserver)return()=>{};const r=resolveElements(e);const a=new WeakMap;const onIntersectionChange=e=>{e.forEach((e=>{const n=a.get(e.target);if(e.isIntersecting!==Boolean(n))if(e.isIntersecting){const n=t(e);i(n)?a.set(e.target,n):c.unobserve(e.target)}else if(n){n(e);a.delete(e.target)}}))};const c=new IntersectionObserver(onIntersectionChange,{root:n,rootMargin:o,threshold:\"number\"===typeof s?s:K[s]});r.forEach((e=>c.observe(e)));return()=>c.disconnect()}const G=new WeakMap;let _;function getElementSize(e,t){if(t){const{inlineSize:e,blockSize:n}=t[0];return{width:e,height:n}}return e instanceof SVGElement&&\"getBBox\"in e?e.getBBox():{width:e.offsetWidth,height:e.offsetHeight}}function notifyTarget({target:e,contentRect:t,borderBoxSize:n}){var o;null===(o=G.get(e))||void 0===o?void 0:o.forEach((o=>{o({target:e,contentSize:t,get size(){return getElementSize(e,n)}})}))}function notifyAll(e){e.forEach(notifyTarget)}function createResizeObserver(){\"undefined\"!==typeof ResizeObserver&&(_=new ResizeObserver(notifyAll))}function resizeElement(e,t){_||createResizeObserver();const n=resolveElements(e);n.forEach((e=>{let n=G.get(e);if(!n){n=new Set;G.set(e,n)}n.add(t);null===_||void 0===_?void 0:_.observe(e)}));return()=>{n.forEach((e=>{const n=G.get(e);null===n||void 0===n?void 0:n.delete(t);(null===n||void 0===n?void 0:n.size)||(null===_||void 0===_?void 0:_.unobserve(e))}))}}const Z=new Set;let X;function createWindowResizeHandler(){X=()=>{const e={width:window.innerWidth,height:window.innerHeight};const t={target:window,size:e,contentSize:e};Z.forEach((e=>e(t)))};window.addEventListener(\"resize\",X)}function resizeWindow(e){Z.add(e);X||createWindowResizeHandler();return()=>{Z.delete(e);!Z.size&&X&&(X=void 0)}}function resize(e,t){return i(e)?resizeWindow(e):resizeElement(e,t)}const Y=50;const createAxisInfo=()=>({current:0,offset:[],progress:0,scrollLength:0,targetOffset:0,targetLength:0,containerLength:0,velocity:0});const createScrollInfo=()=>({time:0,x:createAxisInfo(),y:createAxisInfo()});const J={x:{length:\"Width\",position:\"Left\"},y:{length:\"Height\",position:\"Top\"}};function updateAxisInfo(e,t,n,i){const s=n[t];const{length:r,position:a}=J[t];const c=s.current;const l=n.time;s.current=e[\"scroll\"+a];s.scrollLength=e[\"scroll\"+r]-e[\"client\"+r];s.offset.length=0;s.offset[0]=0;s.offset[1]=s.scrollLength;s.progress=o(0,s.scrollLength,s.current);const f=i-l;s.velocity=f>Y?0:y(s.current-c,f)}function updateScrollInfo(e,t,n){updateAxisInfo(e,\"x\",t,n);updateAxisInfo(e,\"y\",t,n);t.time=n}function calcInset(e,t){let n={x:0,y:0};let o=e;while(o&&o!==t)if(o instanceof HTMLElement){n.x+=o.offsetLeft;n.y+=o.offsetTop;o=o.offsetParent}else if(o instanceof SVGGraphicsElement&&\"getBBox\"in o){const{top:e,left:t}=o.getBBox();n.x+=t;n.y+=e;while(o&&\"svg\"!==o.tagName)o=o.parentNode}return n}const Q={Enter:[[0,1],[1,1]],Exit:[[0,0],[1,0]],Any:[[1,0],[0,1]],All:[[0,0],[1,1]]};const ee={start:0,center:.5,end:1};function resolveEdge(e,t,n=0){let o=0;void 0!==ee[e]&&(e=ee[e]);if(h(e)){const t=parseFloat(e);e.endsWith(\"px\")?o=t:e.endsWith(\"%\")?e=t/100:e.endsWith(\"vw\")?o=t/100*document.documentElement.clientWidth:e.endsWith(\"vh\")?o=t/100*document.documentElement.clientHeight:e=t}l(e)&&(o=t*e);return n+o}const te=[0,0];function resolveOffset(e,t,n,o){let i=Array.isArray(e)?e:te;let s=0;let r=0;if(l(e))i=[e,e];else if(h(e)){e=e.trim();i=e.includes(\" \")?e.split(\" \"):[e,ee[e]?e:\"0\"]}s=resolveEdge(i[0],n,o);r=resolveEdge(i[1],t);return s-r}const ne={x:0,y:0};function resolveOffsets(e,t,n){let{offset:o=Q.All}=n;const{target:i=e,axis:s=\"y\"}=n;const r=\"y\"===s?\"height\":\"width\";const a=i!==e?calcInset(i,e):ne;const c=i===e?{width:e.scrollWidth,height:e.scrollHeight}:{width:i.clientWidth,height:i.clientHeight};const l={width:e.clientWidth,height:e.clientHeight};t[s].offset.length=0;let f=!t[s].interpolate;const u=o.length;for(let e=0;e<u;e++){const n=resolveOffset(o[e],l[r],c[r],a[s]);f||n===t[s].interpolatorOffsets[e]||(f=true);t[s].offset[e]=n}if(f){t[s].interpolate=w(p(u),t[s].offset);t[s].interpolatorOffsets=[...t[s].offset]}t[s].progress=t[s].interpolate(t[s].current)}function measure(e,t=e,n){n.x.targetOffset=0;n.y.targetOffset=0;if(t!==e){let o=t;while(o&&o!=e){n.x.targetOffset+=o.offsetLeft;n.y.targetOffset+=o.offsetTop;o=o.offsetParent}}n.x.targetLength=t===e?t.scrollWidth:t.clientWidth;n.y.targetLength=t===e?t.scrollHeight:t.clientHeight;n.x.containerLength=e.clientWidth;n.y.containerLength=e.clientHeight}function createOnScrollHandler(e,t,n,o={}){const s=o.axis||\"y\";return{measure:()=>measure(e,o.target,n),update:t=>{updateScrollInfo(e,n,t);(o.offset||o.target)&&resolveOffsets(e,n,o)},notify:i(t)?()=>t(n):scrubAnimation(t,n[s])}}function scrubAnimation(e,n){e.pause();e.forEachNative(((e,{easing:n})=>{var o,i;if(e.updateDuration){n||(e.easing=t);e.updateDuration(1)}else{const t={duration:1e3};n||(t.easing=\"linear\");null===(i=null===(o=e.effect)||void 0===o?void 0:o.updateTiming)||void 0===i?void 0:i.call(o,t)}}));return()=>{e.currentTime=n.progress}}const oe=new WeakMap;const ie=new WeakMap;const se=new WeakMap;const getEventTarget=e=>e===document.documentElement?window:e;function scroll(e,t={}){var{container:n=document.documentElement}=t,o=S(t,[\"container\"]);let i=se.get(n);if(!i){i=new Set;se.set(n,i)}const s=createScrollInfo();const r=createOnScrollHandler(n,e,s,o);i.add(r);if(!oe.has(n)){const listener=()=>{const e=performance.now();for(const e of i)e.measure();for(const t of i)t.update(e);for(const e of i)e.notify()};oe.set(n,listener);const e=getEventTarget(n);window.addEventListener(\"resize\",listener,{passive:true});n!==document.documentElement&&ie.set(n,resize(n,listener));e.addEventListener(\"scroll\",listener,{passive:true})}const a=oe.get(n);const c=requestAnimationFrame(a);return()=>{var t;\"function\"!==typeof e&&e.stop();cancelAnimationFrame(c);const o=se.get(n);if(!o)return;o.delete(r);if(o.size)return;const i=oe.get(n);oe.delete(n);if(i){getEventTarget(n).removeEventListener(\"scroll\",i);null===(t=ie.get(n))||void 0===t?void 0:t();window.removeEventListener(\"resize\",i)}}}function hasChanged(e,t){return typeof e!==typeof t||(Array.isArray(e)&&Array.isArray(t)?!shallowCompare(e,t):e!==t)}function shallowCompare(e,t){const n=t.length;if(n!==e.length)return false;for(let o=0;o<n;o++)if(t[o]!==e[o])return false;return true}function isVariant(e){return\"object\"===typeof e}function resolveVariant(e,t){return isVariant(e)?e:e&&t?t[e]:void 0}let re;function processScheduledAnimations(){if(!re)return;const e=re.sort(compareByDepth).map(fireAnimateUpdates);e.forEach(fireNext);e.forEach(fireNext);re=void 0}function scheduleAnimation(e){if(re)n(re,e);else{re=[e];requestAnimationFrame(processScheduledAnimations)}}function unscheduleAnimation(e){re&&d(re,e)}const compareByDepth=(e,t)=>e.getDepth()-t.getDepth();const fireAnimateUpdates=e=>e.animateUpdates();const fireNext=e=>e.next();const motionEvent=(e,t)=>new CustomEvent(e,{detail:{target:t}});function dispatchPointerEvent(e,t,n){e.dispatchEvent(new CustomEvent(t,{detail:{originalEvent:n}}))}function dispatchViewEvent(e,t,n){e.dispatchEvent(new CustomEvent(t,{detail:{originalEntry:n}}))}const ae={isActive:e=>Boolean(e.inView),subscribe:(e,{enable:t,disable:n},{inViewOptions:o={}})=>{const{once:i}=o,s=S(o,[\"once\"]);return inView$1(e,(o=>{t();dispatchViewEvent(e,\"viewenter\",o);if(!i)return t=>{n();dispatchViewEvent(e,\"viewleave\",t)}}),s)}};const mouseEvent=(e,t,n)=>o=>{if(!o.pointerType||\"mouse\"===o.pointerType){n();dispatchPointerEvent(e,t,o)}};const ce={isActive:e=>Boolean(e.hover),subscribe:(e,{enable:t,disable:n})=>{const o=mouseEvent(e,\"hoverstart\",t);const i=mouseEvent(e,\"hoverend\",n);e.addEventListener(\"pointerenter\",o);e.addEventListener(\"pointerleave\",i);return()=>{e.removeEventListener(\"pointerenter\",o);e.removeEventListener(\"pointerleave\",i)}}};const le={isActive:e=>Boolean(e.press),subscribe:(e,{enable:t,disable:n})=>{const onPointerUp=t=>{n();dispatchPointerEvent(e,\"pressend\",t);window.removeEventListener(\"pointerup\",onPointerUp)};const onPointerDown=n=>{t();dispatchPointerEvent(e,\"pressstart\",n);window.addEventListener(\"pointerup\",onPointerUp)};e.addEventListener(\"pointerdown\",onPointerDown);return()=>{e.removeEventListener(\"pointerdown\",onPointerDown);window.removeEventListener(\"pointerup\",onPointerUp)}}};const fe={inView:ae,hover:ce,press:le};const ue=[\"initial\",\"animate\",...Object.keys(fe),\"exit\"];const de=new WeakMap;function createMotionState(e={},t){let n;let o=t?t.getDepth()+1:0;const i={initial:true,animate:true};const s={};const r={};for(const n of ue)r[n]=\"string\"===typeof e[n]?e[n]:null===t||void 0===t?void 0:t.getContext()[n];const a=false===e.initial?\"animate\":\"initial\";let c=resolveVariant(e[a]||r[a],e.variants)||{},l=S(c,[\"transition\"]);const f=Object.assign({},l);function*animateUpdates(){var t,o;const s=l;l={};const r={};for(const n of ue){if(!i[n])continue;const s=resolveVariant(e[n]);if(s)for(const n in s)if(\"transition\"!==n){l[n]=s[n];r[n]=getOptions(null!==(o=null!==(t=s.transition)&&void 0!==t?t:e.transition)&&void 0!==o?o:{},n)}}const a=new Set([...Object.keys(l),...Object.keys(s)]);const c=[];a.forEach((e=>{var t;void 0===l[e]&&(l[e]=f[e]);if(hasChanged(s[e],l[e])){null!==(t=f[e])&&void 0!==t?t:f[e]=N.get(n,e);c.push(animateStyle(n,e,l[e],r[e]))}}));yield;const d=c.map((e=>e())).filter(Boolean);if(!d.length)return;const g=l;n.dispatchEvent(motionEvent(\"motionstart\",g));Promise.all(d.map((e=>e.finished))).then((()=>{n.dispatchEvent(motionEvent(\"motioncomplete\",g))})).catch(u)}const setGesture=(e,t)=>()=>{i[e]=t;scheduleAnimation(d)};const updateGestureSubscriptions=()=>{for(const t in fe){const o=fe[t].isActive(e);const i=s[t];if(o&&!i)s[t]=fe[t].subscribe(n,{enable:setGesture(t,true),disable:setGesture(t,false)},e);else if(!o&&i){i();delete s[t]}}};const d={update:t=>{if(n){e=t;updateGestureSubscriptions();scheduleAnimation(d)}},setActive:(e,t)=>{if(n){i[e]=t;scheduleAnimation(d)}},animateUpdates:animateUpdates,getDepth:()=>o,getTarget:()=>l,getOptions:()=>e,getContext:()=>r,mount:e=>{A(Boolean(e),\"Animation state must be mounted with valid Element\");n=e;de.set(n,d);updateGestureSubscriptions();return()=>{de.delete(n);unscheduleAnimation(d);for(const e in s)s[e]()}},isMounted:()=>Boolean(n)};return d}function createStyles(e){const t={};const n=[];for(let o in e){const i=e[o];if(isTransform(o)){D[o]&&(o=D[o]);n.push(o);o=asTransformCssVar(o)}let s=Array.isArray(i)?i[0]:i;const r=B.get(o);r&&(s=l(i)?r.toDefaultUnit(i):i);t[o]=s}n.length&&(t.transform=buildTransformTemplate(n));return t}const camelLetterToPipeLetter=e=>`-${e.toLowerCase()}`;const camelToPipeCase=e=>e.replace(/[A-Z]/g,camelLetterToPipeLetter);function createStyleString(e={}){const t=createStyles(e);let n=\"\";for(const e in t){n+=e.startsWith(\"--\")?e:camelToPipeCase(e);n+=`: ${t[e]}; `}return n}export{Q as ScrollOffset,animate,animateStyle,createMotionState,createStyleString,createStyles,getAnimationData,getStyleName,q as glide,inView$1 as inView,de as mountedStates,resize,scroll,U as spring,stagger,N as style,timeline,withControls};\n\n//# sourceMappingURL=index.es.js.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useEffect,useState,useRef,useMemo,useCallback,cloneElement,startTransition}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{useReducedMotion,LayoutGroup,useInView,useMotionValue,useTransform,motion,frame}from\"framer-motion\";import{resize}from\"@motionone/dom\";const MAX_DUPLICATED_ITEMS=100;const directionTransformers={left:offset=>`translateX(-${offset}px)`,right:offset=>`translateX(${offset}px)`,top:offset=>`translateY(-${offset}px)`,bottom:offset=>`translateY(${offset}px)`};/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Ticker(props){/* Props */let{slots=[],gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,speed,hoverFactor,direction,alignment,sizingOptions,fadeOptions,style}=props;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{widthType,heightType}=sizingOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/* Checks */const currentTarget=RenderTarget.current();const isCanvas=currentTarget===RenderTarget.canvas||currentTarget===RenderTarget.export;// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const numChildren=Children.count(filteredSlots);const hasChildren=numChildren>0;if(direction===true){direction=\"left\";}const isHorizontal=direction===\"left\"||direction===\"right\";const offset=useMotionValue(0);const transformer=directionTransformers[direction];const transform=useTransform(offset,transformer);/* Refs and State */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return[{current:null},{current:null}];},[]);const[size,setSize]=useState({parent:null,children:null});/* Arrays */let clonedChildren=null;let dupedChildren=[];/* Duplicate value */let duplicateBy=0;let opacity=0;if(isCanvas){duplicateBy=numChildren?Math.floor(10/numChildren):0;opacity=1;}if(!isCanvas&&hasChildren&&size.parent){duplicateBy=Math.round(size.parent/size.children*2)+1;duplicateBy=Math.min(duplicateBy,MAX_DUPLICATED_ITEMS);opacity=1;}/* Measure parent and child */const measure=useCallback(()=>{if(hasChildren&&parentRef.current){const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetLeft:childrenRef[0].current.offsetTop:0;const end=childrenRef[1].current?isHorizontal?childrenRef[1].current.offsetLeft+childrenRef[1].current.offsetWidth:childrenRef[1].current.offsetTop+childrenRef[1].current.offsetHeight:0;const childrenLength=end-start+gap;startTransition(()=>setSize({parent:parentLength,children:childrenLength}));}},[]);const childrenStyles=isCanvas?{contentVisibility:\"auto\"}:{};/* Add refs to first and last child */if(hasChildren){// TODO: These conditional hooks will be unsafe if hasChildren ever changes outside the canvas.\nif(!isCanvas){/**\n             * Track whether this is the initial resize event. By default this will fire on mount,\n             * which we do in the useEffect. We should only fire it on subsequent resizes.\n             */let initialResize=useRef(true);useEffect(()=>{frame.read(measure);return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){frame.read(measure);}initialResize.current=false;});},[]);}clonedChildren=Children.map(filteredSlots,(child,index)=>{let ref;if(index===0){ref=childrenRef[0];}if(index===filteredSlots.length-1){ref=childrenRef[1];}const size={width:widthType?child.props?.width:\"100%\",height:heightType?child.props?.height:\"100%\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{ref:ref,style:size,children:/*#__PURE__*/cloneElement(child,{style:{...child.props?.style,...size,flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},child.props?.children)})});});}const isInView=isCanvas?true:useInView(parentRef);if(!isCanvas){for(let i=0;i<duplicateBy;i++){dupedChildren=dupedChildren.concat(Children.map(filteredSlots,(child,childIndex)=>{const size={width:widthType?child.props?.width:\"100%\",height:heightType?child.props?.height:\"100%\",willChange:!isInView?undefined:\"transform\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{style:size,\"aria-hidden\":true,children:/*#__PURE__*/cloneElement(child,{key:i+\" \"+childIndex,style:{...child.props?.style,width:widthType?child.props?.width:\"100%\",height:heightType?child.props?.height:\"100%\",flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-dupe-\"+i:undefined},child.props?.children)},i+\"li\"+childIndex)},i+\"lg\"+childIndex);}));}}const animateToValue=size.children+size.children*Math.round(size.parent/size.children);const initialTime=useRef(null);const prevTime=useRef(null);const xOrY=useRef(0);const isHover=useRef(false);const isReducedMotion=useReducedMotion();const listRef=useRef(null);const animationRef=useRef(null);/**\n     * Setup animations\n     */if(!isCanvas){useEffect(()=>{if(isReducedMotion||!animateToValue||!speed){return;}animationRef.current=listRef.current.animate({transform:[transformer(0),transformer(animateToValue)]},{duration:Math.abs(animateToValue)/speed*1e3,iterations:Infinity,easing:\"linear\"});return()=>animationRef.current.cancel();},[hoverFactor,animateToValue,speed]);const playOrPause=useCallback(()=>{if(!animationRef.current)return;const hidden=document.hidden;if(isInView&&!hidden&&animationRef.current.playState===\"paused\"){animationRef.current.play();}else if((!isInView||hidden)&&animationRef.current.playState===\"running\"){animationRef.current.pause();}},[isInView]);useEffect(()=>{playOrPause();},[isInView]);useEffect(()=>{document.addEventListener(\"visibilitychange\",playOrPause);return()=>{document.removeEventListener(\"visibilitychange\",playOrPause);};},[playOrPause]);}/* Fades */const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/* Empty state */if(!hasChildren){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2728\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to infinitely loop on your page.\"})]});}return /*#__PURE__*/_jsx(\"section\",{style:{...containerStyle,opacity:opacity,WebkitMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,overflow:overflow?\"visible\":\"hidden\",padding:paddingValue},ref:parentRef,children:/*#__PURE__*/_jsxs(motion.ul,{ref:listRef,style:{...containerStyle,gap:gap,top:direction===\"bottom\"&&isValidNumber(animateToValue)?-animateToValue:undefined,left:direction===\"right\"&&isValidNumber(animateToValue)?-animateToValue:undefined,placeItems:alignment,position:\"relative\",flexDirection:isHorizontal?\"row\":\"column\",...style,willChange:isCanvas||!isInView?\"auto\":\"transform\",transform:transformer(0)},onMouseEnter:()=>{isHover.current=true;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=hoverFactor;}},onMouseLeave:()=>{isHover.current=false;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=1;}},children:[clonedChildren,dupedChildren]})});}/* Default Properties */Ticker.defaultProps={gap:10,padding:10,sizingOptions:{widthType:true,heightType:true},fadeOptions:{fadeContent:true,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},direction:true};/* Property Controls */addPropertyControls(Ticker,{slots:{type:ControlType.Array,title:\"Children\",control:{type:ControlType.ComponentInstance}},speed:{type:ControlType.Number,title:\"Speed\",min:0,max:1e3,defaultValue:100,unit:\"%\",displayStepper:true,step:5},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\",\"right\",\"top\",\"bottom\"],optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\"],optionTitles:[\"Left\",\"Right\",\"Top\",\"Bottom\"],defaultValue:\"left\",displaySegmentedControl:true},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{direction:{right:[\"align-top\",\"align-middle\",\"align-bottom\"],left:[\"align-top\",\"align-middle\",\"align-bottom\"],top:[\"align-left\",\"align-center\",\"align-right\"],bottom:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},gap:{type:ControlType.Number,title:\"Gap\"},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},sizingOptions:{type:ControlType.Object,title:\"Sizing\",controls:{widthType:{type:ControlType.Boolean,title:\"Width\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true},heightType:{type:ControlType.Boolean,title:\"Height\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true}}},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:true},overflow:{type:ControlType.Boolean,title:\"Overflow\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false,hidden(props){return props.fadeContent===true;}},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.05,hidden(props){return props.fadeContent===false;}}}},hoverFactor:{type:ControlType.Number,title:\"Hover\",min:0,max:1,unit:\"x\",defaultValue:1,step:.1,displayStepper:true,description:\"Slows down the speed while you are hovering.\"}});/* Placeholder Styles */const containerStyle={display:\"flex\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Styles */const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:150,lineHeight:1.5,textAlign:\"center\"};/* Clamp function, used for fadeInset */const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);const isValidNumber=value=>typeof value===\"number\"&&!isNaN(value);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Ticker\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"400\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerDisableUnlink\":\"*\",\"framerIntrinsicHeight\":\"200\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "import{useState,useEffect}from\"react\";export const isBrowser=()=>typeof document===\"object\";export function usePageVisibility(){if(!isBrowser())return;const[isVisible,setIsVisible]=useState(!document.hidden);useEffect(()=>{const onVisibilityChange=()=>setIsVisible(!document.hidden);document.addEventListener(\"visibilitychange\",onVisibilityChange,false);return()=>{document.removeEventListener(\"visibilitychange\",onVisibilityChange);};},[]);return isVisible;}\nexport const __FramerMetadata__ = {\"exports\":{\"isBrowser\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"usePageVisibility\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./UsePageVisibility.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{resize}from\"@motionone/dom\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{animate,LayoutGroup,mix,motion,frame,useInView,useMotionValue,useTransform,wrap}from\"framer-motion\";import{Children,cloneElement,forwardRef,startTransition,useCallback,useEffect,useLayoutEffect,useMemo,useRef,useState}from\"react\";import{usePageVisibility}from\"https://framerusercontent.com/modules/V9ryrjN5Am9WM1dJeyyJ/GzHgU466IQmt8g4qOKj8/UsePageVisibility.js\";function awaitRefCallback(element,controller){let refCallbackResolve;const refCallbackPromise=new Promise((resolve,reject)=>{refCallbackResolve=resolve;controller.signal.addEventListener(\"abort\",()=>reject);// resolve immediately if it exists\nconst current=element.current;if(current)resolve(current);}).catch(()=>{});// we need to listen to the ref setter, so let's override `current` - we can do that, because we don't use React's `useRef` hook for those refs.\nlet current=element.current;Object.defineProperty(element,\"current\",{get(){return current;},set(node){current=node;if(node===null){// React calls with null when the element is unmounted\ncontroller.abort();return;}refCallbackResolve(node);},configurable:true});return refCallbackPromise;}// Using opacity: 0.001 instead of 0 as an LCP hack. (opacity: 0.001 is still 0\n// to a human eye but makes Google think the elements are visible)\nconst OPACITY_0=.001;/**\n *\n * SLIDESHOW\n * V2 with Drag\n * By Benjamin and Matt\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Slideshow(props){/**\n     * Properties\n     */const{slots=[],startFrom,direction,effectsOptions,autoPlayControl,dragControl,alignment,gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,itemAmount,fadeOptions,intervalControl,transitionControl,arrowOptions,borderRadius,progressOptions,style}=props;const{effectsOpacity,effectsScale,effectsRotate,effectsPerspective,effectsHover,playOffscreen}=effectsOptions;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{showMouseControls,arrowSize,arrowRadius,arrowFill,leftArrow,rightArrow,arrowShouldSpace=true,arrowShouldFadeIn=false,arrowPosition,arrowPadding,arrowGap,arrowPaddingTop,arrowPaddingRight,arrowPaddingBottom,arrowPaddingLeft}=arrowOptions;const{showProgressDots,dotSize,dotsInset,dotsRadius,dotsPadding,dotsGap,dotsFill,dotsBackground,dotsActiveOpacity,dotsOpacity,dotsBlur}=progressOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/**\n     * Checks\n     */const isCanvas=RenderTarget.current()===RenderTarget.canvas;// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const hasChildren=Children.count(filteredSlots)>0;const isHorizontal=direction===\"left\"||direction===\"right\";const isInverted=direction===\"right\"||direction===\"bottom\";/**\n     * Empty state for Canvas\n     */if(!hasChildren){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2B50\uFE0F\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to make infinite auto-playing slideshows.\"})]});}/**\n     * Refs, State\n     */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return filteredSlots.map(index=>({current:null}));},[filteredSlots]);const timeoutRef=useRef(undefined);const[size,setSize]=useState({parent:null,children:null,item:null,itemWidth:null,itemHeight:null,viewportLength:null});/* For pausing on hover */const[isHovering,setIsHovering]=useState(false);const[shouldPlayOnHover,setShouldPlayOnHover]=useState(autoPlayControl);/* For cursor updates */const[isMouseDown,setIsMouseDown]=useState(false);/* Check if resizing */const[isResizing,setIsResizing]=useState(false);/**\n     * Array for children\n     */let dupedChildren=[];let duplicateBy=4;if(isCanvas){duplicateBy=1;}/**\n     * Measure parent, child, items\n     */const measure=useCallback(()=>{const firstChild=childrenRef[0].current;const lastChild=childrenRef[filteredSlots.length-1].current;if(hasChildren&&parentRef.current){const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=firstChild?isHorizontal?firstChild.offsetLeft:firstChild.offsetTop:0;const end=lastChild?isHorizontal?lastChild.offsetLeft+lastChild.offsetWidth:lastChild.offsetTop+lastChild.offsetHeight:0;const childrenLength=end-start+gap;const itemSize=firstChild?isHorizontal?firstChild.offsetWidth:firstChild.offsetHeight:0;const itemWidth=firstChild?firstChild.offsetWidth:0;const itemHeight=firstChild?firstChild.offsetHeight:0;const viewportLength=isHorizontal?Math.max(document.documentElement.clientWidth||0,window.innerWidth||0,parentRef.current.offsetWidth):Math.max(document.documentElement.clientHeight||0,window.innerHeight||0,parentRef.current.offsetHeight);startTransition(()=>setSize({parent:parentLength,children:childrenLength,item:itemSize,itemWidth,itemHeight,viewportLength}));}},[hasChildren]);const scheduleMeasure=useCallback(async()=>{const controller=new AbortController;/**\n         * The elements in the set are refs of children. If they're wrapped in Suspense, they could mount later than the parent.\n         * Thus, we wait for each ref to be set step by step if required.\n         */const firstChild=childrenRef[0];const lastChild=childrenRef[filteredSlots.length-1];if(!isCanvas&&(!firstChild.current||!lastChild.current))try{await Promise.all([awaitRefCallback(firstChild,controller),awaitRefCallback(lastChild,controller)]);}catch{controller.abort();}frame.read(measure);},[measure]);/**\n     * Add refs to all children\n     * Added itemAmount for resizing\n     */useLayoutEffect(()=>{if(hasChildren)scheduleMeasure();},[hasChildren,itemAmount]);/**\n     * Track whether this is the initial resize event. By default this will fire on mount,\n     * which we do in the useEffect. We should only fire it on subsequent resizes.\n     */const initialResize=useRef(true);useEffect(()=>{return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){scheduleMeasure();startTransition(()=>setIsResizing(true));}initialResize.current=false;});},[]);useEffect(()=>{if(isResizing){const timer=setTimeout(()=>startTransition(()=>setIsResizing(false)),500);return()=>clearTimeout(timer);}},[isResizing]);/**\n     * Animation, pagination\n     */const totalItems=filteredSlots?.length;const childrenSize=isCanvas?0:size?.children;const itemWithGap=size?.item+gap;const itemOffset=startFrom*itemWithGap;const[currentItem,setCurrentItem]=useState(startFrom+totalItems);const[isDragging,setIsDragging]=useState(false);/* Check for browser window visibility *//* Otherwise, it will re-play all the item increments */const visibilityRef=useRef(null);const isInView=useInView(visibilityRef);const isVisible=usePageVisibility()&&isInView;const factor=isInverted?1:-1;/* The x and y values to start from */const xOrY=useMotionValue(childrenSize);/* For canvas only. Using xOrY is slower upon page switching */const canvasPosition=isHorizontal?-startFrom*(size?.itemWidth+gap):-startFrom*(size?.itemHeight+gap);/* Calculate the new value to animate to */const newPosition=()=>factor*currentItem*itemWithGap;/* Wrapped values for infinite looping *//* Instead of 0 to a negative full duplicated row, we start with an offset */const wrappedValue=!isCanvas?useTransform(xOrY,value=>{const wrapped=wrap(-childrenSize,-childrenSize*2,value);return isNaN(wrapped)?0:wrapped;}):0;/* Convert the current item to a wrapping index for dots */const wrappedIndex=wrap(0,totalItems,currentItem);const wrappedIndexInverted=wrap(0,-totalItems,currentItem);/* Update x or y with the provided starting point *//* The subtraction of a full row of children is for overflow */useLayoutEffect(()=>{if(size?.children===null)return;/* Initial measure */// if (initialResize.current) {\n//     xOrY.set((childrenSize + itemOffset) * factor)\n// }\n/* Subsequent resizes */if(!initialResize.current&&isResizing){xOrY.set(newPosition());}},[size,childrenSize,factor,itemOffset,currentItem,itemWithGap,isResizing]);/**\n     * Page item methods\n     * Switching, deltas, autoplaying\n     *//* Next and previous function, animates the X */const switchPages=()=>{if(isCanvas||!hasChildren||!size.parent||isDragging)return;if(xOrY.get()!==newPosition()){animate(xOrY,newPosition(),transitionControl);}if(autoPlayControl&&shouldPlayOnHover&&(playOffscreen||isVisible)){timeoutRef.current=setTimeout(()=>{startTransition(()=>setCurrentItem(item=>item+1));switchPages();},intervalControl*1e3);}};/* Page navigation functions */const setDelta=(delta,transition=false)=>{if(!isInverted){if(transition)startTransition(()=>setCurrentItem(item=>item+delta));else setCurrentItem(item=>item+delta);}else{if(transition)startTransition(()=>setCurrentItem(item=>item-delta));else setCurrentItem(item=>item-delta);}};const setPage=index=>{const currentItemWrapped=wrap(0,totalItems,currentItem);const currentItemWrappedInvert=wrap(0,-totalItems,currentItem);const goto=index-currentItemWrapped;const gotoInverted=index-Math.abs(currentItemWrappedInvert);if(!isInverted){startTransition(()=>setCurrentItem(item=>item+goto));}else{startTransition(()=>setCurrentItem(item=>item-gotoInverted));}};/**\n     * Drag\n     */const handleDragStart=()=>{startTransition(()=>setIsDragging(true));};const handleDragEnd=(event,{offset,velocity})=>{startTransition(()=>setIsDragging(false));const offsetXorY=isHorizontal?offset.x:offset.y;const velocityThreshold=200// Based on testing, can be tweaked or could be 0\n;const velocityXorY=isHorizontal?velocity.x:velocity.y;const isHalfOfNext=offsetXorY<-size.item/2;const isHalfOfPrev=offsetXorY>size.item/2;/* In case you drag more than 1 item left or right */const normalizedOffset=Math.abs(offsetXorY);const itemDelta=Math.round(normalizedOffset/size.item);/* Minimum delta is 1 to initiate a page switch *//* For velocity use only */const itemDeltaFromOne=itemDelta===0?1:itemDelta;/* For quick flicks, even with low offsets */if(velocityXorY>velocityThreshold){setDelta(-itemDeltaFromOne,true);}else if(velocityXorY<-velocityThreshold){setDelta(itemDeltaFromOne,true);}else{/* For dragging over half of the current item with 0 velocity */if(isHalfOfNext){setDelta(itemDelta,true);}if(isHalfOfPrev){setDelta(-itemDelta,true);}}};/* Kickstart the auto-playing once we have all the children */useEffect(()=>{if(!isVisible||isResizing)return;switchPages();return()=>timeoutRef.current&&clearTimeout(timeoutRef.current);},[dupedChildren,isVisible,isResizing]);/* Create copies of our children to create a perfect loop */let childCounter=0;/**\n     * Sizing\n     * */const columnOrRowValue=`calc(${100/itemAmount}% - ${gap}px + ${gap/itemAmount}px)`;/**\n     * Nested array to create duplicates of the children for infinite looping\n     * These are wrapped around, and start at a full \"page\" worth of offset\n     * as defined above.\n     */for(let index=0;index<duplicateBy;index++){dupedChildren=dupedChildren.concat(Children.map(filteredSlots,(child,childIndex)=>{let ref;if(childIndex===0){ref=childrenRef[0];}if(childIndex===filteredSlots.length-1){ref=childrenRef[1];}return /*#__PURE__*/_jsx(Slide,{ref:childrenRef[childIndex],slideKey:index+childIndex+\"lg\",index:index,width:isHorizontal?itemAmount>1?columnOrRowValue:\"100%\":\"100%\",height:!isHorizontal?itemAmount>1?columnOrRowValue:\"100%\":\"100%\",size:size,child:child,numChildren:filteredSlots?.length,wrappedValue:wrappedValue,childCounter:childCounter++,gap:gap,isCanvas:isCanvas,isHorizontal:isHorizontal,effectsOpacity:effectsOpacity,effectsScale:effectsScale,effectsRotate:effectsRotate,children:index+childIndex},index+childIndex+\"lg\");}));}/**\n     * Fades with masks\n     */const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/**\n     * Dots\n     */const dots=[];const dotsBlurStyle={};if(showProgressDots){for(let i=0;i<filteredSlots?.length;i++){dots.push(/*#__PURE__*/_jsx(Dot,{dotStyle:{...dotStyle,width:dotSize,height:dotSize,backgroundColor:dotsFill},buttonStyle:baseButtonStyles,selectedOpacity:dotsActiveOpacity,opacity:dotsOpacity,onClick:()=>setPage(i),wrappedIndex:wrappedIndex,wrappedIndexInverted:wrappedIndexInverted,total:totalItems,index:i,gap:dotsGap,padding:dotsPadding,isHorizontal:isHorizontal,isInverted:isInverted},i));}if(dotsBlur>0){dotsBlurStyle.backdropFilter=dotsBlurStyle.WebkitBackdropFilter=`blur(${dotsBlur}px)`;}}const dragProps=dragControl?{drag:isHorizontal?\"x\":\"y\",onDragStart:handleDragStart,onDragEnd:handleDragEnd,dragDirectionLock:true,values:{x:xOrY,y:xOrY},dragMomentum:false}:{};const arrowHasTop=arrowPosition===\"top-left\"||arrowPosition===\"top-mid\"||arrowPosition===\"top-right\";const arrowHasBottom=arrowPosition===\"bottom-left\"||arrowPosition===\"bottom-mid\"||arrowPosition===\"bottom-right\";const arrowHasLeft=arrowPosition===\"top-left\"||arrowPosition===\"bottom-left\";const arrowHasRight=arrowPosition===\"top-right\"||arrowPosition===\"bottom-right\";const arrowHasMid=arrowPosition===\"top-mid\"||arrowPosition===\"bottom-mid\"||arrowPosition===\"auto\";return /*#__PURE__*/_jsxs(\"section\",{style:{...containerStyle,padding:paddingValue,WebkitMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,opacity:size?.item!==null?1:OPACITY_0,userSelect:\"none\"},onMouseEnter:()=>{setIsHovering(true);if(!effectsHover)setShouldPlayOnHover(false);},onMouseLeave:()=>{setIsHovering(false);if(!effectsHover)setShouldPlayOnHover(true);},onMouseDown:event=>{// Preventdefault fixes the cursor switching to text on drag on safari\nevent.preventDefault();startTransition(()=>setIsMouseDown(true));},onMouseUp:()=>startTransition(()=>setIsMouseDown(false)),ref:visibilityRef,children:[/*#__PURE__*/_jsx(\"div\",{style:{width:\"100%\",height:\"100%\",margin:0,padding:\"inherit\",position:\"absolute\",inset:0,overflow:overflow?\"visible\":\"hidden\",borderRadius:borderRadius,userSelect:\"none\",perspective:isCanvas?\"none\":effectsPerspective},children:/*#__PURE__*/_jsx(motion.ul,{ref:parentRef,...dragProps,style:{...containerStyle,gap:gap,placeItems:alignment,x:isHorizontal?isCanvas?canvasPosition:wrappedValue:0,y:!isHorizontal?isCanvas?canvasPosition:wrappedValue:0,flexDirection:isHorizontal?\"row\":\"column\",transformStyle:effectsRotate!==0&&!isCanvas?\"preserve-3d\":undefined,cursor:dragControl?isMouseDown?\"grabbing\":\"grab\":\"auto\",userSelect:\"none\",...style},children:dupedChildren})}),/*#__PURE__*/_jsxs(\"fieldset\",{style:{...controlsStyles},\"aria-label\":\"Slideshow pagination controls\",className:\"framer--slideshow-controls\",children:[/*#__PURE__*/_jsxs(motion.div,{style:{position:\"absolute\",display:\"flex\",flexDirection:isHorizontal?\"row\":\"column\",justifyContent:arrowShouldSpace?\"space-between\":\"center\",gap:arrowShouldSpace?\"unset\":arrowGap,opacity:arrowShouldFadeIn?OPACITY_0:1,alignItems:\"center\",inset:arrowPadding,top:arrowShouldSpace?arrowPadding:arrowHasTop?arrowPaddingTop:\"unset\",left:arrowShouldSpace?arrowPadding:arrowHasLeft?arrowPaddingLeft:arrowHasMid?0:\"unset\",right:arrowShouldSpace?arrowPadding:arrowHasRight?arrowPaddingRight:arrowHasMid?0:\"unset\",bottom:arrowShouldSpace?arrowPadding:arrowHasBottom?arrowPaddingBottom:\"unset\"},animate:arrowShouldFadeIn&&{opacity:isHovering?1:OPACITY_0},transition:transitionControl,children:[/*#__PURE__*/_jsx(motion.button,{type:\"button\",style:{...baseButtonStyles,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!isHorizontal?90:0,display:showMouseControls?\"block\":\"none\",pointerEvents:\"auto\"},onClick:()=>setDelta(-1,true),\"aria-label\":\"Previous\",whileTap:{scale:.9},transition:{duration:.15},children:/*#__PURE__*/_jsx(\"img\",{decoding:\"async\",width:arrowSize,height:arrowSize,src:leftArrow||\"https://framerusercontent.com/images/6tTbkXggWgQCAJ4DO2QEdXXmgM.svg\",alt:\"Back Arrow\"})}),/*#__PURE__*/_jsx(motion.button,{type:\"button\",style:{...baseButtonStyles,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!isHorizontal?90:0,display:showMouseControls?\"block\":\"none\",pointerEvents:\"auto\"},onClick:()=>setDelta(1,true),\"aria-label\":\"Next\",whileTap:{scale:.9},transition:{duration:.15},children:/*#__PURE__*/_jsx(\"img\",{decoding:\"async\",width:arrowSize,height:arrowSize,src:rightArrow||\"https://framerusercontent.com/images/11KSGbIZoRSg4pjdnUoif6MKHI.svg\",alt:\"Next Arrow\"})})]}),dots.length>1?/*#__PURE__*/_jsx(\"div\",{style:{...dotsContainerStyle,left:isHorizontal?\"50%\":dotsInset,top:!isHorizontal?\"50%\":\"unset\",transform:isHorizontal?\"translateX(-50%)\":\"translateY(-50%)\",flexDirection:isHorizontal?\"row\":\"column\",bottom:isHorizontal?dotsInset:\"unset\",borderRadius:dotsRadius,backgroundColor:dotsBackground,userSelect:\"none\",...dotsBlurStyle},children:dots}):null]})]});}/* Default Properties */Slideshow.defaultProps={direction:\"left\",dragControl:false,startFrom:0,itemAmount:1,infinity:true,gap:10,padding:10,autoPlayControl:true,effectsOptions:{effectsOpacity:1,effectsScale:1,effectsRotate:0,effectsPerspective:1200,effectsHover:true,playOffscreen:false},transitionControl:{type:\"spring\",stiffness:200,damping:40},fadeOptions:{fadeContent:false,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},arrowOptions:{showMouseControls:true,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowFill:\"rgba(0,0,0,0.2)\",arrowSize:40},progressOptions:{showProgressDots:true}};/* Property Controls */addPropertyControls(Slideshow,{slots:{type:ControlType.Array,title:\"Content\",control:{type:ControlType.ComponentInstance}},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\",\"right\",\"top\",\"bottom\"],optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\"],optionTitles:[\"Left\",\"Right\",\"Top\",\"Bottom\"],displaySegmentedControl:true,defaultValue:Slideshow.defaultProps.direction},autoPlayControl:{type:ControlType.Boolean,title:\"Auto Play\",defaultValue:true},intervalControl:{type:ControlType.Number,title:\"Interval\",defaultValue:1.5,min:.5,max:10,step:.1,displayStepper:true,unit:\"s\",hidden:props=>!props.autoPlayControl},dragControl:{type:ControlType.Boolean,title:\"Draggable\",defaultValue:false},startFrom:{type:ControlType.Number,title:\"Current\",min:0,max:10,displayStepper:true,defaultValue:Slideshow.defaultProps.startFrom},effectsOptions:{type:ControlType.Object,title:\"Effects\",controls:{effectsOpacity:{type:ControlType.Number,title:\"Opacity\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsOpacity,min:0,max:1,step:.01,displayStepper:true},effectsScale:{type:ControlType.Number,title:\"Scale\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsScale,min:0,max:1,step:.01,displayStepper:true},effectsPerspective:{type:ControlType.Number,title:\"Perspective\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsPerspective,min:200,max:2e3,step:1},effectsRotate:{type:ControlType.Number,title:\"Rotate\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsRotate,min:-180,max:180,step:1},effectsHover:{type:ControlType.Boolean,title:\"On Hover\",enabledTitle:\"Play\",disabledTitle:\"Pause\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsHover},playOffscreen:{type:ControlType.Boolean,title:\"Offscreen\",enabledTitle:\"Play\",disabledTitle:\"Pause\",defaultValue:Slideshow.defaultProps.effectsOptions.playOffscreen}}},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{direction:{right:[\"align-top\",\"align-middle\",\"align-bottom\"],left:[\"align-top\",\"align-middle\",\"align-bottom\"],top:[\"align-left\",\"align-center\",\"align-right\"],bottom:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},itemAmount:{type:ControlType.Number,title:\"Items\",min:1,max:10,displayStepper:true,defaultValue:Slideshow.defaultProps.itemAmount},gap:{type:ControlType.Number,title:\"Gap\",min:0},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],defaultValue:0,valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},borderRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,displayStepper:true,defaultValue:0},transitionControl:{type:ControlType.Transition,defaultValue:Slideshow.defaultProps.transitionControl,title:\"Transition\"},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:false},overflow:{type:ControlType.Boolean,title:\"Overflow\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false,hidden(props){return props.fadeContent===true;}},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.05,hidden(props){return props.fadeContent===false;}}}},arrowOptions:{type:ControlType.Object,title:\"Arrows\",controls:{showMouseControls:{type:ControlType.Boolean,title:\"Show\",defaultValue:Slideshow.defaultProps.arrowOptions.showMouseControls},arrowFill:{type:ControlType.Color,title:\"Fill\",hidden:props=>!props.showMouseControls,defaultValue:Slideshow.defaultProps.arrowOptions.arrowFill},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:Slideshow.defaultProps.arrowOptions.arrowSize,hidden:props=>!props.showMouseControls},arrowRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,defaultValue:40,hidden:props=>!props.showMouseControls},arrowShouldFadeIn:{type:ControlType.Boolean,title:\"Fade In\",defaultValue:false,hidden:props=>!props.showMouseControls},arrowShouldSpace:{type:ControlType.Boolean,title:\"Distance\",enabledTitle:\"Space\",disabledTitle:\"Group\",defaultValue:Slideshow.defaultProps.arrowOptions.arrowShouldSpace,hidden:props=>!props.showMouseControls},arrowPosition:{type:ControlType.Enum,title:\"Position\",options:[\"auto\",\"top-left\",\"top-mid\",\"top-right\",\"bottom-left\",\"bottom-mid\",\"bottom-right\"],optionTitles:[\"Center\",\"Top Left\",\"Top Middle\",\"Top Right\",\"Bottom Left\",\"Bottom Middle\",\"Bottom Right\"],hidden:props=>!props.showMouseControls||props.arrowShouldSpace},arrowPadding:{type:ControlType.Number,title:\"Inset\",min:-100,max:100,defaultValue:20,displayStepper:true,hidden:props=>!props.showMouseControls||!props.arrowShouldSpace},arrowPaddingTop:{type:ControlType.Number,title:\"Top\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"bottom-mid\"||props.arrowPosition===\"bottom-left\"||props.arrowPosition===\"bottom-right\"},arrowPaddingBottom:{type:ControlType.Number,title:\"Bottom\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"top-left\"||props.arrowPosition===\"top-right\"},arrowPaddingRight:{type:ControlType.Number,title:\"Right\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-left\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"bottom-left\"||props.arrowPosition===\"bottom-mid\"},arrowPaddingLeft:{type:ControlType.Number,title:\"Left\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-right\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"bottom-right\"||props.arrowPosition===\"bottom-mid\"},arrowGap:{type:ControlType.Number,title:\"Gap\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace}}},progressOptions:{type:ControlType.Object,title:\"Dots\",controls:{showProgressDots:{type:ControlType.Boolean,title:\"Show\",defaultValue:false},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:-100,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:0,step:1,hidden:props=>!props.showProgressDots||props.showScrollbar}}}});/* Placeholder Styles */const containerStyle={display:\"flex\",flexDirection:\"row\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Component 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:180,lineHeight:1.5,textAlign:\"center\"};/* Control Styles */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\",pointerEvents:\"none\",userSelect:\"none\",top:0,left:0,right:0,bottom:0,border:0,padding:0,margin:0};/* Clamp function, used for fadeInset */const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);/* Slide Component */const Slide=/*#__PURE__*/forwardRef(function Component(props,ref){const{slideKey,width,height,child,size,gap,wrappedValue,numChildren,childCounter,isCanvas,effects,effectsOpacity,effectsScale,effectsRotate,isHorizontal,isLast,index}=props;/**\n     * Unique offsets + scroll range [0, 1, 1, 0]\n     */const childOffset=(size?.item+gap)*childCounter;const scrollRange=[-size?.item,0,size?.parent-size?.item+gap,size?.parent].map(val=>val-childOffset);/**\n     * Effects\n     */const rotateY=!isCanvas&&useTransform(wrappedValue,scrollRange,[-effectsRotate,0,0,effectsRotate]);const rotateX=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsRotate,0,0,-effectsRotate]);const opacity=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsOpacity,1,1,effectsOpacity]);const scale=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsScale,1,1,effectsScale]);const originXorY=!isCanvas&&useTransform(wrappedValue,scrollRange,[1,1,0,0]);const isVisible=!isCanvas&&useTransform(wrappedValue,latest=>latest>=scrollRange[1]&&latest<=scrollRange[2]);useEffect(()=>{if(!isVisible)return;return isVisible.on(\"change\",newValue=>{ref.current?.setAttribute(\"aria-hidden\",!newValue);});},[]);const visibility=isCanvas?\"visible\":useTransform(wrappedValue,[scrollRange[0]-size.viewportLength,mix(scrollRange[1],scrollRange[2],.5),scrollRange[3]+size.viewportLength],[\"hidden\",\"visible\",\"hidden\"]);return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{style:{display:\"contents\"},\"aria-hidden\":index===0?false:true,children:/*#__PURE__*/cloneElement(child,{ref:ref,key:slideKey+\"child\",style:{...child.props?.style,flexShrink:0,userSelect:\"none\",width,height,opacity:opacity,scale:scale,originX:isHorizontal?originXorY:.5,originY:!isHorizontal?originXorY:.5,rotateY:isHorizontal?rotateY:0,rotateX:!isHorizontal?rotateX:0,visibility},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},child.props?.children)})});});function Dot({selectedOpacity,opacity,total,index,wrappedIndex,wrappedIndexInverted,dotStyle,buttonStyle,gap,padding,isHorizontal,isInverted,...props}){/* Check active item *//* Go 0\u20141\u20142\u20143\u20144\u20145\u20140 */let isSelected=wrappedIndex===index;/* Go 0\u20145\u20144\u20143\u20142\u20141\u20140\u20145 instead when inverted */if(isInverted){isSelected=Math.abs(wrappedIndexInverted)===index;}const inlinePadding=gap/2;const top=!isHorizontal&&index>0?inlinePadding:padding;const bottom=!isHorizontal&&index!==total-1?inlinePadding:padding;const right=isHorizontal&&index!==total-1?inlinePadding:padding;const left=isHorizontal&&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},initial:false,animate:{opacity:isSelected?selectedOpacity:opacity},transition:{duration:.3}})});}/* Dot Styles */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\":\"Slideshow\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicWidth\":\"400\",\"framerIntrinsicHeight\":\"200\",\"framerDisableUnlink\":\"*\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./SlideShow.map", "// Generated by Framer (c105afa)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,Image,Link,PropertyOverrides,RichText,SVG,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useRouteElementId,withCSS,withFX}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/LHz3bw67SqHRmnCKTlE6/Ticker.js\";import Slideshow from\"https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/gveXKR6bwXNSCLv12kr3/SlideShow.js\";import*as sharedStyle from\"#framer/local/css/CY7_OpFbP/CY7_OpFbP.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const TickerFonts=getFonts(Ticker);const SlideshowFonts=getFonts(Slideshow);const ContainerWithFX=withFX(Container);const MotionDivWithFX=withFX(motion.div);const breakpoints={hFcrj_iqy:\"(max-width: 809px)\",WQLkyLRf1:\"(min-width: 1200px)\",zPcqYc0Lf:\"(min-width: 810px) and (max-width: 1199px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-fESjF\";const variantClassNames={hFcrj_iqy:\"framer-v-1xek37s\",WQLkyLRf1:\"framer-v-72rtr7\",zPcqYc0Lf:\"framer-v-if76u1\"};const transition1={bounce:.25,delay:0,duration:.45,type:\"spring\"};const animation={backgroundColor:\"rgb(0, 0, 0)\",opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.1,skewX:0,skewY:0,transition:transition1};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:150,y:0};const transition2={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:150,y:0};const animation3={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:-150,y:0};const transition3={delay:0,duration:.4,ease:[.44,0,.56,1],type:\"tween\"};const animation4={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3,x:-150,y:0};const animation5={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.1,skewX:0,skewY:0,transition:transition1};const animation6={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3,x:150,y:0};const animation7={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,x:0,y:50};const transition4={bounce:.2,delay:0,duration:.4,type:\"spring\"};const animation8={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,transition:transition4,x:0,y:50};const animation9={backgroundColor:\"rgb(120, 0, 248)\",opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.1,skewX:0,skewY:0,transition:transition1};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"WQLkyLRf1\",Phone:\"hFcrj_iqy\",Tablet:\"zPcqYc0Lf\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"WQLkyLRf1\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"hFcrj_iqy\")return true;return false;};const elementId=useRouteElementId(\"qp99uoJyj\");const ref1=React.useRef(null);const elementId1=useRouteElementId(\"kThfFjAdK\");const ref2=React.useRef(null);const elementId2=useRouteElementId(\"f_NR1IM5M\");const ref3=React.useRef(null);const elementId3=useRouteElementId(\"cUa43wRdv\");const ref4=React.useRef(null);const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"hFcrj_iqy\")return false;return true;};const elementId4=useRouteElementId(\"B5rqOmE6q\");const ref5=React.useRef(null);const isDisplayed2=()=>{if(!isBrowser())return true;if(baseVariant===\"zPcqYc0Lf\")return false;return true;};const isDisplayed3=()=>{if(!isBrowser())return true;if(baseVariant===\"zPcqYc0Lf\")return true;return false;};const elementId5=useRouteElementId(\"Pakof5DPG\");const ref6=React.useRef(null);const elementId6=useRouteElementId(\"uZVCv9Ji5\");const ref7=React.useRef(null);const elementId7=useRouteElementId(\"j1Gou6S3j\");const ref8=React.useRef(null);const elementId8=useRouteElementId(\"d36E0ehTd\");const ref9=React.useRef(null);const elementId9=useRouteElementId(\"n1k82Fy7i\");const ref10=React.useRef(null);const elementId10=useRouteElementId(\"XDNCTtdGq\");const ref11=React.useRef(null);const isDisplayed4=()=>{if(!isBrowser())return true;if([\"hFcrj_iqy\",\"zPcqYc0Lf\"].includes(baseVariant))return false;return true;};useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"WQLkyLRf1\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: rgb(255, 255, 255); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-72rtr7\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsxs(Image,{as:\"header\",background:{alt:\"\",fit:\"fill\",pixelHeight:1080,pixelWidth:1920,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/qS9AFbejzj1DNH0yflKP3PMmAw4.jpg\",srcSet:\"https://framerusercontent.com/images/qS9AFbejzj1DNH0yflKP3PMmAw4.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/qS9AFbejzj1DNH0yflKP3PMmAw4.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/qS9AFbejzj1DNH0yflKP3PMmAw4.jpg 1920w\"},className:\"framer-148tbwu\",\"data-framer-name\":\"Header\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-kfuts\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"augiA20Il\"},motionChild:true,nodeId:\"FPAVD7OL8\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hFcrj_iqy:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:911,intrinsicWidth:3728,pixelHeight:911,pixelWidth:3728,sizes:\"187px\",src:\"https://framerusercontent.com/images/hZ03Gwx0xSbYpjnVF4KPd41pskQ.png\",srcSet:\"https://framerusercontent.com/images/hZ03Gwx0xSbYpjnVF4KPd41pskQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/hZ03Gwx0xSbYpjnVF4KPd41pskQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/hZ03Gwx0xSbYpjnVF4KPd41pskQ.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/hZ03Gwx0xSbYpjnVF4KPd41pskQ.png 3728w\"}},zPcqYc0Lf:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:911,intrinsicWidth:3728,pixelHeight:911,pixelWidth:3728,sizes:\"188.2415px\",src:\"https://framerusercontent.com/images/hZ03Gwx0xSbYpjnVF4KPd41pskQ.png\",srcSet:\"https://framerusercontent.com/images/hZ03Gwx0xSbYpjnVF4KPd41pskQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/hZ03Gwx0xSbYpjnVF4KPd41pskQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/hZ03Gwx0xSbYpjnVF4KPd41pskQ.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/hZ03Gwx0xSbYpjnVF4KPd41pskQ.png 3728w\"}}},children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:911,intrinsicWidth:3728,pixelHeight:911,pixelWidth:3728,sizes:\"188px\",src:\"https://framerusercontent.com/images/hZ03Gwx0xSbYpjnVF4KPd41pskQ.png\",srcSet:\"https://framerusercontent.com/images/hZ03Gwx0xSbYpjnVF4KPd41pskQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/hZ03Gwx0xSbYpjnVF4KPd41pskQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/hZ03Gwx0xSbYpjnVF4KPd41pskQ.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/hZ03Gwx0xSbYpjnVF4KPd41pskQ.png 3728w\"},className:\"framer-n0nymo framer-lux5qc\",\"data-framer-name\":\"T2R Logo White\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-2px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"The Recruitment Technology Partner\"})}),className:\"framer-stpg6m\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(227, 227, 227)\"},children:\"Using technology to help recruitment businesses scale, without increasing headcount\"})}),className:\"framer-9kt2s5\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1yt6wfp\",children:/*#__PURE__*/_jsx(Link,{href:\"https://calendly.com/techwithtom/recruitment\",motionChild:true,nodeId:\"ev8Ug1ONy\",openInNewTab:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-rif30x framer-lux5qc\",\"data-framer-name\":\"Button\",whileHover:animation,children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Book free strategy call\"})}),className:\"framer-1us7cu7\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true})})})})]}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1f4120j hidden-72rtr7 hidden-if76u1\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-1.5px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"Making technology a superpower for these recruitment teams\"})}),className:\"framer-137tf3u\",fonts:[\"GF;Inter-700\"],id:elementId,ref:ref1,verticalAlignment:\"top\",withExternalLayout:true})}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-153noc0-container hidden-72rtr7 hidden-if76u1\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"NZgOl_8JS\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:0,overflow:false},gap:80,height:\"100%\",hoverFactor:.5,id:\"NZgOl_8JS\",layoutId:\"NZgOl_8JS\",padding:20,paddingBottom:20,paddingLeft:20,paddingPerSide:false,paddingRight:20,paddingTop:20,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(SVG,{className:\"framer-5lzflz\",\"data-framer-name\":\"Kintec cmky_full_colour\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 230 75\"><path d=\"M 36.923 73.592 C 16.559 73.592 0 57.092 0 36.8 C 0 16.508 16.559 0 36.923 0 C 57.288 0 73.843 16.504 73.843 36.8 C 73.843 57.096 57.284 73.592 36.923 73.592 Z M 36.923 2.108 C 17.725 2.108 2.107 17.665 2.107 36.8 C 2.107 55.935 17.725 71.492 36.92 71.492 C 56.115 71.492 71.728 55.923 71.728 36.8 C 71.728 17.677 56.115 2.108 36.923 2.108 Z\" fill=\"rgb(5,89,125)\"></path><path d=\"M 21.267 35.004 L 35.731 35.004 C 36.893 35.004 38.517 34.335 39.335 33.508 L 57.284 15.546 C 58.102 14.719 57.824 14.042 56.663 14.042 L 42.199 14.042 C 41.033 14.042 39.416 14.715 38.594 15.546 L 20.638 33.508 C 19.82 34.335 20.102 35.004 21.263 35.004 Z M 39.335 40.088 C 38.517 39.273 36.893 38.604 35.731 38.604 L 21.267 38.604 C 20.106 38.604 19.828 39.277 20.642 40.088 L 38.598 58.058 C 39.42 58.877 41.041 59.55 42.203 59.55 L 56.666 59.55 C 57.828 59.55 58.106 58.877 57.288 58.058 L 39.339 40.088 Z\" fill=\"rgb(5,89,125)\"></path><path d=\"M 33.149 58.412 L 18.678 43.327 C 17.96 42.588 17.856 42.612 17.586 42.646 C 17.258 42.673 17.208 43.077 17.204 43.238 L 17.204 55.154 C 17.335 56.627 18.111 59.208 21.862 59.542 L 32.296 59.542 C 33.578 59.469 33.462 58.885 33.153 58.408 Z M 17.2 30.258 C 17.208 30.435 17.254 30.812 17.582 30.858 C 17.759 30.877 17.867 30.9 18.122 30.7 L 32.871 15.454 C 33.296 14.962 33.774 14.108 32.146 14.042 L 22.687 14.042 C 18.219 14.042 17.339 16.892 17.2 18.477 L 17.2 30.254 Z\" fill=\"rgb(84,200,232)\"></path><path d=\"M 83.884 11.035 L 91.954 11.035 L 91.954 27.062 L 107.282 11.035 L 117.373 11.035 L 101.713 26.846 L 118.786 50.115 L 108.914 50.115 L 96.152 32.235 L 91.954 36.362 L 91.954 50.115 L 83.884 50.115 Z\" fill=\"rgb(0,67,101)\"></path><path d=\"M 118.662 21.212 L 126.407 21.212 L 126.407 50.115 L 118.662 50.115 Z M 130.402 21.212 L 137.969 21.212 L 137.969 24.677 C 140.161 21.873 143.102 20.485 146.752 20.485 C 153.131 20.485 156.296 23.812 156.296 30.438 L 156.296 50.115 L 148.555 50.115 L 148.555 32.669 C 148.555 28.727 147.405 26.908 144.082 26.908 C 140.485 26.908 138.143 29.169 138.143 32.958 L 138.143 50.115 L 130.402 50.115 Z M 201.512 41.335 C 199.934 47.385 194.971 51.069 188.094 51.069 C 179.859 51.069 174.445 45.219 174.445 35.485 C 174.445 25.75 179.639 20.215 187.979 20.215 C 196.82 20.215 201.891 25.758 201.891 35.7 C 201.891 36.358 201.891 37.008 201.84 37.719 L 182.476 37.719 C 182.692 42.215 184.71 44.565 188.477 44.565 C 191.085 44.565 192.783 43.546 193.76 41.331 L 201.512 41.331 Z M 193.875 32.669 C 193.76 28.727 191.745 26.692 188.145 26.692 C 184.822 26.692 182.8 28.727 182.476 32.669 Z M 229.977 39.246 C 229.325 46.585 224.258 51.073 216.825 51.073 C 208.493 51.073 203.365 45.35 203.365 35.627 C 203.365 25.904 208.598 20.223 217.107 20.223 C 224.636 20.223 229.375 24.465 229.911 31.446 L 222.236 31.446 C 221.799 28.431 219.997 26.746 217.157 26.746 C 213.279 26.746 211.43 29.792 211.43 35.769 C 211.43 41.338 213.499 44.423 217.157 44.423 C 220.044 44.423 221.799 42.665 222.34 39.25 L 229.973 39.25 Z M 169.173 10.154 L 161.479 17.85 L 161.479 21.212 L 156.906 21.212 L 156.906 26.692 L 161.479 26.692 L 161.479 42.25 C 161.479 48.319 162.845 50.485 169.228 50.485 C 170.038 50.485 171.516 50.392 173.646 50.331 L 173.646 44.481 L 171.732 44.481 C 169.664 44.481 169.17 44.2 169.17 42.662 L 169.17 26.692 L 174.399 26.692 L 174.399 21.212 L 169.17 21.212 L 169.17 10.154 Z\" fill=\"rgb(0,67,101)\"></path><path d=\"M 126.056 10.638 L 126.056 18.362 L 119.017 18.362 Z\" fill=\"rgb(84,200,232)\"></path><path d=\"M 92.841 70.235 C 92.841 73.327 91.201 74.904 88.041 74.904 C 85.64 74.904 84.116 73.738 83.981 71.946 L 85.193 71.946 C 85.308 73.15 86.304 73.869 88.021 73.869 C 90.46 73.869 91.672 72.642 91.672 70.269 L 91.672 69.023 C 90.873 70.365 89.7 71.027 88.16 71.027 C 85.428 71.027 83.672 69.062 83.672 65.715 C 83.672 62.369 85.467 60.404 88.16 60.404 C 89.723 60.404 90.892 61.065 91.672 62.408 L 91.672 60.658 L 92.845 60.658 L 92.845 70.227 Z M 88.334 70 C 90.464 70 91.768 68.481 91.768 65.719 C 91.768 62.958 90.48 61.442 88.334 61.442 C 86.188 61.442 84.88 62.938 84.88 65.719 C 84.88 68.5 86.246 70 88.334 70 Z M 95.28 56.773 L 96.453 56.773 L 96.453 70.758 L 95.28 70.758 Z M 103.029 60.412 C 105.978 60.412 107.695 62.338 107.695 65.723 C 107.695 69.108 105.978 71.015 103.029 71.015 C 100.081 71.015 98.383 69.108 98.383 65.723 C 98.383 62.338 100.081 60.412 103.029 60.412 Z M 103.029 69.981 C 105.194 69.981 106.483 68.485 106.483 65.719 C 106.483 62.954 105.194 61.442 103.029 61.442 C 100.864 61.442 99.595 62.962 99.595 65.719 C 99.595 68.477 100.884 69.981 103.029 69.981 Z M 109.489 56.773 L 110.659 56.773 L 110.659 62.454 C 111.419 61.092 112.592 60.412 114.209 60.412 C 116.941 60.412 118.697 62.377 118.697 65.723 C 118.697 69.069 116.903 71.035 114.132 71.035 C 112.569 71.035 111.361 70.335 110.659 69.012 L 110.659 70.762 L 109.489 70.762 L 109.489 56.777 Z M 114.035 70 C 116.219 70 117.489 68.481 117.489 65.719 C 117.489 62.958 116.181 61.442 114.035 61.442 C 111.89 61.442 110.601 62.938 110.601 65.719 C 110.601 68.5 111.89 70 114.035 70 Z M 123.309 71.012 C 121.24 71.012 119.951 69.846 119.951 68.092 C 119.951 66.927 120.518 66.05 121.572 65.565 C 122.645 65.081 123.876 65.062 125.223 64.942 C 126.647 64.65 127.002 64.669 127.002 63.638 C 127.002 62.119 126.338 61.442 124.482 61.442 C 122.626 61.442 121.692 62.2 121.611 63.681 L 120.461 63.681 C 120.499 61.696 122.004 60.412 124.482 60.412 C 126.959 60.412 128.19 61.462 128.19 63.465 L 128.19 68.969 C 128.19 69.631 128.21 69.904 128.912 69.904 C 128.989 69.904 129.143 69.904 129.34 69.885 L 129.34 70.762 C 128.97 70.838 128.677 70.858 128.503 70.858 C 127.546 70.858 127.056 70.392 127.056 69.458 L 127.056 69.304 C 125.983 70.45 124.733 71.015 123.309 71.015 Z M 123.424 65.935 C 121.942 66.323 121.159 67.042 121.159 68.073 C 121.159 69.223 122.039 69.981 123.444 69.981 C 125.551 69.981 127.017 68.815 127.017 66.869 L 126.998 65.45 C 126.137 65.781 124.91 65.858 123.424 65.935 Z M 130.745 56.773 L 131.914 56.773 L 131.914 70.758 L 130.745 70.758 Z M 139.254 60.662 L 140.385 60.662 L 140.385 62.431 C 140.991 61.031 142.044 60.408 143.507 60.408 L 143.642 60.408 L 143.642 61.615 L 143.484 61.615 C 141.473 61.615 140.42 62.823 140.42 65.154 L 140.42 70.758 L 139.25 70.758 L 139.25 60.662 Z M 145.656 65.992 C 145.656 68.519 146.984 70 148.937 70 C 150.519 70 151.669 69.123 151.904 67.646 L 153.073 67.646 C 152.819 69.688 151.179 71.031 148.859 71.031 C 146.127 71.031 144.448 69.104 144.448 65.758 C 144.448 62.412 146.146 60.408 148.898 60.408 C 151.649 60.408 153.212 62.254 153.212 65.542 L 153.212 65.931 L 145.66 65.931 L 145.66 65.988 Z M 151.997 64.981 C 151.9 62.742 150.689 61.442 148.875 61.442 C 147.061 61.442 145.772 62.765 145.656 64.981 Z M 163.142 67.277 C 162.926 69.592 161.328 71.012 158.928 71.012 C 156.234 71.012 154.497 69.065 154.497 65.781 C 154.497 62.496 156.253 60.412 159.005 60.412 C 161.289 60.412 162.887 61.812 163.007 63.873 L 161.876 63.873 C 161.683 62.396 160.529 61.442 159.009 61.442 C 157.056 61.442 155.709 62.977 155.709 65.681 C 155.709 68.385 157.056 69.981 159.028 69.981 C 160.587 69.981 161.722 68.988 161.972 67.277 Z M 164.782 60.662 L 165.913 60.662 L 165.913 62.431 C 166.518 61.031 167.572 60.408 169.035 60.408 L 169.173 60.408 L 169.173 61.615 L 169.019 61.615 C 167.009 61.615 165.955 62.823 165.955 65.154 L 165.955 70.758 L 164.782 70.758 Z M 178.401 70.758 L 177.27 70.758 L 177.27 69.142 C 176.49 70.427 175.398 71.031 173.874 71.031 C 171.57 71.031 170.439 69.823 170.439 67.45 L 170.439 60.662 L 171.612 60.662 L 171.612 67.177 C 171.612 69.104 172.238 69.996 174.09 69.996 C 175.942 69.996 177.231 68.712 177.231 66.631 L 177.231 60.658 L 178.401 60.658 L 178.401 70.754 Z M 180.863 56.773 L 182.032 56.773 L 182.032 58.523 L 180.863 58.523 Z M 180.863 60.662 L 182.032 60.662 L 182.032 70.758 L 180.863 70.758 Z M 186.014 60.662 L 187.886 60.662 L 187.886 61.615 L 186.014 61.615 L 186.014 68.965 C 186.014 69.704 186.111 70.054 186.755 70.054 C 187.068 70.054 187.438 69.958 187.886 69.858 L 187.886 70.792 C 187.357 70.927 186.89 71.008 186.443 71.008 C 185.135 71.008 184.841 70.346 184.841 68.965 L 184.841 61.615 L 183.456 61.615 L 183.456 60.662 L 184.841 60.662 L 184.841 57.762 L 186.014 57.762 Z M 189.468 60.662 L 190.56 60.662 L 190.56 62.335 C 191.243 61.088 192.374 60.408 193.779 60.408 C 195.299 60.408 196.334 61.127 196.665 62.392 C 197.348 61.088 198.483 60.408 199.926 60.408 C 202.13 60.408 203.203 61.496 203.203 63.715 L 203.203 70.758 L 202.03 70.758 L 202.03 63.815 C 202.03 62.181 201.443 61.442 199.884 61.442 C 198.066 61.442 196.916 62.669 196.916 64.438 L 196.916 70.762 L 195.743 70.762 L 195.743 63.935 C 195.743 62.262 195.06 61.446 193.617 61.446 C 191.842 61.446 190.63 62.692 190.63 64.519 L 190.63 70.762 L 189.457 70.762 L 189.457 60.665 Z M 206.155 65.992 C 206.155 68.519 207.482 70 209.435 70 C 211.017 70 212.167 69.123 212.403 67.646 L 213.576 67.646 C 213.321 69.688 211.685 71.031 209.362 71.031 C 206.63 71.031 204.951 69.104 204.951 65.758 C 204.951 62.412 206.649 60.408 209.4 60.408 C 212.152 60.408 213.711 62.254 213.711 65.542 L 213.711 65.931 L 206.159 65.931 L 206.159 65.988 Z M 212.499 64.981 C 212.403 62.742 211.191 61.442 209.377 61.442 C 207.563 61.442 206.275 62.765 206.155 64.981 Z M 215.505 60.662 L 216.64 60.662 L 216.64 62.277 C 217.4 61.031 218.512 60.408 219.997 60.408 C 221.402 60.408 222.498 60.935 223.042 61.827 C 223.432 62.45 223.451 63.246 223.451 64.315 L 223.451 70.754 L 222.282 70.754 L 222.282 64.45 C 222.282 62.408 221.834 61.435 219.766 61.435 C 217.91 61.435 216.682 62.7 216.682 64.8 L 216.682 70.754 L 215.509 70.754 L 215.509 60.658 Z M 227.272 60.662 L 229.143 60.662 L 229.143 61.615 L 227.272 61.615 L 227.272 68.965 C 227.272 69.704 227.368 70.054 228.016 70.054 C 228.329 70.054 228.699 69.958 229.147 69.858 L 229.147 70.792 C 228.622 70.927 228.152 71.008 227.704 71.008 C 226.396 71.008 226.106 70.346 226.106 68.965 L 226.106 61.615 L 224.721 61.615 L 224.721 60.662 L 226.106 60.662 L 226.106 57.762 L 227.276 57.762 L 227.276 60.662 Z\" fill=\"rgb(137,138,141)\"></path></svg>',svgContentId:12537297588,withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1tgflfh\",\"data-framer-name\":\"Venturi log\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 228 50\"><g id=\"ss9305616602_1\"><path d=\"M 0 0 L 228 0 L 228 50 L 0 50 Z\" fill=\"transparent\"></path><path d=\"M 47.952 11.18 C 45.422 11.18 43.922 12.7 43.92 15.258 C 43.92 17.092 43.911 18.923 43.922 20.758 C 43.934 22.941 45.545 24.554 47.715 24.558 C 51.889 24.565 56.063 24.554 60.236 24.563 C 61.716 24.567 63.088 25.77 63.281 27.193 C 63.462 28.538 62.388 30.056 60.973 30.418 C 60.667 30.496 51.921 30.507 47.869 30.507 C 45.516 30.507 43.926 32.099 43.922 34.458 C 43.916 36.365 43.916 38.273 43.922 40.18 C 43.93 42.404 45.545 44.03 47.745 44.032 C 51.919 44.037 56.092 44.022 60.265 44.039 C 62.285 44.047 63.808 46.163 63.12 47.95 C 62.664 49.138 61.473 49.977 60.196 49.977 C 53.876 49.981 47.553 49.983 41.232 49.977 C 39.422 49.977 38.097 48.653 38.095 46.843 C 38.089 40.426 38.093 34.012 38.093 27.595 C 38.093 21.179 38.148 14.913 38.059 8.572 C 38.034 6.698 39.704 5.178 41.397 5.199 C 47.669 5.277 53.941 5.222 60.213 5.233 C 62.231 5.237 63.76 7.223 63.153 9.017 C 62.725 10.281 61.511 11.173 60.177 11.175 C 56.103 11.181 52.028 11.175 47.954 11.177 M 72.109 49.898 C 73.249 50.203 74.569 49.636 75.217 48.42 C 75.491 47.903 75.616 47.247 75.62 46.652 C 75.66 40.409 75.69 34.166 75.656 27.923 C 75.643 25.7 77.664 24.139 79.089 24.112 C 80.925 24.074 82.561 25.679 82.707 27.712 C 82.807 29.109 84.052 30.382 85.437 30.501 C 87.651 30.691 88.884 31.917 89.137 34.175 C 89.308 35.705 90.531 36.94 91.973 37.045 C 94.137 37.199 95.591 38.765 95.595 40.951 C 95.6 43.007 95.57 45.064 95.61 47.118 C 95.635 48.431 96.446 49.272 97.565 49.773 C 98.656 50.263 99.636 49.911 100.487 49.125 C 101.253 48.418 101.471 47.529 101.468 46.51 C 101.456 35.263 101.46 24.016 101.46 12.772 C 101.46 11.26 101.483 9.75 101.449 8.238 C 101.414 6.601 100.005 5.205 98.479 5.233 C 96.961 5.263 95.604 6.711 95.599 8.333 C 95.591 10.959 95.597 13.585 95.597 16.211 C 95.597 19.951 95.604 23.692 95.593 27.432 C 95.589 28.97 94.495 30.454 93.06 30.935 C 91.715 31.388 90.235 30.911 89.325 29.531 C 88.899 28.885 88.696 28.046 88.559 27.265 C 88.308 25.848 87.132 24.655 85.726 24.561 C 83.674 24.423 82.278 23.027 82.116 20.954 C 82.008 19.557 80.761 18.29 79.374 18.172 C 77.018 17.968 75.674 16.505 75.671 14.125 C 75.666 12.143 75.69 10.161 75.658 8.181 C 75.639 6.916 74.708 5.756 73.498 5.361 C 72.422 5.012 71.328 5.391 70.478 6.404 C 69.975 7.004 69.798 7.687 69.8 8.466 C 69.812 14.834 69.808 21.2 69.808 27.566 C 69.808 33.931 69.806 40.447 69.81 46.887 C 69.81 48.294 70.752 49.527 72.11 49.897 M 227.988 8.281 C 227.986 6.905 227.03 5.685 225.727 5.321 C 224.571 4.999 223.215 5.587 222.565 6.826 C 222.303 7.324 222.185 7.953 222.183 8.525 C 222.158 14.888 222.166 21.25 222.166 27.613 C 222.166 34.051 222.164 40.489 222.168 46.926 C 222.168 48.244 223.055 49.431 224.292 49.842 C 225.417 50.212 226.557 49.785 227.408 48.701 C 227.896 48.078 227.999 47.371 227.997 46.609 C 227.988 38.487 227.991 30.366 227.991 22.245 C 227.991 17.59 227.997 12.935 227.986 8.281 M 130.525 11.178 C 132.501 11.176 134.475 11.184 136.451 11.176 C 138.097 11.168 139.537 9.768 139.537 8.199 C 139.537 6.625 138.11 5.236 136.446 5.234 C 127.953 5.227 119.458 5.227 110.965 5.234 C 109.304 5.234 107.889 6.631 107.9 8.22 C 107.911 9.802 109.333 11.167 110.999 11.174 C 112.95 11.182 114.9 11.174 116.851 11.176 C 119.22 11.176 120.788 12.747 120.79 15.126 C 120.793 20.376 120.79 25.626 120.79 30.876 C 120.79 36.226 120.788 41.575 120.793 46.924 C 120.795 48.214 121.65 49.394 122.845 49.819 C 123.963 50.217 125.12 49.821 125.994 48.766 C 126.497 48.159 126.659 47.464 126.655 46.696 C 126.645 44.368 126.653 42.039 126.653 39.711 C 126.653 31.489 126.649 23.266 126.655 15.045 C 126.657 12.755 128.249 11.178 130.521 11.174 M 148.828 43.494 C 150.952 43.724 152.178 44.97 152.419 47.136 C 152.596 48.735 153.872 49.971 155.417 49.976 C 159.69 49.991 163.963 49.993 168.233 49.976 C 169.72 49.969 171.073 48.65 171.189 47.17 C 171.352 45.075 172.663 43.701 174.755 43.508 C 175.992 43.394 176.845 42.742 177.343 41.678 C 177.581 41.168 177.626 40.528 177.626 39.948 C 177.641 29.57 177.636 19.189 177.636 8.808 C 177.636 8.635 177.638 8.461 177.634 8.288 C 177.59 6.894 176.665 5.693 175.358 5.329 C 174.199 5.005 172.846 5.581 172.185 6.82 C 171.911 7.337 171.789 7.995 171.789 8.588 C 171.765 19.092 171.772 29.595 171.772 40.098 C 171.772 42.468 170.195 44.036 167.82 44.038 C 163.768 44.038 159.719 44.04 155.668 44.038 C 153.401 44.036 151.815 42.441 151.813 40.15 C 151.807 35.667 151.811 31.181 151.811 26.698 C 151.811 20.58 151.815 14.46 151.809 8.343 C 151.809 6.915 150.855 5.683 149.525 5.321 C 148.368 5.007 147.01 5.617 146.369 6.851 C 146.12 7.332 146.003 7.934 146.001 8.482 C 145.976 13.782 145.984 19.085 145.984 24.386 C 145.984 29.686 145.98 35.038 145.987 40.364 C 145.989 42.047 147.152 43.316 148.826 43.498 M 206.138 24.555 C 207.125 24.561 208.074 24.172 208.773 23.475 C 209.472 22.778 209.864 21.83 209.862 20.843 C 209.873 18.862 209.873 16.882 209.862 14.901 C 209.865 13.914 209.475 12.966 208.778 12.267 C 208.081 11.569 207.134 11.177 206.147 11.178 C 204.074 11.17 202.001 11.176 199.928 11.176 C 197.854 11.176 195.733 11.168 193.634 11.178 C 191.557 11.188 189.927 12.807 189.908 14.892 C 189.891 16.872 189.893 18.852 189.908 20.835 C 189.923 22.921 191.551 24.549 193.626 24.553 C 197.797 24.562 201.967 24.562 206.138 24.553 M 209.29 8.373 C 209.413 10.111 210.992 11.665 212.742 11.771 C 214.452 11.875 215.698 13.133 215.721 14.851 C 215.748 16.931 215.75 19.013 215.719 21.093 C 215.693 22.755 214.429 24.013 212.761 24.111 C 210.941 24.219 209.398 25.746 209.288 27.55 C 209.189 29.18 207.975 30.402 206.341 30.52 C 204.222 30.671 202.619 32.492 202.885 34.447 C 203.092 35.974 204.616 37.376 206.185 37.486 C 207.994 37.611 209.168 38.799 209.288 40.626 C 209.404 42.406 210.969 43.919 212.801 44.031 C 214.026 44.106 215.172 44.982 215.581 46.158 C 215.959 47.244 215.579 48.43 214.574 49.275 C 213.751 49.965 212.818 50.223 211.822 49.766 C 210.755 49.276 210.002 48.47 209.881 47.242 C 209.651 44.921 208.431 43.659 206.134 43.428 C 204.781 43.292 203.58 42.049 203.409 40.603 C 203.132 38.282 201.963 37.122 199.664 36.884 C 198.266 36.74 197.073 35.453 196.97 33.977 C 196.803 31.571 194.392 29.897 192.3 30.73 C 190.841 31.313 189.908 32.698 189.906 34.33 C 189.9 38.443 189.929 42.557 189.877 46.67 C 189.862 47.377 189.659 48.068 189.29 48.671 C 188.547 49.831 187.331 50.213 186.207 49.842 C 184.966 49.436 184.079 48.248 184.077 46.928 C 184.071 40.461 184.075 33.994 184.075 27.528 C 184.075 21.235 184.136 14.941 184.039 8.648 C 184.01 6.659 185.701 5.17 187.451 5.194 C 193.601 5.28 199.752 5.227 205.902 5.227 C 207.895 5.227 209.149 6.392 209.288 8.368 M 18.764 47.139 C 18.759 47.391 18.761 47.329 18.764 47.139 Z M 31.654 8.39 C 31.652 6.7 30.311 5.252 28.76 5.235 C 27.216 5.22 25.842 6.671 25.832 8.356 C 25.819 10.438 25.829 12.518 25.829 14.599 C 25.829 16.704 25.838 30.89 25.825 32.997 C 25.813 35.073 24.301 36.657 22.235 36.79 C 20.638 36.894 19.375 38.25 19.361 39.911 C 19.353 41.877 17.706 43.668 15.863 43.681 L 15.795 43.681 C 13.952 43.668 12.305 41.877 12.297 39.911 C 12.285 38.249 11.02 36.891 9.424 36.79 C 7.357 36.657 5.846 35.073 5.833 32.997 C 5.82 30.892 5.831 16.707 5.829 14.599 C 5.829 12.517 5.837 10.436 5.827 8.356 C 5.817 6.671 4.442 5.22 2.899 5.235 C 1.347 5.25 0.006 6.7 0.004 8.39 C 0 12.553 0 28.796 0.004 32.957 C 0.004 34.696 1.153 35.956 2.877 36.142 C 5.111 36.383 6.428 37.675 6.433 39.932 C 6.449 41.595 7.706 42.952 9.295 43.075 C 11.434 43.24 12.893 44.774 12.899 46.908 C 12.909 48.233 13.752 49.408 15.004 49.841 C 15.274 49.932 15.553 49.977 15.829 49.979 C 16.11 49.977 16.389 49.93 16.655 49.841 C 17.907 49.407 18.749 48.233 18.759 46.908 C 18.766 44.774 20.224 43.242 22.363 43.075 C 23.953 42.952 25.209 41.595 25.226 39.933 C 25.23 37.673 26.547 36.383 28.781 36.142 C 30.506 35.956 31.651 34.696 31.654 32.957 C 31.66 28.796 31.66 12.553 31.654 8.39 Z M 217.839 4.072 C 217.629 4.765 216.99 5.24 216.266 5.239 C 215.833 5.238 215.418 5.064 215.113 4.757 C 214.809 4.449 214.639 4.033 214.641 3.6 C 214.641 2.7 215.369 1.96 216.266 1.96 C 216.995 1.963 217.635 2.445 217.839 3.145 L 218.331 3.145 C 218.147 2.211 217.28 1.482 216.266 1.482 C 215.129 1.525 214.229 2.459 214.229 3.598 C 214.229 4.736 215.129 5.67 216.266 5.713 C 217.273 5.713 218.133 5.006 218.335 4.076 L 217.839 4.076 Z\" fill=\"rgb(161, 125, 221)\"></path><path d=\"M 216.266 0 C 214.179 0 212.678 1.673 212.678 3.592 C 212.678 5.51 214.179 7.192 216.266 7.192 C 218.354 7.192 219.847 5.519 219.847 3.592 C 219.847 1.664 218.346 0 216.266 0 Z M 216.266 6.702 C 214.523 6.702 213.165 5.324 213.165 3.592 C 213.156 2.767 213.48 1.973 214.063 1.389 C 214.647 0.805 215.441 0.481 216.266 0.489 C 218.01 0.489 219.359 1.868 219.359 3.592 C 219.359 5.315 218.002 6.702 216.266 6.702 Z\" fill=\"rgb(161, 125, 221)\"></path></g></svg>',svgContentId:9305616602,withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-xkg8nn\",\"data-framer-name\":\"Logo\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 164 80\"><g id=\"ss9226828195_1\"><path d=\"M 0 0 L 164 0 L 164 79.265 L 0 79.265 Z\" fill=\"transparent\"></path><path d=\"M 84.664 78.403 L 77.755 53.278 C 76.955 56.134 76.064 59.305 75.567 61.044 C 74.437 65.003 71.245 65.665 69.573 65.458 L 0.405 65.458 L 0.405 62.021 L 69.869 62.021 L 69.965 62.041 C 70.49 62.103 71.715 62.017 72.261 60.101 C 73.304 56.452 76.085 46.485 76.113 46.385 L 77.781 40.408 L 85.149 67.201 L 85.891 65.199 C 86.547 63.425 88.243 62.219 90.109 62.197 L 91.601 62.197 C 91.717 62.197 91.828 62.152 91.912 62.072 L 96.104 58.082 L 99.945 61.927 C 100.098 62.016 100.674 62.284 102.052 62.284 L 143.655 62.284 L 143.695 62.286 C 143.739 62.288 148.804 62.454 152.126 59.261 C 154.129 57.337 155.144 54.522 155.144 50.894 L 155.144 12.374 C 155.144 11.424 155.914 10.654 156.863 10.654 C 157.812 10.654 158.582 11.424 158.582 12.374 L 158.582 50.892 C 158.582 55.508 157.202 59.166 154.481 61.765 C 150.224 65.832 144.221 65.745 143.582 65.722 L 102.052 65.722 C 99.059 65.722 97.812 64.761 97.328 64.17 L 96.044 62.885 L 94.281 64.562 C 93.559 65.251 92.599 65.635 91.601 65.634 L 90.155 65.634 C 89.685 65.648 89.271 65.949 89.114 66.393 L 84.665 78.402 Z\" fill=\"rgb(86, 157, 230)\" stroke-width=\"2\" stroke=\"rgb(86, 157, 230)\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path><path d=\"M 156.122 0.764 L 150.2 12.536 C 150.2 12.536 149.585 14.109 150.963 13.082 C 152.006 12.305 156.707 6.278 162.511 12.789 C 162.511 12.789 164.449 14.582 163.449 12.203 L 157.177 0.764 C 157.177 0.764 156.687 -0.36 156.122 0.764 Z\" fill=\"rgb(86, 157, 230)\" stroke-width=\"2\" stroke=\"rgb(86, 157, 230)\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path><path d=\"M 14.374 34.236 L 0.027 34.236 L 0.027 10.971 L 4.957 10.971 L 4.957 30.17 L 14.373 30.17 L 14.373 34.236 Z M 31.792 30.17 L 31.792 34.236 L 18.419 34.236 L 18.419 10.971 L 31.793 10.971 L 31.793 15.019 L 23.348 15.019 L 23.348 20.129 L 31.21 20.129 L 31.21 24.16 L 23.348 24.16 L 23.348 30.17 L 31.794 30.17 Z M 56.19 34.236 L 50.873 34.236 L 49.195 28.703 L 40.714 28.703 L 39.036 34.236 L 33.718 34.236 L 41.916 10.882 L 47.94 10.882 L 56.192 34.236 Z M 41.951 24.566 L 48.011 24.566 L 45.379 16.064 C 45.221 15.543 45.08 15.018 44.954 14.489 C 44.637 15.762 43.635 19.121 41.951 24.566 Z M 66.42 10.971 C 70.201 10.971 73.143 11.97 75.245 13.968 C 77.348 15.965 78.399 18.824 78.399 22.543 C 78.399 26.261 77.31 29.139 75.13 31.178 C 72.951 33.217 69.807 34.236 65.696 34.236 L 59.124 34.236 L 59.124 10.971 Z M 66.156 30.17 C 70.901 30.17 73.275 27.618 73.275 22.516 C 73.275 17.519 71.072 15.019 66.668 15.019 L 64.052 15.019 L 64.052 30.17 L 66.154 30.17 Z M 96.596 30.17 L 96.596 34.236 L 83.222 34.236 L 83.222 10.971 L 96.596 10.971 L 96.596 15.019 L 88.151 15.019 L 88.151 20.129 L 96.013 20.129 L 96.013 24.16 L 88.151 24.16 L 88.151 30.17 L 96.597 30.17 Z M 106.384 25.309 L 106.384 34.236 L 101.454 34.236 L 101.454 10.971 L 108.221 10.971 C 111.366 10.971 113.701 11.546 115.226 12.694 C 116.752 13.844 117.514 15.592 117.514 17.936 C 117.514 19.304 117.14 20.521 116.392 21.588 C 115.645 22.654 114.576 23.494 113.186 24.107 C 116.684 29.327 118.963 32.705 120.022 34.236 L 114.546 34.236 L 108.998 25.309 Z M 106.384 15.019 L 106.384 21.296 L 107.974 21.296 C 109.528 21.296 110.676 21.037 111.419 20.517 C 112.161 19.999 112.532 19.192 112.532 18.096 C 112.532 16.999 112.158 16.213 111.41 15.735 C 110.662 15.258 109.481 15.019 107.868 15.019 Z M 136.665 27.784 C 136.665 29.87 135.912 31.52 134.404 32.733 C 132.896 33.948 130.846 34.555 128.256 34.555 C 125.665 34.555 123.42 34.089 121.525 33.158 L 121.525 28.579 C 123.09 29.263 124.416 29.752 125.5 30.046 C 126.583 30.342 127.626 30.488 128.627 30.488 C 129.628 30.488 130.414 30.279 130.986 29.861 C 131.557 29.442 131.842 28.827 131.842 28.014 C 131.842 27.543 131.712 27.132 131.453 26.785 C 131.194 26.437 130.838 26.108 130.385 25.795 C 129.931 25.483 128.947 24.97 127.434 24.256 C 125.92 23.544 124.816 22.881 124.121 22.268 C 122.566 20.924 121.789 19.239 121.789 17.211 C 121.789 15.185 122.484 13.582 123.874 12.403 C 125.264 11.225 127.19 10.636 129.651 10.636 C 131.736 10.636 134.039 11.184 136.56 12.28 L 134.97 16.116 C 133.733 15.609 132.702 15.255 131.878 15.055 C 131.059 14.856 130.22 14.755 129.378 14.755 C 128.536 14.755 127.864 14.967 127.363 15.391 C 126.863 15.815 126.612 16.387 126.612 17.106 C 126.612 17.931 127.03 18.626 127.867 19.192 C 128.279 19.475 129.321 20.011 130.994 20.801 C 133.15 21.837 134.634 22.881 135.447 23.929 C 136.259 24.978 136.665 26.264 136.665 27.784 Z M 0.926 53.842 L 0 53.842 L 0 40.591 L 0.926 40.591 Z M 14.3 40.59 L 14.3 53.841 L 13.364 53.841 L 5.525 42.081 L 5.453 42.081 C 5.521 43.417 5.553 44.475 5.553 45.253 L 5.553 53.843 L 4.668 53.843 L 4.668 40.592 L 5.594 40.592 L 13.434 52.343 L 13.484 52.343 C 13.433 51.309 13.406 50.275 13.403 49.241 L 13.403 40.591 L 14.299 40.591 Z M 29.053 41.234 C 27.389 41.234 26.08 41.765 25.128 42.826 C 24.175 43.886 23.699 45.352 23.699 47.221 C 23.699 49.09 24.149 50.553 25.048 51.606 C 25.947 52.647 27.231 53.167 28.902 53.167 C 30.009 53.167 31.032 53.026 31.972 52.745 L 31.972 53.56 C 31.106 53.869 30.012 54.023 28.691 54.023 C 26.839 54.023 25.376 53.424 24.304 52.226 C 23.23 51.027 22.692 49.348 22.692 47.186 C 22.679 45.85 22.93 44.665 23.448 43.631 C 23.935 42.63 24.707 41.795 25.666 41.231 C 26.628 40.664 27.736 40.387 28.991 40.4 C 30.293 40.4 31.451 40.641 32.463 41.125 L 32.091 41.96 C 31.149 41.483 30.107 41.235 29.052 41.236 Z M 43.142 53.842 L 41.3 49.169 L 35.916 49.169 L 34.074 53.842 L 33.048 53.842 L 38.372 40.539 L 38.965 40.539 L 44.179 53.842 L 43.141 53.842 Z M 38.11 43.569 L 36.258 48.332 L 40.988 48.332 L 39.187 43.56 C 38.986 43.047 38.805 42.526 38.644 41.999 C 38.49 42.543 38.311 43.066 38.111 43.569 Z M 46.976 48.072 L 46.976 53.842 L 46.05 53.842 L 46.05 40.591 L 49.2 40.591 C 50.837 40.591 52.049 40.892 52.838 41.496 C 53.626 42.101 54.021 43.016 54.021 44.245 C 54.021 45.145 53.784 45.898 53.31 46.506 C 52.838 47.114 52.131 47.549 51.193 47.81 L 54.785 53.841 L 53.678 53.841 L 50.266 48.072 Z M 46.976 41.426 L 46.976 47.276 L 49.501 47.276 C 50.635 47.276 51.506 47.025 52.113 46.521 C 52.72 46.018 53.024 45.273 53.024 44.285 C 53.024 43.299 52.722 42.575 52.118 42.116 C 51.513 41.655 50.531 41.426 49.169 41.426 Z M 64.304 52.986 L 64.304 53.842 L 57.069 53.842 L 57.069 40.591 L 64.305 40.591 L 64.305 41.446 L 57.994 41.446 L 57.994 46.462 L 63.953 46.462 L 63.953 47.307 L 57.994 47.307 L 57.994 52.986 Z\" fill=\"rgb(65, 159, 232)\"></path></g></svg>',svgContentId:9226828195,withExternalLayout:true}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:38,intrinsicWidth:170,pixelHeight:38,pixelWidth:170,src:\"https://framerusercontent.com/images/Mpk3QONihkmuq5bqhRMAU7a6s.svg\"},className:\"framer-1j1c9we\",\"data-framer-name\":\"Logo 1\"}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1penjd4\",\"data-framer-name\":\"Footer-logo\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 388 48\"><g id=\"ss11646891701_1\"><path d=\"M 41.39 36.552 L 48.504 0 L 57.106 0 L 46.175 47.238 L 36.475 47.238 L 28.585 11.011 L 20.825 47.237 L 10.994 47.237 L 0 0 L 8.924 0 L 16.428 36.487 L 23.864 0 L 33.372 0 Z\" fill=\"rgb(20,19,32)\"></path><path d=\"M 55.315 37.595 C 55.315 28.864 65.985 26.649 78.726 25.345 L 78.726 24.694 C 78.726 18.7 75.298 16.876 71.482 16.876 C 67.602 16.876 64.692 18.962 64.498 23.196 L 56.931 23.196 C 57.449 16.029 63.334 11.143 71.741 11.143 C 80.084 11.143 86.616 14.987 86.422 26.194 C 86.422 27.953 86.293 32.057 86.293 35.25 C 86.293 39.681 86.681 44.307 87.327 47.239 L 80.277 47.239 C 80.019 45.741 79.76 44.894 79.631 42.483 C 77.433 46.262 73.293 48.088 68.184 48.088 C 60.618 48.085 55.315 43.98 55.315 37.595 Z M 78.919 30.754 C 67.925 31.796 63.463 33.36 63.463 37.4 C 63.463 40.462 65.985 42.286 69.866 42.286 C 75.557 42.286 78.919 39.354 78.919 33.425 Z\" fill=\"rgb(20,19,32)\"></path><path d=\"M 99.873 47.238 L 92.177 47.238 L 92.177 0 L 99.873 0 Z\" fill=\"rgb(20,19,32)\"></path><path d=\"M 113.302 0 L 113.302 26.258 L 126.171 12.183 L 135.42 12.183 L 122.097 26.583 L 136.906 47.237 L 127.918 47.237 L 116.988 32.056 L 113.302 36.03 L 113.302 47.237 L 105.606 47.237 L 105.606 0 Z\" fill=\"rgb(20,19,32)\"></path><path d=\"M 142.157 31.926 C 142.675 38.441 147.202 41.634 151.601 41.634 C 155.61 41.634 158.779 40.005 160.137 36.748 L 167.704 36.748 C 166.087 42.353 160.914 48.085 151.924 48.085 C 140.736 48.085 134.333 39.484 134.333 29.45 C 134.333 18.896 141.512 11.402 151.406 11.402 C 162.076 11.402 168.739 20.133 168.092 31.927 Z M 142.157 26.257 L 160.266 26.257 C 160.072 20.785 155.933 17.462 151.406 17.462 C 147.784 17.462 142.805 19.612 142.157 26.258 Z\" fill=\"rgb(20,19,32)\"></path><path d=\"M 191.289 20.068 C 189.996 19.938 188.767 19.872 187.602 19.873 C 182.752 19.873 179.971 21.827 179.971 28.864 L 179.971 47.238 L 172.275 47.238 L 172.275 12.185 L 179.841 12.185 L 179.841 18.439 C 181.717 14.53 185.08 12.184 189.285 12.119 C 189.866 12.119 190.707 12.184 191.29 12.249 Z\" fill=\"rgb(20,19,32)\"></path><g transform=\"translate(209.337 0.001)\" id=\"ss11646891701_8\"><path d=\"M 7.697 40.266 L 31.819 40.266 L 31.819 47.238 L 0 47.238 L 0 0 L 7.696 0 Z\" fill=\"rgb(20,19,32)\"></path><path d=\"M 66.689 29.776 C 66.689 42.416 58.023 48.085 49.551 48.085 C 41.079 48.085 32.413 42.416 32.413 29.776 C 32.413 17.135 41.079 11.403 49.55 11.403 C 58.021 11.403 66.689 17.136 66.689 29.776 Z M 49.55 41.765 C 54.4 41.765 58.734 37.856 58.734 29.776 C 58.734 21.696 54.4 17.722 49.55 17.722 C 44.699 17.722 40.366 21.697 40.366 29.776 C 40.366 37.855 44.7 41.765 49.55 41.765 Z\" fill=\"rgb(20,19,32)\"></path><path d=\"M 82.223 37.204 L 90.177 12.184 L 98.196 12.184 L 85.65 47.238 L 78.406 47.238 L 65.731 12.184 L 74.204 12.184 Z\" fill=\"rgb(20,19,32)\"></path><path d=\"M 105.026 31.925 C 105.543 38.441 110.071 41.634 114.469 41.634 C 118.478 41.634 121.647 40.005 123.005 36.747 L 130.572 36.747 C 128.955 42.352 123.782 48.085 114.792 48.085 C 103.604 48.085 97.201 39.484 97.201 29.45 C 97.201 18.895 104.38 11.402 114.275 11.402 C 124.945 11.402 131.607 20.133 130.961 31.926 Z M 105.026 26.257 L 123.135 26.257 C 122.94 20.784 118.802 17.462 114.274 17.462 C 110.652 17.462 105.673 19.612 105.026 26.258 Z\" fill=\"rgb(20,19,32)\"></path><path d=\"M 142.806 47.237 L 135.11 47.237 L 135.11 0 L 142.806 0 Z\" fill=\"rgb(20,19,32)\"></path><path d=\"M 156.223 47.237 L 148.527 47.237 L 148.527 0 L 156.223 0 Z\" fill=\"rgb(20,19,32)\"></path><path d=\"M 162.524 40.005 C 162.524 35.543 166.114 31.926 170.543 31.926 C 174.972 31.926 178.562 35.543 178.562 40.005 C 178.562 44.467 174.972 48.085 170.543 48.085 C 166.114 48.085 162.524 44.467 162.524 40.005 Z\" fill=\"rgb(255,59,59)\"></path></g></g></svg>',svgContentId:11646891701,withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1oc0w1s\",\"data-framer-name\":\"Brandmark-2\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 242 98\"><path d=\"M 40.287 4.184 C 35.063 5.212 28.551 7.378 24.651 9.433 C 18.138 12.883 11.111 19.306 7.174 25.509 C 5.004 28.923 1.876 35.163 0.92 38.062 C 0.074 40.668 0 41.439 0 47.458 C 0 53.111 0.11 54.469 0.883 57.552 C 3.974 69.995 12.877 81.667 24.209 88.127 C 27.815 90.182 33.481 92.237 38.448 93.265 C 44.15 94.44 51.73 94.44 56.66 93.228 C 60.891 92.237 64.644 90.879 69.022 88.824 C 72.885 86.989 77.999 83.722 77.999 83.061 C 77.999 82.437 77.594 82.474 76.564 83.208 C 75.755 83.759 72.848 84.199 73.511 83.649 C 73.658 83.539 74.762 82.694 76.012 81.74 C 78.588 79.795 82.23 75.978 82.598 74.84 C 82.966 73.775 82.341 73.225 81.347 73.775 C 80.906 73.996 78.845 75.61 76.785 77.336 C 74.725 79.061 72.701 80.602 72.296 80.822 C 71.892 81.006 72.223 80.602 73.032 79.942 C 76.086 77.446 77.999 75.5 79.324 73.555 C 81.789 69.995 80.28 70.545 75.534 74.987 C 70.015 80.125 65.012 82.878 58.647 84.273 C 54.747 85.117 53.68 85.19 48.933 85.043 C 42.752 84.86 38.19 83.942 33.886 81.997 C 32.414 81.3 30.869 80.749 30.501 80.749 C 30.17 80.749 29.618 80.529 29.36 80.272 C 29.103 80.015 27.741 78.804 26.306 77.629 C 23.032 74.876 23.437 75.28 20.162 71.243 C 17.991 68.6 16.998 66.985 15.784 64.085 C 14.938 62.067 14.165 59.571 14.055 58.616 C 13.944 57.625 13.687 56.745 13.466 56.671 C 12.988 56.488 13.061 53.148 13.65 47.715 C 13.981 44.632 14.275 43.715 16.115 39.897 C 17.403 37.181 18.396 35.603 18.764 35.603 C 19.058 35.603 19.721 34.906 20.236 34.098 C 22.37 30.648 29.029 24.665 32.377 23.234 C 36.792 21.325 37.896 20.958 37.896 21.509 C 37.896 21.876 38.117 21.986 38.558 21.876 C 40.508 21.325 42.384 20.958 44.629 20.738 C 47.977 20.407 47.866 19.453 44.482 19.453 C 43.525 19.453 43.047 19.306 43.047 18.939 C 43.047 18.425 41.538 17.985 39.588 17.985 C 37.675 17.985 37.234 17.434 38.558 16.737 C 40.766 15.599 44.224 15.049 49.228 15.049 C 53.165 15.049 54.084 14.939 54.084 14.535 C 54.084 14.241 53.864 13.911 53.643 13.837 C 52.76 13.47 54.379 13.581 55.335 13.948 C 55.924 14.168 56.329 14.168 56.476 13.948 C 56.623 13.727 57.138 13.581 57.616 13.581 C 59.014 13.581 58.499 12.736 56.807 12.259 C 56.034 12.039 53.312 11.635 50.773 11.378 C 46.763 10.975 45.622 10.975 41.869 11.488 C 39.478 11.819 36.167 12.516 34.511 12.993 C 31.126 14.021 26.012 16.48 26.049 17.067 C 26.086 17.508 23.988 18.682 23.179 18.719 C 22.885 18.719 22.406 19.049 22.149 19.49 C 21.891 19.894 21.082 20.481 20.346 20.811 C 19.61 21.105 17.513 22.867 15.673 24.702 C 13.834 26.537 12.178 28.005 11.994 27.969 C 11.847 27.895 11.479 28.079 11.185 28.299 C 10.007 29.253 10.817 28.189 12.693 26.17 C 13.834 24.996 15.011 24.041 15.379 24.041 C 15.71 24.041 16.005 23.784 16.005 23.454 C 16.005 22.573 16.704 21.912 19.831 19.527 C 24.283 16.187 27.925 14.351 34.952 11.892 C 35.357 11.745 35.394 11.635 35.026 11.415 C 34.732 11.268 35.799 10.864 37.602 10.424 C 42.348 9.323 53.349 9.433 58.131 10.571 C 64.533 12.149 70.53 14.792 75.534 18.205 C 77.116 19.306 78.478 20.187 78.588 20.187 C 78.661 20.187 78.735 19.967 78.735 19.71 C 78.735 18.903 73.216 14.718 69.979 13.067 C 67.808 11.929 68.985 12.076 71.413 13.213 C 75.461 15.085 77.043 14.645 74.541 12.333 C 72.149 10.057 63.687 6.497 56.476 4.735 C 52.576 3.781 43.893 3.487 40.287 4.184 Z M 68.065 11.745 C 68.36 11.929 68.47 12.112 68.249 12.112 C 68.065 12.112 67.624 11.929 67.33 11.745 C 67.035 11.562 66.962 11.378 67.146 11.378 C 67.366 11.378 67.771 11.562 68.065 11.745 Z M 40.729 20.407 C 40.618 20.518 40.287 20.554 40.03 20.444 C 39.735 20.334 39.846 20.224 40.251 20.224 C 40.655 20.187 40.876 20.297 40.729 20.407 Z\" fill=\"rgb(0,0,0)\"></path><path d=\"M 77.079 25.693 C 76.932 25.913 77.153 26.354 77.558 26.721 C 78.404 27.418 82.414 33.291 82.414 33.804 C 82.414 33.988 78.661 34.135 73.952 34.135 L 65.49 34.135 L 65.49 37.805 L 76.528 37.805 L 76.528 66.434 L 80.207 66.434 L 80.207 37.805 L 82.157 37.805 C 84.07 37.805 84.143 37.842 84.695 39.163 C 84.99 39.934 85.394 40.888 85.505 41.255 C 85.652 41.696 85.873 41.843 86.093 41.622 C 86.425 41.292 86.241 40.154 85.542 38.429 C 85.284 37.842 85.468 37.769 87.786 37.879 L 90.325 37.989 L 91.171 41.659 C 91.87 44.706 92.054 46.467 92.091 51.936 C 92.127 55.57 92.054 58.984 91.87 59.534 C 91.649 60.342 91.723 60.562 92.127 60.562 C 92.495 60.562 92.753 60.048 92.9 59.167 C 93.01 58.433 93.268 57.515 93.489 57.185 C 93.893 56.378 93.93 45.623 93.489 45.366 C 93.342 45.256 93.084 44.375 92.974 43.421 C 92.863 42.467 92.422 40.595 92.017 39.31 C 91.575 38.025 91.244 36.374 91.244 35.64 C 91.244 34.612 91.06 34.208 90.435 33.951 C 89.957 33.731 89.368 33.144 89.11 32.557 C 88.264 30.831 87.602 31.345 88.301 33.181 L 88.669 34.135 L 83.923 34.135 L 83.26 32.777 C 82.451 31.015 79.066 26.537 78.073 25.84 C 77.558 25.509 77.227 25.436 77.079 25.693 Z M 128.772 33.621 C 123.033 35.676 119.979 38.356 117.587 43.311 C 116.631 45.366 116.447 46.174 116.337 49.367 C 116.153 53.551 116.888 56.414 118.912 59.571 C 121.083 62.984 125.351 65.884 129.435 66.765 C 139.7 68.93 149.082 61.81 150.001 51.166 L 150.222 48.449 L 133.923 48.449 L 133.923 55.423 L 137.97 55.423 L 137.97 52.12 L 145.991 52.12 L 145.623 53.478 C 144.409 57.919 140.766 61.553 136.388 62.764 C 134.107 63.388 130.134 63.094 127.926 62.103 C 125.351 60.966 122.444 58.029 121.193 55.313 C 119.758 52.193 119.721 48.156 121.12 45.146 C 122.481 42.173 124.725 39.861 127.595 38.466 C 129.802 37.365 130.391 37.255 133.187 37.255 C 135.836 37.255 136.646 37.401 138.485 38.282 C 139.663 38.833 140.693 39.273 140.73 39.273 C 140.914 39.273 142.753 36.484 142.753 36.19 C 142.753 36.043 141.65 35.419 140.288 34.759 C 137.97 33.658 137.455 33.584 133.555 33.511 C 131.237 33.474 129.067 33.511 128.772 33.621 Z M 192.974 34.355 C 187.787 36.631 184.512 40.228 183.004 45.33 C 179.803 56.304 187.971 67.169 199.413 67.169 C 210.782 67.132 218.803 56.121 215.454 45.109 C 214.093 40.631 211.187 37.181 206.919 35.016 C 204.122 33.621 204.012 33.584 199.634 33.474 C 195.513 33.401 194.998 33.474 192.974 34.355 Z M 204.638 38.319 C 207.323 39.604 209.604 41.843 211.003 44.632 C 211.996 46.578 212.106 47.165 212.106 50.101 C 212.106 52.891 211.959 53.735 211.15 55.423 C 208.905 60.121 205.116 62.764 200.149 63.058 C 193.857 63.425 188.743 59.864 186.83 53.845 C 184.696 47.091 188.78 39.787 196.102 37.401 C 197.978 36.778 202.393 37.255 204.638 38.319 Z M 23.621 50.175 L 23.731 66.251 L 25.681 66.361 L 27.594 66.471 L 27.594 34.135 L 23.547 34.135 Z M 32.451 50.175 L 32.561 66.251 L 34.474 66.361 L 36.424 66.471 L 36.498 53.294 L 36.608 40.118 L 42.09 47.128 C 45.144 50.982 49.78 56.891 52.392 60.268 L 57.212 66.434 L 61.811 66.434 L 61.811 34.135 L 58.131 34.135 L 58.058 47.385 L 57.948 60.672 L 54.636 56.451 C 52.833 54.139 48.124 48.156 44.187 43.201 L 37.05 34.135 L 32.377 34.135 Z M 95.291 50.285 L 95.291 66.434 L 115.527 66.434 L 115.527 62.397 L 98.971 62.397 L 98.971 54.689 L 105.704 54.616 L 112.4 54.506 L 112.4 51.202 L 105.704 51.092 L 98.971 51.019 L 98.971 37.805 L 115.527 37.805 L 115.527 34.135 L 95.291 34.135 Z M 152.687 50.248 L 152.687 66.434 L 156.366 66.434 L 156.366 54.689 L 170.568 54.689 L 173.144 60.452 L 175.719 66.251 L 177.816 66.361 C 179.177 66.434 179.913 66.324 179.913 66.067 C 179.913 65.847 179.472 64.709 178.957 63.572 C 178.405 62.434 177.191 59.718 176.234 57.589 L 174.468 53.698 L 176.16 52.45 C 178.736 50.542 179.729 48.303 179.729 44.412 C 179.729 41.769 179.582 40.999 178.773 39.457 C 177.743 37.438 175.498 35.493 173.364 34.832 C 172.481 34.539 168.508 34.318 162.363 34.245 L 152.687 34.098 Z M 172.408 38.943 C 174.836 40.118 175.866 41.733 175.866 44.302 C 175.866 47.312 174.505 49.294 171.819 50.285 C 171.046 50.542 167.698 50.799 163.467 50.909 L 156.366 51.129 L 156.366 37.695 L 163.467 37.879 C 170.09 38.025 170.715 38.099 172.408 38.943 Z M 231.533 73.041 C 230.907 73.261 229.951 73.959 229.399 74.583 C 228.552 75.574 228.442 76.014 228.589 77.409 C 228.81 79.391 229.914 80.529 232.268 81.116 C 235.543 81.997 237.125 82.768 237.235 83.575 C 237.493 85.447 233.63 86.181 230.87 84.787 C 229.067 83.869 229.067 83.869 228.552 84.97 C 227.964 86.255 227.927 86.145 229.583 86.989 C 230.65 87.539 231.753 87.723 233.777 87.723 C 237.162 87.723 238.192 87.356 239.149 85.814 C 241.062 82.658 239.149 79.905 234.439 79.097 C 232.82 78.84 231.054 77.703 231.054 76.932 C 231.054 76.675 231.349 76.198 231.717 75.904 C 232.783 74.95 234.292 74.803 236.463 75.427 C 238.155 75.941 238.56 75.941 238.817 75.537 C 239.369 74.693 239.185 73.812 238.376 73.408 C 237.346 72.821 232.967 72.601 231.533 73.041 Z M 114.055 80.382 L 114.055 87.723 L 116.631 87.723 L 116.631 83.318 L 119.206 83.318 C 122.186 83.318 123.916 82.731 125.019 81.3 C 126.786 79.061 126.307 75.39 124.026 73.885 C 122.886 73.115 122.334 73.041 118.434 73.041 L 114.055 73.041 Z M 122.591 76.345 C 123.474 77.262 123.658 77.666 123.437 78.473 C 123.033 80.199 122.186 80.712 119.317 80.969 L 116.631 81.226 L 116.631 75.243 L 119.059 75.243 C 121.267 75.243 121.561 75.354 122.591 76.345 Z M 134.144 74.216 C 133.85 74.876 132.451 78.033 131.017 81.263 C 129.582 84.456 128.404 87.209 128.404 87.393 C 128.404 87.576 128.993 87.723 129.729 87.723 C 130.943 87.723 131.053 87.613 131.789 85.888 L 132.562 84.052 L 139.663 84.052 L 140.435 85.888 C 141.171 87.613 141.318 87.723 142.533 87.723 C 143.268 87.723 143.857 87.576 143.857 87.393 C 143.857 87.246 142.422 83.942 140.656 80.052 L 137.492 73.041 L 136.057 73.041 C 134.843 73.041 134.622 73.188 134.144 74.216 Z M 137.418 79.134 C 138.117 80.676 138.706 81.997 138.706 82.07 C 138.706 82.144 137.566 82.217 136.131 82.217 C 134.733 82.217 133.555 82.144 133.555 82.034 C 133.555 81.667 135.873 76.345 136.02 76.345 C 136.094 76.345 136.719 77.593 137.418 79.134 Z M 148.272 80.382 L 148.272 87.723 L 150.848 87.723 L 150.848 83.318 L 154.711 83.318 L 156.182 85.521 C 157.544 87.539 157.764 87.686 159.052 87.723 C 159.788 87.723 160.413 87.539 160.413 87.356 C 160.413 87.136 159.751 86.034 158.905 84.933 L 157.433 82.915 L 158.39 82.181 C 161.149 79.978 161.002 75.537 158.132 73.775 C 157.102 73.151 156.293 73.041 152.614 73.041 L 148.272 73.041 Z M 156.808 76.345 C 157.691 77.262 157.875 77.666 157.654 78.473 C 157.213 80.272 156.293 80.822 153.46 81.043 L 150.848 81.226 L 150.848 75.243 L 153.276 75.243 C 155.483 75.243 155.778 75.354 156.808 76.345 Z M 162.327 74.032 C 162.437 75.023 162.511 75.06 164.939 75.17 L 167.404 75.28 L 167.404 87.723 L 169.979 87.723 L 169.979 75.28 L 172.481 75.17 C 174.873 75.06 174.946 75.023 175.057 74.032 L 175.167 73.041 L 162.216 73.041 Z M 178.81 80.382 L 178.81 87.723 L 181.348 87.723 L 181.459 82.731 L 181.569 77.739 L 185.616 82.731 C 189.038 86.915 189.81 87.723 190.693 87.723 L 191.687 87.723 L 191.687 73.041 L 189.516 73.041 L 189.406 77.96 L 189.295 82.915 L 185.285 77.96 C 181.606 73.408 181.238 73.041 180.06 73.041 L 178.81 73.041 Z M 197.573 80.382 L 197.573 87.723 L 208.611 87.723 L 208.611 85.521 L 200.149 85.521 L 200.149 81.483 L 207.507 81.483 L 207.507 79.281 L 200.149 79.281 L 200.149 75.243 L 208.243 75.243 L 208.243 73.041 L 197.573 73.041 Z M 213.026 80.382 L 213.026 87.723 L 215.602 87.723 L 215.602 83.318 L 219.538 83.318 L 221.084 85.521 C 222.555 87.576 222.739 87.723 224.101 87.723 C 224.873 87.723 225.535 87.649 225.535 87.539 C 225.535 87.466 224.8 86.328 223.88 85.043 L 222.261 82.694 L 223.218 82.181 C 225.903 80.749 225.719 75.5 222.886 73.775 C 221.856 73.151 221.047 73.041 217.368 73.041 L 213.026 73.041 Z M 221.672 75.978 C 222.702 77.042 222.739 78.694 221.783 79.831 C 221.01 80.712 220.569 80.859 218.251 81.043 L 215.602 81.226 L 215.602 75.17 L 218.361 75.317 C 220.164 75.39 221.304 75.647 221.672 75.978 Z\" fill=\"rgb(0,0,0)\"></path></svg>',svgContentId:10360800936,withExternalLayout:true}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:153,intrinsicWidth:211,pixelHeight:153,pixelWidth:211,src:\"https://framerusercontent.com/images/iMYoBIo8DOOl168DaKGnSeLPw.png\"},className:\"framer-9zhfjf\",\"data-framer-name\":\"Frame 1\"}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1scerul\",\"data-framer-name\":\"Everest-Logo\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 216 102\"><path d=\"M 11.146 66.562 C 11.077 61.437 12.019 56.348 13.917 51.588 C 15.715 47.166 18.105 43.009 21.02 39.231 C 23.861 35.485 26.803 31.965 29.845 28.671 C 32.889 25.43 35.606 22.262 37.996 19.164 C 40.17 16.405 41.796 13.253 42.784 9.881 C 43.63 6.733 43.281 3.438 41.736 -0.004 L 11.893 29.798 C 8.562 33.279 5.854 37.307 3.887 41.707 C 1.331 47.194 0.005 53.173 0.001 59.227 C -0.007 82.771 19.038 101.871 42.556 101.905 C 44.585 101.855 46.609 101.68 48.616 101.38 C 42.184 100.633 36.624 99.011 31.935 96.514 C 27.553 94.255 23.605 91.238 20.271 87.603 C 17.419 84.413 15.119 80.769 13.465 76.821 C 12.068 73.573 11.281 70.095 11.144 66.562\" fill=\"rgb(179,209,56)\"></path><path d=\"M 81.224 41.776 C 79.22 37.399 76.516 33.379 73.22 29.873 L 46.967 3.591 C 48.345 6.638 48.787 10.026 48.24 13.325 C 47.614 16.79 46.426 20.129 44.721 23.21 C 42.905 26.625 40.883 29.927 38.666 33.098 C 36.376 36.39 34.183 39.683 32.087 42.977 C 30.11 46.043 28.455 49.305 27.149 52.712 C 25.808 56.376 25.224 60.274 25.432 64.17 C 25.673 67.527 26.482 70.818 27.823 73.904 C 28.949 76.542 30.547 78.952 32.539 81.015 C 34.332 82.909 36.102 84.132 37.85 84.683 C 36.95 84.132 35.952 82.66 34.858 80.265 C 33.567 77.403 32.662 74.382 32.165 71.282 C 31.461 67.501 31.385 63.629 31.938 59.823 C 32.495 55.621 34.003 51.602 36.348 48.073 C 38.739 44.276 42.453 40.929 47.491 38.033 C 44.995 40.333 43.174 43.429 42.027 47.322 C 40.847 51.532 40.367 55.907 40.607 60.273 C 40.778 65.161 41.633 70.002 43.149 74.652 C 44.67 79.387 46.917 83.857 49.81 87.901 C 52.709 91.907 56.4 95.272 60.655 97.787 C 70.298 93.231 77.88 85.215 81.896 75.326 C 84.004 70.249 85.071 64.799 85.034 59.301 C 85.032 53.253 83.733 47.277 81.222 41.776\" fill=\"rgb(99,191,102)\"></path><path d=\"M 104.503 13.53 C 104.48 13.35 104.523 13.167 104.623 13.016 C 105.671 13.055 106.871 13.074 108.222 13.074 C 109.129 13.074 110.7 13.034 112.938 12.953 C 115.175 12.873 116.858 12.833 117.987 12.833 C 118.068 13.416 118.224 14.187 118.456 15.148 C 118.688 16.108 118.824 16.709 118.863 16.949 C 118.708 17.067 118.514 17.121 118.32 17.1 C 118.057 17.1 117.917 17.03 117.896 16.888 C 117.594 15.778 117.171 15.067 116.627 14.754 C 115.933 14.409 115.163 14.249 114.389 14.288 L 112.363 14.288 C 110.629 14.288 109.742 14.419 109.702 14.681 C 109.576 15.522 109.525 16.374 109.55 17.224 L 109.55 22.068 C 109.55 22.188 109.984 22.249 110.851 22.249 L 113.678 22.249 C 113.949 22.246 114.219 22.205 114.479 22.128 C 114.762 22.047 114.945 21.997 115.024 21.977 C 115.104 21.956 115.21 21.826 115.342 21.584 C 115.441 21.418 115.517 21.24 115.568 21.053 C 115.588 20.943 115.659 20.655 115.78 20.191 C 115.8 20.05 115.951 19.979 116.234 19.979 C 116.418 19.961 116.602 20.015 116.747 20.131 L 116.747 25.851 C 116.606 25.95 116.434 25.993 116.263 25.973 C 116.001 25.973 115.84 25.892 115.779 25.73 C 115.638 25.186 115.517 24.778 115.416 24.506 C 115.365 24.334 115.289 24.171 115.189 24.022 C 115.11 23.949 115.024 23.883 114.932 23.825 C 114.671 23.664 113.603 23.583 111.73 23.583 C 110.279 23.583 109.553 23.674 109.553 23.855 L 109.553 28.547 C 109.509 29.473 109.601 30.401 109.825 31.301 C 109.885 31.503 110.571 31.604 111.881 31.604 L 113.332 31.604 C 115.207 31.604 116.477 31.432 117.142 31.09 C 117.558 30.813 117.904 30.445 118.155 30.014 C 118.554 29.404 118.854 28.735 119.047 28.033 C 119.088 27.911 119.229 27.851 119.471 27.851 C 119.737 27.817 120.006 27.882 120.228 28.033 C 120.127 28.295 119.971 28.714 119.759 29.289 C 119.547 29.864 119.381 30.328 119.261 30.682 C 119.139 31.035 119.008 31.443 118.867 31.906 C 118.747 32.281 118.656 32.666 118.596 33.056 C 117.567 33.056 115.945 33.037 113.727 32.998 C 111.51 32.959 109.696 32.94 108.285 32.94 L 104.626 33.031 C 104.545 32.883 104.513 32.713 104.535 32.546 C 104.535 32.283 104.565 32.152 104.626 32.153 C 105.021 32.13 105.412 32.058 105.79 31.941 C 106.304 31.8 106.611 31.638 106.712 31.456 C 106.853 31.214 106.923 30.265 106.923 28.611 L 106.923 17.162 C 106.952 16.29 106.88 15.417 106.71 14.562 C 106.649 14.399 106.352 14.248 105.818 14.107 C 105.43 13.99 105.029 13.919 104.624 13.895 C 104.543 13.895 104.503 13.773 104.503 13.532\" fill=\"rgb(0, 0, 0)\"></path><path d=\"M 120.829 20.281 C 120.808 20.11 120.851 19.938 120.949 19.797 C 123.025 19.897 124.073 19.948 124.093 19.948 L 127.117 19.797 C 127.162 19.96 127.167 20.131 127.131 20.296 C 127.102 20.548 127.056 20.675 126.996 20.675 C 126.008 20.675 125.514 20.846 125.514 21.189 C 125.514 21.231 125.524 21.272 125.543 21.309 L 129.176 29.516 L 132.229 22.554 C 132.366 22.269 132.448 21.961 132.471 21.646 C 132.471 20.999 131.745 20.676 130.295 20.676 C 130.213 20.676 130.173 20.55 130.173 20.298 C 130.151 20.122 130.195 19.945 130.295 19.798 C 130.516 19.819 130.929 19.849 131.535 19.889 C 132.14 19.93 132.684 19.949 133.165 19.948 L 136.188 19.797 C 136.231 19.944 136.251 20.097 136.246 20.251 C 136.246 20.533 136.175 20.675 136.034 20.675 C 135.651 20.695 135.273 20.777 134.915 20.916 C 134.507 21.035 134.17 21.322 133.987 21.706 L 129.179 32.572 C 129.106 32.756 128.98 32.915 128.816 33.026 C 128.676 33.161 128.495 33.246 128.302 33.269 C 128.161 33.269 128.069 33.229 128.029 33.147 C 127.687 32.401 126.936 30.666 125.777 27.941 C 124.617 25.216 123.604 22.996 122.738 21.281 C 122.535 20.878 121.94 20.677 120.953 20.676 C 120.873 20.676 120.833 20.545 120.833 20.283\" fill=\"rgb(0, 0, 0)\"></path><path d=\"M 136.917 26.607 C 136.917 24.488 137.481 22.814 138.61 21.583 C 139.685 20.375 141.236 19.7 142.851 19.736 C 143.68 19.719 144.501 19.9 145.246 20.266 C 145.883 20.574 146.429 21.043 146.828 21.629 C 147.177 22.15 147.446 22.722 147.626 23.324 C 147.791 23.879 147.875 24.455 147.877 25.034 C 147.877 25.437 147.819 25.684 147.703 25.775 C 147.501 25.887 147.27 25.934 147.041 25.911 L 139.487 25.911 C 139.325 25.911 139.245 25.962 139.245 26.062 C 139.242 27.327 139.646 28.558 140.397 29.575 C 141.163 30.644 142.419 31.248 143.731 31.179 C 144.721 31.189 145.695 30.933 146.552 30.437 C 146.738 30.326 146.901 30.221 147.039 30.119 L 147.246 29.968 C 147.362 29.968 147.42 30.099 147.42 30.362 C 147.41 30.556 147.349 30.744 147.242 30.906 C 146.776 31.535 146.18 32.056 145.496 32.435 C 144.733 32.887 143.863 33.122 142.977 33.116 C 141.347 33.129 139.79 32.439 138.704 31.223 C 137.522 29.981 136.881 28.321 136.921 26.606 M 139.308 24.43 C 139.308 24.572 139.366 24.641 139.489 24.641 L 145.398 24.641 C 145.498 24.641 145.549 24.542 145.549 24.34 C 145.494 23.535 145.21 22.763 144.73 22.115 C 144.282 21.333 143.448 20.853 142.548 20.858 C 141.557 20.825 140.63 21.343 140.139 22.205 C 139.67 22.86 139.383 23.628 139.308 24.43\" fill=\"rgb(0, 0, 0)\"></path><path d=\"M 149.798 32.524 C 149.798 32.272 149.838 32.146 149.918 32.146 C 150.282 32.125 150.643 32.058 150.991 31.948 C 151.465 31.817 151.722 31.681 151.762 31.54 C 151.916 30.845 151.987 30.134 151.974 29.421 L 151.974 23.7 C 152.034 23.123 151.884 22.543 151.551 22.068 C 151.358 21.832 151.101 21.659 150.81 21.569 C 150.576 21.488 150.331 21.442 150.084 21.433 C 149.893 21.433 149.797 21.414 149.797 21.378 C 149.797 20.948 149.856 20.724 149.978 20.705 C 151.386 20.506 152.78 20.214 154.151 19.831 C 154.182 19.83 154.212 19.824 154.242 19.815 L 154.3 19.798 C 154.381 19.798 154.431 19.884 154.451 20.055 C 154.472 20.18 154.472 20.308 154.451 20.434 L 154.27 21.949 C 154.678 21.358 155.184 20.841 155.766 20.42 C 156.302 19.983 156.966 19.733 157.657 19.709 C 158.846 19.709 159.632 20.031 160.015 20.675 C 160.055 21.189 159.939 21.704 159.683 22.153 C 159.507 22.435 159.2 22.609 158.868 22.615 C 158.475 22.601 158.11 22.412 157.87 22.101 C 157.554 21.753 157.099 21.564 156.63 21.587 C 155.978 21.602 155.372 21.928 155 22.464 C 154.562 22.981 154.316 23.633 154.304 24.311 L 154.304 28.851 C 154.278 29.756 154.359 30.66 154.546 31.545 C 154.585 31.687 154.852 31.823 155.348 31.953 C 155.687 32.057 156.038 32.124 156.392 32.15 C 156.45 32.15 156.491 32.271 156.512 32.513 C 156.538 32.685 156.528 32.86 156.482 33.028 C 154.465 32.928 153.377 32.877 153.216 32.877 C 153.095 32.877 151.996 32.927 149.92 33.028 C 149.821 32.882 149.778 32.704 149.8 32.529\" fill=\"rgb(0, 0, 0)\"></path><path d=\"M 161.409 26.607 C 161.409 24.488 161.974 22.814 163.103 21.583 C 164.178 20.375 165.728 19.7 167.344 19.736 C 168.173 19.719 168.994 19.9 169.738 20.266 C 170.376 20.574 170.921 21.043 171.321 21.629 C 171.67 22.15 171.939 22.722 172.118 23.324 C 172.283 23.879 172.368 24.455 172.37 25.034 C 172.37 25.437 172.312 25.684 172.195 25.775 C 171.994 25.887 171.763 25.934 171.534 25.911 L 163.98 25.911 C 163.818 25.911 163.737 25.962 163.737 26.062 C 163.735 27.327 164.139 28.558 164.89 29.575 C 165.655 30.644 166.912 31.248 168.224 31.179 C 169.213 31.189 170.187 30.933 171.044 30.437 C 171.23 30.326 171.393 30.221 171.531 30.119 L 171.738 29.968 C 171.854 29.968 171.913 30.099 171.913 30.362 C 171.903 30.556 171.841 30.744 171.735 30.906 C 171.268 31.535 170.673 32.056 169.988 32.435 C 169.226 32.887 168.355 33.122 167.469 33.116 C 165.84 33.129 164.283 32.439 163.196 31.223 C 162.015 29.981 161.373 28.321 161.413 26.606 M 163.798 24.43 C 163.798 24.572 163.856 24.641 163.98 24.641 L 169.89 24.641 C 169.991 24.641 170.041 24.542 170.041 24.34 C 169.986 23.535 169.702 22.763 169.223 22.115 C 168.775 21.333 167.941 20.853 167.04 20.858 C 166.05 20.825 165.122 21.343 164.631 22.205 C 164.161 22.86 163.874 23.628 163.798 24.43\" fill=\"rgb(0, 0, 0)\"></path><path d=\"M 174.531 29.543 C 174.633 29.45 174.759 29.387 174.894 29.362 C 175.197 29.362 175.358 29.422 175.378 29.543 C 175.556 30.24 175.953 30.862 176.512 31.314 C 177.067 31.856 177.808 32.165 178.584 32.177 C 179.16 32.2 179.724 32.011 180.171 31.647 C 180.599 31.258 180.827 30.695 180.79 30.118 C 180.793 29.79 180.726 29.465 180.593 29.165 C 180.449 28.855 180.231 28.584 179.959 28.377 C 179.7 28.168 179.427 27.976 179.144 27.802 C 178.891 27.651 178.533 27.454 178.07 27.212 C 177.606 26.969 177.263 26.778 177.042 26.637 C 175.469 25.729 174.683 24.649 174.683 23.398 C 174.663 22.349 175.154 21.356 175.999 20.735 C 176.873 20.049 177.957 19.686 179.067 19.706 C 179.631 19.717 180.192 19.773 180.746 19.873 C 181.421 19.983 181.889 20.059 182.152 20.099 C 182.364 21.116 182.485 22.15 182.515 23.188 C 182.515 23.289 182.383 23.339 182.122 23.339 C 181.839 23.339 181.689 23.268 181.668 23.127 C 181.545 22.52 181.245 21.962 180.807 21.524 C 180.401 21.05 179.812 20.774 179.189 20.766 C 177.738 20.766 177.012 21.362 177.012 22.552 C 177.007 22.825 177.047 23.096 177.132 23.355 C 177.23 23.613 177.391 23.842 177.601 24.021 C 177.834 24.233 178.01 24.384 178.13 24.475 C 178.388 24.65 178.656 24.812 178.931 24.96 C 179.344 25.193 179.6 25.339 179.697 25.398 C 179.775 25.437 180.004 25.573 180.384 25.806 C 180.765 26.039 181.033 26.205 181.189 26.305 C 181.344 26.406 181.573 26.578 181.876 26.82 C 182.123 27.007 182.345 27.226 182.535 27.471 C 182.691 27.699 182.823 27.942 182.929 28.197 C 183.054 28.479 183.119 28.783 183.12 29.09 C 183.139 30.238 182.642 31.333 181.765 32.073 C 180.893 32.858 179.757 33.285 178.584 33.268 C 178.195 33.271 177.806 33.245 177.42 33.193 C 176.997 33.128 176.578 33.042 176.165 32.936 C 175.681 32.815 175.308 32.734 175.047 32.693 C 174.884 32.2 174.767 31.692 174.697 31.178 C 174.601 30.639 174.545 30.093 174.531 29.546\" fill=\"rgb(0, 0, 0)\"></path><path d=\"M 184.723 21.029 C 184.723 20.919 184.733 20.855 184.753 20.836 C 185.498 20.435 186.148 19.878 186.658 19.204 C 186.895 18.915 187.112 18.611 187.308 18.294 C 187.52 17.954 187.696 17.661 187.837 17.415 C 187.918 17.287 187.989 17.153 188.049 17.014 C 188.654 17.014 188.956 17.067 188.956 17.172 L 188.956 20.283 C 189.48 20.283 190.276 20.288 191.343 20.297 C 192.411 20.306 192.975 20.311 193.037 20.31 C 193.105 20.302 193.173 20.326 193.221 20.375 C 193.268 20.425 193.29 20.494 193.279 20.561 C 193.268 20.933 193.164 21.295 192.976 21.616 L 188.956 21.616 L 188.956 29.118 C 188.92 29.825 189.14 30.521 189.576 31.079 C 189.973 31.561 190.57 31.832 191.194 31.814 C 191.86 31.795 192.509 31.593 193.068 31.231 C 193.129 31.189 193.219 31.276 193.34 31.49 C 193.407 31.594 193.458 31.707 193.491 31.826 C 193.491 31.993 193.028 32.289 192.1 32.714 C 191.494 32.997 190.834 33.144 190.165 33.145 C 189.223 33.171 188.311 32.81 187.641 32.146 C 186.926 31.378 186.56 30.348 186.627 29.3 L 186.627 21.613 L 184.873 21.613 C 184.773 21.613 184.723 21.419 184.723 21.03\" fill=\"rgb(0, 0, 0)\"></path><path d=\"M 104.307 41.507 C 104.284 41.328 104.325 41.146 104.423 40.995 L 108.052 41.053 C 108.657 41.053 109.372 41.034 110.2 40.995 C 111.027 40.956 111.732 40.936 112.316 40.936 C 112.981 40.939 113.642 41.041 114.277 41.238 C 114.956 41.45 115.601 41.756 116.194 42.146 C 116.841 42.581 117.364 43.175 117.714 43.872 C 118.416 45.27 118.496 46.9 117.934 48.36 C 117.672 49.062 117.31 49.722 116.858 50.319 C 116.351 50.979 115.701 51.515 114.955 51.885 C 114.128 52.303 113.212 52.515 112.286 52.502 C 111.157 52.502 110.381 52.224 109.957 51.669 C 109.825 51.467 109.791 51.216 109.866 50.986 C 109.886 50.907 109.916 50.878 109.957 50.897 C 110.607 51.127 111.293 51.24 111.982 51.231 C 112.998 51.228 113.956 50.759 114.583 49.959 C 115.306 49.119 115.694 48.041 115.672 46.932 C 115.737 45.725 115.407 44.53 114.734 43.527 C 114.033 42.654 112.947 42.184 111.832 42.271 C 111.12 42.25 110.408 42.321 109.715 42.483 C 109.607 42.511 109.524 42.599 109.503 42.709 C 109.44 43.013 109.405 43.322 109.397 43.632 C 109.367 44.117 109.352 44.844 109.352 45.813 L 109.352 56.615 C 109.3 57.5 109.381 58.388 109.594 59.248 C 109.695 59.511 110.053 59.723 110.668 59.884 C 111.096 60.014 111.537 60.095 111.983 60.126 C 112.063 60.126 112.105 60.268 112.105 60.55 C 112.108 60.704 112.088 60.857 112.043 61.004 C 110.028 60.904 108.718 60.853 108.113 60.853 L 104.424 61.004 C 104.34 60.836 104.309 60.646 104.333 60.46 C 104.333 60.197 104.364 60.066 104.424 60.066 C 104.823 60.049 105.219 59.988 105.604 59.884 C 106.109 59.763 106.411 59.612 106.511 59.43 C 106.652 59.188 106.723 58.24 106.723 56.586 L 106.723 45.139 C 106.752 44.267 106.681 43.393 106.511 42.537 C 106.451 42.375 106.154 42.223 105.619 42.082 C 105.23 41.965 104.829 41.894 104.423 41.869 C 104.343 41.869 104.303 41.747 104.303 41.506\" fill=\"rgb(0, 0, 0)\"></path><path d=\"M 120.694 54.584 C 120.694 52.465 121.258 50.791 122.388 49.56 C 123.463 48.352 125.013 47.677 126.628 47.713 C 127.457 47.696 128.279 47.877 129.023 48.243 C 129.66 48.551 130.206 49.021 130.604 49.606 C 130.954 50.128 131.222 50.699 131.402 51.301 C 131.567 51.856 131.651 52.432 131.653 53.011 C 131.653 53.415 131.595 53.662 131.479 53.752 C 131.277 53.864 131.047 53.911 130.817 53.889 L 123.264 53.889 C 123.103 53.889 123.022 53.939 123.022 54.04 C 123.02 55.304 123.424 56.535 124.174 57.552 C 124.94 58.621 126.197 59.225 127.509 59.156 C 128.498 59.166 129.472 58.91 130.329 58.415 C 130.515 58.303 130.678 58.198 130.816 58.096 L 131.023 57.945 C 131.139 57.945 131.198 58.076 131.198 58.339 C 131.188 58.533 131.126 58.721 131.019 58.883 C 130.553 59.512 129.958 60.033 129.273 60.412 C 128.511 60.864 127.64 61.099 126.754 61.093 C 125.124 61.106 123.568 60.417 122.481 59.2 C 121.3 57.958 120.658 56.298 120.698 54.583 M 123.085 52.405 C 123.085 52.546 123.143 52.616 123.267 52.616 L 129.177 52.616 C 129.278 52.616 129.329 52.517 129.329 52.314 C 129.273 51.51 128.989 50.738 128.51 50.09 C 128.062 49.307 127.228 48.827 126.327 48.833 C 125.337 48.799 124.409 49.318 123.918 50.18 C 123.447 50.835 123.159 51.604 123.082 52.407\" fill=\"rgb(0, 0, 0)\"></path><path d=\"M 133.696 54.372 C 133.655 52.599 134.334 50.884 135.577 49.619 C 136.821 48.374 138.511 47.677 140.27 47.683 C 142.03 47.688 143.714 48.396 144.951 49.65 C 146.216 50.891 146.918 52.597 146.893 54.371 C 146.923 56.151 146.237 57.869 144.988 59.137 C 143.79 60.429 142.099 61.15 140.338 61.119 C 138.565 61.144 136.863 60.425 135.643 59.137 C 134.371 57.881 133.667 56.159 133.694 54.371 M 136.325 53.925 C 136.284 55.422 136.734 56.891 137.606 58.107 C 138.255 59.152 139.381 59.805 140.609 59.849 C 141.683 59.846 142.678 59.282 143.234 58.361 C 143.937 57.305 144.296 56.056 144.26 54.787 C 144.3 53.306 143.843 51.855 142.962 50.664 C 142.297 49.633 141.17 48.994 139.945 48.952 C 138.884 48.949 137.896 49.495 137.334 50.396 C 136.637 51.437 136.283 52.671 136.323 53.925\" fill=\"rgb(0, 0, 0)\"></path><path d=\"M 148.512 67.254 C 148.512 67 148.552 66.874 148.632 66.874 C 148.997 66.853 149.358 66.787 149.707 66.677 C 150.18 66.546 150.437 66.41 150.477 66.269 C 150.63 65.574 150.701 64.862 150.689 64.15 L 150.689 51.649 C 150.749 51.072 150.599 50.493 150.266 50.017 C 150.074 49.781 149.816 49.607 149.525 49.518 C 149.291 49.437 149.046 49.392 148.799 49.381 C 148.608 49.381 148.512 49.355 148.512 49.303 C 148.512 48.675 148.572 48.348 148.694 48.322 C 150.828 48.098 152.219 47.916 152.866 47.777 C 152.897 47.776 152.927 47.771 152.957 47.763 L 153.015 47.747 C 153.074 47.747 153.106 47.785 153.106 47.864 C 153.102 47.976 153.092 48.089 153.075 48.2 C 153.063 48.283 153.052 48.366 153.045 48.45 L 153.045 48.617 C 153.492 48.376 153.963 48.182 154.451 48.04 C 154.991 47.847 155.557 47.739 156.13 47.719 C 157.869 47.63 159.551 48.35 160.688 49.671 C 161.72 50.814 162.303 52.293 162.329 53.834 C 162.341 55.74 161.61 57.575 160.291 58.95 C 159.146 60.323 157.461 61.13 155.674 61.159 C 155.372 61.159 155.105 61.149 154.873 61.129 C 154.663 61.112 154.456 61.077 154.253 61.023 C 154.071 60.972 153.93 60.927 153.829 60.886 C 153.729 60.846 153.596 60.79 153.436 60.72 C 153.276 60.649 153.174 60.603 153.134 60.583 C 153.049 60.697 153.007 60.836 153.013 60.977 L 153.013 63.58 C 152.987 64.485 153.068 65.389 153.255 66.274 C 153.293 66.416 153.556 66.552 154.042 66.682 C 154.376 66.787 154.72 66.853 155.069 66.879 C 155.13 66.879 155.17 67.006 155.19 67.259 C 155.217 67.425 155.207 67.596 155.16 67.758 C 153.144 67.656 152.066 67.606 151.925 67.607 C 151.804 67.607 150.705 67.657 148.629 67.758 C 148.53 67.611 148.487 67.434 148.508 67.259 M 153.018 57.944 C 153.04 58.528 153.375 59.055 153.894 59.321 C 154.461 59.69 155.123 59.885 155.799 59.882 C 156.966 59.896 158.05 59.284 158.642 58.278 C 159.347 57.21 159.716 55.955 159.7 54.675 C 159.781 53.215 159.3 51.78 158.355 50.665 C 157.557 49.732 156.391 49.195 155.164 49.196 C 154.607 49.174 154.06 49.351 153.622 49.697 C 153.207 50.055 152.984 50.587 153.018 51.135 Z\" fill=\"rgb(0, 0, 0)\"></path><path d=\"M 163.903 60.503 C 163.903 60.251 163.943 60.125 164.023 60.125 C 164.388 60.104 164.749 60.038 165.097 59.928 C 165.571 59.797 165.828 59.661 165.868 59.52 C 166.021 58.824 166.092 58.113 166.08 57.401 L 166.08 44.295 C 166.083 43.645 166.022 42.996 165.898 42.358 C 165.798 42.035 165.284 41.873 164.357 41.873 L 164.084 41.873 C 163.964 41.873 163.903 41.756 163.903 41.516 C 163.903 41.169 163.964 40.995 164.084 40.995 C 164.69 40.938 165.25 40.862 165.763 40.767 C 166.172 40.696 166.576 40.601 166.973 40.479 C 167.264 40.383 167.512 40.293 167.714 40.208 C 167.869 40.144 168.02 40.072 168.168 39.993 L 168.288 39.906 L 168.347 39.906 C 168.449 39.92 168.539 39.982 168.589 40.073 C 168.661 40.167 168.712 40.275 168.74 40.39 C 168.489 41.245 168.377 42.134 168.407 43.025 L 168.407 56.827 C 168.381 57.731 168.462 58.635 168.649 59.52 C 168.688 59.662 168.95 59.798 169.435 59.928 C 169.769 60.033 170.114 60.099 170.463 60.126 C 170.521 60.126 170.564 60.246 170.585 60.488 C 170.593 60.559 170.598 60.63 170.599 60.7 C 170.604 60.803 170.589 60.906 170.554 61.004 C 168.538 60.903 167.459 60.852 167.318 60.852 C 167.198 60.852 166.099 60.903 164.023 61.004 C 163.924 60.857 163.881 60.68 163.902 60.504\" fill=\"rgb(0, 0, 0)\"></path><path d=\"M 172.158 54.584 C 172.158 52.465 172.723 50.791 173.852 49.56 C 174.927 48.352 176.478 47.677 178.093 47.713 C 178.922 47.696 179.744 47.878 180.488 48.243 C 181.125 48.551 181.67 49.021 182.069 49.606 C 182.418 50.128 182.687 50.699 182.867 51.301 C 183.032 51.856 183.117 52.432 183.118 53.011 C 183.118 53.415 183.06 53.662 182.944 53.752 C 182.743 53.864 182.512 53.911 182.283 53.889 L 174.726 53.889 C 174.564 53.889 174.484 53.939 174.484 54.04 C 174.481 55.304 174.885 56.535 175.635 57.552 C 176.401 58.621 177.658 59.225 178.97 59.156 C 179.702 59.156 180.429 59.018 181.11 58.748 C 181.344 58.653 181.571 58.541 181.789 58.415 C 181.977 58.304 182.139 58.198 182.277 58.097 L 182.484 57.945 C 182.6 57.945 182.659 58.077 182.659 58.339 C 182.649 58.533 182.589 58.721 182.484 58.884 C 182.017 59.512 181.422 60.034 180.737 60.413 C 179.975 60.864 179.104 61.1 178.219 61.093 C 176.589 61.107 175.033 60.417 173.947 59.201 C 172.765 57.959 172.123 56.299 172.162 54.584 M 174.55 52.405 C 174.55 52.547 174.608 52.617 174.731 52.617 L 180.642 52.617 C 180.743 52.617 180.793 52.517 180.793 52.315 C 180.738 51.511 180.455 50.739 179.977 50.09 C 179.529 49.308 178.695 48.828 177.795 48.834 C 176.804 48.8 175.877 49.319 175.386 50.181 C 174.914 50.835 174.624 51.603 174.547 52.407\" fill=\"rgb(0, 0, 0)\"></path><path d=\"M 104.207 83.333 C 104.207 83.213 104.369 83.152 104.691 83.152 C 104.972 83.12 105.252 83.22 105.448 83.423 C 106.133 86.32 107.806 87.768 110.467 87.768 C 111.406 87.793 112.321 87.471 113.038 86.863 C 113.763 86.215 114.152 85.27 114.096 84.299 C 114.1 83.919 114.038 83.542 113.914 83.183 C 113.816 82.89 113.689 82.607 113.536 82.338 C 113.35 82.059 113.113 81.819 112.837 81.629 C 112.504 81.377 112.247 81.191 112.064 81.071 C 111.881 80.95 111.548 80.759 111.064 80.498 C 110.579 80.236 110.247 80.055 110.069 79.955 C 109.493 79.612 109.091 79.371 108.863 79.23 C 108.635 79.089 108.258 78.843 107.732 78.491 C 107.312 78.228 106.926 77.914 106.584 77.556 C 106.347 77.284 106.069 76.952 105.751 76.56 C 105.446 76.192 105.218 75.766 105.081 75.308 C 104.951 74.857 104.886 74.39 104.888 73.921 C 104.853 72.438 105.501 71.021 106.646 70.08 C 107.777 69.093 109.232 68.558 110.732 68.576 C 111.152 68.574 111.571 68.6 111.988 68.654 C 112.314 68.693 112.638 68.75 112.958 68.825 C 113.21 68.887 113.573 68.984 114.048 69.116 C 114.523 69.249 114.941 69.357 115.304 69.442 C 115.578 70.866 115.7 72.316 115.667 73.767 C 115.667 73.908 115.566 73.979 115.364 73.979 C 114.881 73.979 114.618 73.878 114.577 73.677 C 114.433 72.702 113.982 71.798 113.291 71.097 C 112.596 70.292 111.581 69.834 110.518 69.846 C 109.306 69.846 108.452 70.147 107.956 70.751 C 107.451 71.383 107.188 72.175 107.213 72.984 C 107.212 73.361 107.284 73.734 107.425 74.084 C 107.542 74.387 107.684 74.679 107.85 74.958 C 108.063 75.265 108.323 75.535 108.622 75.759 C 108.996 76.06 109.269 76.272 109.441 76.392 C 109.613 76.512 109.956 76.734 110.471 77.055 C 110.987 77.377 111.314 77.58 111.455 77.66 C 111.557 77.72 111.91 77.936 112.514 78.308 C 113.119 78.68 113.534 78.941 113.759 79.093 C 113.981 79.244 114.329 79.516 114.803 79.909 C 115.19 80.21 115.536 80.56 115.832 80.95 C 116.073 81.305 116.277 81.684 116.439 82.081 C 116.628 82.524 116.726 83.001 116.726 83.483 C 116.756 85.037 116.056 86.515 114.836 87.475 C 113.594 88.511 112.022 89.065 110.406 89.038 C 109.89 89.036 109.375 89 108.864 88.931 C 108.321 88.858 107.867 88.785 107.504 88.713 C 107.141 88.641 106.682 88.538 106.128 88.403 C 105.574 88.268 105.186 88.18 104.963 88.139 C 104.59 86.558 104.337 84.952 104.206 83.333\" fill=\"rgb(0, 0, 0)\"></path><path d=\"M 119.009 82.199 C 118.968 80.425 119.646 78.71 120.889 77.445 C 122.133 76.2 123.823 75.503 125.582 75.509 C 127.342 75.515 129.026 76.222 130.263 77.476 C 131.528 78.717 132.23 80.423 132.205 82.197 C 132.235 83.977 131.549 85.695 130.3 86.963 C 129.102 88.255 127.411 88.976 125.65 88.945 C 123.877 88.97 122.175 88.252 120.955 86.963 C 119.683 85.708 118.979 83.985 119.007 82.197 M 121.637 81.751 C 121.596 83.248 122.046 84.717 122.918 85.934 C 123.567 86.978 124.693 87.631 125.922 87.675 C 126.996 87.672 127.991 87.108 128.547 86.187 C 129.25 85.131 129.609 83.882 129.574 82.614 C 129.614 81.133 129.157 79.681 128.275 78.49 C 127.61 77.459 126.483 76.82 125.258 76.778 C 124.197 76.775 123.209 77.321 122.647 78.222 C 121.95 79.263 121.596 80.498 121.636 81.751\" fill=\"rgb(0, 0, 0)\"></path><path d=\"M 133.763 88.329 C 133.763 88.077 133.804 87.951 133.884 87.951 C 134.249 87.93 134.61 87.864 134.958 87.754 C 135.432 87.623 135.689 87.487 135.729 87.346 C 135.882 86.65 135.953 85.939 135.94 85.227 L 135.94 72.122 C 135.944 71.471 135.883 70.822 135.759 70.184 C 135.659 69.861 135.145 69.7 134.218 69.699 L 133.945 69.699 C 133.825 69.699 133.764 69.583 133.764 69.342 C 133.764 68.995 133.824 68.821 133.945 68.821 C 134.551 68.764 135.11 68.688 135.624 68.593 C 136.033 68.523 136.437 68.427 136.834 68.306 C 137.125 68.209 137.372 68.119 137.575 68.034 C 137.73 67.97 137.881 67.899 138.029 67.819 L 138.149 67.732 L 138.207 67.732 C 138.31 67.746 138.4 67.808 138.45 67.899 C 138.522 67.993 138.573 68.101 138.6 68.216 C 138.35 69.071 138.238 69.961 138.268 70.851 L 138.268 84.653 C 138.242 85.557 138.323 86.461 138.51 87.346 C 138.549 87.488 138.811 87.624 139.296 87.754 C 139.63 87.859 139.975 87.925 140.324 87.952 C 140.382 87.952 140.424 88.073 140.445 88.315 C 140.454 88.385 140.459 88.456 140.46 88.527 C 140.465 88.63 140.449 88.733 140.415 88.83 C 138.399 88.729 137.32 88.679 137.179 88.678 C 137.058 88.678 135.96 88.729 133.883 88.83 C 133.784 88.683 133.742 88.506 133.763 88.33\" fill=\"rgb(0, 0, 0)\"></path><path d=\"M 141.807 77.23 C 141.807 76.71 141.865 76.439 141.988 76.414 C 143.392 76.233 144.785 75.971 146.16 75.628 C 146.191 75.626 146.221 75.621 146.251 75.612 L 146.309 75.598 C 146.39 75.598 146.44 75.683 146.461 75.855 C 146.481 75.98 146.481 76.108 146.461 76.233 C 146.358 76.975 146.297 77.723 146.28 78.472 L 146.28 82.56 C 146.28 84.114 146.511 85.259 146.974 85.995 C 147.468 86.751 148.336 87.176 149.236 87.102 C 149.876 87.087 150.488 86.836 150.953 86.396 C 151.496 85.925 151.768 85.517 151.768 85.178 L 151.768 79.549 C 151.828 78.975 151.68 78.399 151.351 77.925 C 151.162 77.691 150.908 77.518 150.621 77.428 C 150.39 77.348 150.149 77.303 149.905 77.293 C 149.717 77.293 149.622 77.271 149.622 77.227 C 149.622 76.707 149.674 76.436 149.779 76.411 C 151.192 76.231 152.593 75.969 153.975 75.625 C 154.006 75.623 154.037 75.618 154.067 75.609 L 154.125 75.595 C 154.205 75.595 154.257 75.68 154.276 75.852 C 154.297 75.977 154.297 76.105 154.276 76.23 C 154.175 76.952 154.114 77.68 154.095 78.409 L 154.095 84.464 C 154.086 85.236 154.155 86.007 154.303 86.764 C 154.356 86.919 154.476 87.042 154.63 87.097 C 154.81 87.178 155.001 87.229 155.197 87.248 C 155.395 87.268 155.594 87.279 155.792 87.278 L 156.061 87.304 C 156.119 87.32 156.151 87.412 156.151 87.577 C 156.14 87.66 156.115 87.74 156.075 87.813 C 156.025 87.922 155.969 87.975 155.908 87.975 C 155.569 88.004 155.231 88.052 154.896 88.118 C 154.523 88.189 154.176 88.273 153.854 88.368 C 153.532 88.464 153.23 88.559 152.948 88.653 C 152.666 88.748 152.444 88.831 152.283 88.903 L 152.01 88.974 C 151.847 88.974 151.766 88.812 151.766 88.489 L 151.766 86.951 L 151.708 86.8 C 150.381 88.233 149.064 88.948 147.758 88.948 C 147.071 88.967 146.396 88.772 145.824 88.39 C 145.292 88.026 144.879 87.512 144.637 86.913 C 144.396 86.342 144.217 85.745 144.105 85.135 C 144.001 84.543 143.95 83.943 143.952 83.342 L 143.952 79.549 C 144.012 78.975 143.864 78.398 143.534 77.925 C 143.345 77.69 143.091 77.517 142.803 77.428 C 142.573 77.348 142.332 77.303 142.088 77.293 C 141.899 77.293 141.805 77.271 141.805 77.227\" fill=\"rgb(0, 0, 0)\"></path><path d=\"M 157.046 76.833 C 157.046 76.722 157.056 76.658 157.076 76.639 C 157.821 76.239 158.471 75.682 158.981 75.007 C 159.218 74.719 159.436 74.414 159.632 74.097 C 159.843 73.758 160.02 73.465 160.161 73.218 C 160.242 73.09 160.313 72.956 160.373 72.818 C 160.977 72.818 161.28 72.869 161.28 72.975 L 161.28 76.086 C 161.804 76.086 162.599 76.091 163.667 76.1 C 164.736 76.109 165.3 76.114 165.361 76.114 C 165.429 76.105 165.497 76.129 165.544 76.179 C 165.592 76.228 165.613 76.297 165.603 76.365 C 165.592 76.736 165.488 77.099 165.3 77.419 L 161.279 77.419 L 161.279 84.921 C 161.242 85.628 161.462 86.324 161.898 86.882 C 162.294 87.364 162.892 87.635 163.516 87.617 C 164.182 87.598 164.83 87.397 165.39 87.034 C 165.45 86.993 165.541 87.079 165.663 87.293 C 165.73 87.397 165.781 87.51 165.813 87.63 C 165.813 87.796 165.35 88.092 164.422 88.517 C 163.816 88.8 163.155 88.947 162.487 88.948 C 161.544 88.974 160.632 88.613 159.962 87.95 C 159.248 87.181 158.881 86.151 158.949 85.104 L 158.949 77.416 L 157.195 77.416 C 157.094 77.416 157.044 77.222 157.044 76.833\" fill=\"rgb(0, 0, 0)\"></path><path d=\"M 166.994 88.329 C 166.994 88.077 167.035 87.951 167.116 87.951 C 167.48 87.93 167.84 87.864 168.188 87.755 C 168.663 87.624 168.92 87.488 168.96 87.347 C 169.112 86.655 169.184 85.948 169.172 85.239 L 169.172 79.551 C 169.232 78.976 169.081 78.398 168.748 77.925 C 168.555 77.691 168.298 77.518 168.007 77.428 C 167.773 77.349 167.528 77.303 167.281 77.294 C 167.089 77.294 166.994 77.271 166.994 77.229 C 166.994 76.708 167.055 76.436 167.176 76.413 C 168.581 76.234 169.974 75.971 171.348 75.626 L 171.406 75.595 L 171.498 75.595 C 171.578 75.595 171.629 75.682 171.648 75.852 C 171.669 75.978 171.669 76.105 171.648 76.231 C 171.554 76.954 171.503 77.682 171.498 78.411 L 171.498 84.647 C 171.472 85.551 171.553 86.455 171.739 87.341 C 171.778 87.482 172.04 87.618 172.526 87.749 C 172.86 87.853 173.205 87.92 173.554 87.946 C 173.614 87.946 173.654 88.067 173.674 88.309 C 173.684 88.379 173.689 88.45 173.69 88.521 C 173.695 88.623 173.679 88.726 173.645 88.823 C 171.629 88.722 170.551 88.672 170.409 88.672 C 170.267 88.672 169.169 88.722 167.114 88.823 C 167.014 88.677 166.971 88.499 166.992 88.324 M 169.034 71.856 C 168.51 71.343 168.422 70.53 168.824 69.916 C 169.227 69.302 170.007 69.059 170.686 69.337 C 171.366 69.614 171.753 70.334 171.612 71.055 C 171.471 71.775 170.84 72.295 170.107 72.295 C 169.704 72.303 169.316 72.144 169.034 71.856\" fill=\"rgb(0, 0, 0)\"></path><path d=\"M 175.28 82.199 C 175.238 80.425 175.916 78.71 177.16 77.445 C 178.404 76.2 180.093 75.503 181.853 75.509 C 183.612 75.515 185.297 76.222 186.533 77.476 C 187.799 78.717 188.501 80.423 188.475 82.197 C 188.506 83.977 187.82 85.695 186.571 86.963 C 185.373 88.255 183.682 88.976 181.921 88.945 C 180.148 88.97 178.446 88.252 177.226 86.963 C 175.954 85.708 175.25 83.985 175.278 82.197 M 177.908 81.751 C 177.867 83.248 178.317 84.717 179.189 85.934 C 179.838 86.978 180.964 87.631 182.192 87.675 C 183.267 87.672 184.262 87.108 184.817 86.187 C 185.521 85.131 185.88 83.882 185.844 82.614 C 185.884 81.133 185.427 79.681 184.546 78.49 C 183.881 77.459 182.754 76.82 181.528 76.778 C 180.467 76.775 179.48 77.321 178.918 78.222 C 178.22 79.263 177.867 80.498 177.907 81.751\" fill=\"rgb(0, 0, 0)\"></path><path d=\"M 190.457 88.329 C 190.457 88.077 190.498 87.95 190.579 87.95 C 190.943 87.929 191.304 87.863 191.652 87.753 C 192.125 87.622 192.383 87.486 192.423 87.345 C 192.576 86.649 192.647 85.938 192.635 85.226 L 192.635 79.505 C 192.695 78.927 192.544 78.348 192.211 77.873 C 192.019 77.637 191.761 77.464 191.471 77.374 C 191.237 77.293 190.993 77.247 190.745 77.237 C 190.553 77.237 190.458 77.217 190.458 77.179 C 190.458 76.713 190.519 76.47 190.639 76.45 C 192.046 76.265 193.439 75.992 194.812 75.634 C 194.843 75.632 194.873 75.627 194.902 75.618 L 194.961 75.602 C 195.042 75.602 195.092 75.692 195.112 75.869 C 195.133 75.999 195.133 76.132 195.112 76.262 C 195.046 76.655 195.006 77.051 194.99 77.449 C 194.99 77.53 195.011 77.57 195.049 77.57 C 195.07 77.57 195.1 77.549 195.14 77.511 C 195.703 76.965 196.34 76.503 197.034 76.138 C 197.726 75.728 198.512 75.5 199.316 75.478 C 200.727 75.478 201.715 75.983 202.28 76.994 C 202.844 78.004 203.126 79.639 203.127 81.898 L 203.127 84.653 C 203.101 85.557 203.182 86.461 203.368 87.346 C 203.407 87.488 203.669 87.624 204.154 87.754 C 204.488 87.859 204.833 87.926 205.183 87.952 C 205.243 87.952 205.283 88.073 205.303 88.315 C 205.313 88.385 205.318 88.456 205.319 88.527 C 205.323 88.63 205.308 88.733 205.273 88.83 C 203.258 88.729 202.179 88.679 202.038 88.678 C 201.999 88.678 200.941 88.729 198.863 88.83 C 198.764 88.683 198.721 88.506 198.742 88.33 C 198.742 88.078 198.782 87.952 198.863 87.952 C 199.208 87.933 199.549 87.866 199.876 87.754 C 200.309 87.623 200.546 87.487 200.587 87.346 C 200.739 86.651 200.81 85.94 200.798 85.228 L 200.798 82.2 C 200.798 80.323 200.556 79.041 200.073 78.353 C 199.513 77.631 198.624 77.243 197.715 77.324 C 197.031 77.338 196.374 77.589 195.855 78.035 C 195.259 78.509 194.961 78.938 194.962 79.322 L 194.962 84.65 C 194.936 85.554 195.017 86.458 195.204 87.343 C 195.243 87.485 195.505 87.621 195.99 87.751 C 196.324 87.856 196.669 87.922 197.018 87.948 C 197.076 87.948 197.118 88.069 197.139 88.311 C 197.165 88.483 197.154 88.658 197.109 88.826 C 195.093 88.726 194.014 88.675 193.873 88.675 C 193.752 88.675 192.654 88.725 190.578 88.826 C 190.478 88.68 190.435 88.503 190.456 88.327\" fill=\"rgb(0, 0, 0)\"></path><path d=\"M 207.24 85.347 C 207.341 85.253 207.467 85.19 207.603 85.165 C 207.904 85.165 208.066 85.226 208.087 85.347 C 208.264 86.044 208.662 86.665 209.221 87.117 C 209.775 87.66 210.516 87.968 211.291 87.98 C 211.867 88.003 212.432 87.815 212.879 87.45 C 213.307 87.062 213.535 86.499 213.498 85.921 C 213.501 85.593 213.434 85.268 213.301 84.968 C 213.157 84.658 212.939 84.388 212.667 84.18 C 212.408 83.971 212.135 83.78 211.852 83.606 C 211.6 83.454 211.243 83.258 210.779 83.015 C 210.315 82.773 209.972 82.581 209.751 82.44 C 208.178 81.532 207.392 80.453 207.392 79.202 C 207.372 78.152 207.863 77.159 208.708 76.538 C 209.583 75.852 210.666 75.489 211.776 75.509 C 212.339 75.52 212.9 75.576 213.455 75.676 C 214.13 75.787 214.599 75.862 214.861 75.903 C 215.073 76.919 215.195 77.953 215.223 78.992 C 215.223 79.092 215.093 79.143 214.831 79.143 C 214.548 79.143 214.397 79.072 214.377 78.931 C 214.254 78.323 213.953 77.765 213.515 77.327 C 213.109 76.853 212.52 76.577 211.897 76.569 C 210.446 76.569 209.72 77.165 209.72 78.356 C 209.715 78.628 209.756 78.899 209.84 79.158 C 209.938 79.416 210.1 79.645 210.309 79.824 C 210.542 80.036 210.718 80.188 210.838 80.278 C 211.097 80.453 211.364 80.615 211.64 80.763 C 212.053 80.996 212.308 81.142 212.406 81.201 C 212.484 81.24 212.712 81.376 213.092 81.609 C 213.474 81.842 213.742 82.007 213.898 82.108 C 214.054 82.209 214.282 82.381 214.584 82.623 C 214.831 82.81 215.053 83.029 215.243 83.274 C 215.399 83.502 215.531 83.746 215.638 84.001 C 215.762 84.282 215.827 84.586 215.828 84.894 C 215.848 86.041 215.35 87.137 214.473 87.876 C 213.601 88.661 212.465 89.088 211.292 89.072 C 210.902 89.074 210.513 89.048 210.127 88.996 C 209.705 88.931 209.287 88.846 208.873 88.739 C 208.389 88.618 208.017 88.537 207.754 88.496 C 207.592 88.003 207.475 87.496 207.405 86.981 C 207.308 86.442 207.252 85.896 207.238 85.349\" fill=\"rgb(0, 0, 0)\"></path></svg>',svgContentId:12848367791,withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-hbvab2\",\"data-framer-name\":\"Logo-h\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 157 100\"><path d=\"M 95.158 0.154 L 93.784 0.325 C 93.587 0.343 93.393 0.388 93.208 0.459 C 93.133 0.504 92.682 0.587 92.207 0.645 C 91.731 0.702 91.279 0.798 91.199 0.859 C 91.121 0.921 90.732 1.02 90.336 1.077 C 89.94 1.134 89.551 1.229 89.472 1.289 C 89.392 1.348 88.907 1.482 88.391 1.584 C 87.877 1.686 87.395 1.825 87.321 1.895 C 87.216 1.973 87.091 2.018 86.96 2.023 C 86.835 2.025 86.478 2.152 86.161 2.305 C 85.938 2.422 85.704 2.517 85.463 2.589 C 85.337 2.595 84.726 2.85 83.697 3.327 C 83.372 3.479 83.032 3.602 82.942 3.602 C 82.853 3.602 82.778 3.668 82.778 3.746 C 82.778 3.825 82.696 3.889 82.6 3.889 C 82.398 3.889 80.873 4.627 80.762 4.779 C 80.721 4.832 80.514 4.921 80.304 4.973 C 80.091 5.027 79.886 5.154 79.847 5.259 C 79.806 5.362 79.579 5.491 79.344 5.545 C 79.108 5.595 78.88 5.73 78.835 5.845 C 78.782 5.965 78.667 6.045 78.536 6.052 C 78.414 6.052 78.314 6.109 78.314 6.179 C 78.314 6.248 78.12 6.386 77.883 6.484 C 77.645 6.582 77.451 6.72 77.451 6.789 C 77.451 6.861 77.383 6.916 77.298 6.916 C 77.149 6.916 76.05 7.679 75.544 8.13 C 75.405 8.255 75.242 8.359 75.183 8.359 C 75.124 8.361 74.923 8.523 74.737 8.72 C 74.55 8.916 74.323 9.08 74.232 9.084 C 74.143 9.087 73.91 9.28 73.715 9.516 C 73.519 9.75 73.305 9.943 73.237 9.943 C 73.071 9.943 68.093 14.925 68.093 15.089 C 68.093 15.159 67.902 15.375 67.667 15.57 C 67.435 15.762 67.239 15.989 67.235 16.07 C 67.232 16.152 67.051 16.421 66.834 16.671 C 66.108 17.504 65.865 17.811 65.432 18.454 C 65.272 18.697 65.104 18.934 64.927 19.164 C 64.816 19.324 64.72 19.493 64.638 19.67 C 64.52 19.907 64.341 20.152 64.243 20.216 C 64.139 20.287 64.072 20.402 64.061 20.529 C 64.061 20.636 64.011 20.746 63.949 20.773 C 63.887 20.8 63.649 21.146 63.421 21.541 C 63.272 21.816 63.106 22.081 62.923 22.334 C 62.877 22.373 62.645 22.796 62.406 23.271 C 62.17 23.746 61.931 24.168 61.879 24.209 C 61.826 24.25 61.737 24.459 61.683 24.677 C 61.63 24.895 61.532 25.071 61.467 25.071 C 61.403 25.071 61.307 25.263 61.257 25.495 C 61.207 25.727 61.071 25.995 60.959 26.089 C 60.845 26.182 60.752 26.323 60.752 26.402 C 60.752 26.555 60.484 27.193 59.945 28.316 C 59.755 28.714 59.599 29.12 59.599 29.216 C 59.599 29.314 59.549 29.395 59.491 29.395 C 59.43 29.395 59.221 29.734 59.027 30.152 C 58.832 30.568 58.632 30.941 58.581 30.98 C 58.531 31.02 58.411 31.295 58.313 31.593 C 58.217 31.889 58.083 32.132 58.017 32.132 C 57.949 32.132 57.853 32.329 57.801 32.564 C 57.747 32.802 57.656 32.998 57.596 32.998 C 57.535 32.998 57.403 33.273 57.303 33.609 C 57.203 33.946 57.071 34.254 57.012 34.295 C 56.873 34.384 55.282 37.7 55.282 37.895 C 55.282 37.975 55.223 38.041 55.152 38.041 C 55.082 38.041 54.938 38.332 54.834 38.689 C 54.727 39.046 54.597 39.337 54.541 39.337 C 54.486 39.337 54.399 39.532 54.345 39.77 C 54.292 40.007 54.202 40.202 54.149 40.202 C 54.035 40.202 53.266 41.812 53.266 42.048 C 53.266 42.129 53.218 42.216 53.159 42.245 C 53.014 42.307 52.258 43.834 52.258 44.059 C 52.258 44.157 52.201 44.238 52.129 44.238 C 52.058 44.238 51.956 44.414 51.903 44.63 C 51.849 44.848 51.76 45.059 51.707 45.1 C 51.482 45.266 50.818 46.789 50.818 47.132 C 50.818 47.338 50.195 48.763 49.435 50.3 C 48.675 51.839 47.289 54.654 46.356 56.557 C 45.423 58.459 43.129 63.118 41.261 66.909 C 39.391 70.702 37.862 73.859 37.862 73.927 C 37.862 73.993 37.732 74.137 37.575 74.248 C 37.416 74.359 37.33 74.493 37.382 74.545 C 37.575 74.737 64.215 74.654 64.4 74.461 C 64.495 74.361 65.184 73.048 65.929 71.543 C 66.675 70.036 67.33 68.771 67.382 68.732 C 67.433 68.693 67.56 68.4 67.662 68.084 C 67.763 67.766 67.888 67.475 67.938 67.436 C 68.083 67.32 69.246 64.909 69.246 64.721 C 69.246 64.63 69.308 64.554 69.387 64.554 C 69.464 64.554 69.569 64.393 69.619 64.193 C 69.667 63.996 69.767 63.834 69.836 63.834 C 69.908 63.834 69.954 63.784 69.942 63.727 C 69.929 63.666 69.995 63.434 70.084 63.211 C 70.162 63.039 70.219 62.857 70.252 62.671 C 70.252 62.596 70.316 62.536 70.395 62.536 C 70.472 62.536 70.575 62.375 70.627 62.177 C 70.675 61.979 70.77 61.816 70.832 61.816 C 70.898 61.816 70.993 61.62 71.046 61.384 C 71.096 61.146 71.191 60.952 71.253 60.952 C 71.315 60.952 71.449 60.659 71.549 60.304 C 71.647 59.946 71.785 59.654 71.852 59.654 C 71.92 59.654 72.015 59.493 72.067 59.295 C 72.115 59.096 72.204 58.934 72.261 58.934 C 72.32 58.934 72.448 58.659 72.55 58.321 C 72.65 57.984 72.777 57.677 72.832 57.637 C 72.932 57.564 73.437 56.637 73.813 55.836 C 73.914 55.616 74.023 55.4 74.14 55.187 C 74.563 54.457 75.583 52.35 75.581 52.209 C 75.581 52.118 75.629 52.02 75.688 51.995 C 75.849 51.923 76.587 50.443 76.587 50.195 C 76.587 50.079 76.646 50.02 76.719 50.064 C 76.791 50.111 76.894 49.952 76.946 49.712 C 77 49.475 77.101 49.28 77.174 49.28 C 77.246 49.28 77.306 49.211 77.306 49.127 C 77.306 48.92 78.063 47.357 78.216 47.246 C 78.286 47.194 78.334 47.117 78.35 47.03 C 78.377 46.702 78.504 46.398 78.614 46.398 C 78.68 46.398 78.812 46.138 78.907 45.821 C 79.003 45.504 79.135 45.245 79.201 45.245 C 79.267 45.245 79.322 45.177 79.322 45.093 C 79.322 44.891 80.059 43.321 80.198 43.227 C 80.259 43.186 80.352 42.977 80.407 42.759 C 80.461 42.541 80.557 42.363 80.621 42.363 C 80.687 42.363 80.782 42.17 80.835 41.932 C 80.885 41.693 80.985 41.498 81.055 41.498 C 81.126 41.498 81.26 41.239 81.355 40.921 C 81.449 40.605 81.578 40.346 81.636 40.346 C 81.697 40.346 81.79 40.15 81.842 39.914 C 81.895 39.677 81.984 39.482 82.045 39.482 C 82.107 39.482 82.241 39.221 82.345 38.905 C 82.45 38.588 82.586 38.329 82.644 38.329 C 82.705 38.329 82.796 38.134 82.85 37.896 C 82.903 37.659 83.005 37.464 83.076 37.464 C 83.149 37.464 83.21 37.389 83.21 37.298 C 83.21 37.107 83.954 35.555 84.098 35.445 C 84.152 35.405 84.239 35.195 84.295 34.977 C 84.348 34.759 84.439 34.584 84.498 34.584 C 84.555 34.584 84.689 34.323 84.792 34.005 C 84.898 33.689 85.032 33.43 85.092 33.43 C 85.153 33.43 85.246 33.234 85.297 32.998 C 85.349 32.759 85.435 32.564 85.488 32.563 C 85.542 32.563 85.779 32.155 86.016 31.662 C 86.254 31.168 86.53 30.713 86.628 30.648 C 86.733 30.573 86.799 30.454 86.807 30.325 C 86.807 30.209 86.869 30.116 86.942 30.116 C 87.015 30.116 87.115 29.993 87.164 29.845 C 87.243 29.64 87.355 29.45 87.495 29.282 C 87.633 29.121 87.841 28.845 87.959 28.668 C 88.473 27.902 90.082 26.268 91.156 25.418 C 91.906 24.825 92.964 24.186 94.079 23.65 L 95.595 22.914 C 95.718 22.852 96.089 22.757 96.423 22.7 C 96.755 22.645 97.062 22.545 97.101 22.48 C 97.14 22.414 97.513 22.316 97.931 22.259 C 98.344 22.205 98.776 22.084 98.887 21.995 C 99.035 21.875 102.744 21.818 112.49 21.787 C 120.763 21.763 125.944 21.693 126.03 21.609 C 126.116 21.521 131.798 21.47 141.111 21.47 C 152.964 21.47 156.056 21.434 156.062 21.291 C 156.065 21.191 156.062 20.354 156.054 19.43 C 156.046 18.395 156.097 17.714 156.19 17.655 C 156.293 17.593 156.342 14.761 156.342 8.78 L 156.342 0 L 126.217 0.018 C 109.65 0.03 95.674 0.089 95.156 0.154 Z\" fill=\"rgb(67,164,220)\"></path><path d=\"M 0 0.209 C 0 0.323 0.062 0.455 0.141 0.504 C 0.218 0.552 0.459 0.977 0.674 1.45 C 0.89 1.921 1.12 2.307 1.181 2.307 C 1.245 2.307 1.295 2.382 1.295 2.473 C 1.295 2.682 2.018 4.227 2.159 4.325 C 2.218 4.364 2.314 4.557 2.375 4.757 C 2.437 4.954 2.526 5.15 2.574 5.189 C 2.624 5.229 2.858 5.682 3.095 6.196 C 3.333 6.712 3.566 7.166 3.616 7.205 C 3.707 7.331 3.774 7.473 3.813 7.623 C 3.871 7.814 4.107 8.286 4.334 8.671 C 4.56 9.057 4.787 9.534 4.837 9.73 C 4.887 9.927 4.983 10.087 5.054 10.087 C 5.126 10.087 5.183 10.157 5.183 10.241 C 5.183 10.42 5.927 11.998 6.061 12.105 C 6.111 12.145 6.2 12.334 6.26 12.523 C 6.319 12.714 6.546 13.173 6.767 13.546 C 6.985 13.918 7.213 14.379 7.272 14.57 C 7.311 14.72 7.378 14.862 7.47 14.987 C 7.52 15.027 8.851 17.654 10.432 20.823 C 12.011 23.993 13.354 26.609 13.418 26.634 C 13.481 26.661 13.532 26.741 13.532 26.811 C 13.532 27.034 14.283 28.602 14.415 28.652 C 14.483 28.679 14.54 28.777 14.54 28.868 C 14.54 28.961 14.646 29.23 14.772 29.468 C 14.899 29.707 15.261 30.42 15.575 31.054 C 15.891 31.687 16.2 32.309 16.264 32.432 C 16.33 32.557 16.556 33.011 16.769 33.441 C 17.763 35.402 18.747 37.368 19.721 39.339 C 20.527 40.977 21.345 42.61 22.173 44.237 C 22.462 44.72 23.034 45.959 23.034 46.102 C 23.034 46.186 23.086 46.255 23.149 46.255 C 23.213 46.255 23.35 46.498 23.457 46.796 C 23.564 47.093 23.691 47.368 23.743 47.407 C 23.793 47.448 24.997 49.814 26.421 52.668 C 27.844 55.52 29.04 57.887 29.079 57.927 C 29.12 57.966 29.347 58.42 29.584 58.936 C 29.821 59.45 30.048 59.904 30.089 59.943 C 30.128 59.984 31.552 62.804 33.252 66.211 C 34.952 69.62 36.385 72.439 36.435 72.479 C 36.486 72.52 36.576 72.705 36.635 72.895 C 36.806 73.441 37.3 74.209 37.48 74.207 C 37.573 74.207 37.552 74.146 37.434 74.071 C 37.252 73.955 37.255 73.923 37.461 73.845 C 37.596 73.791 37.664 73.662 37.619 73.541 C 37.571 73.416 37.614 73.35 37.73 73.375 C 37.835 73.398 37.93 73.32 37.942 73.2 C 37.957 73.044 37.97 72.888 37.983 72.732 C 37.996 72.593 38.083 72.496 38.178 72.516 C 38.272 72.536 38.37 72.421 38.399 72.264 C 38.531 71.5 38.601 71.33 38.765 71.364 C 38.863 71.382 38.922 71.286 38.9 71.146 C 38.875 71.009 38.922 70.895 39.004 70.895 C 39.082 70.895 39.111 70.795 39.064 70.673 C 39.009 70.53 39.05 70.466 39.175 70.493 C 39.364 70.532 39.389 70.466 39.428 69.841 C 39.437 69.698 39.509 69.62 39.585 69.668 C 39.662 69.714 39.764 69.573 39.814 69.352 C 39.99 68.566 40.044 68.441 40.176 68.523 C 40.297 68.598 40.37 68.4 40.326 68.121 C 40.317 68.061 40.372 68.014 40.449 68.014 C 40.526 68.014 40.547 67.905 40.495 67.773 C 40.436 67.62 40.46 67.568 40.563 67.63 C 40.722 67.73 40.968 67.22 40.911 66.912 C 40.893 66.823 40.979 66.711 41.098 66.664 C 41.218 66.62 41.318 66.414 41.318 66.209 C 41.318 66.002 41.377 65.871 41.452 65.918 C 41.578 65.996 41.837 65.462 41.778 65.239 C 41.76 65.18 41.817 65.132 41.901 65.132 C 41.985 65.132 42.015 65.068 41.967 64.993 C 41.921 64.916 42.014 64.723 42.172 64.564 C 42.333 64.404 42.424 64.175 42.378 64.054 C 42.331 63.934 42.363 63.834 42.449 63.834 C 42.535 63.834 42.565 63.734 42.518 63.612 C 42.465 63.47 42.504 63.405 42.631 63.432 C 42.75 63.457 42.813 63.373 42.786 63.221 C 42.763 63.084 42.809 62.971 42.89 62.971 C 42.97 62.971 42.997 62.87 42.95 62.748 C 42.897 62.609 42.936 62.541 43.054 62.568 C 43.159 62.591 43.266 62.479 43.293 62.321 C 43.427 61.557 43.494 61.389 43.658 61.421 C 43.757 61.439 43.819 61.368 43.796 61.261 C 43.732 60.957 43.914 60.507 44.063 60.6 C 44.183 60.673 44.258 60.475 44.213 60.196 C 44.204 60.136 44.258 60.089 44.336 60.089 C 44.411 60.089 44.433 59.98 44.383 59.848 C 44.322 59.689 44.347 59.643 44.454 59.711 C 44.558 59.773 44.652 59.661 44.709 59.409 C 44.884 58.623 44.939 58.498 45.071 58.582 C 45.191 58.655 45.266 58.457 45.221 58.179 C 45.212 58.12 45.266 58.071 45.343 58.071 C 45.419 58.071 45.441 57.964 45.391 57.83 C 45.328 57.67 45.355 57.625 45.468 57.695 C 45.619 57.789 45.699 57.618 45.653 57.314 C 45.644 57.255 45.698 57.207 45.776 57.207 C 45.851 57.207 45.873 57.1 45.823 56.966 C 45.764 56.812 45.787 56.762 45.889 56.823 C 46.058 56.929 46.295 56.405 46.231 56.075 C 46.21 55.968 46.256 55.92 46.333 55.968 C 46.415 56.018 46.44 55.93 46.395 55.759 C 46.342 55.557 46.381 55.479 46.517 55.507 C 46.627 55.53 46.699 55.468 46.679 55.368 C 46.661 55.27 46.713 55.189 46.797 55.189 C 46.879 55.189 46.909 55.127 46.863 55.05 C 46.816 54.973 46.907 54.782 47.066 54.621 C 47.227 54.461 47.319 54.232 47.273 54.111 C 47.227 53.991 47.259 53.893 47.344 53.893 C 47.428 53.893 47.46 53.793 47.414 53.67 C 47.359 53.529 47.4 53.462 47.526 53.491 C 47.644 53.514 47.705 53.432 47.682 53.279 C 47.658 53.141 47.705 53.029 47.785 53.029 C 47.865 53.029 47.889 52.92 47.839 52.787 C 47.78 52.634 47.803 52.584 47.905 52.645 C 48.06 52.741 48.113 52.63 48.288 51.839 C 48.336 51.621 48.456 51.459 48.554 51.479 C 48.652 51.498 48.711 51.402 48.69 51.262 C 48.665 51.123 48.711 51.011 48.793 51.011 C 48.872 51.011 48.897 50.904 48.847 50.77 C 48.786 50.616 48.811 50.566 48.913 50.627 C 49.08 50.734 49.318 50.211 49.253 49.879 C 49.232 49.771 49.278 49.723 49.353 49.771 C 49.51 49.866 49.667 49.541 49.667 49.116 C 49.667 48.961 49.728 48.87 49.801 48.914 C 49.93 48.993 50.186 48.459 50.128 48.236 C 50.11 48.177 50.167 48.129 50.252 48.129 C 50.335 48.129 50.36 48.059 50.308 47.975 C 50.256 47.891 50.333 47.723 50.481 47.604 C 50.627 47.484 50.666 47.427 50.57 47.477 C 50.44 47.541 50.413 47.454 50.47 47.162 C 50.533 46.839 49.869 45.4 47.084 39.829 C 45.179 36.018 43.621 32.829 43.621 32.745 C 43.621 32.659 43.567 32.568 43.501 32.543 C 43.368 32.489 42.613 30.936 42.613 30.714 C 42.613 30.637 42.561 30.552 42.501 30.525 C 42.367 30.468 40.597 26.895 40.597 26.684 C 40.597 26.604 40.549 26.516 40.49 26.491 C 40.429 26.464 38.388 22.462 35.953 17.598 C 34.319 14.331 32.681 11.065 31.038 7.802 C 30.49 6.732 29.587 4.929 28.123 1.982 L 27.136 0.002 L 13.568 0.002 C 1.85 0.002 0 0.03 0 0.209 Z M 126.305 21.714 C 126.358 21.768 126.223 21.887 126.005 21.98 C 125.747 22.11 125.533 22.314 125.391 22.566 C 125.272 22.796 125.141 23.016 125.102 23.055 C 124.888 23.271 124.383 24.073 124.383 24.204 C 124.383 24.286 124.321 24.354 124.246 24.354 C 124.171 24.354 124.026 24.512 123.923 24.707 C 123.819 24.904 123.152 25.911 122.439 26.948 C 121.725 27.984 121.077 28.943 120.997 29.079 C 120.747 29.502 120.291 30.186 120.208 30.261 C 120.166 30.3 119.613 31.111 118.981 32.061 C 118.349 33.011 117.768 33.862 117.688 33.954 C 117.574 34.091 117.468 34.235 117.372 34.386 C 117.01 34.946 115.821 36.707 115.22 37.573 C 114.876 38.068 114.594 38.509 114.594 38.552 C 114.594 38.627 114.023 39.477 113.873 39.627 C 113.834 39.666 113.606 39.991 113.37 40.346 C 113.133 40.704 112.906 41.029 112.867 41.068 C 112.685 41.248 111.611 42.896 111.529 43.121 C 111.475 43.259 111.368 43.373 111.286 43.373 C 111.202 43.376 111.136 43.446 111.138 43.53 C 111.138 43.618 111.026 43.837 110.887 44.018 C 110.564 44.443 110.401 44.682 109.668 45.821 C 109.454 46.167 109.227 46.504 108.987 46.832 C 108.805 46.995 107.684 48.723 107.684 48.837 C 107.684 48.907 107.586 48.998 107.467 49.045 C 107.349 49.091 107.252 49.223 107.252 49.341 C 107.242 49.475 107.17 49.597 107.056 49.67 C 106.949 49.734 106.771 49.959 106.662 50.171 C 106.551 50.386 105.811 51.505 105.021 52.664 C 103.584 54.766 103.401 55.041 102.865 55.891 C 102.71 56.139 102.532 56.341 102.469 56.341 C 102.407 56.341 102.357 56.402 102.357 56.477 C 102.357 56.55 101.904 57.268 101.349 58.071 C 100.796 58.875 100.341 59.586 100.341 59.654 C 100.341 59.72 100.293 59.796 100.234 59.823 C 100.173 59.85 99.931 60.162 99.693 60.52 C 99.456 60.877 99.197 61.243 99.117 61.334 C 99.038 61.423 98.559 62.155 98.05 62.955 C 97.542 63.755 97.072 64.411 97.006 64.411 C 96.94 64.411 96.887 64.468 96.887 64.539 C 96.887 64.741 95.85 66.284 95.715 66.284 C 95.647 66.284 95.59 66.352 95.59 66.432 C 95.59 66.514 95.105 67.295 94.51 68.166 C 93.916 69.037 93.431 69.784 93.431 69.825 C 93.431 69.904 93.228 70.164 92.819 70.618 C 92.68 70.77 92.568 70.921 92.568 70.957 C 92.568 71.045 91.467 72.702 90.837 73.561 C 89.981 74.732 88.791 74.641 104.821 74.641 L 119.209 74.641 L 119.507 74.137 C 119.671 73.859 119.864 73.632 119.936 73.632 C 120.007 73.632 120.064 73.548 120.064 73.446 C 120.064 73.343 120.162 73.132 120.282 72.977 C 120.401 72.823 120.756 72.339 121.068 71.904 C 121.382 71.468 121.689 71.046 121.752 70.968 C 121.812 70.887 122.059 70.53 122.296 70.175 C 122.533 69.818 122.779 69.461 122.844 69.382 C 122.985 69.205 124.01 67.739 125.413 65.707 C 125.985 64.875 127.079 63.32 127.843 62.25 C 128.606 61.179 129.418 60.012 129.65 59.655 C 129.88 59.298 130.144 58.929 130.235 58.83 C 130.324 58.734 130.549 58.409 130.731 58.111 C 130.913 57.811 131.097 57.534 131.141 57.495 C 131.324 57.263 131.495 57.022 131.653 56.773 C 132.126 56.062 132.174 55.996 132.592 55.491 C 132.749 55.3 132.877 55.098 132.877 55.045 C 132.877 54.991 132.99 54.807 133.127 54.639 C 133.266 54.471 133.607 54.005 133.884 53.602 C 134.162 53.198 134.597 52.584 134.856 52.236 C 135.113 51.889 135.323 51.536 135.323 51.45 C 135.323 51.366 135.377 51.298 135.443 51.298 C 135.571 51.298 136.331 50.191 136.331 50.004 C 136.331 49.941 136.429 49.852 136.547 49.805 C 136.667 49.761 136.763 49.634 136.763 49.525 C 136.763 49.414 136.893 49.209 137.052 49.064 C 137.209 48.921 137.339 48.725 137.339 48.627 C 137.339 48.527 137.436 48.411 137.553 48.364 C 137.673 48.318 137.771 48.212 137.771 48.127 C 137.771 47.987 138.181 47.341 138.563 46.88 C 138.642 46.786 138.934 46.377 139.211 45.971 C 139.487 45.568 139.942 44.921 140.219 44.536 C 140.495 44.15 140.82 43.691 140.938 43.518 C 141.057 43.345 141.305 42.998 141.491 42.748 C 141.676 42.498 142.051 41.945 142.326 41.523 C 142.528 41.202 142.742 40.89 142.968 40.586 C 143.195 40.327 147.844 33.7 149.098 31.846 C 149.717 30.936 150.303 30.137 150.402 30.073 C 150.502 30.011 150.583 29.895 150.583 29.816 C 150.583 29.691 151.091 28.887 151.303 28.675 C 151.434 28.513 151.558 28.345 151.674 28.171 C 152.709 26.679 153.105 26.132 153.273 25.964 C 153.379 25.855 153.446 25.714 153.462 25.562 C 153.462 25.448 153.56 25.316 153.678 25.27 C 153.798 25.225 153.896 25.123 153.896 25.046 C 153.896 24.97 154.12 24.629 154.399 24.291 C 154.675 23.952 154.902 23.634 154.902 23.584 C 154.902 23.532 155.134 23.189 155.414 22.82 C 155.694 22.452 155.892 22.066 155.853 21.962 C 155.812 21.855 155.913 21.752 156.099 21.716 C 156.272 21.68 149.617 21.645 141.309 21.636 C 133.002 21.623 126.251 21.659 126.305 21.714 Z M 3.215 82.654 C 3.051 82.725 3.329 83.855 3.604 84.223 C 3.661 84.304 3.757 84.595 3.818 84.871 C 3.875 85.15 4.014 85.504 4.121 85.661 C 4.228 85.816 4.318 86.03 4.318 86.137 C 4.318 86.243 4.451 86.632 4.615 87.005 C 4.985 87.852 5.067 88.054 5.472 89.123 C 5.652 89.598 5.92 90.259 6.068 90.591 C 6.214 90.925 6.335 91.284 6.335 91.391 C 6.335 91.498 6.389 91.648 6.455 91.723 C 6.521 91.798 6.76 92.379 6.987 93.012 C 7.213 93.646 7.481 94.329 7.584 94.527 C 7.683 94.708 7.747 94.906 7.773 95.111 C 7.773 95.236 7.87 95.461 7.986 95.614 C 8.102 95.77 8.2 95.993 8.207 96.111 C 8.212 96.23 8.341 96.587 8.492 96.904 C 8.647 97.221 8.774 97.545 8.778 97.623 C 8.783 97.793 9.381 99.27 9.548 99.534 C 9.75 99.852 14.341 99.784 14.444 99.462 C 14.487 99.323 14.688 98.82 14.89 98.345 C 15.093 97.87 15.259 97.412 15.259 97.33 C 15.259 97.248 15.488 96.634 15.764 95.966 C 16.041 95.3 16.269 94.686 16.273 94.604 C 16.274 94.521 16.403 94.193 16.556 93.877 C 16.708 93.561 16.836 93.187 16.838 93.05 C 16.842 92.911 16.91 92.796 16.988 92.796 C 17.067 92.796 17.134 92.684 17.136 92.546 C 17.14 92.405 17.266 92.034 17.42 91.716 C 17.572 91.4 17.7 91.03 17.702 90.895 C 17.705 90.762 17.766 90.616 17.837 90.573 C 17.909 90.527 18.051 90.166 18.153 89.77 C 18.255 89.375 18.39 89.05 18.455 89.05 C 18.519 89.05 18.571 88.954 18.571 88.836 C 18.571 88.652 18.899 87.743 19.507 86.241 C 19.605 86.004 19.832 85.42 20.012 84.945 C 20.192 84.468 20.433 83.866 20.546 83.605 C 20.945 82.677 20.879 82.643 18.69 82.598 C 16.465 82.554 16.382 82.586 16.123 83.616 C 16.037 83.958 15.915 84.289 15.759 84.605 C 15.651 84.789 15.58 84.991 15.548 85.202 C 15.548 85.32 15.452 85.602 15.334 85.827 C 15.215 86.055 15.117 86.337 15.117 86.457 C 15.083 86.675 15.01 86.885 14.903 87.077 C 14.764 87.356 14.647 87.645 14.551 87.941 C 14.28 88.816 13.445 91.141 13.295 91.429 C 13.11 91.875 12.949 92.332 12.813 92.796 C 12.63 93.391 12.43 93.943 12.371 94.021 C 12.312 94.102 12.217 94.409 12.162 94.705 C 12.064 95.23 11.805 95.33 11.805 94.841 C 11.773 94.611 11.699 94.389 11.588 94.186 C 11.47 93.959 11.374 93.709 11.374 93.632 C 11.331 93.425 11.261 93.225 11.167 93.036 C 11.052 92.786 10.785 92.062 10.574 91.429 C 10.362 90.795 10.132 90.214 10.062 90.137 C 9.991 90.062 9.934 89.87 9.932 89.707 C 9.912 89.475 9.847 89.248 9.739 89.041 C 9.619 88.801 9.522 88.55 9.45 88.291 C 9.379 88.025 9.292 87.763 9.19 87.507 C 8.721 86.294 8.288 85.067 7.891 83.829 C 7.807 83.53 7.682 83.287 7.613 83.287 C 7.541 83.287 7.486 83.162 7.486 83.014 C 7.486 82.864 7.402 82.709 7.301 82.67 C 7.053 82.575 3.431 82.562 3.215 82.654 Z M 22.376 82.755 C 22.337 82.859 22.323 83.654 22.346 84.521 L 22.387 86.096 L 26.526 86.096 C 28.801 86.096 30.665 86.116 30.665 86.141 C 30.665 86.166 30.404 86.737 30.089 87.411 C 29.771 88.084 29.512 88.664 29.512 88.7 C 29.512 88.736 29.373 89.073 29.204 89.448 C 29.034 89.823 28.74 90.487 28.547 90.923 L 28.005 92.148 L 27.056 94.309 C 26.883 94.705 26.556 95.425 26.328 95.907 C 26.099 96.389 25.914 96.829 25.914 96.886 C 25.914 96.943 25.694 97.457 25.429 98.027 C 25.161 98.598 24.899 99.211 24.843 99.389 L 24.742 99.714 L 28.931 99.714 L 29.432 98.637 C 29.709 98.048 29.976 97.398 30.028 97.198 C 30.078 96.996 30.176 96.832 30.247 96.832 C 30.319 96.832 30.376 96.762 30.376 96.68 C 30.376 96.596 30.495 96.255 30.644 95.923 C 30.79 95.591 31.065 94.93 31.255 94.454 C 31.445 93.979 31.648 93.568 31.709 93.543 C 31.768 93.514 31.816 93.382 31.816 93.25 C 31.816 93.116 31.905 92.877 32.012 92.721 C 32.14 92.524 32.243 92.311 32.317 92.087 C 32.5 91.6 32.702 91.12 32.922 90.648 C 33.193 90.046 33.553 89.23 33.719 88.834 C 33.885 88.437 34.197 87.725 34.413 87.248 C 34.922 86.12 35.032 85.83 35.006 85.7 C 34.993 85.641 35.047 85.593 35.127 85.593 C 35.339 85.593 35.313 82.955 35.098 82.739 C 34.834 82.475 22.478 82.491 22.378 82.757 Z M 40.597 92.291 L 40.597 99.714 L 43.332 99.714 L 43.332 94.309 L 44.574 94.321 C 45.799 94.334 45.817 94.339 46.01 94.754 C 46.199 95.161 46.308 95.345 46.807 96.111 C 47.014 96.429 47.223 96.786 47.86 97.913 C 47.949 98.07 48.235 98.541 48.497 98.957 L 48.972 99.714 L 50.542 99.714 C 52.244 99.714 52.383 99.636 51.83 98.998 C 51.67 98.812 51.543 98.601 51.453 98.373 C 51.402 98.212 51.325 98.06 51.225 97.923 C 51.014 97.677 50.129 96.288 49.482 95.182 C 49.153 94.623 48.825 94.123 48.752 94.075 C 48.681 94.021 48.825 93.936 49.077 93.88 C 52.456 93.138 53.05 88.118 50.051 85.639 C 49.337 85.048 48.003 84.871 44.253 84.871 L 40.597 84.871 L 40.597 92.293 Z M 94.99 85.118 C 93.574 85.996 94.571 88.32 96.209 87.961 C 96.701 87.854 97.001 87.604 97.279 87.068 C 97.988 85.696 96.33 84.286 94.99 85.118 Z M 100.127 86.145 C 100.086 86.25 100.054 86.912 100.054 87.614 L 100.054 88.893 L 99.226 88.936 L 98.398 88.979 L 98.398 91.139 L 99.226 91.182 L 100.054 91.227 L 100.071 94.57 C 100.08 96.409 100.08 97.962 100.071 98.02 C 100.061 98.08 100.118 98.127 100.196 98.127 C 100.277 98.127 100.341 98.25 100.341 98.396 C 100.341 99.804 103.789 100.479 105.108 99.33 C 105.343 99.125 105.318 98.416 105.076 98.416 C 105.004 98.416 104.947 98.266 104.947 98.084 C 104.947 97.591 104.596 97.162 104.351 97.357 C 103.97 97.661 103.345 97.679 103.06 97.391 C 102.812 97.141 102.789 96.866 102.789 94.166 L 102.789 91.212 L 103.688 91.211 C 104.883 91.207 104.915 91.175 104.894 89.987 L 104.876 88.979 L 103.832 88.936 L 102.789 88.893 L 102.787 87.639 C 102.785 86.948 102.728 86.296 102.66 86.187 C 102.484 85.911 100.232 85.873 100.127 86.145 Z M 148.065 86.141 C 148.026 86.248 147.994 86.911 147.994 87.614 L 147.994 88.893 L 147.164 88.936 L 146.336 88.979 L 146.336 91.139 L 147.164 91.182 L 147.992 91.227 L 147.992 94.516 C 147.992 98.038 148.058 98.438 148.757 99.195 C 149.576 100.079 152.133 100.166 153.045 99.341 C 153.448 98.975 152.675 97.045 152.263 97.388 C 151.828 97.75 150.872 97.609 150.872 97.184 C 150.872 97.068 150.807 96.975 150.729 96.975 C 150.636 96.975 150.583 95.92 150.583 94.095 L 150.583 91.213 L 151.555 91.211 C 152.87 91.207 152.911 91.168 152.857 89.973 L 152.815 88.979 L 151.699 88.936 L 150.583 88.895 L 150.583 87.459 C 150.583 86.67 150.534 86.023 150.476 86.021 C 148.29 85.95 148.138 85.955 148.067 86.141 Z M 47.937 87.732 C 48.743 88.164 49.021 88.657 49.004 89.62 C 48.973 91.28 48.349 91.655 45.455 91.755 L 43.332 91.827 L 43.332 87.466 L 45.385 87.466 C 47.111 87.466 47.519 87.509 47.937 87.732 Z M 56.648 88.759 C 56.3 88.838 55.962 88.955 55.64 89.109 C 55.403 89.234 55.144 89.338 55.066 89.341 C 54.857 89.345 53.814 90.33 53.368 90.946 C 52.078 92.72 52.024 96.071 53.26 97.607 C 53.996 98.518 54.326 98.848 54.504 98.848 C 54.615 98.848 54.706 98.902 54.706 98.968 C 54.706 99.771 59.375 100.136 60.816 99.445 C 62.45 98.663 62.561 98.446 61.879 97.391 C 61.437 96.709 61.152 96.534 60.968 96.832 C 60.791 97.118 59.66 97.573 58.932 97.654 C 57.023 97.861 55.894 97.325 55.296 95.927 L 55.005 95.25 L 59.066 95.213 L 63.126 95.175 L 63.171 94.348 C 63.355 90.813 60.094 88.018 56.648 88.759 Z M 68.814 88.775 C 63.774 89.748 62.903 96.913 67.517 99.43 C 69.059 100.271 72.37 99.888 73.601 98.725 C 74.282 98.08 74.275 97.957 73.53 97.182 C 72.789 96.414 72.732 96.411 71.899 97.048 C 70.489 98.125 68.357 97.613 67.535 96 C 66.572 94.107 67.753 91.134 69.497 91.061 C 69.556 91.057 69.749 91.02 69.926 90.975 C 70.439 90.846 71.804 91.35 72.191 91.811 C 72.382 92.036 72.584 92.221 72.643 92.221 C 72.843 92.221 74.141 90.85 74.141 90.639 C 74.141 90.375 73.078 89.386 72.654 89.254 C 72.48 89.2 72.304 89.098 72.261 89.03 C 72.074 88.741 69.844 88.577 68.814 88.775 Z M 80.459 88.764 C 79.763 88.882 78.83 89.396 78.325 89.938 L 78.027 90.259 L 78.027 88.895 L 76.768 88.938 L 75.508 88.979 L 75.471 94.346 L 75.433 99.714 L 78.027 99.714 L 78.027 96.064 C 78.027 92.186 78.106 91.788 78.866 91.788 C 78.959 91.788 79.035 91.729 79.035 91.655 C 79.035 91.496 80.289 91.213 80.991 91.213 L 81.494 91.213 L 81.453 89.963 C 81.406 88.595 81.413 88.605 80.459 88.766 Z M 111.247 88.768 C 110.84 88.836 110.226 89.107 109.734 89.436 L 108.906 89.989 L 108.906 88.979 L 106.316 88.979 L 106.275 94.021 C 106.225 100.28 106.095 99.714 107.599 99.714 C 109.097 99.714 108.979 100.05 108.979 95.805 C 108.979 91.823 108.979 91.82 110.237 91.263 C 111.026 90.913 111.443 90.845 111.629 91.03 C 111.689 91.091 111.78 91.141 111.834 91.141 C 111.887 91.141 112.093 91.255 112.291 91.395 L 112.649 91.65 L 112.721 95.645 L 112.794 99.641 L 114.053 99.682 L 115.313 99.725 L 115.313 92.275 L 115.709 91.913 C 117.077 90.666 118.553 90.666 119.102 91.913 C 119.308 92.379 119.345 93.005 119.345 96.093 L 119.345 99.725 L 120.605 99.684 L 121.864 99.641 L 121.902 95.616 C 121.955 90.08 121.62 89.116 119.522 88.779 C 118.606 88.632 116.897 88.809 116.897 89.05 C 116.897 89.113 116.751 89.202 116.573 89.246 C 116.394 89.293 115.998 89.557 115.689 89.832 L 115.131 90.334 L 114.828 89.886 C 114.668 89.649 114.467 89.443 114.234 89.279 C 114.099 89.21 113.975 89.122 113.866 89.016 C 113.784 88.907 112.376 88.605 112.091 88.636 C 112.002 88.645 111.622 88.704 111.245 88.768 Z M 127.55 88.762 C 125.257 89.191 123.588 91.12 123.133 93.864 C 122.819 95.761 124.26 98.377 126.183 99.395 C 127.58 100.136 132.446 99.804 132.446 98.966 C 132.446 98.902 132.531 98.848 132.638 98.848 C 133.297 98.848 133.352 98.312 132.783 97.491 C 132.287 96.775 131.725 96.427 131.725 96.836 C 131.725 96.918 131.611 97.025 131.473 97.073 C 131.285 97.154 131.11 97.262 130.954 97.395 C 130.064 98.162 127.075 97.541 126.481 96.466 C 126.415 96.336 126.33 96.215 126.23 96.109 C 126.176 96.07 126.089 95.859 126.034 95.645 L 125.935 95.252 L 129.946 95.212 L 133.957 95.175 L 134.035 94.48 C 134.08 94.1 134.073 93.761 134.021 93.73 C 133.967 93.695 133.884 93.32 133.834 92.891 C 133.734 92.045 133.614 91.766 132.924 90.77 C 131.812 89.166 129.668 88.366 127.55 88.762 Z M 140.651 88.766 C 139.916 88.912 139.222 89.213 138.613 89.65 C 138.106 90 138.085 89.993 138.032 89.446 L 137.987 88.979 L 136.727 88.938 L 135.468 88.895 L 135.468 99.725 L 136.727 99.684 L 137.987 99.641 L 138.058 95.92 L 138.13 92.196 L 138.59 91.786 C 139.668 90.821 141.296 90.727 142.099 91.582 C 142.449 91.954 142.451 91.968 142.522 95.798 L 142.593 99.641 L 143.853 99.682 L 145.113 99.725 L 145.113 95.37 C 145.113 90.566 145.047 90.173 144.128 89.486 C 143.919 89.327 143.664 89.129 143.562 89.045 C 143.384 88.893 141.935 88.604 141.514 88.636 C 141.225 88.67 140.937 88.713 140.651 88.766 Z M 82.875 89.002 C 82.821 89.055 82.778 90.963 82.778 93.241 C 82.778 97.923 82.85 98.302 83.897 99.236 C 85.064 100.273 88.304 100.041 89.601 98.825 L 89.904 98.541 L 89.949 99.127 L 89.993 99.714 L 92.571 99.714 L 92.532 94.346 L 92.496 88.979 L 91.237 88.938 L 89.975 88.895 L 89.975 92.72 C 89.975 94.821 89.927 96.543 89.868 96.543 C 89.808 96.543 89.572 96.705 89.342 96.904 C 89.112 97.102 88.837 97.264 88.73 97.264 C 88.623 97.264 88.537 97.329 88.537 97.407 C 88.537 97.491 88.065 97.552 87.41 97.552 C 85.481 97.552 85.369 97.275 85.369 92.502 L 85.369 88.907 L 84.17 88.907 C 83.51 88.907 82.926 88.95 82.875 89.002 Z M 94.582 94.309 L 94.582 99.714 L 97.174 99.714 L 97.174 88.907 L 94.582 88.907 Z M 59.364 91.25 C 59.903 91.561 60.607 92.562 60.607 93.018 C 60.607 93.196 60.177 93.229 57.803 93.229 L 54.998 93.229 L 55.243 92.689 C 55.599 91.898 55.994 91.355 56.21 91.355 C 56.313 91.355 56.477 91.259 56.577 91.141 C 56.875 90.78 58.675 90.852 59.366 91.25 Z M 129.88 91.055 C 130.347 91.241 131.097 91.97 131.204 92.341 C 131.486 93.327 131.759 93.229 128.711 93.229 C 126.182 93.229 125.966 93.209 125.966 92.975 C 125.966 92.466 127.111 91.07 127.441 91.177 C 127.502 91.195 127.55 91.146 127.55 91.068 C 127.55 90.886 129.427 90.877 129.88 91.055 Z\" fill=\"rgb(36,35,91)\"></path><path d=\"M 156.129 17.72 C 155.99 17.941 156.07 21.47 156.213 21.47 C 156.285 21.47 156.342 20.595 156.342 19.523 C 156.342 17.648 156.315 17.418 156.128 17.72 Z\" fill=\"rgb(52,116,164)\"></path><path d=\"M 27.505 0.793 C 27.505 0.871 27.602 1.063 27.718 1.216 C 27.834 1.37 27.928 1.43 27.928 1.352 C 27.928 1.273 27.834 1.082 27.718 0.929 C 27.602 0.775 27.505 0.714 27.505 0.793 Z M 125.918 21.709 C 125.73 21.898 125.828 22.018 126.108 21.945 C 126.265 21.904 126.358 21.813 126.317 21.741 C 126.223 21.589 126.051 21.577 125.918 21.709 Z M 15.117 30.348 C 15.117 30.427 15.211 30.618 15.327 30.773 C 15.443 30.927 15.539 30.987 15.539 30.909 C 15.539 30.829 15.443 30.637 15.327 30.484 C 15.211 30.33 15.117 30.27 15.117 30.348 Z M 16.556 33.23 C 16.556 33.309 16.651 33.5 16.767 33.654 C 16.883 33.809 16.979 33.868 16.979 33.789 C 16.979 33.711 16.883 33.521 16.767 33.366 C 16.651 33.212 16.556 33.152 16.556 33.23 Z M 47.66 40.995 C 47.66 41.073 47.757 41.264 47.873 41.418 C 47.988 41.571 48.083 41.632 48.083 41.554 C 48.083 41.475 47.988 41.284 47.873 41.13 C 47.757 40.977 47.66 40.916 47.66 40.995 Z M 48.088 41.868 C 48.085 41.952 48.178 42.146 48.295 42.3 C 48.411 42.454 48.509 42.511 48.509 42.427 C 48.513 42.343 48.42 42.148 48.304 41.995 C 48.187 41.841 48.09 41.784 48.087 41.868 Z M 49.1 43.877 C 49.1 43.955 49.195 44.145 49.312 44.3 C 49.428 44.454 49.523 44.514 49.523 44.436 C 49.523 44.357 49.428 44.166 49.312 44.013 C 49.195 43.857 49.1 43.798 49.1 43.877 Z M 50.108 45.895 C 50.108 45.973 50.203 46.162 50.319 46.318 C 50.436 46.471 50.531 46.532 50.531 46.454 C 50.531 46.373 50.436 46.182 50.319 46.029 C 50.203 45.875 50.108 45.814 50.108 45.893 Z M 50.49 47.073 C 50.39 47.591 50.461 47.662 50.675 47.259 C 50.784 47.057 50.795 46.893 50.707 46.805 C 50.618 46.716 50.54 46.812 50.49 47.073 Z M 31.816 63.634 C 31.816 63.713 31.91 63.904 32.026 64.057 C 32.142 64.211 32.239 64.271 32.239 64.193 C 32.239 64.114 32.142 63.925 32.026 63.77 C 31.91 63.616 31.816 63.555 31.816 63.634 Z M 22.233 82.754 C 22.192 82.859 22.18 83.686 22.201 84.593 L 22.242 86.239 L 26.31 86.279 C 29.416 86.307 30.378 86.357 30.378 86.493 C 30.379 86.661 30.656 86.343 30.663 86.168 C 30.663 86.127 28.801 86.096 26.524 86.096 L 22.385 86.096 L 22.385 84.329 C 22.385 82.57 22.369 82.398 22.233 82.754 Z M 20.396 83.814 C 20.342 83.868 20.303 84.046 20.307 84.211 C 20.315 84.486 20.328 84.482 20.455 84.166 C 20.597 83.813 20.567 83.641 20.394 83.814 Z M 94.15 86.384 C 94.15 86.661 94.204 86.888 94.266 86.888 C 94.328 86.888 94.355 86.661 94.321 86.384 C 94.289 86.105 94.237 85.879 94.207 85.879 C 94.177 85.879 94.15 86.105 94.15 86.384 Z M 101.028 85.984 C 101.286 86.016 101.675 86.014 101.891 85.984 C 102.107 85.948 101.897 85.923 101.42 85.923 C 100.946 85.923 100.769 85.952 101.028 85.984 Z M 148.966 85.984 C 149.225 86.016 149.614 86.014 149.83 85.984 C 150.047 85.948 149.835 85.923 149.361 85.923 C 148.884 85.923 148.708 85.952 148.968 85.984 Z M 14.904 86.652 C 14.861 86.78 14.797 86.986 14.762 87.104 C 14.724 87.223 14.726 87.32 14.765 87.32 C 14.874 87.32 15.133 86.57 15.051 86.488 C 15.011 86.446 14.944 86.521 14.904 86.652 Z M 43.364 89.589 L 43.332 91.786 L 45.096 91.755 L 46.859 91.725 L 45.171 91.679 L 43.484 91.634 L 43.441 89.512 L 43.396 87.393 Z M 57.164 88.525 C 57.301 88.646 58.581 88.714 58.509 88.598 C 58.466 88.53 58.133 88.473 57.767 88.473 C 57.403 88.473 57.132 88.496 57.166 88.527 Z M 69.403 88.525 C 69.558 88.661 70.837 88.745 70.755 88.614 C 70.707 88.538 70.37 88.471 70.006 88.471 C 69.64 88.471 69.369 88.496 69.401 88.525 Z M 80.762 88.602 C 80.762 88.673 80.923 88.721 81.123 88.709 C 81.592 88.682 81.592 88.473 81.123 88.473 C 80.925 88.473 80.762 88.53 80.762 88.602 Z M 111.664 88.58 C 111.629 88.641 111.877 88.687 112.218 88.687 C 112.558 88.687 112.808 88.641 112.771 88.58 C 112.735 88.521 112.485 88.473 112.218 88.473 C 111.95 88.473 111.7 88.521 111.664 88.58 Z M 118.143 88.58 C 118.107 88.641 118.358 88.695 118.704 88.704 C 119.051 88.711 119.3 88.662 119.258 88.595 C 119.165 88.445 118.233 88.434 118.143 88.58 Z M 128.032 88.584 C 127.939 88.641 128.21 88.689 128.629 88.689 C 129.05 88.689 129.364 88.641 129.327 88.582 C 129.241 88.443 128.249 88.445 128.032 88.582 Z M 141.032 88.58 C 140.997 88.641 141.277 88.687 141.657 88.687 C 142.039 88.687 142.32 88.641 142.283 88.58 C 142.247 88.521 141.965 88.473 141.659 88.473 C 141.35 88.473 141.07 88.521 141.034 88.58 Z M 75.529 88.87 C 75.494 88.929 75.861 88.959 76.35 88.938 C 77.938 88.866 78.124 88.807 76.85 88.784 C 76.159 88.771 75.565 88.809 75.529 88.87 Z M 82.871 88.87 C 82.835 88.929 83.203 88.959 83.692 88.938 C 85.28 88.866 85.467 88.807 84.191 88.784 C 83.503 88.771 82.908 88.809 82.871 88.87 Z M 90.336 88.852 C 91.367 88.959 92.535 88.968 92.473 88.87 C 92.437 88.809 91.843 88.771 91.155 88.784 C 90.466 88.796 90.098 88.827 90.336 88.852 Z M 95.196 88.866 C 95.57 88.896 96.186 88.896 96.562 88.866 C 96.939 88.838 96.63 88.813 95.879 88.813 C 95.126 88.813 94.819 88.838 95.196 88.866 Z M 98.419 88.87 C 98.384 88.929 98.655 88.959 99.024 88.934 C 100.075 88.866 100.202 88.796 99.306 88.777 C 98.855 88.768 98.457 88.809 98.419 88.87 Z M 103.076 88.85 C 103.936 88.957 104.915 88.968 104.855 88.868 C 104.819 88.809 104.319 88.771 103.752 88.782 C 103.181 88.795 102.878 88.825 103.076 88.85 Z M 106.337 88.868 C 106.301 88.929 106.863 88.977 107.588 88.977 L 108.908 88.977 L 108.908 89.504 C 108.908 89.795 108.956 90 109.015 89.964 C 109.186 89.857 109.14 89.125 108.949 88.934 C 108.76 88.745 106.451 88.686 106.337 88.87 Z M 136.763 88.896 L 137.987 88.977 L 138.032 89.445 C 138.057 89.704 138.126 89.914 138.187 89.914 C 138.351 89.914 138.187 88.995 138.003 88.871 C 137.914 88.812 137.325 88.777 136.692 88.791 L 135.539 88.814 Z M 146.301 88.857 C 146.105 88.936 146.037 90.998 146.229 91.116 C 146.288 91.154 146.336 90.688 146.336 90.08 L 146.336 88.977 L 147.2 88.893 L 148.063 88.809 L 147.273 88.796 C 146.838 88.789 146.399 88.816 146.301 88.857 Z M 151.088 88.846 C 151.749 88.954 152.854 88.97 152.793 88.87 C 152.757 88.809 152.294 88.77 151.762 88.78 C 151.234 88.791 150.929 88.821 151.088 88.846 Z M 135.388 94.309 C 135.388 97.32 135.407 98.573 135.432 97.091 C 135.455 95.611 135.455 93.146 135.432 91.616 C 135.409 90.086 135.389 91.296 135.389 94.309 Z M 52.006 89.839 C 52.008 90.157 52.038 90.27 52.072 90.089 C 52.106 89.899 52.105 89.704 52.069 89.514 C 52.033 89.377 52.004 89.523 52.006 89.839 Z M 124.733 90.236 L 124.31 90.704 L 124.779 90.28 C 125.215 89.888 125.313 89.768 125.202 89.768 C 125.177 89.768 124.967 89.979 124.733 90.236 Z M 53.423 90.611 C 53.186 91.05 53.235 91.173 53.496 90.8 C 53.623 90.618 53.692 90.436 53.653 90.395 C 53.61 90.354 53.507 90.45 53.421 90.609 Z M 69.729 91.03 C 69.637 91.089 69.929 91.143 70.375 91.15 C 70.941 91.159 71.08 91.132 70.828 91.057 C 70.345 90.912 69.929 90.904 69.728 91.03 Z M 110.728 91.048 C 110.601 91.129 110.737 91.168 111.111 91.157 C 111.429 91.15 111.659 91.093 111.622 91.032 C 111.531 90.884 110.97 90.895 110.726 91.05 Z M 117.186 91.02 C 117.012 91.047 116.846 91.111 116.699 91.209 C 116.63 91.275 116.831 91.271 117.145 91.202 C 117.492 91.123 117.852 91.126 118.198 91.211 C 118.505 91.3 118.626 91.298 118.537 91.209 C 118.358 91.03 117.645 90.93 117.184 91.02 Z M 140.01 91.05 C 139.835 91.12 140.078 91.161 140.651 91.161 C 141.223 91.161 141.466 91.12 141.291 91.05 C 141.084 90.981 140.867 90.944 140.649 90.941 C 140.432 90.944 140.216 90.981 140.01 91.05 Z M 32.561 91.425 C 32.472 91.621 32.454 91.786 32.522 91.786 C 32.642 91.786 32.856 91.195 32.768 91.107 C 32.745 91.082 32.652 91.225 32.561 91.425 Z M 6.444 92.005 C 6.48 92.202 6.564 92.363 6.626 92.363 C 6.76 92.363 6.637 91.811 6.483 91.716 C 6.425 91.68 6.407 91.809 6.444 92.005 Z M 109.049 92.254 C 108.938 92.563 108.901 99.702 109.01 99.593 C 109.104 99.498 109.247 92.073 109.154 92.075 C 109.133 92.075 109.085 92.155 109.049 92.254 Z M 119.165 94.932 C 119.227 99.6 119.284 100.011 119.315 96.009 C 119.332 93.932 119.297 92.205 119.236 92.168 C 119.177 92.132 119.145 93.375 119.165 94.932 Z M 62.936 92.432 C 62.941 92.631 62.981 92.826 63.055 93.011 C 63.212 93.377 63.212 92.998 63.055 92.505 C 62.962 92.216 62.939 92.202 62.936 92.434 Z M 138.028 96.036 C 138.005 98.057 138.035 99.711 138.096 99.711 C 138.155 99.711 138.203 98.057 138.203 96.036 C 138.203 94.014 138.172 92.363 138.137 92.363 C 138.099 92.363 138.049 94.014 138.028 96.036 Z M 67.401 92.864 C 67.31 93.064 67.292 93.227 67.36 93.227 C 67.48 93.227 67.696 92.636 67.608 92.548 C 67.585 92.523 67.49 92.666 67.401 92.864 Z M 12.385 93.65 C 12.203 93.989 12.194 94.132 12.364 94.029 C 12.49 93.95 12.688 93.37 12.589 93.37 C 12.56 93.37 12.467 93.495 12.385 93.65 Z M 52.295 94.163 C 52.295 94.48 52.326 94.591 52.36 94.413 C 52.394 94.222 52.394 94.027 52.358 93.838 C 52.322 93.698 52.293 93.846 52.295 94.163 Z M 16.405 94.182 C 16.324 94.391 16.287 94.589 16.319 94.623 C 16.351 94.655 16.448 94.484 16.533 94.241 C 16.719 93.705 16.605 93.652 16.405 94.182 Z M 134.005 94.595 C 133.978 94.952 134.003 95.243 134.064 95.243 C 134.123 95.243 134.171 94.952 134.171 94.595 C 134.171 94.237 134.146 93.946 134.115 93.946 C 134.083 93.946 134.033 94.239 134.005 94.595 Z M 43.364 97.009 L 43.398 99.782 L 43.441 97.121 C 43.471 95.22 43.534 94.432 43.66 94.352 C 43.783 94.273 43.76 94.239 43.584 94.238 C 43.352 94.234 43.334 94.45 43.364 97.009 Z M 45.573 94.439 C 45.874 94.659 46.01 94.636 45.858 94.388 C 45.805 94.304 45.657 94.236 45.528 94.236 C 45.332 94.236 45.339 94.268 45.573 94.439 Z M 123.088 95.243 C 123.088 95.482 123.142 95.675 123.206 95.675 C 123.272 95.675 123.297 95.482 123.261 95.243 C 123.225 95.005 123.172 94.811 123.143 94.811 C 123.113 94.811 123.088 95.007 123.088 95.243 Z M 67.235 95.323 C 67.282 95.5 67.356 95.667 67.456 95.82 L 67.674 96.18 L 67.58 95.82 C 67.481 95.445 67.226 95.075 67.235 95.323 Z M 72.341 96.439 C 71.842 97.052 71.778 97.184 72.138 96.864 C 72.34 96.686 72.584 96.541 72.682 96.541 C 72.78 96.541 72.821 96.475 72.771 96.396 C 72.657 96.207 72.518 96.221 72.341 96.439 Z M 15.422 96.775 C 15.327 96.984 15.283 97.186 15.322 97.227 C 15.363 97.268 15.464 97.12 15.548 96.9 C 15.632 96.68 15.677 96.477 15.648 96.448 C 15.618 96.418 15.516 96.566 15.422 96.775 Z M 25 98.588 C 24.883 99.034 24.972 99.059 25.166 98.63 C 25.257 98.432 25.275 98.27 25.207 98.27 C 25.14 98.27 25.047 98.413 25 98.588 Z M 24.672 99.343 C 24.576 99.596 24.715 99.855 24.951 99.852 C 25.072 99.852 25.068 99.816 24.936 99.732 C 24.835 99.668 24.794 99.507 24.843 99.375 C 24.895 99.243 24.895 99.134 24.843 99.134 C 24.794 99.134 24.717 99.229 24.672 99.343 Z M 104.969 99.427 C 104.781 99.582 104.696 99.711 104.778 99.711 C 104.922 99.711 105.379 99.32 105.379 99.196 C 105.379 99.098 105.329 99.125 104.969 99.429 Z M 56.383 99.891 C 56.418 99.95 57.187 99.998 58.088 99.998 C 58.989 99.998 59.756 99.95 59.794 99.891 C 59.829 99.83 59.062 99.784 58.088 99.784 C 57.114 99.784 56.347 99.83 56.383 99.891 Z M 68.509 99.896 C 68.572 99.957 69.33 99.989 70.193 99.968 L 71.763 99.925 L 70.079 99.854 C 69.153 99.814 68.447 99.834 68.509 99.896 Z M 84.887 99.891 C 84.923 99.95 85.599 99.998 86.386 99.998 C 87.172 99.998 87.817 99.95 87.817 99.891 C 87.817 99.83 87.142 99.784 86.318 99.784 C 85.495 99.784 84.851 99.83 84.887 99.891 Z M 101.765 99.896 C 101.829 99.961 102.328 99.993 102.874 99.968 L 103.868 99.923 L 102.758 99.852 C 102.148 99.814 101.702 99.834 101.766 99.896 Z M 127.263 99.891 C 127.263 99.95 128.003 99.998 128.909 99.998 C 129.814 99.998 130.587 99.95 130.622 99.891 C 130.658 99.83 129.917 99.784 128.975 99.784 C 128.033 99.784 127.263 99.83 127.263 99.891 Z M 150.551 99.959 C 150.809 99.991 151.198 99.989 151.414 99.959 C 151.63 99.923 151.419 99.898 150.943 99.9 C 150.468 99.9 150.292 99.927 150.551 99.959 Z\" fill=\"rgb(36,12,68)\"></path><path d=\"M 133.86 21.579 C 138.003 21.598 144.74 21.598 148.831 21.579 C 152.923 21.557 149.532 21.539 141.298 21.539 C 133.063 21.539 129.716 21.557 133.859 21.579 Z\" fill=\"rgb(44,60,116)\"></path></svg>',svgContentId:112519e5,withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1d4k5my\",\"data-framer-name\":\"Adria-logo\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 191 72\"><g transform=\"translate(0.95 0)\" id=\"ss9204118662_1\"><path d=\"M 0 0 L 190 0 L 190 72 L 0 72 Z\" fill=\"transparent\"></path><path d=\"M 91.424 48.416 C 90.529 48.416 89.806 48.153 89.288 47.629 C 88.763 47.105 88.501 46.389 88.501 45.494 L 88.501 17.14 C 88.501 16.245 88.763 15.529 89.288 15.005 C 89.812 14.48 90.528 14.218 91.424 14.218 C 92.32 14.218 93.037 14.487 93.561 15.011 C 94.086 15.535 94.348 16.251 94.348 17.146 L 94.348 17.984 C 95.358 16.893 96.554 15.991 97.88 15.318 C 99.773 14.353 101.834 13.867 104.015 13.867 C 105.781 13.867 107.22 14.11 108.282 14.583 C 109.812 15.273 110.138 16.296 110.138 17.031 C 110.138 17.338 110.106 17.575 110.048 17.767 C 109.85 18.47 109.498 18.981 109.012 19.262 C 108.57 19.525 108.001 19.652 107.272 19.652 C 106.894 19.652 106.28 19.614 105.346 19.532 C 104.885 19.487 104.421 19.467 103.958 19.474 C 101.111 19.474 98.769 20.234 96.984 21.73 C 95.212 23.22 94.348 25.112 94.348 27.503 L 94.348 45.5 C 94.348 46.395 94.086 47.111 93.561 47.636 C 93.037 48.16 92.321 48.422 91.424 48.422 Z M 120.643 48.415 C 119.785 48.415 119.069 48.128 118.506 47.565 C 117.943 47.009 117.655 46.286 117.655 45.43 L 117.655 17.204 C 117.655 16.354 117.943 15.631 118.506 15.069 C 119.069 14.506 119.785 14.219 120.643 14.219 C 121.5 14.219 122.217 14.506 122.76 15.075 C 123.298 15.638 123.573 16.354 123.573 17.204 L 123.573 45.436 C 123.573 46.286 123.298 46.996 122.76 47.559 C 122.217 48.128 121.506 48.415 120.643 48.415 Z M 120.579 9.225 C 119.478 9.225 118.544 8.835 117.802 8.068 C 117.066 7.308 116.689 6.368 116.689 5.274 C 116.689 4.181 117.079 3.19 117.853 2.461 C 118.615 1.745 119.549 1.387 120.643 1.387 C 121.737 1.387 122.607 1.752 123.368 2.461 C 124.142 3.184 124.533 4.13 124.533 5.274 C 124.533 6.419 124.149 7.307 123.387 8.074 C 122.626 8.835 121.679 9.225 120.585 9.225 Z M 149.861 48.722 C 146.707 48.722 143.809 47.955 141.25 46.434 C 138.691 44.919 136.65 42.815 135.178 40.174 C 133.707 37.547 132.958 34.574 132.958 31.346 C 132.958 28.117 133.726 25.132 135.242 22.485 C 136.759 19.825 138.864 17.709 141.499 16.2 C 144.142 14.685 147.117 13.918 150.341 13.918 C 153.566 13.918 156.541 14.685 159.183 16.2 C 161.798 17.694 163.96 19.868 165.44 22.491 C 166.956 25.144 167.724 28.13 167.724 31.352 L 167.724 45.5 C 167.724 46.312 167.436 47.016 166.873 47.578 C 166.31 48.141 165.587 48.428 164.736 48.428 C 163.885 48.428 163.175 48.154 162.612 47.623 C 162.043 47.079 161.755 46.37 161.755 45.507 L 161.755 43.665 C 160.487 45.032 158.985 46.162 157.321 47.003 C 155.069 48.147 152.561 48.729 149.861 48.729 Z M 150.341 19.403 C 148.179 19.403 146.189 19.934 144.43 20.97 C 142.681 21.994 141.242 23.472 140.265 25.247 C 139.254 27.05 138.748 29.102 138.748 31.352 C 138.748 33.602 139.26 35.648 140.265 37.452 C 141.236 39.221 142.674 40.689 144.423 41.696 C 146.189 42.719 148.179 43.237 150.341 43.237 C 152.504 43.237 154.48 42.719 156.227 41.697 C 157.963 40.681 159.392 39.214 160.36 37.451 C 161.364 35.648 161.876 33.596 161.876 31.352 C 161.876 29.108 161.364 27.05 160.36 25.253 C 159.385 23.485 157.956 22.009 156.221 20.976 C 154.48 19.94 152.504 19.41 150.341 19.41 Z M 16.904 48.722 C 13.749 48.722 10.851 47.955 8.292 46.434 C 5.733 44.919 3.692 42.815 2.221 40.174 C 0.749 37.547 0.001 34.574 0.001 31.346 C 0.001 28.117 0.768 25.132 2.285 22.485 C 3.801 19.825 5.905 17.709 8.542 16.2 C 11.177 14.685 14.152 13.918 17.383 13.918 C 20.614 13.918 23.583 14.685 26.225 16.2 C 28.84 17.694 31.002 19.868 32.482 22.491 C 33.998 25.144 34.766 28.13 34.766 31.352 L 34.766 45.5 C 34.766 46.312 34.478 47.016 33.916 47.578 C 33.352 48.141 32.629 48.428 31.778 48.428 C 30.928 48.428 30.218 48.154 29.654 47.616 C 29.084 47.073 28.797 46.363 28.797 45.5 L 28.797 43.66 C 27.529 45.027 26.027 46.157 24.363 46.997 C 22.111 48.142 19.603 48.723 16.903 48.723 Z M 17.384 19.403 C 15.221 19.403 13.231 19.934 11.472 20.97 C 9.724 21.994 8.284 23.472 7.307 25.247 C 6.297 27.05 5.791 29.102 5.791 31.352 C 5.791 33.602 6.302 35.648 7.307 37.452 C 8.28 39.22 9.718 40.687 11.465 41.696 C 13.231 42.719 15.221 43.237 17.383 43.237 C 19.546 43.237 21.523 42.719 23.263 41.697 C 24.999 40.681 26.428 39.214 27.396 37.451 C 28.4 35.648 28.912 33.603 28.912 31.352 C 28.912 29.102 28.4 27.05 27.396 25.253 C 26.419 23.486 24.99 22.01 23.256 20.976 C 21.516 19.94 19.539 19.41 17.376 19.41 L 17.383 19.403 Z M 8.612 58.926 C 9.265 59.296 9.813 59.826 10.205 60.466 C 10.284 60.588 10.326 60.731 10.327 60.876 C 10.327 61.093 10.224 61.259 10.02 61.381 C 9.812 61.484 9.566 61.475 9.367 61.355 C 9.259 61.292 9.168 61.201 9.105 61.093 C 8.471 60.103 7.518 59.597 6.239 59.584 C 5.324 59.584 4.601 59.776 4.069 60.16 C 3.539 60.543 3.276 61.093 3.276 61.803 C 3.276 63.126 4.345 63.925 6.476 64.207 C 7.876 64.411 8.919 64.84 9.61 65.492 C 10.301 66.144 10.647 67.007 10.647 68.081 C 10.647 68.874 10.455 69.551 10.071 70.127 C 9.682 70.705 9.136 71.16 8.497 71.437 C 7.832 71.737 7.083 71.885 6.257 71.885 C 5.183 71.885 4.237 71.655 3.404 71.201 C 2.573 70.747 1.978 70.127 1.619 69.347 C 1.572 69.265 1.548 69.172 1.549 69.078 C 1.549 68.918 1.607 68.791 1.729 68.682 C 1.849 68.573 2.009 68.522 2.208 68.522 C 2.342 68.522 2.47 68.56 2.592 68.631 C 2.71 68.705 2.802 68.815 2.854 68.944 C 3.116 69.449 3.545 69.858 4.153 70.171 C 4.754 70.485 5.458 70.638 6.264 70.638 C 7.192 70.638 7.934 70.414 8.504 69.967 C 9.066 69.519 9.348 68.899 9.348 68.094 C 9.348 67.384 9.086 66.784 8.561 66.297 C 8.036 65.811 7.249 65.504 6.201 65.364 C 4.889 65.204 3.859 64.794 3.111 64.136 C 2.361 63.478 1.984 62.666 1.984 61.706 C 1.984 61.029 2.17 60.435 2.534 59.923 C 2.899 59.412 3.411 59.015 4.057 58.74 C 4.71 58.466 5.445 58.325 6.271 58.325 C 7.16 58.325 7.947 58.523 8.625 58.919 Z M 30.422 59.214 C 31.439 59.782 32.278 60.621 32.847 61.637 C 33.429 62.666 33.717 63.823 33.717 65.108 C 33.717 66.393 33.423 67.557 32.847 68.586 C 32.28 69.606 31.44 70.447 30.422 71.016 C 29.386 71.603 28.234 71.898 26.954 71.898 C 25.674 71.898 24.51 71.604 23.48 71.015 C 22.467 70.444 21.632 69.603 21.068 68.586 C 20.486 67.55 20.198 66.393 20.198 65.108 C 20.198 63.823 20.486 62.666 21.068 61.637 C 21.636 60.624 22.47 59.786 23.48 59.214 C 24.51 58.625 25.669 58.331 26.954 58.331 C 28.24 58.331 29.386 58.625 30.422 59.214 Z M 24.152 60.314 C 23.333 60.788 22.657 61.475 22.195 62.301 C 21.721 63.139 21.485 64.079 21.485 65.101 C 21.485 66.125 21.721 67.077 22.195 67.921 C 22.657 68.748 23.333 69.434 24.152 69.909 C 24.984 70.395 25.918 70.639 26.954 70.639 C 27.991 70.639 28.912 70.395 29.744 69.909 C 30.564 69.435 31.24 68.748 31.702 67.921 C 32.175 67.077 32.412 66.137 32.412 65.101 C 32.412 64.066 32.175 63.139 31.702 62.301 C 31.24 61.474 30.564 60.788 29.744 60.313 C 28.912 59.827 27.984 59.584 26.954 59.584 C 25.924 59.584 24.984 59.827 24.152 60.314 Z M 52.302 70.65 C 52.423 70.767 52.491 70.929 52.488 71.098 C 52.492 71.267 52.425 71.43 52.302 71.546 C 52.175 71.668 52.005 71.733 51.829 71.725 L 44.542 71.725 C 44.367 71.727 44.198 71.658 44.075 71.533 C 43.95 71.41 43.881 71.242 43.883 71.067 L 43.883 59.169 C 43.883 58.989 43.947 58.829 44.075 58.702 C 44.198 58.577 44.367 58.508 44.542 58.51 C 44.734 58.51 44.894 58.574 45.015 58.696 C 45.139 58.822 45.206 58.993 45.201 59.169 L 45.201 70.479 L 51.822 70.479 C 52.014 70.479 52.174 70.536 52.296 70.657 L 52.302 70.651 Z M 62.231 58.69 C 62.357 58.566 62.528 58.498 62.705 58.504 C 62.897 58.504 63.057 58.568 63.178 58.689 C 63.302 58.815 63.369 58.986 63.364 59.162 L 63.364 67.359 C 63.364 68.011 63.53 68.599 63.863 69.11 C 64.196 69.622 64.663 70.024 65.258 70.312 C 65.859 70.6 66.538 70.74 67.305 70.74 C 68.073 70.74 68.732 70.6 69.32 70.312 C 69.882 70.046 70.361 69.63 70.702 69.11 C 71.035 68.599 71.202 68.01 71.202 67.359 L 71.202 59.162 C 71.202 58.971 71.265 58.811 71.387 58.689 C 71.513 58.565 71.684 58.498 71.86 58.504 C 72.037 58.499 72.208 58.565 72.334 58.689 C 72.458 58.815 72.524 58.986 72.519 59.162 L 72.519 67.359 C 72.519 68.247 72.295 69.046 71.847 69.756 C 71.393 70.467 70.751 71.038 69.992 71.406 C 69.199 71.802 68.303 72 67.299 72 C 66.294 72 65.373 71.802 64.573 71.405 C 63.773 71.009 63.146 70.459 62.699 69.755 C 62.251 69.053 62.027 68.254 62.027 67.359 L 62.027 59.162 C 62.022 58.986 62.089 58.815 62.212 58.689 L 62.232 58.689 Z M 92.333 58.676 C 92.449 58.793 92.512 58.953 92.506 59.118 C 92.51 59.277 92.448 59.43 92.333 59.54 C 92.215 59.654 92.056 59.714 91.892 59.706 L 87.86 59.706 L 87.86 71.066 C 87.862 71.24 87.795 71.408 87.674 71.533 C 87.551 71.661 87.379 71.731 87.201 71.725 C 87.026 71.727 86.857 71.658 86.734 71.533 C 86.609 71.41 86.54 71.242 86.542 71.067 L 86.542 59.706 L 82.524 59.706 C 82.361 59.711 82.202 59.651 82.083 59.54 C 81.97 59.429 81.907 59.277 81.91 59.118 C 81.904 58.953 81.967 58.793 82.083 58.676 C 82.201 58.562 82.36 58.502 82.524 58.51 L 91.891 58.51 C 92.054 58.505 92.213 58.565 92.332 58.676 Z M 102.083 58.69 C 102.208 58.569 102.376 58.502 102.55 58.504 C 102.742 58.504 102.902 58.568 103.023 58.689 C 103.147 58.815 103.214 58.986 103.209 59.162 L 103.209 71.06 C 103.211 71.234 103.144 71.402 103.023 71.527 C 102.9 71.655 102.728 71.725 102.55 71.719 C 102.375 71.721 102.206 71.652 102.083 71.527 C 101.958 71.404 101.889 71.235 101.891 71.06 L 101.891 59.162 C 101.891 58.971 101.955 58.811 102.083 58.689 Z M 123.611 59.214 C 124.628 59.782 125.467 60.621 126.036 61.637 C 126.618 62.666 126.906 63.823 126.906 65.108 C 126.906 66.393 126.618 67.557 126.036 68.586 C 125.467 69.604 124.628 70.445 123.611 71.016 C 122.575 71.603 121.423 71.898 120.144 71.898 C 118.864 71.898 117.7 71.604 116.67 71.015 C 115.657 70.444 114.822 69.603 114.258 68.586 C 113.676 67.55 113.388 66.393 113.388 65.108 C 113.388 63.823 113.676 62.666 114.258 61.637 C 114.826 60.624 115.66 59.786 116.67 59.214 C 117.7 58.625 118.858 58.331 120.144 58.331 C 121.43 58.331 122.575 58.625 123.611 59.214 Z M 117.342 60.314 C 116.522 60.788 115.846 61.475 115.384 62.301 C 114.911 63.139 114.674 64.079 114.674 65.101 C 114.674 66.125 114.911 67.077 115.384 67.921 C 115.846 68.748 116.522 69.435 117.342 69.909 C 118.173 70.395 119.107 70.639 120.144 70.639 C 121.18 70.639 122.102 70.395 122.933 69.909 C 123.753 69.435 124.429 68.748 124.891 67.921 C 125.364 67.077 125.601 66.137 125.601 65.101 C 125.601 64.066 125.364 63.139 124.891 62.301 C 124.429 61.474 123.753 60.787 122.933 60.313 C 122.102 59.827 121.174 59.584 120.144 59.584 C 119.114 59.584 118.173 59.827 117.342 60.314 Z M 146.534 58.69 C 146.659 58.569 146.827 58.502 147.001 58.504 C 147.178 58.499 147.349 58.565 147.475 58.689 C 147.599 58.815 147.665 58.986 147.66 59.162 L 147.66 71.06 C 147.662 71.234 147.595 71.402 147.475 71.527 C 147.351 71.655 147.179 71.725 147.001 71.719 C 146.778 71.719 146.611 71.649 146.509 71.501 L 138.397 60.869 L 138.397 71.06 C 138.399 71.234 138.332 71.402 138.211 71.527 C 138.088 71.655 137.916 71.725 137.738 71.719 C 137.561 71.724 137.39 71.657 137.264 71.533 C 137.14 71.407 137.074 71.236 137.079 71.06 L 137.079 59.162 C 137.074 58.986 137.141 58.815 137.264 58.689 C 137.39 58.565 137.561 58.498 137.738 58.504 C 137.942 58.504 138.109 58.581 138.243 58.74 L 146.342 69.372 L 146.342 59.162 C 146.342 58.971 146.406 58.811 146.534 58.689 Z M 164.909 58.926 C 165.562 59.296 166.11 59.826 166.502 60.466 C 166.581 60.588 166.623 60.731 166.623 60.876 C 166.623 61.093 166.521 61.259 166.316 61.381 C 166.109 61.484 165.863 61.475 165.664 61.355 C 165.557 61.29 165.467 61.2 165.401 61.093 C 164.768 60.103 163.815 59.597 162.535 59.584 C 161.62 59.584 160.897 59.776 160.366 60.16 C 159.835 60.543 159.573 61.093 159.573 61.803 C 159.573 63.126 160.641 63.925 162.772 64.207 C 164.173 64.411 165.216 64.84 165.907 65.492 C 166.598 66.144 166.943 67.007 166.943 68.081 C 166.943 68.874 166.751 69.551 166.367 70.127 C 165.979 70.705 165.433 71.16 164.794 71.437 C 164.128 71.737 163.38 71.885 162.554 71.885 C 161.48 71.885 160.533 71.655 159.701 71.201 C 158.869 70.747 158.274 70.127 157.916 69.347 C 157.869 69.265 157.845 69.172 157.846 69.078 C 157.846 68.918 157.903 68.791 158.025 68.682 C 158.146 68.573 158.306 68.522 158.505 68.522 C 158.639 68.522 158.767 68.56 158.888 68.631 C 159.006 68.705 159.098 68.815 159.151 68.944 C 159.413 69.449 159.842 69.858 160.45 70.171 C 161.057 70.485 161.755 70.638 162.561 70.638 C 163.488 70.638 164.231 70.414 164.8 69.967 C 165.369 69.519 165.644 68.899 165.644 68.094 C 165.644 67.384 165.382 66.784 164.858 66.297 C 164.333 65.811 163.546 65.504 162.497 65.364 C 161.185 65.204 160.155 64.794 159.407 64.136 C 158.658 63.478 158.281 62.666 158.281 61.706 C 158.281 61.029 158.466 60.435 158.831 59.923 C 159.196 59.412 159.707 59.015 160.354 58.74 C 161 58.466 161.742 58.325 162.567 58.325 C 163.456 58.325 164.243 58.523 164.922 58.919 Z\" fill=\"rgb(10,44,79)\"></path><path d=\"M 71.553 32.362 C 71.406 34.152 70.913 35.802 70.101 37.266 C 69.124 39.033 67.695 40.509 65.961 41.543 C 64.221 42.585 62.244 43.109 60.081 43.109 C 57.919 43.109 55.93 42.579 54.171 41.537 C 52.422 40.513 50.983 39.035 50.005 37.26 C 49.186 35.795 48.7 34.146 48.547 32.356 L 42.744 32.452 C 42.923 35.188 43.671 37.732 44.984 40.022 C 46.466 42.641 48.627 44.813 51.24 46.306 C 53.876 47.821 56.85 48.588 60.082 48.588 C 63.312 48.588 66.288 47.821 68.923 46.306 C 71.536 44.812 73.698 42.641 75.18 40.021 C 76.486 37.733 77.24 35.181 77.42 32.451 L 71.553 32.356 Z\" fill=\"rgb(243,190,18)\"></path><path d=\"M 77.465 17.012 C 77.465 16.762 77.445 16.558 77.407 16.386 L 77.407 2.986 C 77.407 2.136 77.132 1.419 76.594 0.856 C 76.051 0.289 75.34 0 74.477 0 C 73.613 0 72.903 0.288 72.34 0.85 C 71.777 1.413 71.489 2.135 71.489 2.992 L 71.559 18.809 C 70.741 18.101 69.856 17.474 68.917 16.936 C 66.281 15.42 63.307 14.653 60.075 14.653 C 56.845 14.653 53.87 15.42 51.234 16.936 C 48.619 18.428 46.457 20.599 44.977 23.22 C 43.672 25.509 42.917 28.053 42.737 30.79 L 42.725 30.988 L 48.534 30.988 L 48.534 30.886 C 48.694 29.096 49.18 27.446 49.999 25.982 C 50.976 24.207 52.416 22.729 54.164 21.705 C 55.924 20.663 57.913 20.132 60.076 20.132 C 62.238 20.132 64.215 20.662 65.955 21.698 C 67.689 22.732 69.118 24.208 70.095 25.975 C 70.913 27.433 71.4 29.083 71.547 30.879 L 71.547 30.981 L 77.458 30.981 L 77.458 17.012 Z\" fill=\"rgb(10,44,79)\"></path></g></svg>',svgContentId:9204118662,withExternalLayout:true}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:127.27272451416526,intrinsicWidth:454.54544469344734,pixelHeight:140,pixelWidth:500,src:\"https://framerusercontent.com/images/AS6tB0Z3M4cFRaCAMFRqk0H1rg.png\"},className:\"framer-vy0kw3\",\"data-framer-name\":\"65ca233ab931cdebe3c0f0e4 Newsom_Primary-p-500\"})],speed:40,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-wjsd2n hidden-72rtr7 hidden-if76u1\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-1.5px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"Client Feedback\"})}),className:\"framer-xuyt1l\",fonts:[\"GF;Inter-700\"],id:elementId1,ref:ref2,verticalAlignment:\"top\",withExternalLayout:true})}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ne61pg hidden-72rtr7 hidden-if76u1\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-l6zh8m-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"Y1M9e_2gf\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.3)\",arrowGap:10,arrowPadding:20,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:40,showMouseControls:true},autoPlayControl:true,borderRadius:50,direction:\"left\",dragControl:true,effectsOptions:{effectsHover:false,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1,playOffscreen:false},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:0,overflow:false},gap:19,height:\"100%\",id:\"Y1M9e_2gf\",intervalControl:5,itemAmount:1,layoutId:\"Y1M9e_2gf\",padding:50,paddingBottom:50,paddingLeft:50,paddingPerSide:false,paddingRight:50,paddingTop:50,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-v6zr53\",\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1llsruz\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:100,intrinsicWidth:100,src:\"https://framerusercontent.com/images/yifANZz08LFTlpktSXzUNZAGAQ4.png\"},className:\"framer-fn2lw8\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1skuskf\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-b9c3c957-2c66-49c4-9732-fa196fddac20, rgb(0, 17, 34))\"},children:\"Dave Topping\"})}),className:\"framer-1hgwmuj\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-fb4b67b5-91ba-4b73-b4a6-f55417ea1c0c, rgb(102, 102, 102))\"},children:\"Operations Director,\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-fb4b67b5-91ba-4b73-b4a6-f55417ea1c0c, rgb(102, 102, 102))\"},children:\"Walker Lovell\"})]}),className:\"framer-ezdgu2\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(102, 102, 102)\"},children:'\"Our experience with Tech2Rec has been nothing short of exceptional, they have a deep understanding of the latest trends and have advised us on the most effective solutions for our business. This has led to increased revenue & growth for our business.\"'})}),className:\"framer-1i3sz4m\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-fndxnn\",\"data-framer-name\":\"Venturi\",id:elementId2,ref:ref3,children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-p06rvr\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:100,intrinsicWidth:100,src:\"https://framerusercontent.com/images/6SFrcqoMs9H4eYnMrBhej3SMqSs.png\"},className:\"framer-n28hvc\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1edtaqm\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-b9c3c957-2c66-49c4-9732-fa196fddac20, rgb(0, 17, 34))\"},children:\"Brad Lamb\"})}),className:\"framer-11taugn\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-fb4b67b5-91ba-4b73-b4a6-f55417ea1c0c, rgb(102, 102, 102))\"},children:\"CEO,\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-fb4b67b5-91ba-4b73-b4a6-f55417ea1c0c, rgb(102, 102, 102))\"},children:\"Venturi\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-fb4b67b5-91ba-4b73-b4a6-f55417ea1c0c, rgb(102, 102, 102))\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})})]}),className:\"framer-1fq7rms\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(102, 102, 102)\"},children:'\"I would highly recommend the team at Tech2Rec. They can\\'t do more to support you & their knowledge and guidance regarding technology has been really invaluable. They are friendly & nothing is too much trouble. Navigating how to get the best out of the tools to take you forward as a recruitment business\"'})}),className:\"framer-196x0hs\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-z0wp89\",\"data-framer-name\":\"Integro\",id:elementId3,ref:ref4,children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-m1ylh\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:100,intrinsicWidth:100,src:\"https://framerusercontent.com/images/2Lzd2aaT4idu6gbGvkR9kvto2cM.png\"},className:\"framer-ik9iu7\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-nfpnyg\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-b9c3c957-2c66-49c4-9732-fa196fddac20, rgb(0, 17, 34))\"},children:\"Jonny O'Dea\"})}),className:\"framer-1gi20xe\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-fb4b67b5-91ba-4b73-b4a6-f55417ea1c0c, rgb(102, 102, 102))\"},children:\"Director,\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-fb4b67b5-91ba-4b73-b4a6-f55417ea1c0c, rgb(102, 102, 102))\"},children:\"Integro Partners\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-fb4b67b5-91ba-4b73-b4a6-f55417ea1c0c, rgb(102, 102, 102))\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})})]}),className:\"framer-1qz5u1u\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(102, 102, 102)\"},children:\"\\\"The onboarding process with Tech2Rec was seamless, we had a technology roadmap for the next 6 months in place within a week. We've recently implemented an AI phone system which is saving each member of my team hours every week. I wouldn't hesitate to recommend Tech2Rec to any recruiter looking for a forward thinking technology partner.\\\"\"})}),className:\"framer-mxkrq1\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1diheow\",\"data-framer-name\":\"ddn2\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1swq06n\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:100,intrinsicWidth:100,sizes:\"50px\",src:\"https://framerusercontent.com/images/0rQYDFtIVNRBI5LhcFkO8GyRco.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/0rQYDFtIVNRBI5LhcFkO8GyRco.png?scale-down-to=512 512w,https://framerusercontent.com/images/0rQYDFtIVNRBI5LhcFkO8GyRco.png 640w\"},className:\"framer-1btdqxk\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-2z4jef\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-b9c3c957-2c66-49c4-9732-fa196fddac20, rgb(0, 17, 34))\"},children:\"John Marks\"})}),className:\"framer-1oeq89y\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-fb4b67b5-91ba-4b73-b4a6-f55417ea1c0c, rgb(102, 102, 102))\"},children:\"Operations Director,\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-fb4b67b5-91ba-4b73-b4a6-f55417ea1c0c, rgb(102, 102, 102))\"},children:\"Dynamic Search\"})]}),className:\"framer-g14lnq\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(102, 102, 102)\"},children:'\"The team at Tech2Rec have been instrumental to our business growth over the last 18 months. Recommending automation & AI to streamline sales & operations. Their knowledge of the recruitment sector has proven invaluable. They know exactly what solutions to implement when helping us solve a business problem.\"'})}),className:\"framer-oi36vr\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:40,delay:0,mass:1,stiffness:200,type:\"spring\"},width:\"100%\"})})})}),isDisplayed1()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-lemk7c hidden-1xek37s\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-dalmxh\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-fjzhu9\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{zPcqYc0Lf:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-2px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"Making technology a superpower for these recruitment teams\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-2.6px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"Making technology a superpower for these recruitment teams\"})}),className:\"framer-1gssvbf\",fonts:[\"GF;Inter-700\"],id:elementId4,ref:ref5,verticalAlignment:\"top\",withExternalLayout:true})})}),isDisplayed2()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-14zvssp hidden-if76u1\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-es9cnq-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"LdrrCIgDp\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:0,overflow:false},gap:80,height:\"100%\",hoverFactor:.5,id:\"LdrrCIgDp\",layoutId:\"LdrrCIgDp\",padding:20,paddingBottom:20,paddingLeft:20,paddingPerSide:false,paddingRight:20,paddingTop:20,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(SVG,{className:\"framer-5lzflz\",\"data-framer-name\":\"Kintec cmky_full_colour\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 230 75\"><path d=\"M 36.923 73.592 C 16.559 73.592 0 57.092 0 36.8 C 0 16.508 16.559 0 36.923 0 C 57.288 0 73.843 16.504 73.843 36.8 C 73.843 57.096 57.284 73.592 36.923 73.592 Z M 36.923 2.108 C 17.725 2.108 2.107 17.665 2.107 36.8 C 2.107 55.935 17.725 71.492 36.92 71.492 C 56.115 71.492 71.728 55.923 71.728 36.8 C 71.728 17.677 56.115 2.108 36.923 2.108 Z\" fill=\"rgb(5,89,125)\"></path><path d=\"M 21.267 35.004 L 35.731 35.004 C 36.893 35.004 38.517 34.335 39.335 33.508 L 57.284 15.546 C 58.102 14.719 57.824 14.042 56.663 14.042 L 42.199 14.042 C 41.033 14.042 39.416 14.715 38.594 15.546 L 20.638 33.508 C 19.82 34.335 20.102 35.004 21.263 35.004 Z M 39.335 40.088 C 38.517 39.273 36.893 38.604 35.731 38.604 L 21.267 38.604 C 20.106 38.604 19.828 39.277 20.642 40.088 L 38.598 58.058 C 39.42 58.877 41.041 59.55 42.203 59.55 L 56.666 59.55 C 57.828 59.55 58.106 58.877 57.288 58.058 L 39.339 40.088 Z\" fill=\"rgb(5,89,125)\"></path><path d=\"M 33.149 58.412 L 18.678 43.327 C 17.96 42.588 17.856 42.612 17.586 42.646 C 17.258 42.673 17.208 43.077 17.204 43.238 L 17.204 55.154 C 17.335 56.627 18.111 59.208 21.862 59.542 L 32.296 59.542 C 33.578 59.469 33.462 58.885 33.153 58.408 Z M 17.2 30.258 C 17.208 30.435 17.254 30.812 17.582 30.858 C 17.759 30.877 17.867 30.9 18.122 30.7 L 32.871 15.454 C 33.296 14.962 33.774 14.108 32.146 14.042 L 22.687 14.042 C 18.219 14.042 17.339 16.892 17.2 18.477 L 17.2 30.254 Z\" fill=\"rgb(84,200,232)\"></path><path d=\"M 83.884 11.035 L 91.954 11.035 L 91.954 27.062 L 107.282 11.035 L 117.373 11.035 L 101.713 26.846 L 118.786 50.115 L 108.914 50.115 L 96.152 32.235 L 91.954 36.362 L 91.954 50.115 L 83.884 50.115 Z\" fill=\"rgb(0,67,101)\"></path><path d=\"M 118.662 21.212 L 126.407 21.212 L 126.407 50.115 L 118.662 50.115 Z M 130.402 21.212 L 137.969 21.212 L 137.969 24.677 C 140.161 21.873 143.102 20.485 146.752 20.485 C 153.131 20.485 156.296 23.812 156.296 30.438 L 156.296 50.115 L 148.555 50.115 L 148.555 32.669 C 148.555 28.727 147.405 26.908 144.082 26.908 C 140.485 26.908 138.143 29.169 138.143 32.958 L 138.143 50.115 L 130.402 50.115 Z M 201.512 41.335 C 199.934 47.385 194.971 51.069 188.094 51.069 C 179.859 51.069 174.445 45.219 174.445 35.485 C 174.445 25.75 179.639 20.215 187.979 20.215 C 196.82 20.215 201.891 25.758 201.891 35.7 C 201.891 36.358 201.891 37.008 201.84 37.719 L 182.476 37.719 C 182.692 42.215 184.71 44.565 188.477 44.565 C 191.085 44.565 192.783 43.546 193.76 41.331 L 201.512 41.331 Z M 193.875 32.669 C 193.76 28.727 191.745 26.692 188.145 26.692 C 184.822 26.692 182.8 28.727 182.476 32.669 Z M 229.977 39.246 C 229.325 46.585 224.258 51.073 216.825 51.073 C 208.493 51.073 203.365 45.35 203.365 35.627 C 203.365 25.904 208.598 20.223 217.107 20.223 C 224.636 20.223 229.375 24.465 229.911 31.446 L 222.236 31.446 C 221.799 28.431 219.997 26.746 217.157 26.746 C 213.279 26.746 211.43 29.792 211.43 35.769 C 211.43 41.338 213.499 44.423 217.157 44.423 C 220.044 44.423 221.799 42.665 222.34 39.25 L 229.973 39.25 Z M 169.173 10.154 L 161.479 17.85 L 161.479 21.212 L 156.906 21.212 L 156.906 26.692 L 161.479 26.692 L 161.479 42.25 C 161.479 48.319 162.845 50.485 169.228 50.485 C 170.038 50.485 171.516 50.392 173.646 50.331 L 173.646 44.481 L 171.732 44.481 C 169.664 44.481 169.17 44.2 169.17 42.662 L 169.17 26.692 L 174.399 26.692 L 174.399 21.212 L 169.17 21.212 L 169.17 10.154 Z\" fill=\"rgb(0,67,101)\"></path><path d=\"M 126.056 10.638 L 126.056 18.362 L 119.017 18.362 Z\" fill=\"rgb(84,200,232)\"></path><path d=\"M 92.841 70.235 C 92.841 73.327 91.201 74.904 88.041 74.904 C 85.64 74.904 84.116 73.738 83.981 71.946 L 85.193 71.946 C 85.308 73.15 86.304 73.869 88.021 73.869 C 90.46 73.869 91.672 72.642 91.672 70.269 L 91.672 69.023 C 90.873 70.365 89.7 71.027 88.16 71.027 C 85.428 71.027 83.672 69.062 83.672 65.715 C 83.672 62.369 85.467 60.404 88.16 60.404 C 89.723 60.404 90.892 61.065 91.672 62.408 L 91.672 60.658 L 92.845 60.658 L 92.845 70.227 Z M 88.334 70 C 90.464 70 91.768 68.481 91.768 65.719 C 91.768 62.958 90.48 61.442 88.334 61.442 C 86.188 61.442 84.88 62.938 84.88 65.719 C 84.88 68.5 86.246 70 88.334 70 Z M 95.28 56.773 L 96.453 56.773 L 96.453 70.758 L 95.28 70.758 Z M 103.029 60.412 C 105.978 60.412 107.695 62.338 107.695 65.723 C 107.695 69.108 105.978 71.015 103.029 71.015 C 100.081 71.015 98.383 69.108 98.383 65.723 C 98.383 62.338 100.081 60.412 103.029 60.412 Z M 103.029 69.981 C 105.194 69.981 106.483 68.485 106.483 65.719 C 106.483 62.954 105.194 61.442 103.029 61.442 C 100.864 61.442 99.595 62.962 99.595 65.719 C 99.595 68.477 100.884 69.981 103.029 69.981 Z M 109.489 56.773 L 110.659 56.773 L 110.659 62.454 C 111.419 61.092 112.592 60.412 114.209 60.412 C 116.941 60.412 118.697 62.377 118.697 65.723 C 118.697 69.069 116.903 71.035 114.132 71.035 C 112.569 71.035 111.361 70.335 110.659 69.012 L 110.659 70.762 L 109.489 70.762 L 109.489 56.777 Z M 114.035 70 C 116.219 70 117.489 68.481 117.489 65.719 C 117.489 62.958 116.181 61.442 114.035 61.442 C 111.89 61.442 110.601 62.938 110.601 65.719 C 110.601 68.5 111.89 70 114.035 70 Z M 123.309 71.012 C 121.24 71.012 119.951 69.846 119.951 68.092 C 119.951 66.927 120.518 66.05 121.572 65.565 C 122.645 65.081 123.876 65.062 125.223 64.942 C 126.647 64.65 127.002 64.669 127.002 63.638 C 127.002 62.119 126.338 61.442 124.482 61.442 C 122.626 61.442 121.692 62.2 121.611 63.681 L 120.461 63.681 C 120.499 61.696 122.004 60.412 124.482 60.412 C 126.959 60.412 128.19 61.462 128.19 63.465 L 128.19 68.969 C 128.19 69.631 128.21 69.904 128.912 69.904 C 128.989 69.904 129.143 69.904 129.34 69.885 L 129.34 70.762 C 128.97 70.838 128.677 70.858 128.503 70.858 C 127.546 70.858 127.056 70.392 127.056 69.458 L 127.056 69.304 C 125.983 70.45 124.733 71.015 123.309 71.015 Z M 123.424 65.935 C 121.942 66.323 121.159 67.042 121.159 68.073 C 121.159 69.223 122.039 69.981 123.444 69.981 C 125.551 69.981 127.017 68.815 127.017 66.869 L 126.998 65.45 C 126.137 65.781 124.91 65.858 123.424 65.935 Z M 130.745 56.773 L 131.914 56.773 L 131.914 70.758 L 130.745 70.758 Z M 139.254 60.662 L 140.385 60.662 L 140.385 62.431 C 140.991 61.031 142.044 60.408 143.507 60.408 L 143.642 60.408 L 143.642 61.615 L 143.484 61.615 C 141.473 61.615 140.42 62.823 140.42 65.154 L 140.42 70.758 L 139.25 70.758 L 139.25 60.662 Z M 145.656 65.992 C 145.656 68.519 146.984 70 148.937 70 C 150.519 70 151.669 69.123 151.904 67.646 L 153.073 67.646 C 152.819 69.688 151.179 71.031 148.859 71.031 C 146.127 71.031 144.448 69.104 144.448 65.758 C 144.448 62.412 146.146 60.408 148.898 60.408 C 151.649 60.408 153.212 62.254 153.212 65.542 L 153.212 65.931 L 145.66 65.931 L 145.66 65.988 Z M 151.997 64.981 C 151.9 62.742 150.689 61.442 148.875 61.442 C 147.061 61.442 145.772 62.765 145.656 64.981 Z M 163.142 67.277 C 162.926 69.592 161.328 71.012 158.928 71.012 C 156.234 71.012 154.497 69.065 154.497 65.781 C 154.497 62.496 156.253 60.412 159.005 60.412 C 161.289 60.412 162.887 61.812 163.007 63.873 L 161.876 63.873 C 161.683 62.396 160.529 61.442 159.009 61.442 C 157.056 61.442 155.709 62.977 155.709 65.681 C 155.709 68.385 157.056 69.981 159.028 69.981 C 160.587 69.981 161.722 68.988 161.972 67.277 Z M 164.782 60.662 L 165.913 60.662 L 165.913 62.431 C 166.518 61.031 167.572 60.408 169.035 60.408 L 169.173 60.408 L 169.173 61.615 L 169.019 61.615 C 167.009 61.615 165.955 62.823 165.955 65.154 L 165.955 70.758 L 164.782 70.758 Z M 178.401 70.758 L 177.27 70.758 L 177.27 69.142 C 176.49 70.427 175.398 71.031 173.874 71.031 C 171.57 71.031 170.439 69.823 170.439 67.45 L 170.439 60.662 L 171.612 60.662 L 171.612 67.177 C 171.612 69.104 172.238 69.996 174.09 69.996 C 175.942 69.996 177.231 68.712 177.231 66.631 L 177.231 60.658 L 178.401 60.658 L 178.401 70.754 Z M 180.863 56.773 L 182.032 56.773 L 182.032 58.523 L 180.863 58.523 Z M 180.863 60.662 L 182.032 60.662 L 182.032 70.758 L 180.863 70.758 Z M 186.014 60.662 L 187.886 60.662 L 187.886 61.615 L 186.014 61.615 L 186.014 68.965 C 186.014 69.704 186.111 70.054 186.755 70.054 C 187.068 70.054 187.438 69.958 187.886 69.858 L 187.886 70.792 C 187.357 70.927 186.89 71.008 186.443 71.008 C 185.135 71.008 184.841 70.346 184.841 68.965 L 184.841 61.615 L 183.456 61.615 L 183.456 60.662 L 184.841 60.662 L 184.841 57.762 L 186.014 57.762 Z M 189.468 60.662 L 190.56 60.662 L 190.56 62.335 C 191.243 61.088 192.374 60.408 193.779 60.408 C 195.299 60.408 196.334 61.127 196.665 62.392 C 197.348 61.088 198.483 60.408 199.926 60.408 C 202.13 60.408 203.203 61.496 203.203 63.715 L 203.203 70.758 L 202.03 70.758 L 202.03 63.815 C 202.03 62.181 201.443 61.442 199.884 61.442 C 198.066 61.442 196.916 62.669 196.916 64.438 L 196.916 70.762 L 195.743 70.762 L 195.743 63.935 C 195.743 62.262 195.06 61.446 193.617 61.446 C 191.842 61.446 190.63 62.692 190.63 64.519 L 190.63 70.762 L 189.457 70.762 L 189.457 60.665 Z M 206.155 65.992 C 206.155 68.519 207.482 70 209.435 70 C 211.017 70 212.167 69.123 212.403 67.646 L 213.576 67.646 C 213.321 69.688 211.685 71.031 209.362 71.031 C 206.63 71.031 204.951 69.104 204.951 65.758 C 204.951 62.412 206.649 60.408 209.4 60.408 C 212.152 60.408 213.711 62.254 213.711 65.542 L 213.711 65.931 L 206.159 65.931 L 206.159 65.988 Z M 212.499 64.981 C 212.403 62.742 211.191 61.442 209.377 61.442 C 207.563 61.442 206.275 62.765 206.155 64.981 Z M 215.505 60.662 L 216.64 60.662 L 216.64 62.277 C 217.4 61.031 218.512 60.408 219.997 60.408 C 221.402 60.408 222.498 60.935 223.042 61.827 C 223.432 62.45 223.451 63.246 223.451 64.315 L 223.451 70.754 L 222.282 70.754 L 222.282 64.45 C 222.282 62.408 221.834 61.435 219.766 61.435 C 217.91 61.435 216.682 62.7 216.682 64.8 L 216.682 70.754 L 215.509 70.754 L 215.509 60.658 Z M 227.272 60.662 L 229.143 60.662 L 229.143 61.615 L 227.272 61.615 L 227.272 68.965 C 227.272 69.704 227.368 70.054 228.016 70.054 C 228.329 70.054 228.699 69.958 229.147 69.858 L 229.147 70.792 C 228.622 70.927 228.152 71.008 227.704 71.008 C 226.396 71.008 226.106 70.346 226.106 68.965 L 226.106 61.615 L 224.721 61.615 L 224.721 60.662 L 226.106 60.662 L 226.106 57.762 L 227.276 57.762 L 227.276 60.662 Z\" fill=\"rgb(137,138,141)\"></path></svg>',svgContentId:12537297588,withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1tgflfh\",\"data-framer-name\":\"Venturi log\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 228 50\"><g id=\"ss9305616602_1\"><path d=\"M 0 0 L 228 0 L 228 50 L 0 50 Z\" fill=\"transparent\"></path><path d=\"M 47.952 11.18 C 45.422 11.18 43.922 12.7 43.92 15.258 C 43.92 17.092 43.911 18.923 43.922 20.758 C 43.934 22.941 45.545 24.554 47.715 24.558 C 51.889 24.565 56.063 24.554 60.236 24.563 C 61.716 24.567 63.088 25.77 63.281 27.193 C 63.462 28.538 62.388 30.056 60.973 30.418 C 60.667 30.496 51.921 30.507 47.869 30.507 C 45.516 30.507 43.926 32.099 43.922 34.458 C 43.916 36.365 43.916 38.273 43.922 40.18 C 43.93 42.404 45.545 44.03 47.745 44.032 C 51.919 44.037 56.092 44.022 60.265 44.039 C 62.285 44.047 63.808 46.163 63.12 47.95 C 62.664 49.138 61.473 49.977 60.196 49.977 C 53.876 49.981 47.553 49.983 41.232 49.977 C 39.422 49.977 38.097 48.653 38.095 46.843 C 38.089 40.426 38.093 34.012 38.093 27.595 C 38.093 21.179 38.148 14.913 38.059 8.572 C 38.034 6.698 39.704 5.178 41.397 5.199 C 47.669 5.277 53.941 5.222 60.213 5.233 C 62.231 5.237 63.76 7.223 63.153 9.017 C 62.725 10.281 61.511 11.173 60.177 11.175 C 56.103 11.181 52.028 11.175 47.954 11.177 M 72.109 49.898 C 73.249 50.203 74.569 49.636 75.217 48.42 C 75.491 47.903 75.616 47.247 75.62 46.652 C 75.66 40.409 75.69 34.166 75.656 27.923 C 75.643 25.7 77.664 24.139 79.089 24.112 C 80.925 24.074 82.561 25.679 82.707 27.712 C 82.807 29.109 84.052 30.382 85.437 30.501 C 87.651 30.691 88.884 31.917 89.137 34.175 C 89.308 35.705 90.531 36.94 91.973 37.045 C 94.137 37.199 95.591 38.765 95.595 40.951 C 95.6 43.007 95.57 45.064 95.61 47.118 C 95.635 48.431 96.446 49.272 97.565 49.773 C 98.656 50.263 99.636 49.911 100.487 49.125 C 101.253 48.418 101.471 47.529 101.468 46.51 C 101.456 35.263 101.46 24.016 101.46 12.772 C 101.46 11.26 101.483 9.75 101.449 8.238 C 101.414 6.601 100.005 5.205 98.479 5.233 C 96.961 5.263 95.604 6.711 95.599 8.333 C 95.591 10.959 95.597 13.585 95.597 16.211 C 95.597 19.951 95.604 23.692 95.593 27.432 C 95.589 28.97 94.495 30.454 93.06 30.935 C 91.715 31.388 90.235 30.911 89.325 29.531 C 88.899 28.885 88.696 28.046 88.559 27.265 C 88.308 25.848 87.132 24.655 85.726 24.561 C 83.674 24.423 82.278 23.027 82.116 20.954 C 82.008 19.557 80.761 18.29 79.374 18.172 C 77.018 17.968 75.674 16.505 75.671 14.125 C 75.666 12.143 75.69 10.161 75.658 8.181 C 75.639 6.916 74.708 5.756 73.498 5.361 C 72.422 5.012 71.328 5.391 70.478 6.404 C 69.975 7.004 69.798 7.687 69.8 8.466 C 69.812 14.834 69.808 21.2 69.808 27.566 C 69.808 33.931 69.806 40.447 69.81 46.887 C 69.81 48.294 70.752 49.527 72.11 49.897 M 227.988 8.281 C 227.986 6.905 227.03 5.685 225.727 5.321 C 224.571 4.999 223.215 5.587 222.565 6.826 C 222.303 7.324 222.185 7.953 222.183 8.525 C 222.158 14.888 222.166 21.25 222.166 27.613 C 222.166 34.051 222.164 40.489 222.168 46.926 C 222.168 48.244 223.055 49.431 224.292 49.842 C 225.417 50.212 226.557 49.785 227.408 48.701 C 227.896 48.078 227.999 47.371 227.997 46.609 C 227.988 38.487 227.991 30.366 227.991 22.245 C 227.991 17.59 227.997 12.935 227.986 8.281 M 130.525 11.178 C 132.501 11.176 134.475 11.184 136.451 11.176 C 138.097 11.168 139.537 9.768 139.537 8.199 C 139.537 6.625 138.11 5.236 136.446 5.234 C 127.953 5.227 119.458 5.227 110.965 5.234 C 109.304 5.234 107.889 6.631 107.9 8.22 C 107.911 9.802 109.333 11.167 110.999 11.174 C 112.95 11.182 114.9 11.174 116.851 11.176 C 119.22 11.176 120.788 12.747 120.79 15.126 C 120.793 20.376 120.79 25.626 120.79 30.876 C 120.79 36.226 120.788 41.575 120.793 46.924 C 120.795 48.214 121.65 49.394 122.845 49.819 C 123.963 50.217 125.12 49.821 125.994 48.766 C 126.497 48.159 126.659 47.464 126.655 46.696 C 126.645 44.368 126.653 42.039 126.653 39.711 C 126.653 31.489 126.649 23.266 126.655 15.045 C 126.657 12.755 128.249 11.178 130.521 11.174 M 148.828 43.494 C 150.952 43.724 152.178 44.97 152.419 47.136 C 152.596 48.735 153.872 49.971 155.417 49.976 C 159.69 49.991 163.963 49.993 168.233 49.976 C 169.72 49.969 171.073 48.65 171.189 47.17 C 171.352 45.075 172.663 43.701 174.755 43.508 C 175.992 43.394 176.845 42.742 177.343 41.678 C 177.581 41.168 177.626 40.528 177.626 39.948 C 177.641 29.57 177.636 19.189 177.636 8.808 C 177.636 8.635 177.638 8.461 177.634 8.288 C 177.59 6.894 176.665 5.693 175.358 5.329 C 174.199 5.005 172.846 5.581 172.185 6.82 C 171.911 7.337 171.789 7.995 171.789 8.588 C 171.765 19.092 171.772 29.595 171.772 40.098 C 171.772 42.468 170.195 44.036 167.82 44.038 C 163.768 44.038 159.719 44.04 155.668 44.038 C 153.401 44.036 151.815 42.441 151.813 40.15 C 151.807 35.667 151.811 31.181 151.811 26.698 C 151.811 20.58 151.815 14.46 151.809 8.343 C 151.809 6.915 150.855 5.683 149.525 5.321 C 148.368 5.007 147.01 5.617 146.369 6.851 C 146.12 7.332 146.003 7.934 146.001 8.482 C 145.976 13.782 145.984 19.085 145.984 24.386 C 145.984 29.686 145.98 35.038 145.987 40.364 C 145.989 42.047 147.152 43.316 148.826 43.498 M 206.138 24.555 C 207.125 24.561 208.074 24.172 208.773 23.475 C 209.472 22.778 209.864 21.83 209.862 20.843 C 209.873 18.862 209.873 16.882 209.862 14.901 C 209.865 13.914 209.475 12.966 208.778 12.267 C 208.081 11.569 207.134 11.177 206.147 11.178 C 204.074 11.17 202.001 11.176 199.928 11.176 C 197.854 11.176 195.733 11.168 193.634 11.178 C 191.557 11.188 189.927 12.807 189.908 14.892 C 189.891 16.872 189.893 18.852 189.908 20.835 C 189.923 22.921 191.551 24.549 193.626 24.553 C 197.797 24.562 201.967 24.562 206.138 24.553 M 209.29 8.373 C 209.413 10.111 210.992 11.665 212.742 11.771 C 214.452 11.875 215.698 13.133 215.721 14.851 C 215.748 16.931 215.75 19.013 215.719 21.093 C 215.693 22.755 214.429 24.013 212.761 24.111 C 210.941 24.219 209.398 25.746 209.288 27.55 C 209.189 29.18 207.975 30.402 206.341 30.52 C 204.222 30.671 202.619 32.492 202.885 34.447 C 203.092 35.974 204.616 37.376 206.185 37.486 C 207.994 37.611 209.168 38.799 209.288 40.626 C 209.404 42.406 210.969 43.919 212.801 44.031 C 214.026 44.106 215.172 44.982 215.581 46.158 C 215.959 47.244 215.579 48.43 214.574 49.275 C 213.751 49.965 212.818 50.223 211.822 49.766 C 210.755 49.276 210.002 48.47 209.881 47.242 C 209.651 44.921 208.431 43.659 206.134 43.428 C 204.781 43.292 203.58 42.049 203.409 40.603 C 203.132 38.282 201.963 37.122 199.664 36.884 C 198.266 36.74 197.073 35.453 196.97 33.977 C 196.803 31.571 194.392 29.897 192.3 30.73 C 190.841 31.313 189.908 32.698 189.906 34.33 C 189.9 38.443 189.929 42.557 189.877 46.67 C 189.862 47.377 189.659 48.068 189.29 48.671 C 188.547 49.831 187.331 50.213 186.207 49.842 C 184.966 49.436 184.079 48.248 184.077 46.928 C 184.071 40.461 184.075 33.994 184.075 27.528 C 184.075 21.235 184.136 14.941 184.039 8.648 C 184.01 6.659 185.701 5.17 187.451 5.194 C 193.601 5.28 199.752 5.227 205.902 5.227 C 207.895 5.227 209.149 6.392 209.288 8.368 M 18.764 47.139 C 18.759 47.391 18.761 47.329 18.764 47.139 Z M 31.654 8.39 C 31.652 6.7 30.311 5.252 28.76 5.235 C 27.216 5.22 25.842 6.671 25.832 8.356 C 25.819 10.438 25.829 12.518 25.829 14.599 C 25.829 16.704 25.838 30.89 25.825 32.997 C 25.813 35.073 24.301 36.657 22.235 36.79 C 20.638 36.894 19.375 38.25 19.361 39.911 C 19.353 41.877 17.706 43.668 15.863 43.681 L 15.795 43.681 C 13.952 43.668 12.305 41.877 12.297 39.911 C 12.285 38.249 11.02 36.891 9.424 36.79 C 7.357 36.657 5.846 35.073 5.833 32.997 C 5.82 30.892 5.831 16.707 5.829 14.599 C 5.829 12.517 5.837 10.436 5.827 8.356 C 5.817 6.671 4.442 5.22 2.899 5.235 C 1.347 5.25 0.006 6.7 0.004 8.39 C 0 12.553 0 28.796 0.004 32.957 C 0.004 34.696 1.153 35.956 2.877 36.142 C 5.111 36.383 6.428 37.675 6.433 39.932 C 6.449 41.595 7.706 42.952 9.295 43.075 C 11.434 43.24 12.893 44.774 12.899 46.908 C 12.909 48.233 13.752 49.408 15.004 49.841 C 15.274 49.932 15.553 49.977 15.829 49.979 C 16.11 49.977 16.389 49.93 16.655 49.841 C 17.907 49.407 18.749 48.233 18.759 46.908 C 18.766 44.774 20.224 43.242 22.363 43.075 C 23.953 42.952 25.209 41.595 25.226 39.933 C 25.23 37.673 26.547 36.383 28.781 36.142 C 30.506 35.956 31.651 34.696 31.654 32.957 C 31.66 28.796 31.66 12.553 31.654 8.39 Z M 217.839 4.072 C 217.629 4.765 216.99 5.24 216.266 5.239 C 215.833 5.238 215.418 5.064 215.113 4.757 C 214.809 4.449 214.639 4.033 214.641 3.6 C 214.641 2.7 215.369 1.96 216.266 1.96 C 216.995 1.963 217.635 2.445 217.839 3.145 L 218.331 3.145 C 218.147 2.211 217.28 1.482 216.266 1.482 C 215.129 1.525 214.229 2.459 214.229 3.598 C 214.229 4.736 215.129 5.67 216.266 5.713 C 217.273 5.713 218.133 5.006 218.335 4.076 L 217.839 4.076 Z\" fill=\"rgb(161, 125, 221)\"></path><path d=\"M 216.266 0 C 214.179 0 212.678 1.673 212.678 3.592 C 212.678 5.51 214.179 7.192 216.266 7.192 C 218.354 7.192 219.847 5.519 219.847 3.592 C 219.847 1.664 218.346 0 216.266 0 Z M 216.266 6.702 C 214.523 6.702 213.165 5.324 213.165 3.592 C 213.156 2.767 213.48 1.973 214.063 1.389 C 214.647 0.805 215.441 0.481 216.266 0.489 C 218.01 0.489 219.359 1.868 219.359 3.592 C 219.359 5.315 218.002 6.702 216.266 6.702 Z\" fill=\"rgb(161, 125, 221)\"></path></g></svg>',svgContentId:9305616602,withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-xkg8nn\",\"data-framer-name\":\"Logo\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 164 80\"><g id=\"ss9226828195_1\"><path d=\"M 0 0 L 164 0 L 164 79.265 L 0 79.265 Z\" fill=\"transparent\"></path><path d=\"M 84.664 78.403 L 77.755 53.278 C 76.955 56.134 76.064 59.305 75.567 61.044 C 74.437 65.003 71.245 65.665 69.573 65.458 L 0.405 65.458 L 0.405 62.021 L 69.869 62.021 L 69.965 62.041 C 70.49 62.103 71.715 62.017 72.261 60.101 C 73.304 56.452 76.085 46.485 76.113 46.385 L 77.781 40.408 L 85.149 67.201 L 85.891 65.199 C 86.547 63.425 88.243 62.219 90.109 62.197 L 91.601 62.197 C 91.717 62.197 91.828 62.152 91.912 62.072 L 96.104 58.082 L 99.945 61.927 C 100.098 62.016 100.674 62.284 102.052 62.284 L 143.655 62.284 L 143.695 62.286 C 143.739 62.288 148.804 62.454 152.126 59.261 C 154.129 57.337 155.144 54.522 155.144 50.894 L 155.144 12.374 C 155.144 11.424 155.914 10.654 156.863 10.654 C 157.812 10.654 158.582 11.424 158.582 12.374 L 158.582 50.892 C 158.582 55.508 157.202 59.166 154.481 61.765 C 150.224 65.832 144.221 65.745 143.582 65.722 L 102.052 65.722 C 99.059 65.722 97.812 64.761 97.328 64.17 L 96.044 62.885 L 94.281 64.562 C 93.559 65.251 92.599 65.635 91.601 65.634 L 90.155 65.634 C 89.685 65.648 89.271 65.949 89.114 66.393 L 84.665 78.402 Z\" fill=\"rgb(86, 157, 230)\" stroke-width=\"2\" stroke=\"rgb(86, 157, 230)\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path><path d=\"M 156.122 0.764 L 150.2 12.536 C 150.2 12.536 149.585 14.109 150.963 13.082 C 152.006 12.305 156.707 6.278 162.511 12.789 C 162.511 12.789 164.449 14.582 163.449 12.203 L 157.177 0.764 C 157.177 0.764 156.687 -0.36 156.122 0.764 Z\" fill=\"rgb(86, 157, 230)\" stroke-width=\"2\" stroke=\"rgb(86, 157, 230)\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path><path d=\"M 14.374 34.236 L 0.027 34.236 L 0.027 10.971 L 4.957 10.971 L 4.957 30.17 L 14.373 30.17 L 14.373 34.236 Z M 31.792 30.17 L 31.792 34.236 L 18.419 34.236 L 18.419 10.971 L 31.793 10.971 L 31.793 15.019 L 23.348 15.019 L 23.348 20.129 L 31.21 20.129 L 31.21 24.16 L 23.348 24.16 L 23.348 30.17 L 31.794 30.17 Z M 56.19 34.236 L 50.873 34.236 L 49.195 28.703 L 40.714 28.703 L 39.036 34.236 L 33.718 34.236 L 41.916 10.882 L 47.94 10.882 L 56.192 34.236 Z M 41.951 24.566 L 48.011 24.566 L 45.379 16.064 C 45.221 15.543 45.08 15.018 44.954 14.489 C 44.637 15.762 43.635 19.121 41.951 24.566 Z M 66.42 10.971 C 70.201 10.971 73.143 11.97 75.245 13.968 C 77.348 15.965 78.399 18.824 78.399 22.543 C 78.399 26.261 77.31 29.139 75.13 31.178 C 72.951 33.217 69.807 34.236 65.696 34.236 L 59.124 34.236 L 59.124 10.971 Z M 66.156 30.17 C 70.901 30.17 73.275 27.618 73.275 22.516 C 73.275 17.519 71.072 15.019 66.668 15.019 L 64.052 15.019 L 64.052 30.17 L 66.154 30.17 Z M 96.596 30.17 L 96.596 34.236 L 83.222 34.236 L 83.222 10.971 L 96.596 10.971 L 96.596 15.019 L 88.151 15.019 L 88.151 20.129 L 96.013 20.129 L 96.013 24.16 L 88.151 24.16 L 88.151 30.17 L 96.597 30.17 Z M 106.384 25.309 L 106.384 34.236 L 101.454 34.236 L 101.454 10.971 L 108.221 10.971 C 111.366 10.971 113.701 11.546 115.226 12.694 C 116.752 13.844 117.514 15.592 117.514 17.936 C 117.514 19.304 117.14 20.521 116.392 21.588 C 115.645 22.654 114.576 23.494 113.186 24.107 C 116.684 29.327 118.963 32.705 120.022 34.236 L 114.546 34.236 L 108.998 25.309 Z M 106.384 15.019 L 106.384 21.296 L 107.974 21.296 C 109.528 21.296 110.676 21.037 111.419 20.517 C 112.161 19.999 112.532 19.192 112.532 18.096 C 112.532 16.999 112.158 16.213 111.41 15.735 C 110.662 15.258 109.481 15.019 107.868 15.019 Z M 136.665 27.784 C 136.665 29.87 135.912 31.52 134.404 32.733 C 132.896 33.948 130.846 34.555 128.256 34.555 C 125.665 34.555 123.42 34.089 121.525 33.158 L 121.525 28.579 C 123.09 29.263 124.416 29.752 125.5 30.046 C 126.583 30.342 127.626 30.488 128.627 30.488 C 129.628 30.488 130.414 30.279 130.986 29.861 C 131.557 29.442 131.842 28.827 131.842 28.014 C 131.842 27.543 131.712 27.132 131.453 26.785 C 131.194 26.437 130.838 26.108 130.385 25.795 C 129.931 25.483 128.947 24.97 127.434 24.256 C 125.92 23.544 124.816 22.881 124.121 22.268 C 122.566 20.924 121.789 19.239 121.789 17.211 C 121.789 15.185 122.484 13.582 123.874 12.403 C 125.264 11.225 127.19 10.636 129.651 10.636 C 131.736 10.636 134.039 11.184 136.56 12.28 L 134.97 16.116 C 133.733 15.609 132.702 15.255 131.878 15.055 C 131.059 14.856 130.22 14.755 129.378 14.755 C 128.536 14.755 127.864 14.967 127.363 15.391 C 126.863 15.815 126.612 16.387 126.612 17.106 C 126.612 17.931 127.03 18.626 127.867 19.192 C 128.279 19.475 129.321 20.011 130.994 20.801 C 133.15 21.837 134.634 22.881 135.447 23.929 C 136.259 24.978 136.665 26.264 136.665 27.784 Z M 0.926 53.842 L 0 53.842 L 0 40.591 L 0.926 40.591 Z M 14.3 40.59 L 14.3 53.841 L 13.364 53.841 L 5.525 42.081 L 5.453 42.081 C 5.521 43.417 5.553 44.475 5.553 45.253 L 5.553 53.843 L 4.668 53.843 L 4.668 40.592 L 5.594 40.592 L 13.434 52.343 L 13.484 52.343 C 13.433 51.309 13.406 50.275 13.403 49.241 L 13.403 40.591 L 14.299 40.591 Z M 29.053 41.234 C 27.389 41.234 26.08 41.765 25.128 42.826 C 24.175 43.886 23.699 45.352 23.699 47.221 C 23.699 49.09 24.149 50.553 25.048 51.606 C 25.947 52.647 27.231 53.167 28.902 53.167 C 30.009 53.167 31.032 53.026 31.972 52.745 L 31.972 53.56 C 31.106 53.869 30.012 54.023 28.691 54.023 C 26.839 54.023 25.376 53.424 24.304 52.226 C 23.23 51.027 22.692 49.348 22.692 47.186 C 22.679 45.85 22.93 44.665 23.448 43.631 C 23.935 42.63 24.707 41.795 25.666 41.231 C 26.628 40.664 27.736 40.387 28.991 40.4 C 30.293 40.4 31.451 40.641 32.463 41.125 L 32.091 41.96 C 31.149 41.483 30.107 41.235 29.052 41.236 Z M 43.142 53.842 L 41.3 49.169 L 35.916 49.169 L 34.074 53.842 L 33.048 53.842 L 38.372 40.539 L 38.965 40.539 L 44.179 53.842 L 43.141 53.842 Z M 38.11 43.569 L 36.258 48.332 L 40.988 48.332 L 39.187 43.56 C 38.986 43.047 38.805 42.526 38.644 41.999 C 38.49 42.543 38.311 43.066 38.111 43.569 Z M 46.976 48.072 L 46.976 53.842 L 46.05 53.842 L 46.05 40.591 L 49.2 40.591 C 50.837 40.591 52.049 40.892 52.838 41.496 C 53.626 42.101 54.021 43.016 54.021 44.245 C 54.021 45.145 53.784 45.898 53.31 46.506 C 52.838 47.114 52.131 47.549 51.193 47.81 L 54.785 53.841 L 53.678 53.841 L 50.266 48.072 Z M 46.976 41.426 L 46.976 47.276 L 49.501 47.276 C 50.635 47.276 51.506 47.025 52.113 46.521 C 52.72 46.018 53.024 45.273 53.024 44.285 C 53.024 43.299 52.722 42.575 52.118 42.116 C 51.513 41.655 50.531 41.426 49.169 41.426 Z M 64.304 52.986 L 64.304 53.842 L 57.069 53.842 L 57.069 40.591 L 64.305 40.591 L 64.305 41.446 L 57.994 41.446 L 57.994 46.462 L 63.953 46.462 L 63.953 47.307 L 57.994 47.307 L 57.994 52.986 Z\" fill=\"rgb(65, 159, 232)\"></path></g></svg>',svgContentId:9226828195,withExternalLayout:true}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:38,intrinsicWidth:170,pixelHeight:38,pixelWidth:170,src:\"https://framerusercontent.com/images/Mpk3QONihkmuq5bqhRMAU7a6s.svg\"},className:\"framer-1j1c9we\",\"data-framer-name\":\"Logo 1\"}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1penjd4\",\"data-framer-name\":\"Footer-logo\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 388 48\"><g id=\"ss11646891701_1\"><path d=\"M 41.39 36.552 L 48.504 0 L 57.106 0 L 46.175 47.238 L 36.475 47.238 L 28.585 11.011 L 20.825 47.237 L 10.994 47.237 L 0 0 L 8.924 0 L 16.428 36.487 L 23.864 0 L 33.372 0 Z\" fill=\"rgb(20,19,32)\"></path><path d=\"M 55.315 37.595 C 55.315 28.864 65.985 26.649 78.726 25.345 L 78.726 24.694 C 78.726 18.7 75.298 16.876 71.482 16.876 C 67.602 16.876 64.692 18.962 64.498 23.196 L 56.931 23.196 C 57.449 16.029 63.334 11.143 71.741 11.143 C 80.084 11.143 86.616 14.987 86.422 26.194 C 86.422 27.953 86.293 32.057 86.293 35.25 C 86.293 39.681 86.681 44.307 87.327 47.239 L 80.277 47.239 C 80.019 45.741 79.76 44.894 79.631 42.483 C 77.433 46.262 73.293 48.088 68.184 48.088 C 60.618 48.085 55.315 43.98 55.315 37.595 Z M 78.919 30.754 C 67.925 31.796 63.463 33.36 63.463 37.4 C 63.463 40.462 65.985 42.286 69.866 42.286 C 75.557 42.286 78.919 39.354 78.919 33.425 Z\" fill=\"rgb(20,19,32)\"></path><path d=\"M 99.873 47.238 L 92.177 47.238 L 92.177 0 L 99.873 0 Z\" fill=\"rgb(20,19,32)\"></path><path d=\"M 113.302 0 L 113.302 26.258 L 126.171 12.183 L 135.42 12.183 L 122.097 26.583 L 136.906 47.237 L 127.918 47.237 L 116.988 32.056 L 113.302 36.03 L 113.302 47.237 L 105.606 47.237 L 105.606 0 Z\" fill=\"rgb(20,19,32)\"></path><path d=\"M 142.157 31.926 C 142.675 38.441 147.202 41.634 151.601 41.634 C 155.61 41.634 158.779 40.005 160.137 36.748 L 167.704 36.748 C 166.087 42.353 160.914 48.085 151.924 48.085 C 140.736 48.085 134.333 39.484 134.333 29.45 C 134.333 18.896 141.512 11.402 151.406 11.402 C 162.076 11.402 168.739 20.133 168.092 31.927 Z M 142.157 26.257 L 160.266 26.257 C 160.072 20.785 155.933 17.462 151.406 17.462 C 147.784 17.462 142.805 19.612 142.157 26.258 Z\" fill=\"rgb(20,19,32)\"></path><path d=\"M 191.289 20.068 C 189.996 19.938 188.767 19.872 187.602 19.873 C 182.752 19.873 179.971 21.827 179.971 28.864 L 179.971 47.238 L 172.275 47.238 L 172.275 12.185 L 179.841 12.185 L 179.841 18.439 C 181.717 14.53 185.08 12.184 189.285 12.119 C 189.866 12.119 190.707 12.184 191.29 12.249 Z\" fill=\"rgb(20,19,32)\"></path><g transform=\"translate(209.337 0.001)\" id=\"ss11646891701_8\"><path d=\"M 7.697 40.266 L 31.819 40.266 L 31.819 47.238 L 0 47.238 L 0 0 L 7.696 0 Z\" fill=\"rgb(20,19,32)\"></path><path d=\"M 66.689 29.776 C 66.689 42.416 58.023 48.085 49.551 48.085 C 41.079 48.085 32.413 42.416 32.413 29.776 C 32.413 17.135 41.079 11.403 49.55 11.403 C 58.021 11.403 66.689 17.136 66.689 29.776 Z M 49.55 41.765 C 54.4 41.765 58.734 37.856 58.734 29.776 C 58.734 21.696 54.4 17.722 49.55 17.722 C 44.699 17.722 40.366 21.697 40.366 29.776 C 40.366 37.855 44.7 41.765 49.55 41.765 Z\" fill=\"rgb(20,19,32)\"></path><path d=\"M 82.223 37.204 L 90.177 12.184 L 98.196 12.184 L 85.65 47.238 L 78.406 47.238 L 65.731 12.184 L 74.204 12.184 Z\" fill=\"rgb(20,19,32)\"></path><path d=\"M 105.026 31.925 C 105.543 38.441 110.071 41.634 114.469 41.634 C 118.478 41.634 121.647 40.005 123.005 36.747 L 130.572 36.747 C 128.955 42.352 123.782 48.085 114.792 48.085 C 103.604 48.085 97.201 39.484 97.201 29.45 C 97.201 18.895 104.38 11.402 114.275 11.402 C 124.945 11.402 131.607 20.133 130.961 31.926 Z M 105.026 26.257 L 123.135 26.257 C 122.94 20.784 118.802 17.462 114.274 17.462 C 110.652 17.462 105.673 19.612 105.026 26.258 Z\" fill=\"rgb(20,19,32)\"></path><path d=\"M 142.806 47.237 L 135.11 47.237 L 135.11 0 L 142.806 0 Z\" fill=\"rgb(20,19,32)\"></path><path d=\"M 156.223 47.237 L 148.527 47.237 L 148.527 0 L 156.223 0 Z\" fill=\"rgb(20,19,32)\"></path><path d=\"M 162.524 40.005 C 162.524 35.543 166.114 31.926 170.543 31.926 C 174.972 31.926 178.562 35.543 178.562 40.005 C 178.562 44.467 174.972 48.085 170.543 48.085 C 166.114 48.085 162.524 44.467 162.524 40.005 Z\" fill=\"rgb(255,59,59)\"></path></g></g></svg>',svgContentId:11646891701,withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1oc0w1s\",\"data-framer-name\":\"Brandmark-2\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 242 98\"><path d=\"M 40.287 4.184 C 35.063 5.212 28.551 7.378 24.651 9.433 C 18.138 12.883 11.111 19.306 7.174 25.509 C 5.004 28.923 1.876 35.163 0.92 38.062 C 0.074 40.668 0 41.439 0 47.458 C 0 53.111 0.11 54.469 0.883 57.552 C 3.974 69.995 12.877 81.667 24.209 88.127 C 27.815 90.182 33.481 92.237 38.448 93.265 C 44.15 94.44 51.73 94.44 56.66 93.228 C 60.891 92.237 64.644 90.879 69.022 88.824 C 72.885 86.989 77.999 83.722 77.999 83.061 C 77.999 82.437 77.594 82.474 76.564 83.208 C 75.755 83.759 72.848 84.199 73.511 83.649 C 73.658 83.539 74.762 82.694 76.012 81.74 C 78.588 79.795 82.23 75.978 82.598 74.84 C 82.966 73.775 82.341 73.225 81.347 73.775 C 80.906 73.996 78.845 75.61 76.785 77.336 C 74.725 79.061 72.701 80.602 72.296 80.822 C 71.892 81.006 72.223 80.602 73.032 79.942 C 76.086 77.446 77.999 75.5 79.324 73.555 C 81.789 69.995 80.28 70.545 75.534 74.987 C 70.015 80.125 65.012 82.878 58.647 84.273 C 54.747 85.117 53.68 85.19 48.933 85.043 C 42.752 84.86 38.19 83.942 33.886 81.997 C 32.414 81.3 30.869 80.749 30.501 80.749 C 30.17 80.749 29.618 80.529 29.36 80.272 C 29.103 80.015 27.741 78.804 26.306 77.629 C 23.032 74.876 23.437 75.28 20.162 71.243 C 17.991 68.6 16.998 66.985 15.784 64.085 C 14.938 62.067 14.165 59.571 14.055 58.616 C 13.944 57.625 13.687 56.745 13.466 56.671 C 12.988 56.488 13.061 53.148 13.65 47.715 C 13.981 44.632 14.275 43.715 16.115 39.897 C 17.403 37.181 18.396 35.603 18.764 35.603 C 19.058 35.603 19.721 34.906 20.236 34.098 C 22.37 30.648 29.029 24.665 32.377 23.234 C 36.792 21.325 37.896 20.958 37.896 21.509 C 37.896 21.876 38.117 21.986 38.558 21.876 C 40.508 21.325 42.384 20.958 44.629 20.738 C 47.977 20.407 47.866 19.453 44.482 19.453 C 43.525 19.453 43.047 19.306 43.047 18.939 C 43.047 18.425 41.538 17.985 39.588 17.985 C 37.675 17.985 37.234 17.434 38.558 16.737 C 40.766 15.599 44.224 15.049 49.228 15.049 C 53.165 15.049 54.084 14.939 54.084 14.535 C 54.084 14.241 53.864 13.911 53.643 13.837 C 52.76 13.47 54.379 13.581 55.335 13.948 C 55.924 14.168 56.329 14.168 56.476 13.948 C 56.623 13.727 57.138 13.581 57.616 13.581 C 59.014 13.581 58.499 12.736 56.807 12.259 C 56.034 12.039 53.312 11.635 50.773 11.378 C 46.763 10.975 45.622 10.975 41.869 11.488 C 39.478 11.819 36.167 12.516 34.511 12.993 C 31.126 14.021 26.012 16.48 26.049 17.067 C 26.086 17.508 23.988 18.682 23.179 18.719 C 22.885 18.719 22.406 19.049 22.149 19.49 C 21.891 19.894 21.082 20.481 20.346 20.811 C 19.61 21.105 17.513 22.867 15.673 24.702 C 13.834 26.537 12.178 28.005 11.994 27.969 C 11.847 27.895 11.479 28.079 11.185 28.299 C 10.007 29.253 10.817 28.189 12.693 26.17 C 13.834 24.996 15.011 24.041 15.379 24.041 C 15.71 24.041 16.005 23.784 16.005 23.454 C 16.005 22.573 16.704 21.912 19.831 19.527 C 24.283 16.187 27.925 14.351 34.952 11.892 C 35.357 11.745 35.394 11.635 35.026 11.415 C 34.732 11.268 35.799 10.864 37.602 10.424 C 42.348 9.323 53.349 9.433 58.131 10.571 C 64.533 12.149 70.53 14.792 75.534 18.205 C 77.116 19.306 78.478 20.187 78.588 20.187 C 78.661 20.187 78.735 19.967 78.735 19.71 C 78.735 18.903 73.216 14.718 69.979 13.067 C 67.808 11.929 68.985 12.076 71.413 13.213 C 75.461 15.085 77.043 14.645 74.541 12.333 C 72.149 10.057 63.687 6.497 56.476 4.735 C 52.576 3.781 43.893 3.487 40.287 4.184 Z M 68.065 11.745 C 68.36 11.929 68.47 12.112 68.249 12.112 C 68.065 12.112 67.624 11.929 67.33 11.745 C 67.035 11.562 66.962 11.378 67.146 11.378 C 67.366 11.378 67.771 11.562 68.065 11.745 Z M 40.729 20.407 C 40.618 20.518 40.287 20.554 40.03 20.444 C 39.735 20.334 39.846 20.224 40.251 20.224 C 40.655 20.187 40.876 20.297 40.729 20.407 Z\" fill=\"rgb(0,0,0)\"></path><path d=\"M 77.079 25.693 C 76.932 25.913 77.153 26.354 77.558 26.721 C 78.404 27.418 82.414 33.291 82.414 33.804 C 82.414 33.988 78.661 34.135 73.952 34.135 L 65.49 34.135 L 65.49 37.805 L 76.528 37.805 L 76.528 66.434 L 80.207 66.434 L 80.207 37.805 L 82.157 37.805 C 84.07 37.805 84.143 37.842 84.695 39.163 C 84.99 39.934 85.394 40.888 85.505 41.255 C 85.652 41.696 85.873 41.843 86.093 41.622 C 86.425 41.292 86.241 40.154 85.542 38.429 C 85.284 37.842 85.468 37.769 87.786 37.879 L 90.325 37.989 L 91.171 41.659 C 91.87 44.706 92.054 46.467 92.091 51.936 C 92.127 55.57 92.054 58.984 91.87 59.534 C 91.649 60.342 91.723 60.562 92.127 60.562 C 92.495 60.562 92.753 60.048 92.9 59.167 C 93.01 58.433 93.268 57.515 93.489 57.185 C 93.893 56.378 93.93 45.623 93.489 45.366 C 93.342 45.256 93.084 44.375 92.974 43.421 C 92.863 42.467 92.422 40.595 92.017 39.31 C 91.575 38.025 91.244 36.374 91.244 35.64 C 91.244 34.612 91.06 34.208 90.435 33.951 C 89.957 33.731 89.368 33.144 89.11 32.557 C 88.264 30.831 87.602 31.345 88.301 33.181 L 88.669 34.135 L 83.923 34.135 L 83.26 32.777 C 82.451 31.015 79.066 26.537 78.073 25.84 C 77.558 25.509 77.227 25.436 77.079 25.693 Z M 128.772 33.621 C 123.033 35.676 119.979 38.356 117.587 43.311 C 116.631 45.366 116.447 46.174 116.337 49.367 C 116.153 53.551 116.888 56.414 118.912 59.571 C 121.083 62.984 125.351 65.884 129.435 66.765 C 139.7 68.93 149.082 61.81 150.001 51.166 L 150.222 48.449 L 133.923 48.449 L 133.923 55.423 L 137.97 55.423 L 137.97 52.12 L 145.991 52.12 L 145.623 53.478 C 144.409 57.919 140.766 61.553 136.388 62.764 C 134.107 63.388 130.134 63.094 127.926 62.103 C 125.351 60.966 122.444 58.029 121.193 55.313 C 119.758 52.193 119.721 48.156 121.12 45.146 C 122.481 42.173 124.725 39.861 127.595 38.466 C 129.802 37.365 130.391 37.255 133.187 37.255 C 135.836 37.255 136.646 37.401 138.485 38.282 C 139.663 38.833 140.693 39.273 140.73 39.273 C 140.914 39.273 142.753 36.484 142.753 36.19 C 142.753 36.043 141.65 35.419 140.288 34.759 C 137.97 33.658 137.455 33.584 133.555 33.511 C 131.237 33.474 129.067 33.511 128.772 33.621 Z M 192.974 34.355 C 187.787 36.631 184.512 40.228 183.004 45.33 C 179.803 56.304 187.971 67.169 199.413 67.169 C 210.782 67.132 218.803 56.121 215.454 45.109 C 214.093 40.631 211.187 37.181 206.919 35.016 C 204.122 33.621 204.012 33.584 199.634 33.474 C 195.513 33.401 194.998 33.474 192.974 34.355 Z M 204.638 38.319 C 207.323 39.604 209.604 41.843 211.003 44.632 C 211.996 46.578 212.106 47.165 212.106 50.101 C 212.106 52.891 211.959 53.735 211.15 55.423 C 208.905 60.121 205.116 62.764 200.149 63.058 C 193.857 63.425 188.743 59.864 186.83 53.845 C 184.696 47.091 188.78 39.787 196.102 37.401 C 197.978 36.778 202.393 37.255 204.638 38.319 Z M 23.621 50.175 L 23.731 66.251 L 25.681 66.361 L 27.594 66.471 L 27.594 34.135 L 23.547 34.135 Z M 32.451 50.175 L 32.561 66.251 L 34.474 66.361 L 36.424 66.471 L 36.498 53.294 L 36.608 40.118 L 42.09 47.128 C 45.144 50.982 49.78 56.891 52.392 60.268 L 57.212 66.434 L 61.811 66.434 L 61.811 34.135 L 58.131 34.135 L 58.058 47.385 L 57.948 60.672 L 54.636 56.451 C 52.833 54.139 48.124 48.156 44.187 43.201 L 37.05 34.135 L 32.377 34.135 Z M 95.291 50.285 L 95.291 66.434 L 115.527 66.434 L 115.527 62.397 L 98.971 62.397 L 98.971 54.689 L 105.704 54.616 L 112.4 54.506 L 112.4 51.202 L 105.704 51.092 L 98.971 51.019 L 98.971 37.805 L 115.527 37.805 L 115.527 34.135 L 95.291 34.135 Z M 152.687 50.248 L 152.687 66.434 L 156.366 66.434 L 156.366 54.689 L 170.568 54.689 L 173.144 60.452 L 175.719 66.251 L 177.816 66.361 C 179.177 66.434 179.913 66.324 179.913 66.067 C 179.913 65.847 179.472 64.709 178.957 63.572 C 178.405 62.434 177.191 59.718 176.234 57.589 L 174.468 53.698 L 176.16 52.45 C 178.736 50.542 179.729 48.303 179.729 44.412 C 179.729 41.769 179.582 40.999 178.773 39.457 C 177.743 37.438 175.498 35.493 173.364 34.832 C 172.481 34.539 168.508 34.318 162.363 34.245 L 152.687 34.098 Z M 172.408 38.943 C 174.836 40.118 175.866 41.733 175.866 44.302 C 175.866 47.312 174.505 49.294 171.819 50.285 C 171.046 50.542 167.698 50.799 163.467 50.909 L 156.366 51.129 L 156.366 37.695 L 163.467 37.879 C 170.09 38.025 170.715 38.099 172.408 38.943 Z M 231.533 73.041 C 230.907 73.261 229.951 73.959 229.399 74.583 C 228.552 75.574 228.442 76.014 228.589 77.409 C 228.81 79.391 229.914 80.529 232.268 81.116 C 235.543 81.997 237.125 82.768 237.235 83.575 C 237.493 85.447 233.63 86.181 230.87 84.787 C 229.067 83.869 229.067 83.869 228.552 84.97 C 227.964 86.255 227.927 86.145 229.583 86.989 C 230.65 87.539 231.753 87.723 233.777 87.723 C 237.162 87.723 238.192 87.356 239.149 85.814 C 241.062 82.658 239.149 79.905 234.439 79.097 C 232.82 78.84 231.054 77.703 231.054 76.932 C 231.054 76.675 231.349 76.198 231.717 75.904 C 232.783 74.95 234.292 74.803 236.463 75.427 C 238.155 75.941 238.56 75.941 238.817 75.537 C 239.369 74.693 239.185 73.812 238.376 73.408 C 237.346 72.821 232.967 72.601 231.533 73.041 Z M 114.055 80.382 L 114.055 87.723 L 116.631 87.723 L 116.631 83.318 L 119.206 83.318 C 122.186 83.318 123.916 82.731 125.019 81.3 C 126.786 79.061 126.307 75.39 124.026 73.885 C 122.886 73.115 122.334 73.041 118.434 73.041 L 114.055 73.041 Z M 122.591 76.345 C 123.474 77.262 123.658 77.666 123.437 78.473 C 123.033 80.199 122.186 80.712 119.317 80.969 L 116.631 81.226 L 116.631 75.243 L 119.059 75.243 C 121.267 75.243 121.561 75.354 122.591 76.345 Z M 134.144 74.216 C 133.85 74.876 132.451 78.033 131.017 81.263 C 129.582 84.456 128.404 87.209 128.404 87.393 C 128.404 87.576 128.993 87.723 129.729 87.723 C 130.943 87.723 131.053 87.613 131.789 85.888 L 132.562 84.052 L 139.663 84.052 L 140.435 85.888 C 141.171 87.613 141.318 87.723 142.533 87.723 C 143.268 87.723 143.857 87.576 143.857 87.393 C 143.857 87.246 142.422 83.942 140.656 80.052 L 137.492 73.041 L 136.057 73.041 C 134.843 73.041 134.622 73.188 134.144 74.216 Z M 137.418 79.134 C 138.117 80.676 138.706 81.997 138.706 82.07 C 138.706 82.144 137.566 82.217 136.131 82.217 C 134.733 82.217 133.555 82.144 133.555 82.034 C 133.555 81.667 135.873 76.345 136.02 76.345 C 136.094 76.345 136.719 77.593 137.418 79.134 Z M 148.272 80.382 L 148.272 87.723 L 150.848 87.723 L 150.848 83.318 L 154.711 83.318 L 156.182 85.521 C 157.544 87.539 157.764 87.686 159.052 87.723 C 159.788 87.723 160.413 87.539 160.413 87.356 C 160.413 87.136 159.751 86.034 158.905 84.933 L 157.433 82.915 L 158.39 82.181 C 161.149 79.978 161.002 75.537 158.132 73.775 C 157.102 73.151 156.293 73.041 152.614 73.041 L 148.272 73.041 Z M 156.808 76.345 C 157.691 77.262 157.875 77.666 157.654 78.473 C 157.213 80.272 156.293 80.822 153.46 81.043 L 150.848 81.226 L 150.848 75.243 L 153.276 75.243 C 155.483 75.243 155.778 75.354 156.808 76.345 Z M 162.327 74.032 C 162.437 75.023 162.511 75.06 164.939 75.17 L 167.404 75.28 L 167.404 87.723 L 169.979 87.723 L 169.979 75.28 L 172.481 75.17 C 174.873 75.06 174.946 75.023 175.057 74.032 L 175.167 73.041 L 162.216 73.041 Z M 178.81 80.382 L 178.81 87.723 L 181.348 87.723 L 181.459 82.731 L 181.569 77.739 L 185.616 82.731 C 189.038 86.915 189.81 87.723 190.693 87.723 L 191.687 87.723 L 191.687 73.041 L 189.516 73.041 L 189.406 77.96 L 189.295 82.915 L 185.285 77.96 C 181.606 73.408 181.238 73.041 180.06 73.041 L 178.81 73.041 Z M 197.573 80.382 L 197.573 87.723 L 208.611 87.723 L 208.611 85.521 L 200.149 85.521 L 200.149 81.483 L 207.507 81.483 L 207.507 79.281 L 200.149 79.281 L 200.149 75.243 L 208.243 75.243 L 208.243 73.041 L 197.573 73.041 Z M 213.026 80.382 L 213.026 87.723 L 215.602 87.723 L 215.602 83.318 L 219.538 83.318 L 221.084 85.521 C 222.555 87.576 222.739 87.723 224.101 87.723 C 224.873 87.723 225.535 87.649 225.535 87.539 C 225.535 87.466 224.8 86.328 223.88 85.043 L 222.261 82.694 L 223.218 82.181 C 225.903 80.749 225.719 75.5 222.886 73.775 C 221.856 73.151 221.047 73.041 217.368 73.041 L 213.026 73.041 Z M 221.672 75.978 C 222.702 77.042 222.739 78.694 221.783 79.831 C 221.01 80.712 220.569 80.859 218.251 81.043 L 215.602 81.226 L 215.602 75.17 L 218.361 75.317 C 220.164 75.39 221.304 75.647 221.672 75.978 Z\" fill=\"rgb(0,0,0)\"></path></svg>',svgContentId:10360800936,withExternalLayout:true}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:153,intrinsicWidth:211,pixelHeight:153,pixelWidth:211,src:\"https://framerusercontent.com/images/iMYoBIo8DOOl168DaKGnSeLPw.png\"},className:\"framer-9zhfjf\",\"data-framer-name\":\"Frame 1\"}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1scerul\",\"data-framer-name\":\"Everest-Logo\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 216 102\"><path d=\"M 11.146 66.562 C 11.077 61.437 12.019 56.348 13.917 51.588 C 15.715 47.166 18.105 43.009 21.02 39.231 C 23.861 35.485 26.803 31.965 29.845 28.671 C 32.889 25.43 35.606 22.262 37.996 19.164 C 40.17 16.405 41.796 13.253 42.784 9.881 C 43.63 6.733 43.281 3.438 41.736 -0.004 L 11.893 29.798 C 8.562 33.279 5.854 37.307 3.887 41.707 C 1.331 47.194 0.005 53.173 0.001 59.227 C -0.007 82.771 19.038 101.871 42.556 101.905 C 44.585 101.855 46.609 101.68 48.616 101.38 C 42.184 100.633 36.624 99.011 31.935 96.514 C 27.553 94.255 23.605 91.238 20.271 87.603 C 17.419 84.413 15.119 80.769 13.465 76.821 C 12.068 73.573 11.281 70.095 11.144 66.562\" fill=\"rgb(179,209,56)\"></path><path d=\"M 81.224 41.776 C 79.22 37.399 76.516 33.379 73.22 29.873 L 46.967 3.591 C 48.345 6.638 48.787 10.026 48.24 13.325 C 47.614 16.79 46.426 20.129 44.721 23.21 C 42.905 26.625 40.883 29.927 38.666 33.098 C 36.376 36.39 34.183 39.683 32.087 42.977 C 30.11 46.043 28.455 49.305 27.149 52.712 C 25.808 56.376 25.224 60.274 25.432 64.17 C 25.673 67.527 26.482 70.818 27.823 73.904 C 28.949 76.542 30.547 78.952 32.539 81.015 C 34.332 82.909 36.102 84.132 37.85 84.683 C 36.95 84.132 35.952 82.66 34.858 80.265 C 33.567 77.403 32.662 74.382 32.165 71.282 C 31.461 67.501 31.385 63.629 31.938 59.823 C 32.495 55.621 34.003 51.602 36.348 48.073 C 38.739 44.276 42.453 40.929 47.491 38.033 C 44.995 40.333 43.174 43.429 42.027 47.322 C 40.847 51.532 40.367 55.907 40.607 60.273 C 40.778 65.161 41.633 70.002 43.149 74.652 C 44.67 79.387 46.917 83.857 49.81 87.901 C 52.709 91.907 56.4 95.272 60.655 97.787 C 70.298 93.231 77.88 85.215 81.896 75.326 C 84.004 70.249 85.071 64.799 85.034 59.301 C 85.032 53.253 83.733 47.277 81.222 41.776\" fill=\"rgb(99,191,102)\"></path><path d=\"M 104.503 13.53 C 104.48 13.35 104.523 13.167 104.623 13.016 C 105.671 13.055 106.871 13.074 108.222 13.074 C 109.129 13.074 110.7 13.034 112.938 12.953 C 115.175 12.873 116.858 12.833 117.987 12.833 C 118.068 13.416 118.224 14.187 118.456 15.148 C 118.688 16.108 118.824 16.709 118.863 16.949 C 118.708 17.067 118.514 17.121 118.32 17.1 C 118.057 17.1 117.917 17.03 117.896 16.888 C 117.594 15.778 117.171 15.067 116.627 14.754 C 115.933 14.409 115.163 14.249 114.389 14.288 L 112.363 14.288 C 110.629 14.288 109.742 14.419 109.702 14.681 C 109.576 15.522 109.525 16.374 109.55 17.224 L 109.55 22.068 C 109.55 22.188 109.984 22.249 110.851 22.249 L 113.678 22.249 C 113.949 22.246 114.219 22.205 114.479 22.128 C 114.762 22.047 114.945 21.997 115.024 21.977 C 115.104 21.956 115.21 21.826 115.342 21.584 C 115.441 21.418 115.517 21.24 115.568 21.053 C 115.588 20.943 115.659 20.655 115.78 20.191 C 115.8 20.05 115.951 19.979 116.234 19.979 C 116.418 19.961 116.602 20.015 116.747 20.131 L 116.747 25.851 C 116.606 25.95 116.434 25.993 116.263 25.973 C 116.001 25.973 115.84 25.892 115.779 25.73 C 115.638 25.186 115.517 24.778 115.416 24.506 C 115.365 24.334 115.289 24.171 115.189 24.022 C 115.11 23.949 115.024 23.883 114.932 23.825 C 114.671 23.664 113.603 23.583 111.73 23.583 C 110.279 23.583 109.553 23.674 109.553 23.855 L 109.553 28.547 C 109.509 29.473 109.601 30.401 109.825 31.301 C 109.885 31.503 110.571 31.604 111.881 31.604 L 113.332 31.604 C 115.207 31.604 116.477 31.432 117.142 31.09 C 117.558 30.813 117.904 30.445 118.155 30.014 C 118.554 29.404 118.854 28.735 119.047 28.033 C 119.088 27.911 119.229 27.851 119.471 27.851 C 119.737 27.817 120.006 27.882 120.228 28.033 C 120.127 28.295 119.971 28.714 119.759 29.289 C 119.547 29.864 119.381 30.328 119.261 30.682 C 119.139 31.035 119.008 31.443 118.867 31.906 C 118.747 32.281 118.656 32.666 118.596 33.056 C 117.567 33.056 115.945 33.037 113.727 32.998 C 111.51 32.959 109.696 32.94 108.285 32.94 L 104.626 33.031 C 104.545 32.883 104.513 32.713 104.535 32.546 C 104.535 32.283 104.565 32.152 104.626 32.153 C 105.021 32.13 105.412 32.058 105.79 31.941 C 106.304 31.8 106.611 31.638 106.712 31.456 C 106.853 31.214 106.923 30.265 106.923 28.611 L 106.923 17.162 C 106.952 16.29 106.88 15.417 106.71 14.562 C 106.649 14.399 106.352 14.248 105.818 14.107 C 105.43 13.99 105.029 13.919 104.624 13.895 C 104.543 13.895 104.503 13.773 104.503 13.532\" fill=\"rgb(0, 0, 0)\"></path><path d=\"M 120.829 20.281 C 120.808 20.11 120.851 19.938 120.949 19.797 C 123.025 19.897 124.073 19.948 124.093 19.948 L 127.117 19.797 C 127.162 19.96 127.167 20.131 127.131 20.296 C 127.102 20.548 127.056 20.675 126.996 20.675 C 126.008 20.675 125.514 20.846 125.514 21.189 C 125.514 21.231 125.524 21.272 125.543 21.309 L 129.176 29.516 L 132.229 22.554 C 132.366 22.269 132.448 21.961 132.471 21.646 C 132.471 20.999 131.745 20.676 130.295 20.676 C 130.213 20.676 130.173 20.55 130.173 20.298 C 130.151 20.122 130.195 19.945 130.295 19.798 C 130.516 19.819 130.929 19.849 131.535 19.889 C 132.14 19.93 132.684 19.949 133.165 19.948 L 136.188 19.797 C 136.231 19.944 136.251 20.097 136.246 20.251 C 136.246 20.533 136.175 20.675 136.034 20.675 C 135.651 20.695 135.273 20.777 134.915 20.916 C 134.507 21.035 134.17 21.322 133.987 21.706 L 129.179 32.572 C 129.106 32.756 128.98 32.915 128.816 33.026 C 128.676 33.161 128.495 33.246 128.302 33.269 C 128.161 33.269 128.069 33.229 128.029 33.147 C 127.687 32.401 126.936 30.666 125.777 27.941 C 124.617 25.216 123.604 22.996 122.738 21.281 C 122.535 20.878 121.94 20.677 120.953 20.676 C 120.873 20.676 120.833 20.545 120.833 20.283\" fill=\"rgb(0, 0, 0)\"></path><path d=\"M 136.917 26.607 C 136.917 24.488 137.481 22.814 138.61 21.583 C 139.685 20.375 141.236 19.7 142.851 19.736 C 143.68 19.719 144.501 19.9 145.246 20.266 C 145.883 20.574 146.429 21.043 146.828 21.629 C 147.177 22.15 147.446 22.722 147.626 23.324 C 147.791 23.879 147.875 24.455 147.877 25.034 C 147.877 25.437 147.819 25.684 147.703 25.775 C 147.501 25.887 147.27 25.934 147.041 25.911 L 139.487 25.911 C 139.325 25.911 139.245 25.962 139.245 26.062 C 139.242 27.327 139.646 28.558 140.397 29.575 C 141.163 30.644 142.419 31.248 143.731 31.179 C 144.721 31.189 145.695 30.933 146.552 30.437 C 146.738 30.326 146.901 30.221 147.039 30.119 L 147.246 29.968 C 147.362 29.968 147.42 30.099 147.42 30.362 C 147.41 30.556 147.349 30.744 147.242 30.906 C 146.776 31.535 146.18 32.056 145.496 32.435 C 144.733 32.887 143.863 33.122 142.977 33.116 C 141.347 33.129 139.79 32.439 138.704 31.223 C 137.522 29.981 136.881 28.321 136.921 26.606 M 139.308 24.43 C 139.308 24.572 139.366 24.641 139.489 24.641 L 145.398 24.641 C 145.498 24.641 145.549 24.542 145.549 24.34 C 145.494 23.535 145.21 22.763 144.73 22.115 C 144.282 21.333 143.448 20.853 142.548 20.858 C 141.557 20.825 140.63 21.343 140.139 22.205 C 139.67 22.86 139.383 23.628 139.308 24.43\" fill=\"rgb(0, 0, 0)\"></path><path d=\"M 149.798 32.524 C 149.798 32.272 149.838 32.146 149.918 32.146 C 150.282 32.125 150.643 32.058 150.991 31.948 C 151.465 31.817 151.722 31.681 151.762 31.54 C 151.916 30.845 151.987 30.134 151.974 29.421 L 151.974 23.7 C 152.034 23.123 151.884 22.543 151.551 22.068 C 151.358 21.832 151.101 21.659 150.81 21.569 C 150.576 21.488 150.331 21.442 150.084 21.433 C 149.893 21.433 149.797 21.414 149.797 21.378 C 149.797 20.948 149.856 20.724 149.978 20.705 C 151.386 20.506 152.78 20.214 154.151 19.831 C 154.182 19.83 154.212 19.824 154.242 19.815 L 154.3 19.798 C 154.381 19.798 154.431 19.884 154.451 20.055 C 154.472 20.18 154.472 20.308 154.451 20.434 L 154.27 21.949 C 154.678 21.358 155.184 20.841 155.766 20.42 C 156.302 19.983 156.966 19.733 157.657 19.709 C 158.846 19.709 159.632 20.031 160.015 20.675 C 160.055 21.189 159.939 21.704 159.683 22.153 C 159.507 22.435 159.2 22.609 158.868 22.615 C 158.475 22.601 158.11 22.412 157.87 22.101 C 157.554 21.753 157.099 21.564 156.63 21.587 C 155.978 21.602 155.372 21.928 155 22.464 C 154.562 22.981 154.316 23.633 154.304 24.311 L 154.304 28.851 C 154.278 29.756 154.359 30.66 154.546 31.545 C 154.585 31.687 154.852 31.823 155.348 31.953 C 155.687 32.057 156.038 32.124 156.392 32.15 C 156.45 32.15 156.491 32.271 156.512 32.513 C 156.538 32.685 156.528 32.86 156.482 33.028 C 154.465 32.928 153.377 32.877 153.216 32.877 C 153.095 32.877 151.996 32.927 149.92 33.028 C 149.821 32.882 149.778 32.704 149.8 32.529\" fill=\"rgb(0, 0, 0)\"></path><path d=\"M 161.409 26.607 C 161.409 24.488 161.974 22.814 163.103 21.583 C 164.178 20.375 165.728 19.7 167.344 19.736 C 168.173 19.719 168.994 19.9 169.738 20.266 C 170.376 20.574 170.921 21.043 171.321 21.629 C 171.67 22.15 171.939 22.722 172.118 23.324 C 172.283 23.879 172.368 24.455 172.37 25.034 C 172.37 25.437 172.312 25.684 172.195 25.775 C 171.994 25.887 171.763 25.934 171.534 25.911 L 163.98 25.911 C 163.818 25.911 163.737 25.962 163.737 26.062 C 163.735 27.327 164.139 28.558 164.89 29.575 C 165.655 30.644 166.912 31.248 168.224 31.179 C 169.213 31.189 170.187 30.933 171.044 30.437 C 171.23 30.326 171.393 30.221 171.531 30.119 L 171.738 29.968 C 171.854 29.968 171.913 30.099 171.913 30.362 C 171.903 30.556 171.841 30.744 171.735 30.906 C 171.268 31.535 170.673 32.056 169.988 32.435 C 169.226 32.887 168.355 33.122 167.469 33.116 C 165.84 33.129 164.283 32.439 163.196 31.223 C 162.015 29.981 161.373 28.321 161.413 26.606 M 163.798 24.43 C 163.798 24.572 163.856 24.641 163.98 24.641 L 169.89 24.641 C 169.991 24.641 170.041 24.542 170.041 24.34 C 169.986 23.535 169.702 22.763 169.223 22.115 C 168.775 21.333 167.941 20.853 167.04 20.858 C 166.05 20.825 165.122 21.343 164.631 22.205 C 164.161 22.86 163.874 23.628 163.798 24.43\" fill=\"rgb(0, 0, 0)\"></path><path d=\"M 174.531 29.543 C 174.633 29.45 174.759 29.387 174.894 29.362 C 175.197 29.362 175.358 29.422 175.378 29.543 C 175.556 30.24 175.953 30.862 176.512 31.314 C 177.067 31.856 177.808 32.165 178.584 32.177 C 179.16 32.2 179.724 32.011 180.171 31.647 C 180.599 31.258 180.827 30.695 180.79 30.118 C 180.793 29.79 180.726 29.465 180.593 29.165 C 180.449 28.855 180.231 28.584 179.959 28.377 C 179.7 28.168 179.427 27.976 179.144 27.802 C 178.891 27.651 178.533 27.454 178.07 27.212 C 177.606 26.969 177.263 26.778 177.042 26.637 C 175.469 25.729 174.683 24.649 174.683 23.398 C 174.663 22.349 175.154 21.356 175.999 20.735 C 176.873 20.049 177.957 19.686 179.067 19.706 C 179.631 19.717 180.192 19.773 180.746 19.873 C 181.421 19.983 181.889 20.059 182.152 20.099 C 182.364 21.116 182.485 22.15 182.515 23.188 C 182.515 23.289 182.383 23.339 182.122 23.339 C 181.839 23.339 181.689 23.268 181.668 23.127 C 181.545 22.52 181.245 21.962 180.807 21.524 C 180.401 21.05 179.812 20.774 179.189 20.766 C 177.738 20.766 177.012 21.362 177.012 22.552 C 177.007 22.825 177.047 23.096 177.132 23.355 C 177.23 23.613 177.391 23.842 177.601 24.021 C 177.834 24.233 178.01 24.384 178.13 24.475 C 178.388 24.65 178.656 24.812 178.931 24.96 C 179.344 25.193 179.6 25.339 179.697 25.398 C 179.775 25.437 180.004 25.573 180.384 25.806 C 180.765 26.039 181.033 26.205 181.189 26.305 C 181.344 26.406 181.573 26.578 181.876 26.82 C 182.123 27.007 182.345 27.226 182.535 27.471 C 182.691 27.699 182.823 27.942 182.929 28.197 C 183.054 28.479 183.119 28.783 183.12 29.09 C 183.139 30.238 182.642 31.333 181.765 32.073 C 180.893 32.858 179.757 33.285 178.584 33.268 C 178.195 33.271 177.806 33.245 177.42 33.193 C 176.997 33.128 176.578 33.042 176.165 32.936 C 175.681 32.815 175.308 32.734 175.047 32.693 C 174.884 32.2 174.767 31.692 174.697 31.178 C 174.601 30.639 174.545 30.093 174.531 29.546\" fill=\"rgb(0, 0, 0)\"></path><path d=\"M 184.723 21.029 C 184.723 20.919 184.733 20.855 184.753 20.836 C 185.498 20.435 186.148 19.878 186.658 19.204 C 186.895 18.915 187.112 18.611 187.308 18.294 C 187.52 17.954 187.696 17.661 187.837 17.415 C 187.918 17.287 187.989 17.153 188.049 17.014 C 188.654 17.014 188.956 17.067 188.956 17.172 L 188.956 20.283 C 189.48 20.283 190.276 20.288 191.343 20.297 C 192.411 20.306 192.975 20.311 193.037 20.31 C 193.105 20.302 193.173 20.326 193.221 20.375 C 193.268 20.425 193.29 20.494 193.279 20.561 C 193.268 20.933 193.164 21.295 192.976 21.616 L 188.956 21.616 L 188.956 29.118 C 188.92 29.825 189.14 30.521 189.576 31.079 C 189.973 31.561 190.57 31.832 191.194 31.814 C 191.86 31.795 192.509 31.593 193.068 31.231 C 193.129 31.189 193.219 31.276 193.34 31.49 C 193.407 31.594 193.458 31.707 193.491 31.826 C 193.491 31.993 193.028 32.289 192.1 32.714 C 191.494 32.997 190.834 33.144 190.165 33.145 C 189.223 33.171 188.311 32.81 187.641 32.146 C 186.926 31.378 186.56 30.348 186.627 29.3 L 186.627 21.613 L 184.873 21.613 C 184.773 21.613 184.723 21.419 184.723 21.03\" fill=\"rgb(0, 0, 0)\"></path><path d=\"M 104.307 41.507 C 104.284 41.328 104.325 41.146 104.423 40.995 L 108.052 41.053 C 108.657 41.053 109.372 41.034 110.2 40.995 C 111.027 40.956 111.732 40.936 112.316 40.936 C 112.981 40.939 113.642 41.041 114.277 41.238 C 114.956 41.45 115.601 41.756 116.194 42.146 C 116.841 42.581 117.364 43.175 117.714 43.872 C 118.416 45.27 118.496 46.9 117.934 48.36 C 117.672 49.062 117.31 49.722 116.858 50.319 C 116.351 50.979 115.701 51.515 114.955 51.885 C 114.128 52.303 113.212 52.515 112.286 52.502 C 111.157 52.502 110.381 52.224 109.957 51.669 C 109.825 51.467 109.791 51.216 109.866 50.986 C 109.886 50.907 109.916 50.878 109.957 50.897 C 110.607 51.127 111.293 51.24 111.982 51.231 C 112.998 51.228 113.956 50.759 114.583 49.959 C 115.306 49.119 115.694 48.041 115.672 46.932 C 115.737 45.725 115.407 44.53 114.734 43.527 C 114.033 42.654 112.947 42.184 111.832 42.271 C 111.12 42.25 110.408 42.321 109.715 42.483 C 109.607 42.511 109.524 42.599 109.503 42.709 C 109.44 43.013 109.405 43.322 109.397 43.632 C 109.367 44.117 109.352 44.844 109.352 45.813 L 109.352 56.615 C 109.3 57.5 109.381 58.388 109.594 59.248 C 109.695 59.511 110.053 59.723 110.668 59.884 C 111.096 60.014 111.537 60.095 111.983 60.126 C 112.063 60.126 112.105 60.268 112.105 60.55 C 112.108 60.704 112.088 60.857 112.043 61.004 C 110.028 60.904 108.718 60.853 108.113 60.853 L 104.424 61.004 C 104.34 60.836 104.309 60.646 104.333 60.46 C 104.333 60.197 104.364 60.066 104.424 60.066 C 104.823 60.049 105.219 59.988 105.604 59.884 C 106.109 59.763 106.411 59.612 106.511 59.43 C 106.652 59.188 106.723 58.24 106.723 56.586 L 106.723 45.139 C 106.752 44.267 106.681 43.393 106.511 42.537 C 106.451 42.375 106.154 42.223 105.619 42.082 C 105.23 41.965 104.829 41.894 104.423 41.869 C 104.343 41.869 104.303 41.747 104.303 41.506\" fill=\"rgb(0, 0, 0)\"></path><path d=\"M 120.694 54.584 C 120.694 52.465 121.258 50.791 122.388 49.56 C 123.463 48.352 125.013 47.677 126.628 47.713 C 127.457 47.696 128.279 47.877 129.023 48.243 C 129.66 48.551 130.206 49.021 130.604 49.606 C 130.954 50.128 131.222 50.699 131.402 51.301 C 131.567 51.856 131.651 52.432 131.653 53.011 C 131.653 53.415 131.595 53.662 131.479 53.752 C 131.277 53.864 131.047 53.911 130.817 53.889 L 123.264 53.889 C 123.103 53.889 123.022 53.939 123.022 54.04 C 123.02 55.304 123.424 56.535 124.174 57.552 C 124.94 58.621 126.197 59.225 127.509 59.156 C 128.498 59.166 129.472 58.91 130.329 58.415 C 130.515 58.303 130.678 58.198 130.816 58.096 L 131.023 57.945 C 131.139 57.945 131.198 58.076 131.198 58.339 C 131.188 58.533 131.126 58.721 131.019 58.883 C 130.553 59.512 129.958 60.033 129.273 60.412 C 128.511 60.864 127.64 61.099 126.754 61.093 C 125.124 61.106 123.568 60.417 122.481 59.2 C 121.3 57.958 120.658 56.298 120.698 54.583 M 123.085 52.405 C 123.085 52.546 123.143 52.616 123.267 52.616 L 129.177 52.616 C 129.278 52.616 129.329 52.517 129.329 52.314 C 129.273 51.51 128.989 50.738 128.51 50.09 C 128.062 49.307 127.228 48.827 126.327 48.833 C 125.337 48.799 124.409 49.318 123.918 50.18 C 123.447 50.835 123.159 51.604 123.082 52.407\" fill=\"rgb(0, 0, 0)\"></path><path d=\"M 133.696 54.372 C 133.655 52.599 134.334 50.884 135.577 49.619 C 136.821 48.374 138.511 47.677 140.27 47.683 C 142.03 47.688 143.714 48.396 144.951 49.65 C 146.216 50.891 146.918 52.597 146.893 54.371 C 146.923 56.151 146.237 57.869 144.988 59.137 C 143.79 60.429 142.099 61.15 140.338 61.119 C 138.565 61.144 136.863 60.425 135.643 59.137 C 134.371 57.881 133.667 56.159 133.694 54.371 M 136.325 53.925 C 136.284 55.422 136.734 56.891 137.606 58.107 C 138.255 59.152 139.381 59.805 140.609 59.849 C 141.683 59.846 142.678 59.282 143.234 58.361 C 143.937 57.305 144.296 56.056 144.26 54.787 C 144.3 53.306 143.843 51.855 142.962 50.664 C 142.297 49.633 141.17 48.994 139.945 48.952 C 138.884 48.949 137.896 49.495 137.334 50.396 C 136.637 51.437 136.283 52.671 136.323 53.925\" fill=\"rgb(0, 0, 0)\"></path><path d=\"M 148.512 67.254 C 148.512 67 148.552 66.874 148.632 66.874 C 148.997 66.853 149.358 66.787 149.707 66.677 C 150.18 66.546 150.437 66.41 150.477 66.269 C 150.63 65.574 150.701 64.862 150.689 64.15 L 150.689 51.649 C 150.749 51.072 150.599 50.493 150.266 50.017 C 150.074 49.781 149.816 49.607 149.525 49.518 C 149.291 49.437 149.046 49.392 148.799 49.381 C 148.608 49.381 148.512 49.355 148.512 49.303 C 148.512 48.675 148.572 48.348 148.694 48.322 C 150.828 48.098 152.219 47.916 152.866 47.777 C 152.897 47.776 152.927 47.771 152.957 47.763 L 153.015 47.747 C 153.074 47.747 153.106 47.785 153.106 47.864 C 153.102 47.976 153.092 48.089 153.075 48.2 C 153.063 48.283 153.052 48.366 153.045 48.45 L 153.045 48.617 C 153.492 48.376 153.963 48.182 154.451 48.04 C 154.991 47.847 155.557 47.739 156.13 47.719 C 157.869 47.63 159.551 48.35 160.688 49.671 C 161.72 50.814 162.303 52.293 162.329 53.834 C 162.341 55.74 161.61 57.575 160.291 58.95 C 159.146 60.323 157.461 61.13 155.674 61.159 C 155.372 61.159 155.105 61.149 154.873 61.129 C 154.663 61.112 154.456 61.077 154.253 61.023 C 154.071 60.972 153.93 60.927 153.829 60.886 C 153.729 60.846 153.596 60.79 153.436 60.72 C 153.276 60.649 153.174 60.603 153.134 60.583 C 153.049 60.697 153.007 60.836 153.013 60.977 L 153.013 63.58 C 152.987 64.485 153.068 65.389 153.255 66.274 C 153.293 66.416 153.556 66.552 154.042 66.682 C 154.376 66.787 154.72 66.853 155.069 66.879 C 155.13 66.879 155.17 67.006 155.19 67.259 C 155.217 67.425 155.207 67.596 155.16 67.758 C 153.144 67.656 152.066 67.606 151.925 67.607 C 151.804 67.607 150.705 67.657 148.629 67.758 C 148.53 67.611 148.487 67.434 148.508 67.259 M 153.018 57.944 C 153.04 58.528 153.375 59.055 153.894 59.321 C 154.461 59.69 155.123 59.885 155.799 59.882 C 156.966 59.896 158.05 59.284 158.642 58.278 C 159.347 57.21 159.716 55.955 159.7 54.675 C 159.781 53.215 159.3 51.78 158.355 50.665 C 157.557 49.732 156.391 49.195 155.164 49.196 C 154.607 49.174 154.06 49.351 153.622 49.697 C 153.207 50.055 152.984 50.587 153.018 51.135 Z\" fill=\"rgb(0, 0, 0)\"></path><path d=\"M 163.903 60.503 C 163.903 60.251 163.943 60.125 164.023 60.125 C 164.388 60.104 164.749 60.038 165.097 59.928 C 165.571 59.797 165.828 59.661 165.868 59.52 C 166.021 58.824 166.092 58.113 166.08 57.401 L 166.08 44.295 C 166.083 43.645 166.022 42.996 165.898 42.358 C 165.798 42.035 165.284 41.873 164.357 41.873 L 164.084 41.873 C 163.964 41.873 163.903 41.756 163.903 41.516 C 163.903 41.169 163.964 40.995 164.084 40.995 C 164.69 40.938 165.25 40.862 165.763 40.767 C 166.172 40.696 166.576 40.601 166.973 40.479 C 167.264 40.383 167.512 40.293 167.714 40.208 C 167.869 40.144 168.02 40.072 168.168 39.993 L 168.288 39.906 L 168.347 39.906 C 168.449 39.92 168.539 39.982 168.589 40.073 C 168.661 40.167 168.712 40.275 168.74 40.39 C 168.489 41.245 168.377 42.134 168.407 43.025 L 168.407 56.827 C 168.381 57.731 168.462 58.635 168.649 59.52 C 168.688 59.662 168.95 59.798 169.435 59.928 C 169.769 60.033 170.114 60.099 170.463 60.126 C 170.521 60.126 170.564 60.246 170.585 60.488 C 170.593 60.559 170.598 60.63 170.599 60.7 C 170.604 60.803 170.589 60.906 170.554 61.004 C 168.538 60.903 167.459 60.852 167.318 60.852 C 167.198 60.852 166.099 60.903 164.023 61.004 C 163.924 60.857 163.881 60.68 163.902 60.504\" fill=\"rgb(0, 0, 0)\"></path><path d=\"M 172.158 54.584 C 172.158 52.465 172.723 50.791 173.852 49.56 C 174.927 48.352 176.478 47.677 178.093 47.713 C 178.922 47.696 179.744 47.878 180.488 48.243 C 181.125 48.551 181.67 49.021 182.069 49.606 C 182.418 50.128 182.687 50.699 182.867 51.301 C 183.032 51.856 183.117 52.432 183.118 53.011 C 183.118 53.415 183.06 53.662 182.944 53.752 C 182.743 53.864 182.512 53.911 182.283 53.889 L 174.726 53.889 C 174.564 53.889 174.484 53.939 174.484 54.04 C 174.481 55.304 174.885 56.535 175.635 57.552 C 176.401 58.621 177.658 59.225 178.97 59.156 C 179.702 59.156 180.429 59.018 181.11 58.748 C 181.344 58.653 181.571 58.541 181.789 58.415 C 181.977 58.304 182.139 58.198 182.277 58.097 L 182.484 57.945 C 182.6 57.945 182.659 58.077 182.659 58.339 C 182.649 58.533 182.589 58.721 182.484 58.884 C 182.017 59.512 181.422 60.034 180.737 60.413 C 179.975 60.864 179.104 61.1 178.219 61.093 C 176.589 61.107 175.033 60.417 173.947 59.201 C 172.765 57.959 172.123 56.299 172.162 54.584 M 174.55 52.405 C 174.55 52.547 174.608 52.617 174.731 52.617 L 180.642 52.617 C 180.743 52.617 180.793 52.517 180.793 52.315 C 180.738 51.511 180.455 50.739 179.977 50.09 C 179.529 49.308 178.695 48.828 177.795 48.834 C 176.804 48.8 175.877 49.319 175.386 50.181 C 174.914 50.835 174.624 51.603 174.547 52.407\" fill=\"rgb(0, 0, 0)\"></path><path d=\"M 104.207 83.333 C 104.207 83.213 104.369 83.152 104.691 83.152 C 104.972 83.12 105.252 83.22 105.448 83.423 C 106.133 86.32 107.806 87.768 110.467 87.768 C 111.406 87.793 112.321 87.471 113.038 86.863 C 113.763 86.215 114.152 85.27 114.096 84.299 C 114.1 83.919 114.038 83.542 113.914 83.183 C 113.816 82.89 113.689 82.607 113.536 82.338 C 113.35 82.059 113.113 81.819 112.837 81.629 C 112.504 81.377 112.247 81.191 112.064 81.071 C 111.881 80.95 111.548 80.759 111.064 80.498 C 110.579 80.236 110.247 80.055 110.069 79.955 C 109.493 79.612 109.091 79.371 108.863 79.23 C 108.635 79.089 108.258 78.843 107.732 78.491 C 107.312 78.228 106.926 77.914 106.584 77.556 C 106.347 77.284 106.069 76.952 105.751 76.56 C 105.446 76.192 105.218 75.766 105.081 75.308 C 104.951 74.857 104.886 74.39 104.888 73.921 C 104.853 72.438 105.501 71.021 106.646 70.08 C 107.777 69.093 109.232 68.558 110.732 68.576 C 111.152 68.574 111.571 68.6 111.988 68.654 C 112.314 68.693 112.638 68.75 112.958 68.825 C 113.21 68.887 113.573 68.984 114.048 69.116 C 114.523 69.249 114.941 69.357 115.304 69.442 C 115.578 70.866 115.7 72.316 115.667 73.767 C 115.667 73.908 115.566 73.979 115.364 73.979 C 114.881 73.979 114.618 73.878 114.577 73.677 C 114.433 72.702 113.982 71.798 113.291 71.097 C 112.596 70.292 111.581 69.834 110.518 69.846 C 109.306 69.846 108.452 70.147 107.956 70.751 C 107.451 71.383 107.188 72.175 107.213 72.984 C 107.212 73.361 107.284 73.734 107.425 74.084 C 107.542 74.387 107.684 74.679 107.85 74.958 C 108.063 75.265 108.323 75.535 108.622 75.759 C 108.996 76.06 109.269 76.272 109.441 76.392 C 109.613 76.512 109.956 76.734 110.471 77.055 C 110.987 77.377 111.314 77.58 111.455 77.66 C 111.557 77.72 111.91 77.936 112.514 78.308 C 113.119 78.68 113.534 78.941 113.759 79.093 C 113.981 79.244 114.329 79.516 114.803 79.909 C 115.19 80.21 115.536 80.56 115.832 80.95 C 116.073 81.305 116.277 81.684 116.439 82.081 C 116.628 82.524 116.726 83.001 116.726 83.483 C 116.756 85.037 116.056 86.515 114.836 87.475 C 113.594 88.511 112.022 89.065 110.406 89.038 C 109.89 89.036 109.375 89 108.864 88.931 C 108.321 88.858 107.867 88.785 107.504 88.713 C 107.141 88.641 106.682 88.538 106.128 88.403 C 105.574 88.268 105.186 88.18 104.963 88.139 C 104.59 86.558 104.337 84.952 104.206 83.333\" fill=\"rgb(0, 0, 0)\"></path><path d=\"M 119.009 82.199 C 118.968 80.425 119.646 78.71 120.889 77.445 C 122.133 76.2 123.823 75.503 125.582 75.509 C 127.342 75.515 129.026 76.222 130.263 77.476 C 131.528 78.717 132.23 80.423 132.205 82.197 C 132.235 83.977 131.549 85.695 130.3 86.963 C 129.102 88.255 127.411 88.976 125.65 88.945 C 123.877 88.97 122.175 88.252 120.955 86.963 C 119.683 85.708 118.979 83.985 119.007 82.197 M 121.637 81.751 C 121.596 83.248 122.046 84.717 122.918 85.934 C 123.567 86.978 124.693 87.631 125.922 87.675 C 126.996 87.672 127.991 87.108 128.547 86.187 C 129.25 85.131 129.609 83.882 129.574 82.614 C 129.614 81.133 129.157 79.681 128.275 78.49 C 127.61 77.459 126.483 76.82 125.258 76.778 C 124.197 76.775 123.209 77.321 122.647 78.222 C 121.95 79.263 121.596 80.498 121.636 81.751\" fill=\"rgb(0, 0, 0)\"></path><path d=\"M 133.763 88.329 C 133.763 88.077 133.804 87.951 133.884 87.951 C 134.249 87.93 134.61 87.864 134.958 87.754 C 135.432 87.623 135.689 87.487 135.729 87.346 C 135.882 86.65 135.953 85.939 135.94 85.227 L 135.94 72.122 C 135.944 71.471 135.883 70.822 135.759 70.184 C 135.659 69.861 135.145 69.7 134.218 69.699 L 133.945 69.699 C 133.825 69.699 133.764 69.583 133.764 69.342 C 133.764 68.995 133.824 68.821 133.945 68.821 C 134.551 68.764 135.11 68.688 135.624 68.593 C 136.033 68.523 136.437 68.427 136.834 68.306 C 137.125 68.209 137.372 68.119 137.575 68.034 C 137.73 67.97 137.881 67.899 138.029 67.819 L 138.149 67.732 L 138.207 67.732 C 138.31 67.746 138.4 67.808 138.45 67.899 C 138.522 67.993 138.573 68.101 138.6 68.216 C 138.35 69.071 138.238 69.961 138.268 70.851 L 138.268 84.653 C 138.242 85.557 138.323 86.461 138.51 87.346 C 138.549 87.488 138.811 87.624 139.296 87.754 C 139.63 87.859 139.975 87.925 140.324 87.952 C 140.382 87.952 140.424 88.073 140.445 88.315 C 140.454 88.385 140.459 88.456 140.46 88.527 C 140.465 88.63 140.449 88.733 140.415 88.83 C 138.399 88.729 137.32 88.679 137.179 88.678 C 137.058 88.678 135.96 88.729 133.883 88.83 C 133.784 88.683 133.742 88.506 133.763 88.33\" fill=\"rgb(0, 0, 0)\"></path><path d=\"M 141.807 77.23 C 141.807 76.71 141.865 76.439 141.988 76.414 C 143.392 76.233 144.785 75.971 146.16 75.628 C 146.191 75.626 146.221 75.621 146.251 75.612 L 146.309 75.598 C 146.39 75.598 146.44 75.683 146.461 75.855 C 146.481 75.98 146.481 76.108 146.461 76.233 C 146.358 76.975 146.297 77.723 146.28 78.472 L 146.28 82.56 C 146.28 84.114 146.511 85.259 146.974 85.995 C 147.468 86.751 148.336 87.176 149.236 87.102 C 149.876 87.087 150.488 86.836 150.953 86.396 C 151.496 85.925 151.768 85.517 151.768 85.178 L 151.768 79.549 C 151.828 78.975 151.68 78.399 151.351 77.925 C 151.162 77.691 150.908 77.518 150.621 77.428 C 150.39 77.348 150.149 77.303 149.905 77.293 C 149.717 77.293 149.622 77.271 149.622 77.227 C 149.622 76.707 149.674 76.436 149.779 76.411 C 151.192 76.231 152.593 75.969 153.975 75.625 C 154.006 75.623 154.037 75.618 154.067 75.609 L 154.125 75.595 C 154.205 75.595 154.257 75.68 154.276 75.852 C 154.297 75.977 154.297 76.105 154.276 76.23 C 154.175 76.952 154.114 77.68 154.095 78.409 L 154.095 84.464 C 154.086 85.236 154.155 86.007 154.303 86.764 C 154.356 86.919 154.476 87.042 154.63 87.097 C 154.81 87.178 155.001 87.229 155.197 87.248 C 155.395 87.268 155.594 87.279 155.792 87.278 L 156.061 87.304 C 156.119 87.32 156.151 87.412 156.151 87.577 C 156.14 87.66 156.115 87.74 156.075 87.813 C 156.025 87.922 155.969 87.975 155.908 87.975 C 155.569 88.004 155.231 88.052 154.896 88.118 C 154.523 88.189 154.176 88.273 153.854 88.368 C 153.532 88.464 153.23 88.559 152.948 88.653 C 152.666 88.748 152.444 88.831 152.283 88.903 L 152.01 88.974 C 151.847 88.974 151.766 88.812 151.766 88.489 L 151.766 86.951 L 151.708 86.8 C 150.381 88.233 149.064 88.948 147.758 88.948 C 147.071 88.967 146.396 88.772 145.824 88.39 C 145.292 88.026 144.879 87.512 144.637 86.913 C 144.396 86.342 144.217 85.745 144.105 85.135 C 144.001 84.543 143.95 83.943 143.952 83.342 L 143.952 79.549 C 144.012 78.975 143.864 78.398 143.534 77.925 C 143.345 77.69 143.091 77.517 142.803 77.428 C 142.573 77.348 142.332 77.303 142.088 77.293 C 141.899 77.293 141.805 77.271 141.805 77.227\" fill=\"rgb(0, 0, 0)\"></path><path d=\"M 157.046 76.833 C 157.046 76.722 157.056 76.658 157.076 76.639 C 157.821 76.239 158.471 75.682 158.981 75.007 C 159.218 74.719 159.436 74.414 159.632 74.097 C 159.843 73.758 160.02 73.465 160.161 73.218 C 160.242 73.09 160.313 72.956 160.373 72.818 C 160.977 72.818 161.28 72.869 161.28 72.975 L 161.28 76.086 C 161.804 76.086 162.599 76.091 163.667 76.1 C 164.736 76.109 165.3 76.114 165.361 76.114 C 165.429 76.105 165.497 76.129 165.544 76.179 C 165.592 76.228 165.613 76.297 165.603 76.365 C 165.592 76.736 165.488 77.099 165.3 77.419 L 161.279 77.419 L 161.279 84.921 C 161.242 85.628 161.462 86.324 161.898 86.882 C 162.294 87.364 162.892 87.635 163.516 87.617 C 164.182 87.598 164.83 87.397 165.39 87.034 C 165.45 86.993 165.541 87.079 165.663 87.293 C 165.73 87.397 165.781 87.51 165.813 87.63 C 165.813 87.796 165.35 88.092 164.422 88.517 C 163.816 88.8 163.155 88.947 162.487 88.948 C 161.544 88.974 160.632 88.613 159.962 87.95 C 159.248 87.181 158.881 86.151 158.949 85.104 L 158.949 77.416 L 157.195 77.416 C 157.094 77.416 157.044 77.222 157.044 76.833\" fill=\"rgb(0, 0, 0)\"></path><path d=\"M 166.994 88.329 C 166.994 88.077 167.035 87.951 167.116 87.951 C 167.48 87.93 167.84 87.864 168.188 87.755 C 168.663 87.624 168.92 87.488 168.96 87.347 C 169.112 86.655 169.184 85.948 169.172 85.239 L 169.172 79.551 C 169.232 78.976 169.081 78.398 168.748 77.925 C 168.555 77.691 168.298 77.518 168.007 77.428 C 167.773 77.349 167.528 77.303 167.281 77.294 C 167.089 77.294 166.994 77.271 166.994 77.229 C 166.994 76.708 167.055 76.436 167.176 76.413 C 168.581 76.234 169.974 75.971 171.348 75.626 L 171.406 75.595 L 171.498 75.595 C 171.578 75.595 171.629 75.682 171.648 75.852 C 171.669 75.978 171.669 76.105 171.648 76.231 C 171.554 76.954 171.503 77.682 171.498 78.411 L 171.498 84.647 C 171.472 85.551 171.553 86.455 171.739 87.341 C 171.778 87.482 172.04 87.618 172.526 87.749 C 172.86 87.853 173.205 87.92 173.554 87.946 C 173.614 87.946 173.654 88.067 173.674 88.309 C 173.684 88.379 173.689 88.45 173.69 88.521 C 173.695 88.623 173.679 88.726 173.645 88.823 C 171.629 88.722 170.551 88.672 170.409 88.672 C 170.267 88.672 169.169 88.722 167.114 88.823 C 167.014 88.677 166.971 88.499 166.992 88.324 M 169.034 71.856 C 168.51 71.343 168.422 70.53 168.824 69.916 C 169.227 69.302 170.007 69.059 170.686 69.337 C 171.366 69.614 171.753 70.334 171.612 71.055 C 171.471 71.775 170.84 72.295 170.107 72.295 C 169.704 72.303 169.316 72.144 169.034 71.856\" fill=\"rgb(0, 0, 0)\"></path><path d=\"M 175.28 82.199 C 175.238 80.425 175.916 78.71 177.16 77.445 C 178.404 76.2 180.093 75.503 181.853 75.509 C 183.612 75.515 185.297 76.222 186.533 77.476 C 187.799 78.717 188.501 80.423 188.475 82.197 C 188.506 83.977 187.82 85.695 186.571 86.963 C 185.373 88.255 183.682 88.976 181.921 88.945 C 180.148 88.97 178.446 88.252 177.226 86.963 C 175.954 85.708 175.25 83.985 175.278 82.197 M 177.908 81.751 C 177.867 83.248 178.317 84.717 179.189 85.934 C 179.838 86.978 180.964 87.631 182.192 87.675 C 183.267 87.672 184.262 87.108 184.817 86.187 C 185.521 85.131 185.88 83.882 185.844 82.614 C 185.884 81.133 185.427 79.681 184.546 78.49 C 183.881 77.459 182.754 76.82 181.528 76.778 C 180.467 76.775 179.48 77.321 178.918 78.222 C 178.22 79.263 177.867 80.498 177.907 81.751\" fill=\"rgb(0, 0, 0)\"></path><path d=\"M 190.457 88.329 C 190.457 88.077 190.498 87.95 190.579 87.95 C 190.943 87.929 191.304 87.863 191.652 87.753 C 192.125 87.622 192.383 87.486 192.423 87.345 C 192.576 86.649 192.647 85.938 192.635 85.226 L 192.635 79.505 C 192.695 78.927 192.544 78.348 192.211 77.873 C 192.019 77.637 191.761 77.464 191.471 77.374 C 191.237 77.293 190.993 77.247 190.745 77.237 C 190.553 77.237 190.458 77.217 190.458 77.179 C 190.458 76.713 190.519 76.47 190.639 76.45 C 192.046 76.265 193.439 75.992 194.812 75.634 C 194.843 75.632 194.873 75.627 194.902 75.618 L 194.961 75.602 C 195.042 75.602 195.092 75.692 195.112 75.869 C 195.133 75.999 195.133 76.132 195.112 76.262 C 195.046 76.655 195.006 77.051 194.99 77.449 C 194.99 77.53 195.011 77.57 195.049 77.57 C 195.07 77.57 195.1 77.549 195.14 77.511 C 195.703 76.965 196.34 76.503 197.034 76.138 C 197.726 75.728 198.512 75.5 199.316 75.478 C 200.727 75.478 201.715 75.983 202.28 76.994 C 202.844 78.004 203.126 79.639 203.127 81.898 L 203.127 84.653 C 203.101 85.557 203.182 86.461 203.368 87.346 C 203.407 87.488 203.669 87.624 204.154 87.754 C 204.488 87.859 204.833 87.926 205.183 87.952 C 205.243 87.952 205.283 88.073 205.303 88.315 C 205.313 88.385 205.318 88.456 205.319 88.527 C 205.323 88.63 205.308 88.733 205.273 88.83 C 203.258 88.729 202.179 88.679 202.038 88.678 C 201.999 88.678 200.941 88.729 198.863 88.83 C 198.764 88.683 198.721 88.506 198.742 88.33 C 198.742 88.078 198.782 87.952 198.863 87.952 C 199.208 87.933 199.549 87.866 199.876 87.754 C 200.309 87.623 200.546 87.487 200.587 87.346 C 200.739 86.651 200.81 85.94 200.798 85.228 L 200.798 82.2 C 200.798 80.323 200.556 79.041 200.073 78.353 C 199.513 77.631 198.624 77.243 197.715 77.324 C 197.031 77.338 196.374 77.589 195.855 78.035 C 195.259 78.509 194.961 78.938 194.962 79.322 L 194.962 84.65 C 194.936 85.554 195.017 86.458 195.204 87.343 C 195.243 87.485 195.505 87.621 195.99 87.751 C 196.324 87.856 196.669 87.922 197.018 87.948 C 197.076 87.948 197.118 88.069 197.139 88.311 C 197.165 88.483 197.154 88.658 197.109 88.826 C 195.093 88.726 194.014 88.675 193.873 88.675 C 193.752 88.675 192.654 88.725 190.578 88.826 C 190.478 88.68 190.435 88.503 190.456 88.327\" fill=\"rgb(0, 0, 0)\"></path><path d=\"M 207.24 85.347 C 207.341 85.253 207.467 85.19 207.603 85.165 C 207.904 85.165 208.066 85.226 208.087 85.347 C 208.264 86.044 208.662 86.665 209.221 87.117 C 209.775 87.66 210.516 87.968 211.291 87.98 C 211.867 88.003 212.432 87.815 212.879 87.45 C 213.307 87.062 213.535 86.499 213.498 85.921 C 213.501 85.593 213.434 85.268 213.301 84.968 C 213.157 84.658 212.939 84.388 212.667 84.18 C 212.408 83.971 212.135 83.78 211.852 83.606 C 211.6 83.454 211.243 83.258 210.779 83.015 C 210.315 82.773 209.972 82.581 209.751 82.44 C 208.178 81.532 207.392 80.453 207.392 79.202 C 207.372 78.152 207.863 77.159 208.708 76.538 C 209.583 75.852 210.666 75.489 211.776 75.509 C 212.339 75.52 212.9 75.576 213.455 75.676 C 214.13 75.787 214.599 75.862 214.861 75.903 C 215.073 76.919 215.195 77.953 215.223 78.992 C 215.223 79.092 215.093 79.143 214.831 79.143 C 214.548 79.143 214.397 79.072 214.377 78.931 C 214.254 78.323 213.953 77.765 213.515 77.327 C 213.109 76.853 212.52 76.577 211.897 76.569 C 210.446 76.569 209.72 77.165 209.72 78.356 C 209.715 78.628 209.756 78.899 209.84 79.158 C 209.938 79.416 210.1 79.645 210.309 79.824 C 210.542 80.036 210.718 80.188 210.838 80.278 C 211.097 80.453 211.364 80.615 211.64 80.763 C 212.053 80.996 212.308 81.142 212.406 81.201 C 212.484 81.24 212.712 81.376 213.092 81.609 C 213.474 81.842 213.742 82.007 213.898 82.108 C 214.054 82.209 214.282 82.381 214.584 82.623 C 214.831 82.81 215.053 83.029 215.243 83.274 C 215.399 83.502 215.531 83.746 215.638 84.001 C 215.762 84.282 215.827 84.586 215.828 84.894 C 215.848 86.041 215.35 87.137 214.473 87.876 C 213.601 88.661 212.465 89.088 211.292 89.072 C 210.902 89.074 210.513 89.048 210.127 88.996 C 209.705 88.931 209.287 88.846 208.873 88.739 C 208.389 88.618 208.017 88.537 207.754 88.496 C 207.592 88.003 207.475 87.496 207.405 86.981 C 207.308 86.442 207.252 85.896 207.238 85.349\" fill=\"rgb(0, 0, 0)\"></path></svg>',svgContentId:12848367791,withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-hbvab2\",\"data-framer-name\":\"Logo-h\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 157 100\"><path d=\"M 95.158 0.154 L 93.784 0.325 C 93.587 0.343 93.393 0.388 93.208 0.459 C 93.133 0.504 92.682 0.587 92.207 0.645 C 91.731 0.702 91.279 0.798 91.199 0.859 C 91.121 0.921 90.732 1.02 90.336 1.077 C 89.94 1.134 89.551 1.229 89.472 1.289 C 89.392 1.348 88.907 1.482 88.391 1.584 C 87.877 1.686 87.395 1.825 87.321 1.895 C 87.216 1.973 87.091 2.018 86.96 2.023 C 86.835 2.025 86.478 2.152 86.161 2.305 C 85.938 2.422 85.704 2.517 85.463 2.589 C 85.337 2.595 84.726 2.85 83.697 3.327 C 83.372 3.479 83.032 3.602 82.942 3.602 C 82.853 3.602 82.778 3.668 82.778 3.746 C 82.778 3.825 82.696 3.889 82.6 3.889 C 82.398 3.889 80.873 4.627 80.762 4.779 C 80.721 4.832 80.514 4.921 80.304 4.973 C 80.091 5.027 79.886 5.154 79.847 5.259 C 79.806 5.362 79.579 5.491 79.344 5.545 C 79.108 5.595 78.88 5.73 78.835 5.845 C 78.782 5.965 78.667 6.045 78.536 6.052 C 78.414 6.052 78.314 6.109 78.314 6.179 C 78.314 6.248 78.12 6.386 77.883 6.484 C 77.645 6.582 77.451 6.72 77.451 6.789 C 77.451 6.861 77.383 6.916 77.298 6.916 C 77.149 6.916 76.05 7.679 75.544 8.13 C 75.405 8.255 75.242 8.359 75.183 8.359 C 75.124 8.361 74.923 8.523 74.737 8.72 C 74.55 8.916 74.323 9.08 74.232 9.084 C 74.143 9.087 73.91 9.28 73.715 9.516 C 73.519 9.75 73.305 9.943 73.237 9.943 C 73.071 9.943 68.093 14.925 68.093 15.089 C 68.093 15.159 67.902 15.375 67.667 15.57 C 67.435 15.762 67.239 15.989 67.235 16.07 C 67.232 16.152 67.051 16.421 66.834 16.671 C 66.108 17.504 65.865 17.811 65.432 18.454 C 65.272 18.697 65.104 18.934 64.927 19.164 C 64.816 19.324 64.72 19.493 64.638 19.67 C 64.52 19.907 64.341 20.152 64.243 20.216 C 64.139 20.287 64.072 20.402 64.061 20.529 C 64.061 20.636 64.011 20.746 63.949 20.773 C 63.887 20.8 63.649 21.146 63.421 21.541 C 63.272 21.816 63.106 22.081 62.923 22.334 C 62.877 22.373 62.645 22.796 62.406 23.271 C 62.17 23.746 61.931 24.168 61.879 24.209 C 61.826 24.25 61.737 24.459 61.683 24.677 C 61.63 24.895 61.532 25.071 61.467 25.071 C 61.403 25.071 61.307 25.263 61.257 25.495 C 61.207 25.727 61.071 25.995 60.959 26.089 C 60.845 26.182 60.752 26.323 60.752 26.402 C 60.752 26.555 60.484 27.193 59.945 28.316 C 59.755 28.714 59.599 29.12 59.599 29.216 C 59.599 29.314 59.549 29.395 59.491 29.395 C 59.43 29.395 59.221 29.734 59.027 30.152 C 58.832 30.568 58.632 30.941 58.581 30.98 C 58.531 31.02 58.411 31.295 58.313 31.593 C 58.217 31.889 58.083 32.132 58.017 32.132 C 57.949 32.132 57.853 32.329 57.801 32.564 C 57.747 32.802 57.656 32.998 57.596 32.998 C 57.535 32.998 57.403 33.273 57.303 33.609 C 57.203 33.946 57.071 34.254 57.012 34.295 C 56.873 34.384 55.282 37.7 55.282 37.895 C 55.282 37.975 55.223 38.041 55.152 38.041 C 55.082 38.041 54.938 38.332 54.834 38.689 C 54.727 39.046 54.597 39.337 54.541 39.337 C 54.486 39.337 54.399 39.532 54.345 39.77 C 54.292 40.007 54.202 40.202 54.149 40.202 C 54.035 40.202 53.266 41.812 53.266 42.048 C 53.266 42.129 53.218 42.216 53.159 42.245 C 53.014 42.307 52.258 43.834 52.258 44.059 C 52.258 44.157 52.201 44.238 52.129 44.238 C 52.058 44.238 51.956 44.414 51.903 44.63 C 51.849 44.848 51.76 45.059 51.707 45.1 C 51.482 45.266 50.818 46.789 50.818 47.132 C 50.818 47.338 50.195 48.763 49.435 50.3 C 48.675 51.839 47.289 54.654 46.356 56.557 C 45.423 58.459 43.129 63.118 41.261 66.909 C 39.391 70.702 37.862 73.859 37.862 73.927 C 37.862 73.993 37.732 74.137 37.575 74.248 C 37.416 74.359 37.33 74.493 37.382 74.545 C 37.575 74.737 64.215 74.654 64.4 74.461 C 64.495 74.361 65.184 73.048 65.929 71.543 C 66.675 70.036 67.33 68.771 67.382 68.732 C 67.433 68.693 67.56 68.4 67.662 68.084 C 67.763 67.766 67.888 67.475 67.938 67.436 C 68.083 67.32 69.246 64.909 69.246 64.721 C 69.246 64.63 69.308 64.554 69.387 64.554 C 69.464 64.554 69.569 64.393 69.619 64.193 C 69.667 63.996 69.767 63.834 69.836 63.834 C 69.908 63.834 69.954 63.784 69.942 63.727 C 69.929 63.666 69.995 63.434 70.084 63.211 C 70.162 63.039 70.219 62.857 70.252 62.671 C 70.252 62.596 70.316 62.536 70.395 62.536 C 70.472 62.536 70.575 62.375 70.627 62.177 C 70.675 61.979 70.77 61.816 70.832 61.816 C 70.898 61.816 70.993 61.62 71.046 61.384 C 71.096 61.146 71.191 60.952 71.253 60.952 C 71.315 60.952 71.449 60.659 71.549 60.304 C 71.647 59.946 71.785 59.654 71.852 59.654 C 71.92 59.654 72.015 59.493 72.067 59.295 C 72.115 59.096 72.204 58.934 72.261 58.934 C 72.32 58.934 72.448 58.659 72.55 58.321 C 72.65 57.984 72.777 57.677 72.832 57.637 C 72.932 57.564 73.437 56.637 73.813 55.836 C 73.914 55.616 74.023 55.4 74.14 55.187 C 74.563 54.457 75.583 52.35 75.581 52.209 C 75.581 52.118 75.629 52.02 75.688 51.995 C 75.849 51.923 76.587 50.443 76.587 50.195 C 76.587 50.079 76.646 50.02 76.719 50.064 C 76.791 50.111 76.894 49.952 76.946 49.712 C 77 49.475 77.101 49.28 77.174 49.28 C 77.246 49.28 77.306 49.211 77.306 49.127 C 77.306 48.92 78.063 47.357 78.216 47.246 C 78.286 47.194 78.334 47.117 78.35 47.03 C 78.377 46.702 78.504 46.398 78.614 46.398 C 78.68 46.398 78.812 46.138 78.907 45.821 C 79.003 45.504 79.135 45.245 79.201 45.245 C 79.267 45.245 79.322 45.177 79.322 45.093 C 79.322 44.891 80.059 43.321 80.198 43.227 C 80.259 43.186 80.352 42.977 80.407 42.759 C 80.461 42.541 80.557 42.363 80.621 42.363 C 80.687 42.363 80.782 42.17 80.835 41.932 C 80.885 41.693 80.985 41.498 81.055 41.498 C 81.126 41.498 81.26 41.239 81.355 40.921 C 81.449 40.605 81.578 40.346 81.636 40.346 C 81.697 40.346 81.79 40.15 81.842 39.914 C 81.895 39.677 81.984 39.482 82.045 39.482 C 82.107 39.482 82.241 39.221 82.345 38.905 C 82.45 38.588 82.586 38.329 82.644 38.329 C 82.705 38.329 82.796 38.134 82.85 37.896 C 82.903 37.659 83.005 37.464 83.076 37.464 C 83.149 37.464 83.21 37.389 83.21 37.298 C 83.21 37.107 83.954 35.555 84.098 35.445 C 84.152 35.405 84.239 35.195 84.295 34.977 C 84.348 34.759 84.439 34.584 84.498 34.584 C 84.555 34.584 84.689 34.323 84.792 34.005 C 84.898 33.689 85.032 33.43 85.092 33.43 C 85.153 33.43 85.246 33.234 85.297 32.998 C 85.349 32.759 85.435 32.564 85.488 32.563 C 85.542 32.563 85.779 32.155 86.016 31.662 C 86.254 31.168 86.53 30.713 86.628 30.648 C 86.733 30.573 86.799 30.454 86.807 30.325 C 86.807 30.209 86.869 30.116 86.942 30.116 C 87.015 30.116 87.115 29.993 87.164 29.845 C 87.243 29.64 87.355 29.45 87.495 29.282 C 87.633 29.121 87.841 28.845 87.959 28.668 C 88.473 27.902 90.082 26.268 91.156 25.418 C 91.906 24.825 92.964 24.186 94.079 23.65 L 95.595 22.914 C 95.718 22.852 96.089 22.757 96.423 22.7 C 96.755 22.645 97.062 22.545 97.101 22.48 C 97.14 22.414 97.513 22.316 97.931 22.259 C 98.344 22.205 98.776 22.084 98.887 21.995 C 99.035 21.875 102.744 21.818 112.49 21.787 C 120.763 21.763 125.944 21.693 126.03 21.609 C 126.116 21.521 131.798 21.47 141.111 21.47 C 152.964 21.47 156.056 21.434 156.062 21.291 C 156.065 21.191 156.062 20.354 156.054 19.43 C 156.046 18.395 156.097 17.714 156.19 17.655 C 156.293 17.593 156.342 14.761 156.342 8.78 L 156.342 0 L 126.217 0.018 C 109.65 0.03 95.674 0.089 95.156 0.154 Z\" fill=\"rgb(67,164,220)\"></path><path d=\"M 0 0.209 C 0 0.323 0.062 0.455 0.141 0.504 C 0.218 0.552 0.459 0.977 0.674 1.45 C 0.89 1.921 1.12 2.307 1.181 2.307 C 1.245 2.307 1.295 2.382 1.295 2.473 C 1.295 2.682 2.018 4.227 2.159 4.325 C 2.218 4.364 2.314 4.557 2.375 4.757 C 2.437 4.954 2.526 5.15 2.574 5.189 C 2.624 5.229 2.858 5.682 3.095 6.196 C 3.333 6.712 3.566 7.166 3.616 7.205 C 3.707 7.331 3.774 7.473 3.813 7.623 C 3.871 7.814 4.107 8.286 4.334 8.671 C 4.56 9.057 4.787 9.534 4.837 9.73 C 4.887 9.927 4.983 10.087 5.054 10.087 C 5.126 10.087 5.183 10.157 5.183 10.241 C 5.183 10.42 5.927 11.998 6.061 12.105 C 6.111 12.145 6.2 12.334 6.26 12.523 C 6.319 12.714 6.546 13.173 6.767 13.546 C 6.985 13.918 7.213 14.379 7.272 14.57 C 7.311 14.72 7.378 14.862 7.47 14.987 C 7.52 15.027 8.851 17.654 10.432 20.823 C 12.011 23.993 13.354 26.609 13.418 26.634 C 13.481 26.661 13.532 26.741 13.532 26.811 C 13.532 27.034 14.283 28.602 14.415 28.652 C 14.483 28.679 14.54 28.777 14.54 28.868 C 14.54 28.961 14.646 29.23 14.772 29.468 C 14.899 29.707 15.261 30.42 15.575 31.054 C 15.891 31.687 16.2 32.309 16.264 32.432 C 16.33 32.557 16.556 33.011 16.769 33.441 C 17.763 35.402 18.747 37.368 19.721 39.339 C 20.527 40.977 21.345 42.61 22.173 44.237 C 22.462 44.72 23.034 45.959 23.034 46.102 C 23.034 46.186 23.086 46.255 23.149 46.255 C 23.213 46.255 23.35 46.498 23.457 46.796 C 23.564 47.093 23.691 47.368 23.743 47.407 C 23.793 47.448 24.997 49.814 26.421 52.668 C 27.844 55.52 29.04 57.887 29.079 57.927 C 29.12 57.966 29.347 58.42 29.584 58.936 C 29.821 59.45 30.048 59.904 30.089 59.943 C 30.128 59.984 31.552 62.804 33.252 66.211 C 34.952 69.62 36.385 72.439 36.435 72.479 C 36.486 72.52 36.576 72.705 36.635 72.895 C 36.806 73.441 37.3 74.209 37.48 74.207 C 37.573 74.207 37.552 74.146 37.434 74.071 C 37.252 73.955 37.255 73.923 37.461 73.845 C 37.596 73.791 37.664 73.662 37.619 73.541 C 37.571 73.416 37.614 73.35 37.73 73.375 C 37.835 73.398 37.93 73.32 37.942 73.2 C 37.957 73.044 37.97 72.888 37.983 72.732 C 37.996 72.593 38.083 72.496 38.178 72.516 C 38.272 72.536 38.37 72.421 38.399 72.264 C 38.531 71.5 38.601 71.33 38.765 71.364 C 38.863 71.382 38.922 71.286 38.9 71.146 C 38.875 71.009 38.922 70.895 39.004 70.895 C 39.082 70.895 39.111 70.795 39.064 70.673 C 39.009 70.53 39.05 70.466 39.175 70.493 C 39.364 70.532 39.389 70.466 39.428 69.841 C 39.437 69.698 39.509 69.62 39.585 69.668 C 39.662 69.714 39.764 69.573 39.814 69.352 C 39.99 68.566 40.044 68.441 40.176 68.523 C 40.297 68.598 40.37 68.4 40.326 68.121 C 40.317 68.061 40.372 68.014 40.449 68.014 C 40.526 68.014 40.547 67.905 40.495 67.773 C 40.436 67.62 40.46 67.568 40.563 67.63 C 40.722 67.73 40.968 67.22 40.911 66.912 C 40.893 66.823 40.979 66.711 41.098 66.664 C 41.218 66.62 41.318 66.414 41.318 66.209 C 41.318 66.002 41.377 65.871 41.452 65.918 C 41.578 65.996 41.837 65.462 41.778 65.239 C 41.76 65.18 41.817 65.132 41.901 65.132 C 41.985 65.132 42.015 65.068 41.967 64.993 C 41.921 64.916 42.014 64.723 42.172 64.564 C 42.333 64.404 42.424 64.175 42.378 64.054 C 42.331 63.934 42.363 63.834 42.449 63.834 C 42.535 63.834 42.565 63.734 42.518 63.612 C 42.465 63.47 42.504 63.405 42.631 63.432 C 42.75 63.457 42.813 63.373 42.786 63.221 C 42.763 63.084 42.809 62.971 42.89 62.971 C 42.97 62.971 42.997 62.87 42.95 62.748 C 42.897 62.609 42.936 62.541 43.054 62.568 C 43.159 62.591 43.266 62.479 43.293 62.321 C 43.427 61.557 43.494 61.389 43.658 61.421 C 43.757 61.439 43.819 61.368 43.796 61.261 C 43.732 60.957 43.914 60.507 44.063 60.6 C 44.183 60.673 44.258 60.475 44.213 60.196 C 44.204 60.136 44.258 60.089 44.336 60.089 C 44.411 60.089 44.433 59.98 44.383 59.848 C 44.322 59.689 44.347 59.643 44.454 59.711 C 44.558 59.773 44.652 59.661 44.709 59.409 C 44.884 58.623 44.939 58.498 45.071 58.582 C 45.191 58.655 45.266 58.457 45.221 58.179 C 45.212 58.12 45.266 58.071 45.343 58.071 C 45.419 58.071 45.441 57.964 45.391 57.83 C 45.328 57.67 45.355 57.625 45.468 57.695 C 45.619 57.789 45.699 57.618 45.653 57.314 C 45.644 57.255 45.698 57.207 45.776 57.207 C 45.851 57.207 45.873 57.1 45.823 56.966 C 45.764 56.812 45.787 56.762 45.889 56.823 C 46.058 56.929 46.295 56.405 46.231 56.075 C 46.21 55.968 46.256 55.92 46.333 55.968 C 46.415 56.018 46.44 55.93 46.395 55.759 C 46.342 55.557 46.381 55.479 46.517 55.507 C 46.627 55.53 46.699 55.468 46.679 55.368 C 46.661 55.27 46.713 55.189 46.797 55.189 C 46.879 55.189 46.909 55.127 46.863 55.05 C 46.816 54.973 46.907 54.782 47.066 54.621 C 47.227 54.461 47.319 54.232 47.273 54.111 C 47.227 53.991 47.259 53.893 47.344 53.893 C 47.428 53.893 47.46 53.793 47.414 53.67 C 47.359 53.529 47.4 53.462 47.526 53.491 C 47.644 53.514 47.705 53.432 47.682 53.279 C 47.658 53.141 47.705 53.029 47.785 53.029 C 47.865 53.029 47.889 52.92 47.839 52.787 C 47.78 52.634 47.803 52.584 47.905 52.645 C 48.06 52.741 48.113 52.63 48.288 51.839 C 48.336 51.621 48.456 51.459 48.554 51.479 C 48.652 51.498 48.711 51.402 48.69 51.262 C 48.665 51.123 48.711 51.011 48.793 51.011 C 48.872 51.011 48.897 50.904 48.847 50.77 C 48.786 50.616 48.811 50.566 48.913 50.627 C 49.08 50.734 49.318 50.211 49.253 49.879 C 49.232 49.771 49.278 49.723 49.353 49.771 C 49.51 49.866 49.667 49.541 49.667 49.116 C 49.667 48.961 49.728 48.87 49.801 48.914 C 49.93 48.993 50.186 48.459 50.128 48.236 C 50.11 48.177 50.167 48.129 50.252 48.129 C 50.335 48.129 50.36 48.059 50.308 47.975 C 50.256 47.891 50.333 47.723 50.481 47.604 C 50.627 47.484 50.666 47.427 50.57 47.477 C 50.44 47.541 50.413 47.454 50.47 47.162 C 50.533 46.839 49.869 45.4 47.084 39.829 C 45.179 36.018 43.621 32.829 43.621 32.745 C 43.621 32.659 43.567 32.568 43.501 32.543 C 43.368 32.489 42.613 30.936 42.613 30.714 C 42.613 30.637 42.561 30.552 42.501 30.525 C 42.367 30.468 40.597 26.895 40.597 26.684 C 40.597 26.604 40.549 26.516 40.49 26.491 C 40.429 26.464 38.388 22.462 35.953 17.598 C 34.319 14.331 32.681 11.065 31.038 7.802 C 30.49 6.732 29.587 4.929 28.123 1.982 L 27.136 0.002 L 13.568 0.002 C 1.85 0.002 0 0.03 0 0.209 Z M 126.305 21.714 C 126.358 21.768 126.223 21.887 126.005 21.98 C 125.747 22.11 125.533 22.314 125.391 22.566 C 125.272 22.796 125.141 23.016 125.102 23.055 C 124.888 23.271 124.383 24.073 124.383 24.204 C 124.383 24.286 124.321 24.354 124.246 24.354 C 124.171 24.354 124.026 24.512 123.923 24.707 C 123.819 24.904 123.152 25.911 122.439 26.948 C 121.725 27.984 121.077 28.943 120.997 29.079 C 120.747 29.502 120.291 30.186 120.208 30.261 C 120.166 30.3 119.613 31.111 118.981 32.061 C 118.349 33.011 117.768 33.862 117.688 33.954 C 117.574 34.091 117.468 34.235 117.372 34.386 C 117.01 34.946 115.821 36.707 115.22 37.573 C 114.876 38.068 114.594 38.509 114.594 38.552 C 114.594 38.627 114.023 39.477 113.873 39.627 C 113.834 39.666 113.606 39.991 113.37 40.346 C 113.133 40.704 112.906 41.029 112.867 41.068 C 112.685 41.248 111.611 42.896 111.529 43.121 C 111.475 43.259 111.368 43.373 111.286 43.373 C 111.202 43.376 111.136 43.446 111.138 43.53 C 111.138 43.618 111.026 43.837 110.887 44.018 C 110.564 44.443 110.401 44.682 109.668 45.821 C 109.454 46.167 109.227 46.504 108.987 46.832 C 108.805 46.995 107.684 48.723 107.684 48.837 C 107.684 48.907 107.586 48.998 107.467 49.045 C 107.349 49.091 107.252 49.223 107.252 49.341 C 107.242 49.475 107.17 49.597 107.056 49.67 C 106.949 49.734 106.771 49.959 106.662 50.171 C 106.551 50.386 105.811 51.505 105.021 52.664 C 103.584 54.766 103.401 55.041 102.865 55.891 C 102.71 56.139 102.532 56.341 102.469 56.341 C 102.407 56.341 102.357 56.402 102.357 56.477 C 102.357 56.55 101.904 57.268 101.349 58.071 C 100.796 58.875 100.341 59.586 100.341 59.654 C 100.341 59.72 100.293 59.796 100.234 59.823 C 100.173 59.85 99.931 60.162 99.693 60.52 C 99.456 60.877 99.197 61.243 99.117 61.334 C 99.038 61.423 98.559 62.155 98.05 62.955 C 97.542 63.755 97.072 64.411 97.006 64.411 C 96.94 64.411 96.887 64.468 96.887 64.539 C 96.887 64.741 95.85 66.284 95.715 66.284 C 95.647 66.284 95.59 66.352 95.59 66.432 C 95.59 66.514 95.105 67.295 94.51 68.166 C 93.916 69.037 93.431 69.784 93.431 69.825 C 93.431 69.904 93.228 70.164 92.819 70.618 C 92.68 70.77 92.568 70.921 92.568 70.957 C 92.568 71.045 91.467 72.702 90.837 73.561 C 89.981 74.732 88.791 74.641 104.821 74.641 L 119.209 74.641 L 119.507 74.137 C 119.671 73.859 119.864 73.632 119.936 73.632 C 120.007 73.632 120.064 73.548 120.064 73.446 C 120.064 73.343 120.162 73.132 120.282 72.977 C 120.401 72.823 120.756 72.339 121.068 71.904 C 121.382 71.468 121.689 71.046 121.752 70.968 C 121.812 70.887 122.059 70.53 122.296 70.175 C 122.533 69.818 122.779 69.461 122.844 69.382 C 122.985 69.205 124.01 67.739 125.413 65.707 C 125.985 64.875 127.079 63.32 127.843 62.25 C 128.606 61.179 129.418 60.012 129.65 59.655 C 129.88 59.298 130.144 58.929 130.235 58.83 C 130.324 58.734 130.549 58.409 130.731 58.111 C 130.913 57.811 131.097 57.534 131.141 57.495 C 131.324 57.263 131.495 57.022 131.653 56.773 C 132.126 56.062 132.174 55.996 132.592 55.491 C 132.749 55.3 132.877 55.098 132.877 55.045 C 132.877 54.991 132.99 54.807 133.127 54.639 C 133.266 54.471 133.607 54.005 133.884 53.602 C 134.162 53.198 134.597 52.584 134.856 52.236 C 135.113 51.889 135.323 51.536 135.323 51.45 C 135.323 51.366 135.377 51.298 135.443 51.298 C 135.571 51.298 136.331 50.191 136.331 50.004 C 136.331 49.941 136.429 49.852 136.547 49.805 C 136.667 49.761 136.763 49.634 136.763 49.525 C 136.763 49.414 136.893 49.209 137.052 49.064 C 137.209 48.921 137.339 48.725 137.339 48.627 C 137.339 48.527 137.436 48.411 137.553 48.364 C 137.673 48.318 137.771 48.212 137.771 48.127 C 137.771 47.987 138.181 47.341 138.563 46.88 C 138.642 46.786 138.934 46.377 139.211 45.971 C 139.487 45.568 139.942 44.921 140.219 44.536 C 140.495 44.15 140.82 43.691 140.938 43.518 C 141.057 43.345 141.305 42.998 141.491 42.748 C 141.676 42.498 142.051 41.945 142.326 41.523 C 142.528 41.202 142.742 40.89 142.968 40.586 C 143.195 40.327 147.844 33.7 149.098 31.846 C 149.717 30.936 150.303 30.137 150.402 30.073 C 150.502 30.011 150.583 29.895 150.583 29.816 C 150.583 29.691 151.091 28.887 151.303 28.675 C 151.434 28.513 151.558 28.345 151.674 28.171 C 152.709 26.679 153.105 26.132 153.273 25.964 C 153.379 25.855 153.446 25.714 153.462 25.562 C 153.462 25.448 153.56 25.316 153.678 25.27 C 153.798 25.225 153.896 25.123 153.896 25.046 C 153.896 24.97 154.12 24.629 154.399 24.291 C 154.675 23.952 154.902 23.634 154.902 23.584 C 154.902 23.532 155.134 23.189 155.414 22.82 C 155.694 22.452 155.892 22.066 155.853 21.962 C 155.812 21.855 155.913 21.752 156.099 21.716 C 156.272 21.68 149.617 21.645 141.309 21.636 C 133.002 21.623 126.251 21.659 126.305 21.714 Z M 3.215 82.654 C 3.051 82.725 3.329 83.855 3.604 84.223 C 3.661 84.304 3.757 84.595 3.818 84.871 C 3.875 85.15 4.014 85.504 4.121 85.661 C 4.228 85.816 4.318 86.03 4.318 86.137 C 4.318 86.243 4.451 86.632 4.615 87.005 C 4.985 87.852 5.067 88.054 5.472 89.123 C 5.652 89.598 5.92 90.259 6.068 90.591 C 6.214 90.925 6.335 91.284 6.335 91.391 C 6.335 91.498 6.389 91.648 6.455 91.723 C 6.521 91.798 6.76 92.379 6.987 93.012 C 7.213 93.646 7.481 94.329 7.584 94.527 C 7.683 94.708 7.747 94.906 7.773 95.111 C 7.773 95.236 7.87 95.461 7.986 95.614 C 8.102 95.77 8.2 95.993 8.207 96.111 C 8.212 96.23 8.341 96.587 8.492 96.904 C 8.647 97.221 8.774 97.545 8.778 97.623 C 8.783 97.793 9.381 99.27 9.548 99.534 C 9.75 99.852 14.341 99.784 14.444 99.462 C 14.487 99.323 14.688 98.82 14.89 98.345 C 15.093 97.87 15.259 97.412 15.259 97.33 C 15.259 97.248 15.488 96.634 15.764 95.966 C 16.041 95.3 16.269 94.686 16.273 94.604 C 16.274 94.521 16.403 94.193 16.556 93.877 C 16.708 93.561 16.836 93.187 16.838 93.05 C 16.842 92.911 16.91 92.796 16.988 92.796 C 17.067 92.796 17.134 92.684 17.136 92.546 C 17.14 92.405 17.266 92.034 17.42 91.716 C 17.572 91.4 17.7 91.03 17.702 90.895 C 17.705 90.762 17.766 90.616 17.837 90.573 C 17.909 90.527 18.051 90.166 18.153 89.77 C 18.255 89.375 18.39 89.05 18.455 89.05 C 18.519 89.05 18.571 88.954 18.571 88.836 C 18.571 88.652 18.899 87.743 19.507 86.241 C 19.605 86.004 19.832 85.42 20.012 84.945 C 20.192 84.468 20.433 83.866 20.546 83.605 C 20.945 82.677 20.879 82.643 18.69 82.598 C 16.465 82.554 16.382 82.586 16.123 83.616 C 16.037 83.958 15.915 84.289 15.759 84.605 C 15.651 84.789 15.58 84.991 15.548 85.202 C 15.548 85.32 15.452 85.602 15.334 85.827 C 15.215 86.055 15.117 86.337 15.117 86.457 C 15.083 86.675 15.01 86.885 14.903 87.077 C 14.764 87.356 14.647 87.645 14.551 87.941 C 14.28 88.816 13.445 91.141 13.295 91.429 C 13.11 91.875 12.949 92.332 12.813 92.796 C 12.63 93.391 12.43 93.943 12.371 94.021 C 12.312 94.102 12.217 94.409 12.162 94.705 C 12.064 95.23 11.805 95.33 11.805 94.841 C 11.773 94.611 11.699 94.389 11.588 94.186 C 11.47 93.959 11.374 93.709 11.374 93.632 C 11.331 93.425 11.261 93.225 11.167 93.036 C 11.052 92.786 10.785 92.062 10.574 91.429 C 10.362 90.795 10.132 90.214 10.062 90.137 C 9.991 90.062 9.934 89.87 9.932 89.707 C 9.912 89.475 9.847 89.248 9.739 89.041 C 9.619 88.801 9.522 88.55 9.45 88.291 C 9.379 88.025 9.292 87.763 9.19 87.507 C 8.721 86.294 8.288 85.067 7.891 83.829 C 7.807 83.53 7.682 83.287 7.613 83.287 C 7.541 83.287 7.486 83.162 7.486 83.014 C 7.486 82.864 7.402 82.709 7.301 82.67 C 7.053 82.575 3.431 82.562 3.215 82.654 Z M 22.376 82.755 C 22.337 82.859 22.323 83.654 22.346 84.521 L 22.387 86.096 L 26.526 86.096 C 28.801 86.096 30.665 86.116 30.665 86.141 C 30.665 86.166 30.404 86.737 30.089 87.411 C 29.771 88.084 29.512 88.664 29.512 88.7 C 29.512 88.736 29.373 89.073 29.204 89.448 C 29.034 89.823 28.74 90.487 28.547 90.923 L 28.005 92.148 L 27.056 94.309 C 26.883 94.705 26.556 95.425 26.328 95.907 C 26.099 96.389 25.914 96.829 25.914 96.886 C 25.914 96.943 25.694 97.457 25.429 98.027 C 25.161 98.598 24.899 99.211 24.843 99.389 L 24.742 99.714 L 28.931 99.714 L 29.432 98.637 C 29.709 98.048 29.976 97.398 30.028 97.198 C 30.078 96.996 30.176 96.832 30.247 96.832 C 30.319 96.832 30.376 96.762 30.376 96.68 C 30.376 96.596 30.495 96.255 30.644 95.923 C 30.79 95.591 31.065 94.93 31.255 94.454 C 31.445 93.979 31.648 93.568 31.709 93.543 C 31.768 93.514 31.816 93.382 31.816 93.25 C 31.816 93.116 31.905 92.877 32.012 92.721 C 32.14 92.524 32.243 92.311 32.317 92.087 C 32.5 91.6 32.702 91.12 32.922 90.648 C 33.193 90.046 33.553 89.23 33.719 88.834 C 33.885 88.437 34.197 87.725 34.413 87.248 C 34.922 86.12 35.032 85.83 35.006 85.7 C 34.993 85.641 35.047 85.593 35.127 85.593 C 35.339 85.593 35.313 82.955 35.098 82.739 C 34.834 82.475 22.478 82.491 22.378 82.757 Z M 40.597 92.291 L 40.597 99.714 L 43.332 99.714 L 43.332 94.309 L 44.574 94.321 C 45.799 94.334 45.817 94.339 46.01 94.754 C 46.199 95.161 46.308 95.345 46.807 96.111 C 47.014 96.429 47.223 96.786 47.86 97.913 C 47.949 98.07 48.235 98.541 48.497 98.957 L 48.972 99.714 L 50.542 99.714 C 52.244 99.714 52.383 99.636 51.83 98.998 C 51.67 98.812 51.543 98.601 51.453 98.373 C 51.402 98.212 51.325 98.06 51.225 97.923 C 51.014 97.677 50.129 96.288 49.482 95.182 C 49.153 94.623 48.825 94.123 48.752 94.075 C 48.681 94.021 48.825 93.936 49.077 93.88 C 52.456 93.138 53.05 88.118 50.051 85.639 C 49.337 85.048 48.003 84.871 44.253 84.871 L 40.597 84.871 L 40.597 92.293 Z M 94.99 85.118 C 93.574 85.996 94.571 88.32 96.209 87.961 C 96.701 87.854 97.001 87.604 97.279 87.068 C 97.988 85.696 96.33 84.286 94.99 85.118 Z M 100.127 86.145 C 100.086 86.25 100.054 86.912 100.054 87.614 L 100.054 88.893 L 99.226 88.936 L 98.398 88.979 L 98.398 91.139 L 99.226 91.182 L 100.054 91.227 L 100.071 94.57 C 100.08 96.409 100.08 97.962 100.071 98.02 C 100.061 98.08 100.118 98.127 100.196 98.127 C 100.277 98.127 100.341 98.25 100.341 98.396 C 100.341 99.804 103.789 100.479 105.108 99.33 C 105.343 99.125 105.318 98.416 105.076 98.416 C 105.004 98.416 104.947 98.266 104.947 98.084 C 104.947 97.591 104.596 97.162 104.351 97.357 C 103.97 97.661 103.345 97.679 103.06 97.391 C 102.812 97.141 102.789 96.866 102.789 94.166 L 102.789 91.212 L 103.688 91.211 C 104.883 91.207 104.915 91.175 104.894 89.987 L 104.876 88.979 L 103.832 88.936 L 102.789 88.893 L 102.787 87.639 C 102.785 86.948 102.728 86.296 102.66 86.187 C 102.484 85.911 100.232 85.873 100.127 86.145 Z M 148.065 86.141 C 148.026 86.248 147.994 86.911 147.994 87.614 L 147.994 88.893 L 147.164 88.936 L 146.336 88.979 L 146.336 91.139 L 147.164 91.182 L 147.992 91.227 L 147.992 94.516 C 147.992 98.038 148.058 98.438 148.757 99.195 C 149.576 100.079 152.133 100.166 153.045 99.341 C 153.448 98.975 152.675 97.045 152.263 97.388 C 151.828 97.75 150.872 97.609 150.872 97.184 C 150.872 97.068 150.807 96.975 150.729 96.975 C 150.636 96.975 150.583 95.92 150.583 94.095 L 150.583 91.213 L 151.555 91.211 C 152.87 91.207 152.911 91.168 152.857 89.973 L 152.815 88.979 L 151.699 88.936 L 150.583 88.895 L 150.583 87.459 C 150.583 86.67 150.534 86.023 150.476 86.021 C 148.29 85.95 148.138 85.955 148.067 86.141 Z M 47.937 87.732 C 48.743 88.164 49.021 88.657 49.004 89.62 C 48.973 91.28 48.349 91.655 45.455 91.755 L 43.332 91.827 L 43.332 87.466 L 45.385 87.466 C 47.111 87.466 47.519 87.509 47.937 87.732 Z M 56.648 88.759 C 56.3 88.838 55.962 88.955 55.64 89.109 C 55.403 89.234 55.144 89.338 55.066 89.341 C 54.857 89.345 53.814 90.33 53.368 90.946 C 52.078 92.72 52.024 96.071 53.26 97.607 C 53.996 98.518 54.326 98.848 54.504 98.848 C 54.615 98.848 54.706 98.902 54.706 98.968 C 54.706 99.771 59.375 100.136 60.816 99.445 C 62.45 98.663 62.561 98.446 61.879 97.391 C 61.437 96.709 61.152 96.534 60.968 96.832 C 60.791 97.118 59.66 97.573 58.932 97.654 C 57.023 97.861 55.894 97.325 55.296 95.927 L 55.005 95.25 L 59.066 95.213 L 63.126 95.175 L 63.171 94.348 C 63.355 90.813 60.094 88.018 56.648 88.759 Z M 68.814 88.775 C 63.774 89.748 62.903 96.913 67.517 99.43 C 69.059 100.271 72.37 99.888 73.601 98.725 C 74.282 98.08 74.275 97.957 73.53 97.182 C 72.789 96.414 72.732 96.411 71.899 97.048 C 70.489 98.125 68.357 97.613 67.535 96 C 66.572 94.107 67.753 91.134 69.497 91.061 C 69.556 91.057 69.749 91.02 69.926 90.975 C 70.439 90.846 71.804 91.35 72.191 91.811 C 72.382 92.036 72.584 92.221 72.643 92.221 C 72.843 92.221 74.141 90.85 74.141 90.639 C 74.141 90.375 73.078 89.386 72.654 89.254 C 72.48 89.2 72.304 89.098 72.261 89.03 C 72.074 88.741 69.844 88.577 68.814 88.775 Z M 80.459 88.764 C 79.763 88.882 78.83 89.396 78.325 89.938 L 78.027 90.259 L 78.027 88.895 L 76.768 88.938 L 75.508 88.979 L 75.471 94.346 L 75.433 99.714 L 78.027 99.714 L 78.027 96.064 C 78.027 92.186 78.106 91.788 78.866 91.788 C 78.959 91.788 79.035 91.729 79.035 91.655 C 79.035 91.496 80.289 91.213 80.991 91.213 L 81.494 91.213 L 81.453 89.963 C 81.406 88.595 81.413 88.605 80.459 88.766 Z M 111.247 88.768 C 110.84 88.836 110.226 89.107 109.734 89.436 L 108.906 89.989 L 108.906 88.979 L 106.316 88.979 L 106.275 94.021 C 106.225 100.28 106.095 99.714 107.599 99.714 C 109.097 99.714 108.979 100.05 108.979 95.805 C 108.979 91.823 108.979 91.82 110.237 91.263 C 111.026 90.913 111.443 90.845 111.629 91.03 C 111.689 91.091 111.78 91.141 111.834 91.141 C 111.887 91.141 112.093 91.255 112.291 91.395 L 112.649 91.65 L 112.721 95.645 L 112.794 99.641 L 114.053 99.682 L 115.313 99.725 L 115.313 92.275 L 115.709 91.913 C 117.077 90.666 118.553 90.666 119.102 91.913 C 119.308 92.379 119.345 93.005 119.345 96.093 L 119.345 99.725 L 120.605 99.684 L 121.864 99.641 L 121.902 95.616 C 121.955 90.08 121.62 89.116 119.522 88.779 C 118.606 88.632 116.897 88.809 116.897 89.05 C 116.897 89.113 116.751 89.202 116.573 89.246 C 116.394 89.293 115.998 89.557 115.689 89.832 L 115.131 90.334 L 114.828 89.886 C 114.668 89.649 114.467 89.443 114.234 89.279 C 114.099 89.21 113.975 89.122 113.866 89.016 C 113.784 88.907 112.376 88.605 112.091 88.636 C 112.002 88.645 111.622 88.704 111.245 88.768 Z M 127.55 88.762 C 125.257 89.191 123.588 91.12 123.133 93.864 C 122.819 95.761 124.26 98.377 126.183 99.395 C 127.58 100.136 132.446 99.804 132.446 98.966 C 132.446 98.902 132.531 98.848 132.638 98.848 C 133.297 98.848 133.352 98.312 132.783 97.491 C 132.287 96.775 131.725 96.427 131.725 96.836 C 131.725 96.918 131.611 97.025 131.473 97.073 C 131.285 97.154 131.11 97.262 130.954 97.395 C 130.064 98.162 127.075 97.541 126.481 96.466 C 126.415 96.336 126.33 96.215 126.23 96.109 C 126.176 96.07 126.089 95.859 126.034 95.645 L 125.935 95.252 L 129.946 95.212 L 133.957 95.175 L 134.035 94.48 C 134.08 94.1 134.073 93.761 134.021 93.73 C 133.967 93.695 133.884 93.32 133.834 92.891 C 133.734 92.045 133.614 91.766 132.924 90.77 C 131.812 89.166 129.668 88.366 127.55 88.762 Z M 140.651 88.766 C 139.916 88.912 139.222 89.213 138.613 89.65 C 138.106 90 138.085 89.993 138.032 89.446 L 137.987 88.979 L 136.727 88.938 L 135.468 88.895 L 135.468 99.725 L 136.727 99.684 L 137.987 99.641 L 138.058 95.92 L 138.13 92.196 L 138.59 91.786 C 139.668 90.821 141.296 90.727 142.099 91.582 C 142.449 91.954 142.451 91.968 142.522 95.798 L 142.593 99.641 L 143.853 99.682 L 145.113 99.725 L 145.113 95.37 C 145.113 90.566 145.047 90.173 144.128 89.486 C 143.919 89.327 143.664 89.129 143.562 89.045 C 143.384 88.893 141.935 88.604 141.514 88.636 C 141.225 88.67 140.937 88.713 140.651 88.766 Z M 82.875 89.002 C 82.821 89.055 82.778 90.963 82.778 93.241 C 82.778 97.923 82.85 98.302 83.897 99.236 C 85.064 100.273 88.304 100.041 89.601 98.825 L 89.904 98.541 L 89.949 99.127 L 89.993 99.714 L 92.571 99.714 L 92.532 94.346 L 92.496 88.979 L 91.237 88.938 L 89.975 88.895 L 89.975 92.72 C 89.975 94.821 89.927 96.543 89.868 96.543 C 89.808 96.543 89.572 96.705 89.342 96.904 C 89.112 97.102 88.837 97.264 88.73 97.264 C 88.623 97.264 88.537 97.329 88.537 97.407 C 88.537 97.491 88.065 97.552 87.41 97.552 C 85.481 97.552 85.369 97.275 85.369 92.502 L 85.369 88.907 L 84.17 88.907 C 83.51 88.907 82.926 88.95 82.875 89.002 Z M 94.582 94.309 L 94.582 99.714 L 97.174 99.714 L 97.174 88.907 L 94.582 88.907 Z M 59.364 91.25 C 59.903 91.561 60.607 92.562 60.607 93.018 C 60.607 93.196 60.177 93.229 57.803 93.229 L 54.998 93.229 L 55.243 92.689 C 55.599 91.898 55.994 91.355 56.21 91.355 C 56.313 91.355 56.477 91.259 56.577 91.141 C 56.875 90.78 58.675 90.852 59.366 91.25 Z M 129.88 91.055 C 130.347 91.241 131.097 91.97 131.204 92.341 C 131.486 93.327 131.759 93.229 128.711 93.229 C 126.182 93.229 125.966 93.209 125.966 92.975 C 125.966 92.466 127.111 91.07 127.441 91.177 C 127.502 91.195 127.55 91.146 127.55 91.068 C 127.55 90.886 129.427 90.877 129.88 91.055 Z\" fill=\"rgb(36,35,91)\"></path><path d=\"M 156.129 17.72 C 155.99 17.941 156.07 21.47 156.213 21.47 C 156.285 21.47 156.342 20.595 156.342 19.523 C 156.342 17.648 156.315 17.418 156.128 17.72 Z\" fill=\"rgb(52,116,164)\"></path><path d=\"M 27.505 0.793 C 27.505 0.871 27.602 1.063 27.718 1.216 C 27.834 1.37 27.928 1.43 27.928 1.352 C 27.928 1.273 27.834 1.082 27.718 0.929 C 27.602 0.775 27.505 0.714 27.505 0.793 Z M 125.918 21.709 C 125.73 21.898 125.828 22.018 126.108 21.945 C 126.265 21.904 126.358 21.813 126.317 21.741 C 126.223 21.589 126.051 21.577 125.918 21.709 Z M 15.117 30.348 C 15.117 30.427 15.211 30.618 15.327 30.773 C 15.443 30.927 15.539 30.987 15.539 30.909 C 15.539 30.829 15.443 30.637 15.327 30.484 C 15.211 30.33 15.117 30.27 15.117 30.348 Z M 16.556 33.23 C 16.556 33.309 16.651 33.5 16.767 33.654 C 16.883 33.809 16.979 33.868 16.979 33.789 C 16.979 33.711 16.883 33.521 16.767 33.366 C 16.651 33.212 16.556 33.152 16.556 33.23 Z M 47.66 40.995 C 47.66 41.073 47.757 41.264 47.873 41.418 C 47.988 41.571 48.083 41.632 48.083 41.554 C 48.083 41.475 47.988 41.284 47.873 41.13 C 47.757 40.977 47.66 40.916 47.66 40.995 Z M 48.088 41.868 C 48.085 41.952 48.178 42.146 48.295 42.3 C 48.411 42.454 48.509 42.511 48.509 42.427 C 48.513 42.343 48.42 42.148 48.304 41.995 C 48.187 41.841 48.09 41.784 48.087 41.868 Z M 49.1 43.877 C 49.1 43.955 49.195 44.145 49.312 44.3 C 49.428 44.454 49.523 44.514 49.523 44.436 C 49.523 44.357 49.428 44.166 49.312 44.013 C 49.195 43.857 49.1 43.798 49.1 43.877 Z M 50.108 45.895 C 50.108 45.973 50.203 46.162 50.319 46.318 C 50.436 46.471 50.531 46.532 50.531 46.454 C 50.531 46.373 50.436 46.182 50.319 46.029 C 50.203 45.875 50.108 45.814 50.108 45.893 Z M 50.49 47.073 C 50.39 47.591 50.461 47.662 50.675 47.259 C 50.784 47.057 50.795 46.893 50.707 46.805 C 50.618 46.716 50.54 46.812 50.49 47.073 Z M 31.816 63.634 C 31.816 63.713 31.91 63.904 32.026 64.057 C 32.142 64.211 32.239 64.271 32.239 64.193 C 32.239 64.114 32.142 63.925 32.026 63.77 C 31.91 63.616 31.816 63.555 31.816 63.634 Z M 22.233 82.754 C 22.192 82.859 22.18 83.686 22.201 84.593 L 22.242 86.239 L 26.31 86.279 C 29.416 86.307 30.378 86.357 30.378 86.493 C 30.379 86.661 30.656 86.343 30.663 86.168 C 30.663 86.127 28.801 86.096 26.524 86.096 L 22.385 86.096 L 22.385 84.329 C 22.385 82.57 22.369 82.398 22.233 82.754 Z M 20.396 83.814 C 20.342 83.868 20.303 84.046 20.307 84.211 C 20.315 84.486 20.328 84.482 20.455 84.166 C 20.597 83.813 20.567 83.641 20.394 83.814 Z M 94.15 86.384 C 94.15 86.661 94.204 86.888 94.266 86.888 C 94.328 86.888 94.355 86.661 94.321 86.384 C 94.289 86.105 94.237 85.879 94.207 85.879 C 94.177 85.879 94.15 86.105 94.15 86.384 Z M 101.028 85.984 C 101.286 86.016 101.675 86.014 101.891 85.984 C 102.107 85.948 101.897 85.923 101.42 85.923 C 100.946 85.923 100.769 85.952 101.028 85.984 Z M 148.966 85.984 C 149.225 86.016 149.614 86.014 149.83 85.984 C 150.047 85.948 149.835 85.923 149.361 85.923 C 148.884 85.923 148.708 85.952 148.968 85.984 Z M 14.904 86.652 C 14.861 86.78 14.797 86.986 14.762 87.104 C 14.724 87.223 14.726 87.32 14.765 87.32 C 14.874 87.32 15.133 86.57 15.051 86.488 C 15.011 86.446 14.944 86.521 14.904 86.652 Z M 43.364 89.589 L 43.332 91.786 L 45.096 91.755 L 46.859 91.725 L 45.171 91.679 L 43.484 91.634 L 43.441 89.512 L 43.396 87.393 Z M 57.164 88.525 C 57.301 88.646 58.581 88.714 58.509 88.598 C 58.466 88.53 58.133 88.473 57.767 88.473 C 57.403 88.473 57.132 88.496 57.166 88.527 Z M 69.403 88.525 C 69.558 88.661 70.837 88.745 70.755 88.614 C 70.707 88.538 70.37 88.471 70.006 88.471 C 69.64 88.471 69.369 88.496 69.401 88.525 Z M 80.762 88.602 C 80.762 88.673 80.923 88.721 81.123 88.709 C 81.592 88.682 81.592 88.473 81.123 88.473 C 80.925 88.473 80.762 88.53 80.762 88.602 Z M 111.664 88.58 C 111.629 88.641 111.877 88.687 112.218 88.687 C 112.558 88.687 112.808 88.641 112.771 88.58 C 112.735 88.521 112.485 88.473 112.218 88.473 C 111.95 88.473 111.7 88.521 111.664 88.58 Z M 118.143 88.58 C 118.107 88.641 118.358 88.695 118.704 88.704 C 119.051 88.711 119.3 88.662 119.258 88.595 C 119.165 88.445 118.233 88.434 118.143 88.58 Z M 128.032 88.584 C 127.939 88.641 128.21 88.689 128.629 88.689 C 129.05 88.689 129.364 88.641 129.327 88.582 C 129.241 88.443 128.249 88.445 128.032 88.582 Z M 141.032 88.58 C 140.997 88.641 141.277 88.687 141.657 88.687 C 142.039 88.687 142.32 88.641 142.283 88.58 C 142.247 88.521 141.965 88.473 141.659 88.473 C 141.35 88.473 141.07 88.521 141.034 88.58 Z M 75.529 88.87 C 75.494 88.929 75.861 88.959 76.35 88.938 C 77.938 88.866 78.124 88.807 76.85 88.784 C 76.159 88.771 75.565 88.809 75.529 88.87 Z M 82.871 88.87 C 82.835 88.929 83.203 88.959 83.692 88.938 C 85.28 88.866 85.467 88.807 84.191 88.784 C 83.503 88.771 82.908 88.809 82.871 88.87 Z M 90.336 88.852 C 91.367 88.959 92.535 88.968 92.473 88.87 C 92.437 88.809 91.843 88.771 91.155 88.784 C 90.466 88.796 90.098 88.827 90.336 88.852 Z M 95.196 88.866 C 95.57 88.896 96.186 88.896 96.562 88.866 C 96.939 88.838 96.63 88.813 95.879 88.813 C 95.126 88.813 94.819 88.838 95.196 88.866 Z M 98.419 88.87 C 98.384 88.929 98.655 88.959 99.024 88.934 C 100.075 88.866 100.202 88.796 99.306 88.777 C 98.855 88.768 98.457 88.809 98.419 88.87 Z M 103.076 88.85 C 103.936 88.957 104.915 88.968 104.855 88.868 C 104.819 88.809 104.319 88.771 103.752 88.782 C 103.181 88.795 102.878 88.825 103.076 88.85 Z M 106.337 88.868 C 106.301 88.929 106.863 88.977 107.588 88.977 L 108.908 88.977 L 108.908 89.504 C 108.908 89.795 108.956 90 109.015 89.964 C 109.186 89.857 109.14 89.125 108.949 88.934 C 108.76 88.745 106.451 88.686 106.337 88.87 Z M 136.763 88.896 L 137.987 88.977 L 138.032 89.445 C 138.057 89.704 138.126 89.914 138.187 89.914 C 138.351 89.914 138.187 88.995 138.003 88.871 C 137.914 88.812 137.325 88.777 136.692 88.791 L 135.539 88.814 Z M 146.301 88.857 C 146.105 88.936 146.037 90.998 146.229 91.116 C 146.288 91.154 146.336 90.688 146.336 90.08 L 146.336 88.977 L 147.2 88.893 L 148.063 88.809 L 147.273 88.796 C 146.838 88.789 146.399 88.816 146.301 88.857 Z M 151.088 88.846 C 151.749 88.954 152.854 88.97 152.793 88.87 C 152.757 88.809 152.294 88.77 151.762 88.78 C 151.234 88.791 150.929 88.821 151.088 88.846 Z M 135.388 94.309 C 135.388 97.32 135.407 98.573 135.432 97.091 C 135.455 95.611 135.455 93.146 135.432 91.616 C 135.409 90.086 135.389 91.296 135.389 94.309 Z M 52.006 89.839 C 52.008 90.157 52.038 90.27 52.072 90.089 C 52.106 89.899 52.105 89.704 52.069 89.514 C 52.033 89.377 52.004 89.523 52.006 89.839 Z M 124.733 90.236 L 124.31 90.704 L 124.779 90.28 C 125.215 89.888 125.313 89.768 125.202 89.768 C 125.177 89.768 124.967 89.979 124.733 90.236 Z M 53.423 90.611 C 53.186 91.05 53.235 91.173 53.496 90.8 C 53.623 90.618 53.692 90.436 53.653 90.395 C 53.61 90.354 53.507 90.45 53.421 90.609 Z M 69.729 91.03 C 69.637 91.089 69.929 91.143 70.375 91.15 C 70.941 91.159 71.08 91.132 70.828 91.057 C 70.345 90.912 69.929 90.904 69.728 91.03 Z M 110.728 91.048 C 110.601 91.129 110.737 91.168 111.111 91.157 C 111.429 91.15 111.659 91.093 111.622 91.032 C 111.531 90.884 110.97 90.895 110.726 91.05 Z M 117.186 91.02 C 117.012 91.047 116.846 91.111 116.699 91.209 C 116.63 91.275 116.831 91.271 117.145 91.202 C 117.492 91.123 117.852 91.126 118.198 91.211 C 118.505 91.3 118.626 91.298 118.537 91.209 C 118.358 91.03 117.645 90.93 117.184 91.02 Z M 140.01 91.05 C 139.835 91.12 140.078 91.161 140.651 91.161 C 141.223 91.161 141.466 91.12 141.291 91.05 C 141.084 90.981 140.867 90.944 140.649 90.941 C 140.432 90.944 140.216 90.981 140.01 91.05 Z M 32.561 91.425 C 32.472 91.621 32.454 91.786 32.522 91.786 C 32.642 91.786 32.856 91.195 32.768 91.107 C 32.745 91.082 32.652 91.225 32.561 91.425 Z M 6.444 92.005 C 6.48 92.202 6.564 92.363 6.626 92.363 C 6.76 92.363 6.637 91.811 6.483 91.716 C 6.425 91.68 6.407 91.809 6.444 92.005 Z M 109.049 92.254 C 108.938 92.563 108.901 99.702 109.01 99.593 C 109.104 99.498 109.247 92.073 109.154 92.075 C 109.133 92.075 109.085 92.155 109.049 92.254 Z M 119.165 94.932 C 119.227 99.6 119.284 100.011 119.315 96.009 C 119.332 93.932 119.297 92.205 119.236 92.168 C 119.177 92.132 119.145 93.375 119.165 94.932 Z M 62.936 92.432 C 62.941 92.631 62.981 92.826 63.055 93.011 C 63.212 93.377 63.212 92.998 63.055 92.505 C 62.962 92.216 62.939 92.202 62.936 92.434 Z M 138.028 96.036 C 138.005 98.057 138.035 99.711 138.096 99.711 C 138.155 99.711 138.203 98.057 138.203 96.036 C 138.203 94.014 138.172 92.363 138.137 92.363 C 138.099 92.363 138.049 94.014 138.028 96.036 Z M 67.401 92.864 C 67.31 93.064 67.292 93.227 67.36 93.227 C 67.48 93.227 67.696 92.636 67.608 92.548 C 67.585 92.523 67.49 92.666 67.401 92.864 Z M 12.385 93.65 C 12.203 93.989 12.194 94.132 12.364 94.029 C 12.49 93.95 12.688 93.37 12.589 93.37 C 12.56 93.37 12.467 93.495 12.385 93.65 Z M 52.295 94.163 C 52.295 94.48 52.326 94.591 52.36 94.413 C 52.394 94.222 52.394 94.027 52.358 93.838 C 52.322 93.698 52.293 93.846 52.295 94.163 Z M 16.405 94.182 C 16.324 94.391 16.287 94.589 16.319 94.623 C 16.351 94.655 16.448 94.484 16.533 94.241 C 16.719 93.705 16.605 93.652 16.405 94.182 Z M 134.005 94.595 C 133.978 94.952 134.003 95.243 134.064 95.243 C 134.123 95.243 134.171 94.952 134.171 94.595 C 134.171 94.237 134.146 93.946 134.115 93.946 C 134.083 93.946 134.033 94.239 134.005 94.595 Z M 43.364 97.009 L 43.398 99.782 L 43.441 97.121 C 43.471 95.22 43.534 94.432 43.66 94.352 C 43.783 94.273 43.76 94.239 43.584 94.238 C 43.352 94.234 43.334 94.45 43.364 97.009 Z M 45.573 94.439 C 45.874 94.659 46.01 94.636 45.858 94.388 C 45.805 94.304 45.657 94.236 45.528 94.236 C 45.332 94.236 45.339 94.268 45.573 94.439 Z M 123.088 95.243 C 123.088 95.482 123.142 95.675 123.206 95.675 C 123.272 95.675 123.297 95.482 123.261 95.243 C 123.225 95.005 123.172 94.811 123.143 94.811 C 123.113 94.811 123.088 95.007 123.088 95.243 Z M 67.235 95.323 C 67.282 95.5 67.356 95.667 67.456 95.82 L 67.674 96.18 L 67.58 95.82 C 67.481 95.445 67.226 95.075 67.235 95.323 Z M 72.341 96.439 C 71.842 97.052 71.778 97.184 72.138 96.864 C 72.34 96.686 72.584 96.541 72.682 96.541 C 72.78 96.541 72.821 96.475 72.771 96.396 C 72.657 96.207 72.518 96.221 72.341 96.439 Z M 15.422 96.775 C 15.327 96.984 15.283 97.186 15.322 97.227 C 15.363 97.268 15.464 97.12 15.548 96.9 C 15.632 96.68 15.677 96.477 15.648 96.448 C 15.618 96.418 15.516 96.566 15.422 96.775 Z M 25 98.588 C 24.883 99.034 24.972 99.059 25.166 98.63 C 25.257 98.432 25.275 98.27 25.207 98.27 C 25.14 98.27 25.047 98.413 25 98.588 Z M 24.672 99.343 C 24.576 99.596 24.715 99.855 24.951 99.852 C 25.072 99.852 25.068 99.816 24.936 99.732 C 24.835 99.668 24.794 99.507 24.843 99.375 C 24.895 99.243 24.895 99.134 24.843 99.134 C 24.794 99.134 24.717 99.229 24.672 99.343 Z M 104.969 99.427 C 104.781 99.582 104.696 99.711 104.778 99.711 C 104.922 99.711 105.379 99.32 105.379 99.196 C 105.379 99.098 105.329 99.125 104.969 99.429 Z M 56.383 99.891 C 56.418 99.95 57.187 99.998 58.088 99.998 C 58.989 99.998 59.756 99.95 59.794 99.891 C 59.829 99.83 59.062 99.784 58.088 99.784 C 57.114 99.784 56.347 99.83 56.383 99.891 Z M 68.509 99.896 C 68.572 99.957 69.33 99.989 70.193 99.968 L 71.763 99.925 L 70.079 99.854 C 69.153 99.814 68.447 99.834 68.509 99.896 Z M 84.887 99.891 C 84.923 99.95 85.599 99.998 86.386 99.998 C 87.172 99.998 87.817 99.95 87.817 99.891 C 87.817 99.83 87.142 99.784 86.318 99.784 C 85.495 99.784 84.851 99.83 84.887 99.891 Z M 101.765 99.896 C 101.829 99.961 102.328 99.993 102.874 99.968 L 103.868 99.923 L 102.758 99.852 C 102.148 99.814 101.702 99.834 101.766 99.896 Z M 127.263 99.891 C 127.263 99.95 128.003 99.998 128.909 99.998 C 129.814 99.998 130.587 99.95 130.622 99.891 C 130.658 99.83 129.917 99.784 128.975 99.784 C 128.033 99.784 127.263 99.83 127.263 99.891 Z M 150.551 99.959 C 150.809 99.991 151.198 99.989 151.414 99.959 C 151.63 99.923 151.419 99.898 150.943 99.9 C 150.468 99.9 150.292 99.927 150.551 99.959 Z\" fill=\"rgb(36,12,68)\"></path><path d=\"M 133.86 21.579 C 138.003 21.598 144.74 21.598 148.831 21.579 C 152.923 21.557 149.532 21.539 141.298 21.539 C 133.063 21.539 129.716 21.557 133.859 21.579 Z\" fill=\"rgb(44,60,116)\"></path></svg>',svgContentId:112519e5,withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1d4k5my\",\"data-framer-name\":\"Adria-logo\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 191 72\"><g transform=\"translate(0.95 0)\" id=\"ss9204118662_1\"><path d=\"M 0 0 L 190 0 L 190 72 L 0 72 Z\" fill=\"transparent\"></path><path d=\"M 91.424 48.416 C 90.529 48.416 89.806 48.153 89.288 47.629 C 88.763 47.105 88.501 46.389 88.501 45.494 L 88.501 17.14 C 88.501 16.245 88.763 15.529 89.288 15.005 C 89.812 14.48 90.528 14.218 91.424 14.218 C 92.32 14.218 93.037 14.487 93.561 15.011 C 94.086 15.535 94.348 16.251 94.348 17.146 L 94.348 17.984 C 95.358 16.893 96.554 15.991 97.88 15.318 C 99.773 14.353 101.834 13.867 104.015 13.867 C 105.781 13.867 107.22 14.11 108.282 14.583 C 109.812 15.273 110.138 16.296 110.138 17.031 C 110.138 17.338 110.106 17.575 110.048 17.767 C 109.85 18.47 109.498 18.981 109.012 19.262 C 108.57 19.525 108.001 19.652 107.272 19.652 C 106.894 19.652 106.28 19.614 105.346 19.532 C 104.885 19.487 104.421 19.467 103.958 19.474 C 101.111 19.474 98.769 20.234 96.984 21.73 C 95.212 23.22 94.348 25.112 94.348 27.503 L 94.348 45.5 C 94.348 46.395 94.086 47.111 93.561 47.636 C 93.037 48.16 92.321 48.422 91.424 48.422 Z M 120.643 48.415 C 119.785 48.415 119.069 48.128 118.506 47.565 C 117.943 47.009 117.655 46.286 117.655 45.43 L 117.655 17.204 C 117.655 16.354 117.943 15.631 118.506 15.069 C 119.069 14.506 119.785 14.219 120.643 14.219 C 121.5 14.219 122.217 14.506 122.76 15.075 C 123.298 15.638 123.573 16.354 123.573 17.204 L 123.573 45.436 C 123.573 46.286 123.298 46.996 122.76 47.559 C 122.217 48.128 121.506 48.415 120.643 48.415 Z M 120.579 9.225 C 119.478 9.225 118.544 8.835 117.802 8.068 C 117.066 7.308 116.689 6.368 116.689 5.274 C 116.689 4.181 117.079 3.19 117.853 2.461 C 118.615 1.745 119.549 1.387 120.643 1.387 C 121.737 1.387 122.607 1.752 123.368 2.461 C 124.142 3.184 124.533 4.13 124.533 5.274 C 124.533 6.419 124.149 7.307 123.387 8.074 C 122.626 8.835 121.679 9.225 120.585 9.225 Z M 149.861 48.722 C 146.707 48.722 143.809 47.955 141.25 46.434 C 138.691 44.919 136.65 42.815 135.178 40.174 C 133.707 37.547 132.958 34.574 132.958 31.346 C 132.958 28.117 133.726 25.132 135.242 22.485 C 136.759 19.825 138.864 17.709 141.499 16.2 C 144.142 14.685 147.117 13.918 150.341 13.918 C 153.566 13.918 156.541 14.685 159.183 16.2 C 161.798 17.694 163.96 19.868 165.44 22.491 C 166.956 25.144 167.724 28.13 167.724 31.352 L 167.724 45.5 C 167.724 46.312 167.436 47.016 166.873 47.578 C 166.31 48.141 165.587 48.428 164.736 48.428 C 163.885 48.428 163.175 48.154 162.612 47.623 C 162.043 47.079 161.755 46.37 161.755 45.507 L 161.755 43.665 C 160.487 45.032 158.985 46.162 157.321 47.003 C 155.069 48.147 152.561 48.729 149.861 48.729 Z M 150.341 19.403 C 148.179 19.403 146.189 19.934 144.43 20.97 C 142.681 21.994 141.242 23.472 140.265 25.247 C 139.254 27.05 138.748 29.102 138.748 31.352 C 138.748 33.602 139.26 35.648 140.265 37.452 C 141.236 39.221 142.674 40.689 144.423 41.696 C 146.189 42.719 148.179 43.237 150.341 43.237 C 152.504 43.237 154.48 42.719 156.227 41.697 C 157.963 40.681 159.392 39.214 160.36 37.451 C 161.364 35.648 161.876 33.596 161.876 31.352 C 161.876 29.108 161.364 27.05 160.36 25.253 C 159.385 23.485 157.956 22.009 156.221 20.976 C 154.48 19.94 152.504 19.41 150.341 19.41 Z M 16.904 48.722 C 13.749 48.722 10.851 47.955 8.292 46.434 C 5.733 44.919 3.692 42.815 2.221 40.174 C 0.749 37.547 0.001 34.574 0.001 31.346 C 0.001 28.117 0.768 25.132 2.285 22.485 C 3.801 19.825 5.905 17.709 8.542 16.2 C 11.177 14.685 14.152 13.918 17.383 13.918 C 20.614 13.918 23.583 14.685 26.225 16.2 C 28.84 17.694 31.002 19.868 32.482 22.491 C 33.998 25.144 34.766 28.13 34.766 31.352 L 34.766 45.5 C 34.766 46.312 34.478 47.016 33.916 47.578 C 33.352 48.141 32.629 48.428 31.778 48.428 C 30.928 48.428 30.218 48.154 29.654 47.616 C 29.084 47.073 28.797 46.363 28.797 45.5 L 28.797 43.66 C 27.529 45.027 26.027 46.157 24.363 46.997 C 22.111 48.142 19.603 48.723 16.903 48.723 Z M 17.384 19.403 C 15.221 19.403 13.231 19.934 11.472 20.97 C 9.724 21.994 8.284 23.472 7.307 25.247 C 6.297 27.05 5.791 29.102 5.791 31.352 C 5.791 33.602 6.302 35.648 7.307 37.452 C 8.28 39.22 9.718 40.687 11.465 41.696 C 13.231 42.719 15.221 43.237 17.383 43.237 C 19.546 43.237 21.523 42.719 23.263 41.697 C 24.999 40.681 26.428 39.214 27.396 37.451 C 28.4 35.648 28.912 33.603 28.912 31.352 C 28.912 29.102 28.4 27.05 27.396 25.253 C 26.419 23.486 24.99 22.01 23.256 20.976 C 21.516 19.94 19.539 19.41 17.376 19.41 L 17.383 19.403 Z M 8.612 58.926 C 9.265 59.296 9.813 59.826 10.205 60.466 C 10.284 60.588 10.326 60.731 10.327 60.876 C 10.327 61.093 10.224 61.259 10.02 61.381 C 9.812 61.484 9.566 61.475 9.367 61.355 C 9.259 61.292 9.168 61.201 9.105 61.093 C 8.471 60.103 7.518 59.597 6.239 59.584 C 5.324 59.584 4.601 59.776 4.069 60.16 C 3.539 60.543 3.276 61.093 3.276 61.803 C 3.276 63.126 4.345 63.925 6.476 64.207 C 7.876 64.411 8.919 64.84 9.61 65.492 C 10.301 66.144 10.647 67.007 10.647 68.081 C 10.647 68.874 10.455 69.551 10.071 70.127 C 9.682 70.705 9.136 71.16 8.497 71.437 C 7.832 71.737 7.083 71.885 6.257 71.885 C 5.183 71.885 4.237 71.655 3.404 71.201 C 2.573 70.747 1.978 70.127 1.619 69.347 C 1.572 69.265 1.548 69.172 1.549 69.078 C 1.549 68.918 1.607 68.791 1.729 68.682 C 1.849 68.573 2.009 68.522 2.208 68.522 C 2.342 68.522 2.47 68.56 2.592 68.631 C 2.71 68.705 2.802 68.815 2.854 68.944 C 3.116 69.449 3.545 69.858 4.153 70.171 C 4.754 70.485 5.458 70.638 6.264 70.638 C 7.192 70.638 7.934 70.414 8.504 69.967 C 9.066 69.519 9.348 68.899 9.348 68.094 C 9.348 67.384 9.086 66.784 8.561 66.297 C 8.036 65.811 7.249 65.504 6.201 65.364 C 4.889 65.204 3.859 64.794 3.111 64.136 C 2.361 63.478 1.984 62.666 1.984 61.706 C 1.984 61.029 2.17 60.435 2.534 59.923 C 2.899 59.412 3.411 59.015 4.057 58.74 C 4.71 58.466 5.445 58.325 6.271 58.325 C 7.16 58.325 7.947 58.523 8.625 58.919 Z M 30.422 59.214 C 31.439 59.782 32.278 60.621 32.847 61.637 C 33.429 62.666 33.717 63.823 33.717 65.108 C 33.717 66.393 33.423 67.557 32.847 68.586 C 32.28 69.606 31.44 70.447 30.422 71.016 C 29.386 71.603 28.234 71.898 26.954 71.898 C 25.674 71.898 24.51 71.604 23.48 71.015 C 22.467 70.444 21.632 69.603 21.068 68.586 C 20.486 67.55 20.198 66.393 20.198 65.108 C 20.198 63.823 20.486 62.666 21.068 61.637 C 21.636 60.624 22.47 59.786 23.48 59.214 C 24.51 58.625 25.669 58.331 26.954 58.331 C 28.24 58.331 29.386 58.625 30.422 59.214 Z M 24.152 60.314 C 23.333 60.788 22.657 61.475 22.195 62.301 C 21.721 63.139 21.485 64.079 21.485 65.101 C 21.485 66.125 21.721 67.077 22.195 67.921 C 22.657 68.748 23.333 69.434 24.152 69.909 C 24.984 70.395 25.918 70.639 26.954 70.639 C 27.991 70.639 28.912 70.395 29.744 69.909 C 30.564 69.435 31.24 68.748 31.702 67.921 C 32.175 67.077 32.412 66.137 32.412 65.101 C 32.412 64.066 32.175 63.139 31.702 62.301 C 31.24 61.474 30.564 60.788 29.744 60.313 C 28.912 59.827 27.984 59.584 26.954 59.584 C 25.924 59.584 24.984 59.827 24.152 60.314 Z M 52.302 70.65 C 52.423 70.767 52.491 70.929 52.488 71.098 C 52.492 71.267 52.425 71.43 52.302 71.546 C 52.175 71.668 52.005 71.733 51.829 71.725 L 44.542 71.725 C 44.367 71.727 44.198 71.658 44.075 71.533 C 43.95 71.41 43.881 71.242 43.883 71.067 L 43.883 59.169 C 43.883 58.989 43.947 58.829 44.075 58.702 C 44.198 58.577 44.367 58.508 44.542 58.51 C 44.734 58.51 44.894 58.574 45.015 58.696 C 45.139 58.822 45.206 58.993 45.201 59.169 L 45.201 70.479 L 51.822 70.479 C 52.014 70.479 52.174 70.536 52.296 70.657 L 52.302 70.651 Z M 62.231 58.69 C 62.357 58.566 62.528 58.498 62.705 58.504 C 62.897 58.504 63.057 58.568 63.178 58.689 C 63.302 58.815 63.369 58.986 63.364 59.162 L 63.364 67.359 C 63.364 68.011 63.53 68.599 63.863 69.11 C 64.196 69.622 64.663 70.024 65.258 70.312 C 65.859 70.6 66.538 70.74 67.305 70.74 C 68.073 70.74 68.732 70.6 69.32 70.312 C 69.882 70.046 70.361 69.63 70.702 69.11 C 71.035 68.599 71.202 68.01 71.202 67.359 L 71.202 59.162 C 71.202 58.971 71.265 58.811 71.387 58.689 C 71.513 58.565 71.684 58.498 71.86 58.504 C 72.037 58.499 72.208 58.565 72.334 58.689 C 72.458 58.815 72.524 58.986 72.519 59.162 L 72.519 67.359 C 72.519 68.247 72.295 69.046 71.847 69.756 C 71.393 70.467 70.751 71.038 69.992 71.406 C 69.199 71.802 68.303 72 67.299 72 C 66.294 72 65.373 71.802 64.573 71.405 C 63.773 71.009 63.146 70.459 62.699 69.755 C 62.251 69.053 62.027 68.254 62.027 67.359 L 62.027 59.162 C 62.022 58.986 62.089 58.815 62.212 58.689 L 62.232 58.689 Z M 92.333 58.676 C 92.449 58.793 92.512 58.953 92.506 59.118 C 92.51 59.277 92.448 59.43 92.333 59.54 C 92.215 59.654 92.056 59.714 91.892 59.706 L 87.86 59.706 L 87.86 71.066 C 87.862 71.24 87.795 71.408 87.674 71.533 C 87.551 71.661 87.379 71.731 87.201 71.725 C 87.026 71.727 86.857 71.658 86.734 71.533 C 86.609 71.41 86.54 71.242 86.542 71.067 L 86.542 59.706 L 82.524 59.706 C 82.361 59.711 82.202 59.651 82.083 59.54 C 81.97 59.429 81.907 59.277 81.91 59.118 C 81.904 58.953 81.967 58.793 82.083 58.676 C 82.201 58.562 82.36 58.502 82.524 58.51 L 91.891 58.51 C 92.054 58.505 92.213 58.565 92.332 58.676 Z M 102.083 58.69 C 102.208 58.569 102.376 58.502 102.55 58.504 C 102.742 58.504 102.902 58.568 103.023 58.689 C 103.147 58.815 103.214 58.986 103.209 59.162 L 103.209 71.06 C 103.211 71.234 103.144 71.402 103.023 71.527 C 102.9 71.655 102.728 71.725 102.55 71.719 C 102.375 71.721 102.206 71.652 102.083 71.527 C 101.958 71.404 101.889 71.235 101.891 71.06 L 101.891 59.162 C 101.891 58.971 101.955 58.811 102.083 58.689 Z M 123.611 59.214 C 124.628 59.782 125.467 60.621 126.036 61.637 C 126.618 62.666 126.906 63.823 126.906 65.108 C 126.906 66.393 126.618 67.557 126.036 68.586 C 125.467 69.604 124.628 70.445 123.611 71.016 C 122.575 71.603 121.423 71.898 120.144 71.898 C 118.864 71.898 117.7 71.604 116.67 71.015 C 115.657 70.444 114.822 69.603 114.258 68.586 C 113.676 67.55 113.388 66.393 113.388 65.108 C 113.388 63.823 113.676 62.666 114.258 61.637 C 114.826 60.624 115.66 59.786 116.67 59.214 C 117.7 58.625 118.858 58.331 120.144 58.331 C 121.43 58.331 122.575 58.625 123.611 59.214 Z M 117.342 60.314 C 116.522 60.788 115.846 61.475 115.384 62.301 C 114.911 63.139 114.674 64.079 114.674 65.101 C 114.674 66.125 114.911 67.077 115.384 67.921 C 115.846 68.748 116.522 69.435 117.342 69.909 C 118.173 70.395 119.107 70.639 120.144 70.639 C 121.18 70.639 122.102 70.395 122.933 69.909 C 123.753 69.435 124.429 68.748 124.891 67.921 C 125.364 67.077 125.601 66.137 125.601 65.101 C 125.601 64.066 125.364 63.139 124.891 62.301 C 124.429 61.474 123.753 60.787 122.933 60.313 C 122.102 59.827 121.174 59.584 120.144 59.584 C 119.114 59.584 118.173 59.827 117.342 60.314 Z M 146.534 58.69 C 146.659 58.569 146.827 58.502 147.001 58.504 C 147.178 58.499 147.349 58.565 147.475 58.689 C 147.599 58.815 147.665 58.986 147.66 59.162 L 147.66 71.06 C 147.662 71.234 147.595 71.402 147.475 71.527 C 147.351 71.655 147.179 71.725 147.001 71.719 C 146.778 71.719 146.611 71.649 146.509 71.501 L 138.397 60.869 L 138.397 71.06 C 138.399 71.234 138.332 71.402 138.211 71.527 C 138.088 71.655 137.916 71.725 137.738 71.719 C 137.561 71.724 137.39 71.657 137.264 71.533 C 137.14 71.407 137.074 71.236 137.079 71.06 L 137.079 59.162 C 137.074 58.986 137.141 58.815 137.264 58.689 C 137.39 58.565 137.561 58.498 137.738 58.504 C 137.942 58.504 138.109 58.581 138.243 58.74 L 146.342 69.372 L 146.342 59.162 C 146.342 58.971 146.406 58.811 146.534 58.689 Z M 164.909 58.926 C 165.562 59.296 166.11 59.826 166.502 60.466 C 166.581 60.588 166.623 60.731 166.623 60.876 C 166.623 61.093 166.521 61.259 166.316 61.381 C 166.109 61.484 165.863 61.475 165.664 61.355 C 165.557 61.29 165.467 61.2 165.401 61.093 C 164.768 60.103 163.815 59.597 162.535 59.584 C 161.62 59.584 160.897 59.776 160.366 60.16 C 159.835 60.543 159.573 61.093 159.573 61.803 C 159.573 63.126 160.641 63.925 162.772 64.207 C 164.173 64.411 165.216 64.84 165.907 65.492 C 166.598 66.144 166.943 67.007 166.943 68.081 C 166.943 68.874 166.751 69.551 166.367 70.127 C 165.979 70.705 165.433 71.16 164.794 71.437 C 164.128 71.737 163.38 71.885 162.554 71.885 C 161.48 71.885 160.533 71.655 159.701 71.201 C 158.869 70.747 158.274 70.127 157.916 69.347 C 157.869 69.265 157.845 69.172 157.846 69.078 C 157.846 68.918 157.903 68.791 158.025 68.682 C 158.146 68.573 158.306 68.522 158.505 68.522 C 158.639 68.522 158.767 68.56 158.888 68.631 C 159.006 68.705 159.098 68.815 159.151 68.944 C 159.413 69.449 159.842 69.858 160.45 70.171 C 161.057 70.485 161.755 70.638 162.561 70.638 C 163.488 70.638 164.231 70.414 164.8 69.967 C 165.369 69.519 165.644 68.899 165.644 68.094 C 165.644 67.384 165.382 66.784 164.858 66.297 C 164.333 65.811 163.546 65.504 162.497 65.364 C 161.185 65.204 160.155 64.794 159.407 64.136 C 158.658 63.478 158.281 62.666 158.281 61.706 C 158.281 61.029 158.466 60.435 158.831 59.923 C 159.196 59.412 159.707 59.015 160.354 58.74 C 161 58.466 161.742 58.325 162.567 58.325 C 163.456 58.325 164.243 58.523 164.922 58.919 Z\" fill=\"rgb(10,44,79)\"></path><path d=\"M 71.553 32.362 C 71.406 34.152 70.913 35.802 70.101 37.266 C 69.124 39.033 67.695 40.509 65.961 41.543 C 64.221 42.585 62.244 43.109 60.081 43.109 C 57.919 43.109 55.93 42.579 54.171 41.537 C 52.422 40.513 50.983 39.035 50.005 37.26 C 49.186 35.795 48.7 34.146 48.547 32.356 L 42.744 32.452 C 42.923 35.188 43.671 37.732 44.984 40.022 C 46.466 42.641 48.627 44.813 51.24 46.306 C 53.876 47.821 56.85 48.588 60.082 48.588 C 63.312 48.588 66.288 47.821 68.923 46.306 C 71.536 44.812 73.698 42.641 75.18 40.021 C 76.486 37.733 77.24 35.181 77.42 32.451 L 71.553 32.356 Z\" fill=\"rgb(243,190,18)\"></path><path d=\"M 77.465 17.012 C 77.465 16.762 77.445 16.558 77.407 16.386 L 77.407 2.986 C 77.407 2.136 77.132 1.419 76.594 0.856 C 76.051 0.289 75.34 0 74.477 0 C 73.613 0 72.903 0.288 72.34 0.85 C 71.777 1.413 71.489 2.135 71.489 2.992 L 71.559 18.809 C 70.741 18.101 69.856 17.474 68.917 16.936 C 66.281 15.42 63.307 14.653 60.075 14.653 C 56.845 14.653 53.87 15.42 51.234 16.936 C 48.619 18.428 46.457 20.599 44.977 23.22 C 43.672 25.509 42.917 28.053 42.737 30.79 L 42.725 30.988 L 48.534 30.988 L 48.534 30.886 C 48.694 29.096 49.18 27.446 49.999 25.982 C 50.976 24.207 52.416 22.729 54.164 21.705 C 55.924 20.663 57.913 20.132 60.076 20.132 C 62.238 20.132 64.215 20.662 65.955 21.698 C 67.689 22.732 69.118 24.208 70.095 25.975 C 70.913 27.433 71.4 29.083 71.547 30.879 L 71.547 30.981 L 77.458 30.981 L 77.458 17.012 Z\" fill=\"rgb(10,44,79)\"></path></g></svg>',svgContentId:9204118662,withExternalLayout:true}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:127.27272451416526,intrinsicWidth:454.54544469344734,pixelHeight:140,pixelWidth:500,src:\"https://framerusercontent.com/images/AS6tB0Z3M4cFRaCAMFRqk0H1rg.png\"},className:\"framer-vy0kw3\",\"data-framer-name\":\"65ca233ab931cdebe3c0f0e4 Newsom_Primary-p-500\"})],speed:40,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),isDisplayed3()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-10ewijl-container hidden-72rtr7\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"qXCIEA7lA\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:0,overflow:false},gap:80,height:\"100%\",hoverFactor:.5,id:\"qXCIEA7lA\",layoutId:\"qXCIEA7lA\",padding:20,paddingBottom:20,paddingLeft:20,paddingPerSide:false,paddingRight:20,paddingTop:20,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(SVG,{className:\"framer-5lzflz\",\"data-framer-name\":\"Kintec cmky_full_colour\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 230 75\"><path d=\"M 36.923 73.592 C 16.559 73.592 0 57.092 0 36.8 C 0 16.508 16.559 0 36.923 0 C 57.288 0 73.843 16.504 73.843 36.8 C 73.843 57.096 57.284 73.592 36.923 73.592 Z M 36.923 2.108 C 17.725 2.108 2.107 17.665 2.107 36.8 C 2.107 55.935 17.725 71.492 36.92 71.492 C 56.115 71.492 71.728 55.923 71.728 36.8 C 71.728 17.677 56.115 2.108 36.923 2.108 Z\" fill=\"rgb(5,89,125)\"></path><path d=\"M 21.267 35.004 L 35.731 35.004 C 36.893 35.004 38.517 34.335 39.335 33.508 L 57.284 15.546 C 58.102 14.719 57.824 14.042 56.663 14.042 L 42.199 14.042 C 41.033 14.042 39.416 14.715 38.594 15.546 L 20.638 33.508 C 19.82 34.335 20.102 35.004 21.263 35.004 Z M 39.335 40.088 C 38.517 39.273 36.893 38.604 35.731 38.604 L 21.267 38.604 C 20.106 38.604 19.828 39.277 20.642 40.088 L 38.598 58.058 C 39.42 58.877 41.041 59.55 42.203 59.55 L 56.666 59.55 C 57.828 59.55 58.106 58.877 57.288 58.058 L 39.339 40.088 Z\" fill=\"rgb(5,89,125)\"></path><path d=\"M 33.149 58.412 L 18.678 43.327 C 17.96 42.588 17.856 42.612 17.586 42.646 C 17.258 42.673 17.208 43.077 17.204 43.238 L 17.204 55.154 C 17.335 56.627 18.111 59.208 21.862 59.542 L 32.296 59.542 C 33.578 59.469 33.462 58.885 33.153 58.408 Z M 17.2 30.258 C 17.208 30.435 17.254 30.812 17.582 30.858 C 17.759 30.877 17.867 30.9 18.122 30.7 L 32.871 15.454 C 33.296 14.962 33.774 14.108 32.146 14.042 L 22.687 14.042 C 18.219 14.042 17.339 16.892 17.2 18.477 L 17.2 30.254 Z\" fill=\"rgb(84,200,232)\"></path><path d=\"M 83.884 11.035 L 91.954 11.035 L 91.954 27.062 L 107.282 11.035 L 117.373 11.035 L 101.713 26.846 L 118.786 50.115 L 108.914 50.115 L 96.152 32.235 L 91.954 36.362 L 91.954 50.115 L 83.884 50.115 Z\" fill=\"rgb(0,67,101)\"></path><path d=\"M 118.662 21.212 L 126.407 21.212 L 126.407 50.115 L 118.662 50.115 Z M 130.402 21.212 L 137.969 21.212 L 137.969 24.677 C 140.161 21.873 143.102 20.485 146.752 20.485 C 153.131 20.485 156.296 23.812 156.296 30.438 L 156.296 50.115 L 148.555 50.115 L 148.555 32.669 C 148.555 28.727 147.405 26.908 144.082 26.908 C 140.485 26.908 138.143 29.169 138.143 32.958 L 138.143 50.115 L 130.402 50.115 Z M 201.512 41.335 C 199.934 47.385 194.971 51.069 188.094 51.069 C 179.859 51.069 174.445 45.219 174.445 35.485 C 174.445 25.75 179.639 20.215 187.979 20.215 C 196.82 20.215 201.891 25.758 201.891 35.7 C 201.891 36.358 201.891 37.008 201.84 37.719 L 182.476 37.719 C 182.692 42.215 184.71 44.565 188.477 44.565 C 191.085 44.565 192.783 43.546 193.76 41.331 L 201.512 41.331 Z M 193.875 32.669 C 193.76 28.727 191.745 26.692 188.145 26.692 C 184.822 26.692 182.8 28.727 182.476 32.669 Z M 229.977 39.246 C 229.325 46.585 224.258 51.073 216.825 51.073 C 208.493 51.073 203.365 45.35 203.365 35.627 C 203.365 25.904 208.598 20.223 217.107 20.223 C 224.636 20.223 229.375 24.465 229.911 31.446 L 222.236 31.446 C 221.799 28.431 219.997 26.746 217.157 26.746 C 213.279 26.746 211.43 29.792 211.43 35.769 C 211.43 41.338 213.499 44.423 217.157 44.423 C 220.044 44.423 221.799 42.665 222.34 39.25 L 229.973 39.25 Z M 169.173 10.154 L 161.479 17.85 L 161.479 21.212 L 156.906 21.212 L 156.906 26.692 L 161.479 26.692 L 161.479 42.25 C 161.479 48.319 162.845 50.485 169.228 50.485 C 170.038 50.485 171.516 50.392 173.646 50.331 L 173.646 44.481 L 171.732 44.481 C 169.664 44.481 169.17 44.2 169.17 42.662 L 169.17 26.692 L 174.399 26.692 L 174.399 21.212 L 169.17 21.212 L 169.17 10.154 Z\" fill=\"rgb(0,67,101)\"></path><path d=\"M 126.056 10.638 L 126.056 18.362 L 119.017 18.362 Z\" fill=\"rgb(84,200,232)\"></path><path d=\"M 92.841 70.235 C 92.841 73.327 91.201 74.904 88.041 74.904 C 85.64 74.904 84.116 73.738 83.981 71.946 L 85.193 71.946 C 85.308 73.15 86.304 73.869 88.021 73.869 C 90.46 73.869 91.672 72.642 91.672 70.269 L 91.672 69.023 C 90.873 70.365 89.7 71.027 88.16 71.027 C 85.428 71.027 83.672 69.062 83.672 65.715 C 83.672 62.369 85.467 60.404 88.16 60.404 C 89.723 60.404 90.892 61.065 91.672 62.408 L 91.672 60.658 L 92.845 60.658 L 92.845 70.227 Z M 88.334 70 C 90.464 70 91.768 68.481 91.768 65.719 C 91.768 62.958 90.48 61.442 88.334 61.442 C 86.188 61.442 84.88 62.938 84.88 65.719 C 84.88 68.5 86.246 70 88.334 70 Z M 95.28 56.773 L 96.453 56.773 L 96.453 70.758 L 95.28 70.758 Z M 103.029 60.412 C 105.978 60.412 107.695 62.338 107.695 65.723 C 107.695 69.108 105.978 71.015 103.029 71.015 C 100.081 71.015 98.383 69.108 98.383 65.723 C 98.383 62.338 100.081 60.412 103.029 60.412 Z M 103.029 69.981 C 105.194 69.981 106.483 68.485 106.483 65.719 C 106.483 62.954 105.194 61.442 103.029 61.442 C 100.864 61.442 99.595 62.962 99.595 65.719 C 99.595 68.477 100.884 69.981 103.029 69.981 Z M 109.489 56.773 L 110.659 56.773 L 110.659 62.454 C 111.419 61.092 112.592 60.412 114.209 60.412 C 116.941 60.412 118.697 62.377 118.697 65.723 C 118.697 69.069 116.903 71.035 114.132 71.035 C 112.569 71.035 111.361 70.335 110.659 69.012 L 110.659 70.762 L 109.489 70.762 L 109.489 56.777 Z M 114.035 70 C 116.219 70 117.489 68.481 117.489 65.719 C 117.489 62.958 116.181 61.442 114.035 61.442 C 111.89 61.442 110.601 62.938 110.601 65.719 C 110.601 68.5 111.89 70 114.035 70 Z M 123.309 71.012 C 121.24 71.012 119.951 69.846 119.951 68.092 C 119.951 66.927 120.518 66.05 121.572 65.565 C 122.645 65.081 123.876 65.062 125.223 64.942 C 126.647 64.65 127.002 64.669 127.002 63.638 C 127.002 62.119 126.338 61.442 124.482 61.442 C 122.626 61.442 121.692 62.2 121.611 63.681 L 120.461 63.681 C 120.499 61.696 122.004 60.412 124.482 60.412 C 126.959 60.412 128.19 61.462 128.19 63.465 L 128.19 68.969 C 128.19 69.631 128.21 69.904 128.912 69.904 C 128.989 69.904 129.143 69.904 129.34 69.885 L 129.34 70.762 C 128.97 70.838 128.677 70.858 128.503 70.858 C 127.546 70.858 127.056 70.392 127.056 69.458 L 127.056 69.304 C 125.983 70.45 124.733 71.015 123.309 71.015 Z M 123.424 65.935 C 121.942 66.323 121.159 67.042 121.159 68.073 C 121.159 69.223 122.039 69.981 123.444 69.981 C 125.551 69.981 127.017 68.815 127.017 66.869 L 126.998 65.45 C 126.137 65.781 124.91 65.858 123.424 65.935 Z M 130.745 56.773 L 131.914 56.773 L 131.914 70.758 L 130.745 70.758 Z M 139.254 60.662 L 140.385 60.662 L 140.385 62.431 C 140.991 61.031 142.044 60.408 143.507 60.408 L 143.642 60.408 L 143.642 61.615 L 143.484 61.615 C 141.473 61.615 140.42 62.823 140.42 65.154 L 140.42 70.758 L 139.25 70.758 L 139.25 60.662 Z M 145.656 65.992 C 145.656 68.519 146.984 70 148.937 70 C 150.519 70 151.669 69.123 151.904 67.646 L 153.073 67.646 C 152.819 69.688 151.179 71.031 148.859 71.031 C 146.127 71.031 144.448 69.104 144.448 65.758 C 144.448 62.412 146.146 60.408 148.898 60.408 C 151.649 60.408 153.212 62.254 153.212 65.542 L 153.212 65.931 L 145.66 65.931 L 145.66 65.988 Z M 151.997 64.981 C 151.9 62.742 150.689 61.442 148.875 61.442 C 147.061 61.442 145.772 62.765 145.656 64.981 Z M 163.142 67.277 C 162.926 69.592 161.328 71.012 158.928 71.012 C 156.234 71.012 154.497 69.065 154.497 65.781 C 154.497 62.496 156.253 60.412 159.005 60.412 C 161.289 60.412 162.887 61.812 163.007 63.873 L 161.876 63.873 C 161.683 62.396 160.529 61.442 159.009 61.442 C 157.056 61.442 155.709 62.977 155.709 65.681 C 155.709 68.385 157.056 69.981 159.028 69.981 C 160.587 69.981 161.722 68.988 161.972 67.277 Z M 164.782 60.662 L 165.913 60.662 L 165.913 62.431 C 166.518 61.031 167.572 60.408 169.035 60.408 L 169.173 60.408 L 169.173 61.615 L 169.019 61.615 C 167.009 61.615 165.955 62.823 165.955 65.154 L 165.955 70.758 L 164.782 70.758 Z M 178.401 70.758 L 177.27 70.758 L 177.27 69.142 C 176.49 70.427 175.398 71.031 173.874 71.031 C 171.57 71.031 170.439 69.823 170.439 67.45 L 170.439 60.662 L 171.612 60.662 L 171.612 67.177 C 171.612 69.104 172.238 69.996 174.09 69.996 C 175.942 69.996 177.231 68.712 177.231 66.631 L 177.231 60.658 L 178.401 60.658 L 178.401 70.754 Z M 180.863 56.773 L 182.032 56.773 L 182.032 58.523 L 180.863 58.523 Z M 180.863 60.662 L 182.032 60.662 L 182.032 70.758 L 180.863 70.758 Z M 186.014 60.662 L 187.886 60.662 L 187.886 61.615 L 186.014 61.615 L 186.014 68.965 C 186.014 69.704 186.111 70.054 186.755 70.054 C 187.068 70.054 187.438 69.958 187.886 69.858 L 187.886 70.792 C 187.357 70.927 186.89 71.008 186.443 71.008 C 185.135 71.008 184.841 70.346 184.841 68.965 L 184.841 61.615 L 183.456 61.615 L 183.456 60.662 L 184.841 60.662 L 184.841 57.762 L 186.014 57.762 Z M 189.468 60.662 L 190.56 60.662 L 190.56 62.335 C 191.243 61.088 192.374 60.408 193.779 60.408 C 195.299 60.408 196.334 61.127 196.665 62.392 C 197.348 61.088 198.483 60.408 199.926 60.408 C 202.13 60.408 203.203 61.496 203.203 63.715 L 203.203 70.758 L 202.03 70.758 L 202.03 63.815 C 202.03 62.181 201.443 61.442 199.884 61.442 C 198.066 61.442 196.916 62.669 196.916 64.438 L 196.916 70.762 L 195.743 70.762 L 195.743 63.935 C 195.743 62.262 195.06 61.446 193.617 61.446 C 191.842 61.446 190.63 62.692 190.63 64.519 L 190.63 70.762 L 189.457 70.762 L 189.457 60.665 Z M 206.155 65.992 C 206.155 68.519 207.482 70 209.435 70 C 211.017 70 212.167 69.123 212.403 67.646 L 213.576 67.646 C 213.321 69.688 211.685 71.031 209.362 71.031 C 206.63 71.031 204.951 69.104 204.951 65.758 C 204.951 62.412 206.649 60.408 209.4 60.408 C 212.152 60.408 213.711 62.254 213.711 65.542 L 213.711 65.931 L 206.159 65.931 L 206.159 65.988 Z M 212.499 64.981 C 212.403 62.742 211.191 61.442 209.377 61.442 C 207.563 61.442 206.275 62.765 206.155 64.981 Z M 215.505 60.662 L 216.64 60.662 L 216.64 62.277 C 217.4 61.031 218.512 60.408 219.997 60.408 C 221.402 60.408 222.498 60.935 223.042 61.827 C 223.432 62.45 223.451 63.246 223.451 64.315 L 223.451 70.754 L 222.282 70.754 L 222.282 64.45 C 222.282 62.408 221.834 61.435 219.766 61.435 C 217.91 61.435 216.682 62.7 216.682 64.8 L 216.682 70.754 L 215.509 70.754 L 215.509 60.658 Z M 227.272 60.662 L 229.143 60.662 L 229.143 61.615 L 227.272 61.615 L 227.272 68.965 C 227.272 69.704 227.368 70.054 228.016 70.054 C 228.329 70.054 228.699 69.958 229.147 69.858 L 229.147 70.792 C 228.622 70.927 228.152 71.008 227.704 71.008 C 226.396 71.008 226.106 70.346 226.106 68.965 L 226.106 61.615 L 224.721 61.615 L 224.721 60.662 L 226.106 60.662 L 226.106 57.762 L 227.276 57.762 L 227.276 60.662 Z\" fill=\"rgb(137,138,141)\"></path></svg>',svgContentId:12537297588,withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1tgflfh\",\"data-framer-name\":\"Venturi log\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 228 50\"><g id=\"ss9305616602_1\"><path d=\"M 0 0 L 228 0 L 228 50 L 0 50 Z\" fill=\"transparent\"></path><path d=\"M 47.952 11.18 C 45.422 11.18 43.922 12.7 43.92 15.258 C 43.92 17.092 43.911 18.923 43.922 20.758 C 43.934 22.941 45.545 24.554 47.715 24.558 C 51.889 24.565 56.063 24.554 60.236 24.563 C 61.716 24.567 63.088 25.77 63.281 27.193 C 63.462 28.538 62.388 30.056 60.973 30.418 C 60.667 30.496 51.921 30.507 47.869 30.507 C 45.516 30.507 43.926 32.099 43.922 34.458 C 43.916 36.365 43.916 38.273 43.922 40.18 C 43.93 42.404 45.545 44.03 47.745 44.032 C 51.919 44.037 56.092 44.022 60.265 44.039 C 62.285 44.047 63.808 46.163 63.12 47.95 C 62.664 49.138 61.473 49.977 60.196 49.977 C 53.876 49.981 47.553 49.983 41.232 49.977 C 39.422 49.977 38.097 48.653 38.095 46.843 C 38.089 40.426 38.093 34.012 38.093 27.595 C 38.093 21.179 38.148 14.913 38.059 8.572 C 38.034 6.698 39.704 5.178 41.397 5.199 C 47.669 5.277 53.941 5.222 60.213 5.233 C 62.231 5.237 63.76 7.223 63.153 9.017 C 62.725 10.281 61.511 11.173 60.177 11.175 C 56.103 11.181 52.028 11.175 47.954 11.177 M 72.109 49.898 C 73.249 50.203 74.569 49.636 75.217 48.42 C 75.491 47.903 75.616 47.247 75.62 46.652 C 75.66 40.409 75.69 34.166 75.656 27.923 C 75.643 25.7 77.664 24.139 79.089 24.112 C 80.925 24.074 82.561 25.679 82.707 27.712 C 82.807 29.109 84.052 30.382 85.437 30.501 C 87.651 30.691 88.884 31.917 89.137 34.175 C 89.308 35.705 90.531 36.94 91.973 37.045 C 94.137 37.199 95.591 38.765 95.595 40.951 C 95.6 43.007 95.57 45.064 95.61 47.118 C 95.635 48.431 96.446 49.272 97.565 49.773 C 98.656 50.263 99.636 49.911 100.487 49.125 C 101.253 48.418 101.471 47.529 101.468 46.51 C 101.456 35.263 101.46 24.016 101.46 12.772 C 101.46 11.26 101.483 9.75 101.449 8.238 C 101.414 6.601 100.005 5.205 98.479 5.233 C 96.961 5.263 95.604 6.711 95.599 8.333 C 95.591 10.959 95.597 13.585 95.597 16.211 C 95.597 19.951 95.604 23.692 95.593 27.432 C 95.589 28.97 94.495 30.454 93.06 30.935 C 91.715 31.388 90.235 30.911 89.325 29.531 C 88.899 28.885 88.696 28.046 88.559 27.265 C 88.308 25.848 87.132 24.655 85.726 24.561 C 83.674 24.423 82.278 23.027 82.116 20.954 C 82.008 19.557 80.761 18.29 79.374 18.172 C 77.018 17.968 75.674 16.505 75.671 14.125 C 75.666 12.143 75.69 10.161 75.658 8.181 C 75.639 6.916 74.708 5.756 73.498 5.361 C 72.422 5.012 71.328 5.391 70.478 6.404 C 69.975 7.004 69.798 7.687 69.8 8.466 C 69.812 14.834 69.808 21.2 69.808 27.566 C 69.808 33.931 69.806 40.447 69.81 46.887 C 69.81 48.294 70.752 49.527 72.11 49.897 M 227.988 8.281 C 227.986 6.905 227.03 5.685 225.727 5.321 C 224.571 4.999 223.215 5.587 222.565 6.826 C 222.303 7.324 222.185 7.953 222.183 8.525 C 222.158 14.888 222.166 21.25 222.166 27.613 C 222.166 34.051 222.164 40.489 222.168 46.926 C 222.168 48.244 223.055 49.431 224.292 49.842 C 225.417 50.212 226.557 49.785 227.408 48.701 C 227.896 48.078 227.999 47.371 227.997 46.609 C 227.988 38.487 227.991 30.366 227.991 22.245 C 227.991 17.59 227.997 12.935 227.986 8.281 M 130.525 11.178 C 132.501 11.176 134.475 11.184 136.451 11.176 C 138.097 11.168 139.537 9.768 139.537 8.199 C 139.537 6.625 138.11 5.236 136.446 5.234 C 127.953 5.227 119.458 5.227 110.965 5.234 C 109.304 5.234 107.889 6.631 107.9 8.22 C 107.911 9.802 109.333 11.167 110.999 11.174 C 112.95 11.182 114.9 11.174 116.851 11.176 C 119.22 11.176 120.788 12.747 120.79 15.126 C 120.793 20.376 120.79 25.626 120.79 30.876 C 120.79 36.226 120.788 41.575 120.793 46.924 C 120.795 48.214 121.65 49.394 122.845 49.819 C 123.963 50.217 125.12 49.821 125.994 48.766 C 126.497 48.159 126.659 47.464 126.655 46.696 C 126.645 44.368 126.653 42.039 126.653 39.711 C 126.653 31.489 126.649 23.266 126.655 15.045 C 126.657 12.755 128.249 11.178 130.521 11.174 M 148.828 43.494 C 150.952 43.724 152.178 44.97 152.419 47.136 C 152.596 48.735 153.872 49.971 155.417 49.976 C 159.69 49.991 163.963 49.993 168.233 49.976 C 169.72 49.969 171.073 48.65 171.189 47.17 C 171.352 45.075 172.663 43.701 174.755 43.508 C 175.992 43.394 176.845 42.742 177.343 41.678 C 177.581 41.168 177.626 40.528 177.626 39.948 C 177.641 29.57 177.636 19.189 177.636 8.808 C 177.636 8.635 177.638 8.461 177.634 8.288 C 177.59 6.894 176.665 5.693 175.358 5.329 C 174.199 5.005 172.846 5.581 172.185 6.82 C 171.911 7.337 171.789 7.995 171.789 8.588 C 171.765 19.092 171.772 29.595 171.772 40.098 C 171.772 42.468 170.195 44.036 167.82 44.038 C 163.768 44.038 159.719 44.04 155.668 44.038 C 153.401 44.036 151.815 42.441 151.813 40.15 C 151.807 35.667 151.811 31.181 151.811 26.698 C 151.811 20.58 151.815 14.46 151.809 8.343 C 151.809 6.915 150.855 5.683 149.525 5.321 C 148.368 5.007 147.01 5.617 146.369 6.851 C 146.12 7.332 146.003 7.934 146.001 8.482 C 145.976 13.782 145.984 19.085 145.984 24.386 C 145.984 29.686 145.98 35.038 145.987 40.364 C 145.989 42.047 147.152 43.316 148.826 43.498 M 206.138 24.555 C 207.125 24.561 208.074 24.172 208.773 23.475 C 209.472 22.778 209.864 21.83 209.862 20.843 C 209.873 18.862 209.873 16.882 209.862 14.901 C 209.865 13.914 209.475 12.966 208.778 12.267 C 208.081 11.569 207.134 11.177 206.147 11.178 C 204.074 11.17 202.001 11.176 199.928 11.176 C 197.854 11.176 195.733 11.168 193.634 11.178 C 191.557 11.188 189.927 12.807 189.908 14.892 C 189.891 16.872 189.893 18.852 189.908 20.835 C 189.923 22.921 191.551 24.549 193.626 24.553 C 197.797 24.562 201.967 24.562 206.138 24.553 M 209.29 8.373 C 209.413 10.111 210.992 11.665 212.742 11.771 C 214.452 11.875 215.698 13.133 215.721 14.851 C 215.748 16.931 215.75 19.013 215.719 21.093 C 215.693 22.755 214.429 24.013 212.761 24.111 C 210.941 24.219 209.398 25.746 209.288 27.55 C 209.189 29.18 207.975 30.402 206.341 30.52 C 204.222 30.671 202.619 32.492 202.885 34.447 C 203.092 35.974 204.616 37.376 206.185 37.486 C 207.994 37.611 209.168 38.799 209.288 40.626 C 209.404 42.406 210.969 43.919 212.801 44.031 C 214.026 44.106 215.172 44.982 215.581 46.158 C 215.959 47.244 215.579 48.43 214.574 49.275 C 213.751 49.965 212.818 50.223 211.822 49.766 C 210.755 49.276 210.002 48.47 209.881 47.242 C 209.651 44.921 208.431 43.659 206.134 43.428 C 204.781 43.292 203.58 42.049 203.409 40.603 C 203.132 38.282 201.963 37.122 199.664 36.884 C 198.266 36.74 197.073 35.453 196.97 33.977 C 196.803 31.571 194.392 29.897 192.3 30.73 C 190.841 31.313 189.908 32.698 189.906 34.33 C 189.9 38.443 189.929 42.557 189.877 46.67 C 189.862 47.377 189.659 48.068 189.29 48.671 C 188.547 49.831 187.331 50.213 186.207 49.842 C 184.966 49.436 184.079 48.248 184.077 46.928 C 184.071 40.461 184.075 33.994 184.075 27.528 C 184.075 21.235 184.136 14.941 184.039 8.648 C 184.01 6.659 185.701 5.17 187.451 5.194 C 193.601 5.28 199.752 5.227 205.902 5.227 C 207.895 5.227 209.149 6.392 209.288 8.368 M 18.764 47.139 C 18.759 47.391 18.761 47.329 18.764 47.139 Z M 31.654 8.39 C 31.652 6.7 30.311 5.252 28.76 5.235 C 27.216 5.22 25.842 6.671 25.832 8.356 C 25.819 10.438 25.829 12.518 25.829 14.599 C 25.829 16.704 25.838 30.89 25.825 32.997 C 25.813 35.073 24.301 36.657 22.235 36.79 C 20.638 36.894 19.375 38.25 19.361 39.911 C 19.353 41.877 17.706 43.668 15.863 43.681 L 15.795 43.681 C 13.952 43.668 12.305 41.877 12.297 39.911 C 12.285 38.249 11.02 36.891 9.424 36.79 C 7.357 36.657 5.846 35.073 5.833 32.997 C 5.82 30.892 5.831 16.707 5.829 14.599 C 5.829 12.517 5.837 10.436 5.827 8.356 C 5.817 6.671 4.442 5.22 2.899 5.235 C 1.347 5.25 0.006 6.7 0.004 8.39 C 0 12.553 0 28.796 0.004 32.957 C 0.004 34.696 1.153 35.956 2.877 36.142 C 5.111 36.383 6.428 37.675 6.433 39.932 C 6.449 41.595 7.706 42.952 9.295 43.075 C 11.434 43.24 12.893 44.774 12.899 46.908 C 12.909 48.233 13.752 49.408 15.004 49.841 C 15.274 49.932 15.553 49.977 15.829 49.979 C 16.11 49.977 16.389 49.93 16.655 49.841 C 17.907 49.407 18.749 48.233 18.759 46.908 C 18.766 44.774 20.224 43.242 22.363 43.075 C 23.953 42.952 25.209 41.595 25.226 39.933 C 25.23 37.673 26.547 36.383 28.781 36.142 C 30.506 35.956 31.651 34.696 31.654 32.957 C 31.66 28.796 31.66 12.553 31.654 8.39 Z M 217.839 4.072 C 217.629 4.765 216.99 5.24 216.266 5.239 C 215.833 5.238 215.418 5.064 215.113 4.757 C 214.809 4.449 214.639 4.033 214.641 3.6 C 214.641 2.7 215.369 1.96 216.266 1.96 C 216.995 1.963 217.635 2.445 217.839 3.145 L 218.331 3.145 C 218.147 2.211 217.28 1.482 216.266 1.482 C 215.129 1.525 214.229 2.459 214.229 3.598 C 214.229 4.736 215.129 5.67 216.266 5.713 C 217.273 5.713 218.133 5.006 218.335 4.076 L 217.839 4.076 Z\" fill=\"rgb(161, 125, 221)\"></path><path d=\"M 216.266 0 C 214.179 0 212.678 1.673 212.678 3.592 C 212.678 5.51 214.179 7.192 216.266 7.192 C 218.354 7.192 219.847 5.519 219.847 3.592 C 219.847 1.664 218.346 0 216.266 0 Z M 216.266 6.702 C 214.523 6.702 213.165 5.324 213.165 3.592 C 213.156 2.767 213.48 1.973 214.063 1.389 C 214.647 0.805 215.441 0.481 216.266 0.489 C 218.01 0.489 219.359 1.868 219.359 3.592 C 219.359 5.315 218.002 6.702 216.266 6.702 Z\" fill=\"rgb(161, 125, 221)\"></path></g></svg>',svgContentId:9305616602,withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-xkg8nn\",\"data-framer-name\":\"Logo\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 164 80\"><g id=\"ss9226828195_1\"><path d=\"M 0 0 L 164 0 L 164 79.265 L 0 79.265 Z\" fill=\"transparent\"></path><path d=\"M 84.664 78.403 L 77.755 53.278 C 76.955 56.134 76.064 59.305 75.567 61.044 C 74.437 65.003 71.245 65.665 69.573 65.458 L 0.405 65.458 L 0.405 62.021 L 69.869 62.021 L 69.965 62.041 C 70.49 62.103 71.715 62.017 72.261 60.101 C 73.304 56.452 76.085 46.485 76.113 46.385 L 77.781 40.408 L 85.149 67.201 L 85.891 65.199 C 86.547 63.425 88.243 62.219 90.109 62.197 L 91.601 62.197 C 91.717 62.197 91.828 62.152 91.912 62.072 L 96.104 58.082 L 99.945 61.927 C 100.098 62.016 100.674 62.284 102.052 62.284 L 143.655 62.284 L 143.695 62.286 C 143.739 62.288 148.804 62.454 152.126 59.261 C 154.129 57.337 155.144 54.522 155.144 50.894 L 155.144 12.374 C 155.144 11.424 155.914 10.654 156.863 10.654 C 157.812 10.654 158.582 11.424 158.582 12.374 L 158.582 50.892 C 158.582 55.508 157.202 59.166 154.481 61.765 C 150.224 65.832 144.221 65.745 143.582 65.722 L 102.052 65.722 C 99.059 65.722 97.812 64.761 97.328 64.17 L 96.044 62.885 L 94.281 64.562 C 93.559 65.251 92.599 65.635 91.601 65.634 L 90.155 65.634 C 89.685 65.648 89.271 65.949 89.114 66.393 L 84.665 78.402 Z\" fill=\"rgb(86, 157, 230)\" stroke-width=\"2\" stroke=\"rgb(86, 157, 230)\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path><path d=\"M 156.122 0.764 L 150.2 12.536 C 150.2 12.536 149.585 14.109 150.963 13.082 C 152.006 12.305 156.707 6.278 162.511 12.789 C 162.511 12.789 164.449 14.582 163.449 12.203 L 157.177 0.764 C 157.177 0.764 156.687 -0.36 156.122 0.764 Z\" fill=\"rgb(86, 157, 230)\" stroke-width=\"2\" stroke=\"rgb(86, 157, 230)\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path><path d=\"M 14.374 34.236 L 0.027 34.236 L 0.027 10.971 L 4.957 10.971 L 4.957 30.17 L 14.373 30.17 L 14.373 34.236 Z M 31.792 30.17 L 31.792 34.236 L 18.419 34.236 L 18.419 10.971 L 31.793 10.971 L 31.793 15.019 L 23.348 15.019 L 23.348 20.129 L 31.21 20.129 L 31.21 24.16 L 23.348 24.16 L 23.348 30.17 L 31.794 30.17 Z M 56.19 34.236 L 50.873 34.236 L 49.195 28.703 L 40.714 28.703 L 39.036 34.236 L 33.718 34.236 L 41.916 10.882 L 47.94 10.882 L 56.192 34.236 Z M 41.951 24.566 L 48.011 24.566 L 45.379 16.064 C 45.221 15.543 45.08 15.018 44.954 14.489 C 44.637 15.762 43.635 19.121 41.951 24.566 Z M 66.42 10.971 C 70.201 10.971 73.143 11.97 75.245 13.968 C 77.348 15.965 78.399 18.824 78.399 22.543 C 78.399 26.261 77.31 29.139 75.13 31.178 C 72.951 33.217 69.807 34.236 65.696 34.236 L 59.124 34.236 L 59.124 10.971 Z M 66.156 30.17 C 70.901 30.17 73.275 27.618 73.275 22.516 C 73.275 17.519 71.072 15.019 66.668 15.019 L 64.052 15.019 L 64.052 30.17 L 66.154 30.17 Z M 96.596 30.17 L 96.596 34.236 L 83.222 34.236 L 83.222 10.971 L 96.596 10.971 L 96.596 15.019 L 88.151 15.019 L 88.151 20.129 L 96.013 20.129 L 96.013 24.16 L 88.151 24.16 L 88.151 30.17 L 96.597 30.17 Z M 106.384 25.309 L 106.384 34.236 L 101.454 34.236 L 101.454 10.971 L 108.221 10.971 C 111.366 10.971 113.701 11.546 115.226 12.694 C 116.752 13.844 117.514 15.592 117.514 17.936 C 117.514 19.304 117.14 20.521 116.392 21.588 C 115.645 22.654 114.576 23.494 113.186 24.107 C 116.684 29.327 118.963 32.705 120.022 34.236 L 114.546 34.236 L 108.998 25.309 Z M 106.384 15.019 L 106.384 21.296 L 107.974 21.296 C 109.528 21.296 110.676 21.037 111.419 20.517 C 112.161 19.999 112.532 19.192 112.532 18.096 C 112.532 16.999 112.158 16.213 111.41 15.735 C 110.662 15.258 109.481 15.019 107.868 15.019 Z M 136.665 27.784 C 136.665 29.87 135.912 31.52 134.404 32.733 C 132.896 33.948 130.846 34.555 128.256 34.555 C 125.665 34.555 123.42 34.089 121.525 33.158 L 121.525 28.579 C 123.09 29.263 124.416 29.752 125.5 30.046 C 126.583 30.342 127.626 30.488 128.627 30.488 C 129.628 30.488 130.414 30.279 130.986 29.861 C 131.557 29.442 131.842 28.827 131.842 28.014 C 131.842 27.543 131.712 27.132 131.453 26.785 C 131.194 26.437 130.838 26.108 130.385 25.795 C 129.931 25.483 128.947 24.97 127.434 24.256 C 125.92 23.544 124.816 22.881 124.121 22.268 C 122.566 20.924 121.789 19.239 121.789 17.211 C 121.789 15.185 122.484 13.582 123.874 12.403 C 125.264 11.225 127.19 10.636 129.651 10.636 C 131.736 10.636 134.039 11.184 136.56 12.28 L 134.97 16.116 C 133.733 15.609 132.702 15.255 131.878 15.055 C 131.059 14.856 130.22 14.755 129.378 14.755 C 128.536 14.755 127.864 14.967 127.363 15.391 C 126.863 15.815 126.612 16.387 126.612 17.106 C 126.612 17.931 127.03 18.626 127.867 19.192 C 128.279 19.475 129.321 20.011 130.994 20.801 C 133.15 21.837 134.634 22.881 135.447 23.929 C 136.259 24.978 136.665 26.264 136.665 27.784 Z M 0.926 53.842 L 0 53.842 L 0 40.591 L 0.926 40.591 Z M 14.3 40.59 L 14.3 53.841 L 13.364 53.841 L 5.525 42.081 L 5.453 42.081 C 5.521 43.417 5.553 44.475 5.553 45.253 L 5.553 53.843 L 4.668 53.843 L 4.668 40.592 L 5.594 40.592 L 13.434 52.343 L 13.484 52.343 C 13.433 51.309 13.406 50.275 13.403 49.241 L 13.403 40.591 L 14.299 40.591 Z M 29.053 41.234 C 27.389 41.234 26.08 41.765 25.128 42.826 C 24.175 43.886 23.699 45.352 23.699 47.221 C 23.699 49.09 24.149 50.553 25.048 51.606 C 25.947 52.647 27.231 53.167 28.902 53.167 C 30.009 53.167 31.032 53.026 31.972 52.745 L 31.972 53.56 C 31.106 53.869 30.012 54.023 28.691 54.023 C 26.839 54.023 25.376 53.424 24.304 52.226 C 23.23 51.027 22.692 49.348 22.692 47.186 C 22.679 45.85 22.93 44.665 23.448 43.631 C 23.935 42.63 24.707 41.795 25.666 41.231 C 26.628 40.664 27.736 40.387 28.991 40.4 C 30.293 40.4 31.451 40.641 32.463 41.125 L 32.091 41.96 C 31.149 41.483 30.107 41.235 29.052 41.236 Z M 43.142 53.842 L 41.3 49.169 L 35.916 49.169 L 34.074 53.842 L 33.048 53.842 L 38.372 40.539 L 38.965 40.539 L 44.179 53.842 L 43.141 53.842 Z M 38.11 43.569 L 36.258 48.332 L 40.988 48.332 L 39.187 43.56 C 38.986 43.047 38.805 42.526 38.644 41.999 C 38.49 42.543 38.311 43.066 38.111 43.569 Z M 46.976 48.072 L 46.976 53.842 L 46.05 53.842 L 46.05 40.591 L 49.2 40.591 C 50.837 40.591 52.049 40.892 52.838 41.496 C 53.626 42.101 54.021 43.016 54.021 44.245 C 54.021 45.145 53.784 45.898 53.31 46.506 C 52.838 47.114 52.131 47.549 51.193 47.81 L 54.785 53.841 L 53.678 53.841 L 50.266 48.072 Z M 46.976 41.426 L 46.976 47.276 L 49.501 47.276 C 50.635 47.276 51.506 47.025 52.113 46.521 C 52.72 46.018 53.024 45.273 53.024 44.285 C 53.024 43.299 52.722 42.575 52.118 42.116 C 51.513 41.655 50.531 41.426 49.169 41.426 Z M 64.304 52.986 L 64.304 53.842 L 57.069 53.842 L 57.069 40.591 L 64.305 40.591 L 64.305 41.446 L 57.994 41.446 L 57.994 46.462 L 63.953 46.462 L 63.953 47.307 L 57.994 47.307 L 57.994 52.986 Z\" fill=\"rgb(65, 159, 232)\"></path></g></svg>',svgContentId:9226828195,withExternalLayout:true}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:38,intrinsicWidth:170,pixelHeight:38,pixelWidth:170,src:\"https://framerusercontent.com/images/Mpk3QONihkmuq5bqhRMAU7a6s.svg\"},className:\"framer-1j1c9we\",\"data-framer-name\":\"Logo 1\"}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1penjd4\",\"data-framer-name\":\"Footer-logo\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 388 48\"><g id=\"ss11646891701_1\"><path d=\"M 41.39 36.552 L 48.504 0 L 57.106 0 L 46.175 47.238 L 36.475 47.238 L 28.585 11.011 L 20.825 47.237 L 10.994 47.237 L 0 0 L 8.924 0 L 16.428 36.487 L 23.864 0 L 33.372 0 Z\" fill=\"rgb(20,19,32)\"></path><path d=\"M 55.315 37.595 C 55.315 28.864 65.985 26.649 78.726 25.345 L 78.726 24.694 C 78.726 18.7 75.298 16.876 71.482 16.876 C 67.602 16.876 64.692 18.962 64.498 23.196 L 56.931 23.196 C 57.449 16.029 63.334 11.143 71.741 11.143 C 80.084 11.143 86.616 14.987 86.422 26.194 C 86.422 27.953 86.293 32.057 86.293 35.25 C 86.293 39.681 86.681 44.307 87.327 47.239 L 80.277 47.239 C 80.019 45.741 79.76 44.894 79.631 42.483 C 77.433 46.262 73.293 48.088 68.184 48.088 C 60.618 48.085 55.315 43.98 55.315 37.595 Z M 78.919 30.754 C 67.925 31.796 63.463 33.36 63.463 37.4 C 63.463 40.462 65.985 42.286 69.866 42.286 C 75.557 42.286 78.919 39.354 78.919 33.425 Z\" fill=\"rgb(20,19,32)\"></path><path d=\"M 99.873 47.238 L 92.177 47.238 L 92.177 0 L 99.873 0 Z\" fill=\"rgb(20,19,32)\"></path><path d=\"M 113.302 0 L 113.302 26.258 L 126.171 12.183 L 135.42 12.183 L 122.097 26.583 L 136.906 47.237 L 127.918 47.237 L 116.988 32.056 L 113.302 36.03 L 113.302 47.237 L 105.606 47.237 L 105.606 0 Z\" fill=\"rgb(20,19,32)\"></path><path d=\"M 142.157 31.926 C 142.675 38.441 147.202 41.634 151.601 41.634 C 155.61 41.634 158.779 40.005 160.137 36.748 L 167.704 36.748 C 166.087 42.353 160.914 48.085 151.924 48.085 C 140.736 48.085 134.333 39.484 134.333 29.45 C 134.333 18.896 141.512 11.402 151.406 11.402 C 162.076 11.402 168.739 20.133 168.092 31.927 Z M 142.157 26.257 L 160.266 26.257 C 160.072 20.785 155.933 17.462 151.406 17.462 C 147.784 17.462 142.805 19.612 142.157 26.258 Z\" fill=\"rgb(20,19,32)\"></path><path d=\"M 191.289 20.068 C 189.996 19.938 188.767 19.872 187.602 19.873 C 182.752 19.873 179.971 21.827 179.971 28.864 L 179.971 47.238 L 172.275 47.238 L 172.275 12.185 L 179.841 12.185 L 179.841 18.439 C 181.717 14.53 185.08 12.184 189.285 12.119 C 189.866 12.119 190.707 12.184 191.29 12.249 Z\" fill=\"rgb(20,19,32)\"></path><g transform=\"translate(209.337 0.001)\" id=\"ss11646891701_8\"><path d=\"M 7.697 40.266 L 31.819 40.266 L 31.819 47.238 L 0 47.238 L 0 0 L 7.696 0 Z\" fill=\"rgb(20,19,32)\"></path><path d=\"M 66.689 29.776 C 66.689 42.416 58.023 48.085 49.551 48.085 C 41.079 48.085 32.413 42.416 32.413 29.776 C 32.413 17.135 41.079 11.403 49.55 11.403 C 58.021 11.403 66.689 17.136 66.689 29.776 Z M 49.55 41.765 C 54.4 41.765 58.734 37.856 58.734 29.776 C 58.734 21.696 54.4 17.722 49.55 17.722 C 44.699 17.722 40.366 21.697 40.366 29.776 C 40.366 37.855 44.7 41.765 49.55 41.765 Z\" fill=\"rgb(20,19,32)\"></path><path d=\"M 82.223 37.204 L 90.177 12.184 L 98.196 12.184 L 85.65 47.238 L 78.406 47.238 L 65.731 12.184 L 74.204 12.184 Z\" fill=\"rgb(20,19,32)\"></path><path d=\"M 105.026 31.925 C 105.543 38.441 110.071 41.634 114.469 41.634 C 118.478 41.634 121.647 40.005 123.005 36.747 L 130.572 36.747 C 128.955 42.352 123.782 48.085 114.792 48.085 C 103.604 48.085 97.201 39.484 97.201 29.45 C 97.201 18.895 104.38 11.402 114.275 11.402 C 124.945 11.402 131.607 20.133 130.961 31.926 Z M 105.026 26.257 L 123.135 26.257 C 122.94 20.784 118.802 17.462 114.274 17.462 C 110.652 17.462 105.673 19.612 105.026 26.258 Z\" fill=\"rgb(20,19,32)\"></path><path d=\"M 142.806 47.237 L 135.11 47.237 L 135.11 0 L 142.806 0 Z\" fill=\"rgb(20,19,32)\"></path><path d=\"M 156.223 47.237 L 148.527 47.237 L 148.527 0 L 156.223 0 Z\" fill=\"rgb(20,19,32)\"></path><path d=\"M 162.524 40.005 C 162.524 35.543 166.114 31.926 170.543 31.926 C 174.972 31.926 178.562 35.543 178.562 40.005 C 178.562 44.467 174.972 48.085 170.543 48.085 C 166.114 48.085 162.524 44.467 162.524 40.005 Z\" fill=\"rgb(255,59,59)\"></path></g></g></svg>',svgContentId:11646891701,withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1oc0w1s\",\"data-framer-name\":\"Brandmark-2\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 242 98\"><path d=\"M 40.287 4.184 C 35.063 5.212 28.551 7.378 24.651 9.433 C 18.138 12.883 11.111 19.306 7.174 25.509 C 5.004 28.923 1.876 35.163 0.92 38.062 C 0.074 40.668 0 41.439 0 47.458 C 0 53.111 0.11 54.469 0.883 57.552 C 3.974 69.995 12.877 81.667 24.209 88.127 C 27.815 90.182 33.481 92.237 38.448 93.265 C 44.15 94.44 51.73 94.44 56.66 93.228 C 60.891 92.237 64.644 90.879 69.022 88.824 C 72.885 86.989 77.999 83.722 77.999 83.061 C 77.999 82.437 77.594 82.474 76.564 83.208 C 75.755 83.759 72.848 84.199 73.511 83.649 C 73.658 83.539 74.762 82.694 76.012 81.74 C 78.588 79.795 82.23 75.978 82.598 74.84 C 82.966 73.775 82.341 73.225 81.347 73.775 C 80.906 73.996 78.845 75.61 76.785 77.336 C 74.725 79.061 72.701 80.602 72.296 80.822 C 71.892 81.006 72.223 80.602 73.032 79.942 C 76.086 77.446 77.999 75.5 79.324 73.555 C 81.789 69.995 80.28 70.545 75.534 74.987 C 70.015 80.125 65.012 82.878 58.647 84.273 C 54.747 85.117 53.68 85.19 48.933 85.043 C 42.752 84.86 38.19 83.942 33.886 81.997 C 32.414 81.3 30.869 80.749 30.501 80.749 C 30.17 80.749 29.618 80.529 29.36 80.272 C 29.103 80.015 27.741 78.804 26.306 77.629 C 23.032 74.876 23.437 75.28 20.162 71.243 C 17.991 68.6 16.998 66.985 15.784 64.085 C 14.938 62.067 14.165 59.571 14.055 58.616 C 13.944 57.625 13.687 56.745 13.466 56.671 C 12.988 56.488 13.061 53.148 13.65 47.715 C 13.981 44.632 14.275 43.715 16.115 39.897 C 17.403 37.181 18.396 35.603 18.764 35.603 C 19.058 35.603 19.721 34.906 20.236 34.098 C 22.37 30.648 29.029 24.665 32.377 23.234 C 36.792 21.325 37.896 20.958 37.896 21.509 C 37.896 21.876 38.117 21.986 38.558 21.876 C 40.508 21.325 42.384 20.958 44.629 20.738 C 47.977 20.407 47.866 19.453 44.482 19.453 C 43.525 19.453 43.047 19.306 43.047 18.939 C 43.047 18.425 41.538 17.985 39.588 17.985 C 37.675 17.985 37.234 17.434 38.558 16.737 C 40.766 15.599 44.224 15.049 49.228 15.049 C 53.165 15.049 54.084 14.939 54.084 14.535 C 54.084 14.241 53.864 13.911 53.643 13.837 C 52.76 13.47 54.379 13.581 55.335 13.948 C 55.924 14.168 56.329 14.168 56.476 13.948 C 56.623 13.727 57.138 13.581 57.616 13.581 C 59.014 13.581 58.499 12.736 56.807 12.259 C 56.034 12.039 53.312 11.635 50.773 11.378 C 46.763 10.975 45.622 10.975 41.869 11.488 C 39.478 11.819 36.167 12.516 34.511 12.993 C 31.126 14.021 26.012 16.48 26.049 17.067 C 26.086 17.508 23.988 18.682 23.179 18.719 C 22.885 18.719 22.406 19.049 22.149 19.49 C 21.891 19.894 21.082 20.481 20.346 20.811 C 19.61 21.105 17.513 22.867 15.673 24.702 C 13.834 26.537 12.178 28.005 11.994 27.969 C 11.847 27.895 11.479 28.079 11.185 28.299 C 10.007 29.253 10.817 28.189 12.693 26.17 C 13.834 24.996 15.011 24.041 15.379 24.041 C 15.71 24.041 16.005 23.784 16.005 23.454 C 16.005 22.573 16.704 21.912 19.831 19.527 C 24.283 16.187 27.925 14.351 34.952 11.892 C 35.357 11.745 35.394 11.635 35.026 11.415 C 34.732 11.268 35.799 10.864 37.602 10.424 C 42.348 9.323 53.349 9.433 58.131 10.571 C 64.533 12.149 70.53 14.792 75.534 18.205 C 77.116 19.306 78.478 20.187 78.588 20.187 C 78.661 20.187 78.735 19.967 78.735 19.71 C 78.735 18.903 73.216 14.718 69.979 13.067 C 67.808 11.929 68.985 12.076 71.413 13.213 C 75.461 15.085 77.043 14.645 74.541 12.333 C 72.149 10.057 63.687 6.497 56.476 4.735 C 52.576 3.781 43.893 3.487 40.287 4.184 Z M 68.065 11.745 C 68.36 11.929 68.47 12.112 68.249 12.112 C 68.065 12.112 67.624 11.929 67.33 11.745 C 67.035 11.562 66.962 11.378 67.146 11.378 C 67.366 11.378 67.771 11.562 68.065 11.745 Z M 40.729 20.407 C 40.618 20.518 40.287 20.554 40.03 20.444 C 39.735 20.334 39.846 20.224 40.251 20.224 C 40.655 20.187 40.876 20.297 40.729 20.407 Z\" fill=\"rgb(0,0,0)\"></path><path d=\"M 77.079 25.693 C 76.932 25.913 77.153 26.354 77.558 26.721 C 78.404 27.418 82.414 33.291 82.414 33.804 C 82.414 33.988 78.661 34.135 73.952 34.135 L 65.49 34.135 L 65.49 37.805 L 76.528 37.805 L 76.528 66.434 L 80.207 66.434 L 80.207 37.805 L 82.157 37.805 C 84.07 37.805 84.143 37.842 84.695 39.163 C 84.99 39.934 85.394 40.888 85.505 41.255 C 85.652 41.696 85.873 41.843 86.093 41.622 C 86.425 41.292 86.241 40.154 85.542 38.429 C 85.284 37.842 85.468 37.769 87.786 37.879 L 90.325 37.989 L 91.171 41.659 C 91.87 44.706 92.054 46.467 92.091 51.936 C 92.127 55.57 92.054 58.984 91.87 59.534 C 91.649 60.342 91.723 60.562 92.127 60.562 C 92.495 60.562 92.753 60.048 92.9 59.167 C 93.01 58.433 93.268 57.515 93.489 57.185 C 93.893 56.378 93.93 45.623 93.489 45.366 C 93.342 45.256 93.084 44.375 92.974 43.421 C 92.863 42.467 92.422 40.595 92.017 39.31 C 91.575 38.025 91.244 36.374 91.244 35.64 C 91.244 34.612 91.06 34.208 90.435 33.951 C 89.957 33.731 89.368 33.144 89.11 32.557 C 88.264 30.831 87.602 31.345 88.301 33.181 L 88.669 34.135 L 83.923 34.135 L 83.26 32.777 C 82.451 31.015 79.066 26.537 78.073 25.84 C 77.558 25.509 77.227 25.436 77.079 25.693 Z M 128.772 33.621 C 123.033 35.676 119.979 38.356 117.587 43.311 C 116.631 45.366 116.447 46.174 116.337 49.367 C 116.153 53.551 116.888 56.414 118.912 59.571 C 121.083 62.984 125.351 65.884 129.435 66.765 C 139.7 68.93 149.082 61.81 150.001 51.166 L 150.222 48.449 L 133.923 48.449 L 133.923 55.423 L 137.97 55.423 L 137.97 52.12 L 145.991 52.12 L 145.623 53.478 C 144.409 57.919 140.766 61.553 136.388 62.764 C 134.107 63.388 130.134 63.094 127.926 62.103 C 125.351 60.966 122.444 58.029 121.193 55.313 C 119.758 52.193 119.721 48.156 121.12 45.146 C 122.481 42.173 124.725 39.861 127.595 38.466 C 129.802 37.365 130.391 37.255 133.187 37.255 C 135.836 37.255 136.646 37.401 138.485 38.282 C 139.663 38.833 140.693 39.273 140.73 39.273 C 140.914 39.273 142.753 36.484 142.753 36.19 C 142.753 36.043 141.65 35.419 140.288 34.759 C 137.97 33.658 137.455 33.584 133.555 33.511 C 131.237 33.474 129.067 33.511 128.772 33.621 Z M 192.974 34.355 C 187.787 36.631 184.512 40.228 183.004 45.33 C 179.803 56.304 187.971 67.169 199.413 67.169 C 210.782 67.132 218.803 56.121 215.454 45.109 C 214.093 40.631 211.187 37.181 206.919 35.016 C 204.122 33.621 204.012 33.584 199.634 33.474 C 195.513 33.401 194.998 33.474 192.974 34.355 Z M 204.638 38.319 C 207.323 39.604 209.604 41.843 211.003 44.632 C 211.996 46.578 212.106 47.165 212.106 50.101 C 212.106 52.891 211.959 53.735 211.15 55.423 C 208.905 60.121 205.116 62.764 200.149 63.058 C 193.857 63.425 188.743 59.864 186.83 53.845 C 184.696 47.091 188.78 39.787 196.102 37.401 C 197.978 36.778 202.393 37.255 204.638 38.319 Z M 23.621 50.175 L 23.731 66.251 L 25.681 66.361 L 27.594 66.471 L 27.594 34.135 L 23.547 34.135 Z M 32.451 50.175 L 32.561 66.251 L 34.474 66.361 L 36.424 66.471 L 36.498 53.294 L 36.608 40.118 L 42.09 47.128 C 45.144 50.982 49.78 56.891 52.392 60.268 L 57.212 66.434 L 61.811 66.434 L 61.811 34.135 L 58.131 34.135 L 58.058 47.385 L 57.948 60.672 L 54.636 56.451 C 52.833 54.139 48.124 48.156 44.187 43.201 L 37.05 34.135 L 32.377 34.135 Z M 95.291 50.285 L 95.291 66.434 L 115.527 66.434 L 115.527 62.397 L 98.971 62.397 L 98.971 54.689 L 105.704 54.616 L 112.4 54.506 L 112.4 51.202 L 105.704 51.092 L 98.971 51.019 L 98.971 37.805 L 115.527 37.805 L 115.527 34.135 L 95.291 34.135 Z M 152.687 50.248 L 152.687 66.434 L 156.366 66.434 L 156.366 54.689 L 170.568 54.689 L 173.144 60.452 L 175.719 66.251 L 177.816 66.361 C 179.177 66.434 179.913 66.324 179.913 66.067 C 179.913 65.847 179.472 64.709 178.957 63.572 C 178.405 62.434 177.191 59.718 176.234 57.589 L 174.468 53.698 L 176.16 52.45 C 178.736 50.542 179.729 48.303 179.729 44.412 C 179.729 41.769 179.582 40.999 178.773 39.457 C 177.743 37.438 175.498 35.493 173.364 34.832 C 172.481 34.539 168.508 34.318 162.363 34.245 L 152.687 34.098 Z M 172.408 38.943 C 174.836 40.118 175.866 41.733 175.866 44.302 C 175.866 47.312 174.505 49.294 171.819 50.285 C 171.046 50.542 167.698 50.799 163.467 50.909 L 156.366 51.129 L 156.366 37.695 L 163.467 37.879 C 170.09 38.025 170.715 38.099 172.408 38.943 Z M 231.533 73.041 C 230.907 73.261 229.951 73.959 229.399 74.583 C 228.552 75.574 228.442 76.014 228.589 77.409 C 228.81 79.391 229.914 80.529 232.268 81.116 C 235.543 81.997 237.125 82.768 237.235 83.575 C 237.493 85.447 233.63 86.181 230.87 84.787 C 229.067 83.869 229.067 83.869 228.552 84.97 C 227.964 86.255 227.927 86.145 229.583 86.989 C 230.65 87.539 231.753 87.723 233.777 87.723 C 237.162 87.723 238.192 87.356 239.149 85.814 C 241.062 82.658 239.149 79.905 234.439 79.097 C 232.82 78.84 231.054 77.703 231.054 76.932 C 231.054 76.675 231.349 76.198 231.717 75.904 C 232.783 74.95 234.292 74.803 236.463 75.427 C 238.155 75.941 238.56 75.941 238.817 75.537 C 239.369 74.693 239.185 73.812 238.376 73.408 C 237.346 72.821 232.967 72.601 231.533 73.041 Z M 114.055 80.382 L 114.055 87.723 L 116.631 87.723 L 116.631 83.318 L 119.206 83.318 C 122.186 83.318 123.916 82.731 125.019 81.3 C 126.786 79.061 126.307 75.39 124.026 73.885 C 122.886 73.115 122.334 73.041 118.434 73.041 L 114.055 73.041 Z M 122.591 76.345 C 123.474 77.262 123.658 77.666 123.437 78.473 C 123.033 80.199 122.186 80.712 119.317 80.969 L 116.631 81.226 L 116.631 75.243 L 119.059 75.243 C 121.267 75.243 121.561 75.354 122.591 76.345 Z M 134.144 74.216 C 133.85 74.876 132.451 78.033 131.017 81.263 C 129.582 84.456 128.404 87.209 128.404 87.393 C 128.404 87.576 128.993 87.723 129.729 87.723 C 130.943 87.723 131.053 87.613 131.789 85.888 L 132.562 84.052 L 139.663 84.052 L 140.435 85.888 C 141.171 87.613 141.318 87.723 142.533 87.723 C 143.268 87.723 143.857 87.576 143.857 87.393 C 143.857 87.246 142.422 83.942 140.656 80.052 L 137.492 73.041 L 136.057 73.041 C 134.843 73.041 134.622 73.188 134.144 74.216 Z M 137.418 79.134 C 138.117 80.676 138.706 81.997 138.706 82.07 C 138.706 82.144 137.566 82.217 136.131 82.217 C 134.733 82.217 133.555 82.144 133.555 82.034 C 133.555 81.667 135.873 76.345 136.02 76.345 C 136.094 76.345 136.719 77.593 137.418 79.134 Z M 148.272 80.382 L 148.272 87.723 L 150.848 87.723 L 150.848 83.318 L 154.711 83.318 L 156.182 85.521 C 157.544 87.539 157.764 87.686 159.052 87.723 C 159.788 87.723 160.413 87.539 160.413 87.356 C 160.413 87.136 159.751 86.034 158.905 84.933 L 157.433 82.915 L 158.39 82.181 C 161.149 79.978 161.002 75.537 158.132 73.775 C 157.102 73.151 156.293 73.041 152.614 73.041 L 148.272 73.041 Z M 156.808 76.345 C 157.691 77.262 157.875 77.666 157.654 78.473 C 157.213 80.272 156.293 80.822 153.46 81.043 L 150.848 81.226 L 150.848 75.243 L 153.276 75.243 C 155.483 75.243 155.778 75.354 156.808 76.345 Z M 162.327 74.032 C 162.437 75.023 162.511 75.06 164.939 75.17 L 167.404 75.28 L 167.404 87.723 L 169.979 87.723 L 169.979 75.28 L 172.481 75.17 C 174.873 75.06 174.946 75.023 175.057 74.032 L 175.167 73.041 L 162.216 73.041 Z M 178.81 80.382 L 178.81 87.723 L 181.348 87.723 L 181.459 82.731 L 181.569 77.739 L 185.616 82.731 C 189.038 86.915 189.81 87.723 190.693 87.723 L 191.687 87.723 L 191.687 73.041 L 189.516 73.041 L 189.406 77.96 L 189.295 82.915 L 185.285 77.96 C 181.606 73.408 181.238 73.041 180.06 73.041 L 178.81 73.041 Z M 197.573 80.382 L 197.573 87.723 L 208.611 87.723 L 208.611 85.521 L 200.149 85.521 L 200.149 81.483 L 207.507 81.483 L 207.507 79.281 L 200.149 79.281 L 200.149 75.243 L 208.243 75.243 L 208.243 73.041 L 197.573 73.041 Z M 213.026 80.382 L 213.026 87.723 L 215.602 87.723 L 215.602 83.318 L 219.538 83.318 L 221.084 85.521 C 222.555 87.576 222.739 87.723 224.101 87.723 C 224.873 87.723 225.535 87.649 225.535 87.539 C 225.535 87.466 224.8 86.328 223.88 85.043 L 222.261 82.694 L 223.218 82.181 C 225.903 80.749 225.719 75.5 222.886 73.775 C 221.856 73.151 221.047 73.041 217.368 73.041 L 213.026 73.041 Z M 221.672 75.978 C 222.702 77.042 222.739 78.694 221.783 79.831 C 221.01 80.712 220.569 80.859 218.251 81.043 L 215.602 81.226 L 215.602 75.17 L 218.361 75.317 C 220.164 75.39 221.304 75.647 221.672 75.978 Z\" fill=\"rgb(0,0,0)\"></path></svg>',svgContentId:10360800936,withExternalLayout:true}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:153,intrinsicWidth:211,pixelHeight:153,pixelWidth:211,src:\"https://framerusercontent.com/images/iMYoBIo8DOOl168DaKGnSeLPw.png\"},className:\"framer-9zhfjf\",\"data-framer-name\":\"Frame 1\"}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1scerul\",\"data-framer-name\":\"Everest-Logo\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 216 102\"><path d=\"M 11.146 66.562 C 11.077 61.437 12.019 56.348 13.917 51.588 C 15.715 47.166 18.105 43.009 21.02 39.231 C 23.861 35.485 26.803 31.965 29.845 28.671 C 32.889 25.43 35.606 22.262 37.996 19.164 C 40.17 16.405 41.796 13.253 42.784 9.881 C 43.63 6.733 43.281 3.438 41.736 -0.004 L 11.893 29.798 C 8.562 33.279 5.854 37.307 3.887 41.707 C 1.331 47.194 0.005 53.173 0.001 59.227 C -0.007 82.771 19.038 101.871 42.556 101.905 C 44.585 101.855 46.609 101.68 48.616 101.38 C 42.184 100.633 36.624 99.011 31.935 96.514 C 27.553 94.255 23.605 91.238 20.271 87.603 C 17.419 84.413 15.119 80.769 13.465 76.821 C 12.068 73.573 11.281 70.095 11.144 66.562\" fill=\"rgb(179,209,56)\"></path><path d=\"M 81.224 41.776 C 79.22 37.399 76.516 33.379 73.22 29.873 L 46.967 3.591 C 48.345 6.638 48.787 10.026 48.24 13.325 C 47.614 16.79 46.426 20.129 44.721 23.21 C 42.905 26.625 40.883 29.927 38.666 33.098 C 36.376 36.39 34.183 39.683 32.087 42.977 C 30.11 46.043 28.455 49.305 27.149 52.712 C 25.808 56.376 25.224 60.274 25.432 64.17 C 25.673 67.527 26.482 70.818 27.823 73.904 C 28.949 76.542 30.547 78.952 32.539 81.015 C 34.332 82.909 36.102 84.132 37.85 84.683 C 36.95 84.132 35.952 82.66 34.858 80.265 C 33.567 77.403 32.662 74.382 32.165 71.282 C 31.461 67.501 31.385 63.629 31.938 59.823 C 32.495 55.621 34.003 51.602 36.348 48.073 C 38.739 44.276 42.453 40.929 47.491 38.033 C 44.995 40.333 43.174 43.429 42.027 47.322 C 40.847 51.532 40.367 55.907 40.607 60.273 C 40.778 65.161 41.633 70.002 43.149 74.652 C 44.67 79.387 46.917 83.857 49.81 87.901 C 52.709 91.907 56.4 95.272 60.655 97.787 C 70.298 93.231 77.88 85.215 81.896 75.326 C 84.004 70.249 85.071 64.799 85.034 59.301 C 85.032 53.253 83.733 47.277 81.222 41.776\" fill=\"rgb(99,191,102)\"></path><path d=\"M 104.503 13.53 C 104.48 13.35 104.523 13.167 104.623 13.016 C 105.671 13.055 106.871 13.074 108.222 13.074 C 109.129 13.074 110.7 13.034 112.938 12.953 C 115.175 12.873 116.858 12.833 117.987 12.833 C 118.068 13.416 118.224 14.187 118.456 15.148 C 118.688 16.108 118.824 16.709 118.863 16.949 C 118.708 17.067 118.514 17.121 118.32 17.1 C 118.057 17.1 117.917 17.03 117.896 16.888 C 117.594 15.778 117.171 15.067 116.627 14.754 C 115.933 14.409 115.163 14.249 114.389 14.288 L 112.363 14.288 C 110.629 14.288 109.742 14.419 109.702 14.681 C 109.576 15.522 109.525 16.374 109.55 17.224 L 109.55 22.068 C 109.55 22.188 109.984 22.249 110.851 22.249 L 113.678 22.249 C 113.949 22.246 114.219 22.205 114.479 22.128 C 114.762 22.047 114.945 21.997 115.024 21.977 C 115.104 21.956 115.21 21.826 115.342 21.584 C 115.441 21.418 115.517 21.24 115.568 21.053 C 115.588 20.943 115.659 20.655 115.78 20.191 C 115.8 20.05 115.951 19.979 116.234 19.979 C 116.418 19.961 116.602 20.015 116.747 20.131 L 116.747 25.851 C 116.606 25.95 116.434 25.993 116.263 25.973 C 116.001 25.973 115.84 25.892 115.779 25.73 C 115.638 25.186 115.517 24.778 115.416 24.506 C 115.365 24.334 115.289 24.171 115.189 24.022 C 115.11 23.949 115.024 23.883 114.932 23.825 C 114.671 23.664 113.603 23.583 111.73 23.583 C 110.279 23.583 109.553 23.674 109.553 23.855 L 109.553 28.547 C 109.509 29.473 109.601 30.401 109.825 31.301 C 109.885 31.503 110.571 31.604 111.881 31.604 L 113.332 31.604 C 115.207 31.604 116.477 31.432 117.142 31.09 C 117.558 30.813 117.904 30.445 118.155 30.014 C 118.554 29.404 118.854 28.735 119.047 28.033 C 119.088 27.911 119.229 27.851 119.471 27.851 C 119.737 27.817 120.006 27.882 120.228 28.033 C 120.127 28.295 119.971 28.714 119.759 29.289 C 119.547 29.864 119.381 30.328 119.261 30.682 C 119.139 31.035 119.008 31.443 118.867 31.906 C 118.747 32.281 118.656 32.666 118.596 33.056 C 117.567 33.056 115.945 33.037 113.727 32.998 C 111.51 32.959 109.696 32.94 108.285 32.94 L 104.626 33.031 C 104.545 32.883 104.513 32.713 104.535 32.546 C 104.535 32.283 104.565 32.152 104.626 32.153 C 105.021 32.13 105.412 32.058 105.79 31.941 C 106.304 31.8 106.611 31.638 106.712 31.456 C 106.853 31.214 106.923 30.265 106.923 28.611 L 106.923 17.162 C 106.952 16.29 106.88 15.417 106.71 14.562 C 106.649 14.399 106.352 14.248 105.818 14.107 C 105.43 13.99 105.029 13.919 104.624 13.895 C 104.543 13.895 104.503 13.773 104.503 13.532\" fill=\"rgb(0, 0, 0)\"></path><path d=\"M 120.829 20.281 C 120.808 20.11 120.851 19.938 120.949 19.797 C 123.025 19.897 124.073 19.948 124.093 19.948 L 127.117 19.797 C 127.162 19.96 127.167 20.131 127.131 20.296 C 127.102 20.548 127.056 20.675 126.996 20.675 C 126.008 20.675 125.514 20.846 125.514 21.189 C 125.514 21.231 125.524 21.272 125.543 21.309 L 129.176 29.516 L 132.229 22.554 C 132.366 22.269 132.448 21.961 132.471 21.646 C 132.471 20.999 131.745 20.676 130.295 20.676 C 130.213 20.676 130.173 20.55 130.173 20.298 C 130.151 20.122 130.195 19.945 130.295 19.798 C 130.516 19.819 130.929 19.849 131.535 19.889 C 132.14 19.93 132.684 19.949 133.165 19.948 L 136.188 19.797 C 136.231 19.944 136.251 20.097 136.246 20.251 C 136.246 20.533 136.175 20.675 136.034 20.675 C 135.651 20.695 135.273 20.777 134.915 20.916 C 134.507 21.035 134.17 21.322 133.987 21.706 L 129.179 32.572 C 129.106 32.756 128.98 32.915 128.816 33.026 C 128.676 33.161 128.495 33.246 128.302 33.269 C 128.161 33.269 128.069 33.229 128.029 33.147 C 127.687 32.401 126.936 30.666 125.777 27.941 C 124.617 25.216 123.604 22.996 122.738 21.281 C 122.535 20.878 121.94 20.677 120.953 20.676 C 120.873 20.676 120.833 20.545 120.833 20.283\" fill=\"rgb(0, 0, 0)\"></path><path d=\"M 136.917 26.607 C 136.917 24.488 137.481 22.814 138.61 21.583 C 139.685 20.375 141.236 19.7 142.851 19.736 C 143.68 19.719 144.501 19.9 145.246 20.266 C 145.883 20.574 146.429 21.043 146.828 21.629 C 147.177 22.15 147.446 22.722 147.626 23.324 C 147.791 23.879 147.875 24.455 147.877 25.034 C 147.877 25.437 147.819 25.684 147.703 25.775 C 147.501 25.887 147.27 25.934 147.041 25.911 L 139.487 25.911 C 139.325 25.911 139.245 25.962 139.245 26.062 C 139.242 27.327 139.646 28.558 140.397 29.575 C 141.163 30.644 142.419 31.248 143.731 31.179 C 144.721 31.189 145.695 30.933 146.552 30.437 C 146.738 30.326 146.901 30.221 147.039 30.119 L 147.246 29.968 C 147.362 29.968 147.42 30.099 147.42 30.362 C 147.41 30.556 147.349 30.744 147.242 30.906 C 146.776 31.535 146.18 32.056 145.496 32.435 C 144.733 32.887 143.863 33.122 142.977 33.116 C 141.347 33.129 139.79 32.439 138.704 31.223 C 137.522 29.981 136.881 28.321 136.921 26.606 M 139.308 24.43 C 139.308 24.572 139.366 24.641 139.489 24.641 L 145.398 24.641 C 145.498 24.641 145.549 24.542 145.549 24.34 C 145.494 23.535 145.21 22.763 144.73 22.115 C 144.282 21.333 143.448 20.853 142.548 20.858 C 141.557 20.825 140.63 21.343 140.139 22.205 C 139.67 22.86 139.383 23.628 139.308 24.43\" fill=\"rgb(0, 0, 0)\"></path><path d=\"M 149.798 32.524 C 149.798 32.272 149.838 32.146 149.918 32.146 C 150.282 32.125 150.643 32.058 150.991 31.948 C 151.465 31.817 151.722 31.681 151.762 31.54 C 151.916 30.845 151.987 30.134 151.974 29.421 L 151.974 23.7 C 152.034 23.123 151.884 22.543 151.551 22.068 C 151.358 21.832 151.101 21.659 150.81 21.569 C 150.576 21.488 150.331 21.442 150.084 21.433 C 149.893 21.433 149.797 21.414 149.797 21.378 C 149.797 20.948 149.856 20.724 149.978 20.705 C 151.386 20.506 152.78 20.214 154.151 19.831 C 154.182 19.83 154.212 19.824 154.242 19.815 L 154.3 19.798 C 154.381 19.798 154.431 19.884 154.451 20.055 C 154.472 20.18 154.472 20.308 154.451 20.434 L 154.27 21.949 C 154.678 21.358 155.184 20.841 155.766 20.42 C 156.302 19.983 156.966 19.733 157.657 19.709 C 158.846 19.709 159.632 20.031 160.015 20.675 C 160.055 21.189 159.939 21.704 159.683 22.153 C 159.507 22.435 159.2 22.609 158.868 22.615 C 158.475 22.601 158.11 22.412 157.87 22.101 C 157.554 21.753 157.099 21.564 156.63 21.587 C 155.978 21.602 155.372 21.928 155 22.464 C 154.562 22.981 154.316 23.633 154.304 24.311 L 154.304 28.851 C 154.278 29.756 154.359 30.66 154.546 31.545 C 154.585 31.687 154.852 31.823 155.348 31.953 C 155.687 32.057 156.038 32.124 156.392 32.15 C 156.45 32.15 156.491 32.271 156.512 32.513 C 156.538 32.685 156.528 32.86 156.482 33.028 C 154.465 32.928 153.377 32.877 153.216 32.877 C 153.095 32.877 151.996 32.927 149.92 33.028 C 149.821 32.882 149.778 32.704 149.8 32.529\" fill=\"rgb(0, 0, 0)\"></path><path d=\"M 161.409 26.607 C 161.409 24.488 161.974 22.814 163.103 21.583 C 164.178 20.375 165.728 19.7 167.344 19.736 C 168.173 19.719 168.994 19.9 169.738 20.266 C 170.376 20.574 170.921 21.043 171.321 21.629 C 171.67 22.15 171.939 22.722 172.118 23.324 C 172.283 23.879 172.368 24.455 172.37 25.034 C 172.37 25.437 172.312 25.684 172.195 25.775 C 171.994 25.887 171.763 25.934 171.534 25.911 L 163.98 25.911 C 163.818 25.911 163.737 25.962 163.737 26.062 C 163.735 27.327 164.139 28.558 164.89 29.575 C 165.655 30.644 166.912 31.248 168.224 31.179 C 169.213 31.189 170.187 30.933 171.044 30.437 C 171.23 30.326 171.393 30.221 171.531 30.119 L 171.738 29.968 C 171.854 29.968 171.913 30.099 171.913 30.362 C 171.903 30.556 171.841 30.744 171.735 30.906 C 171.268 31.535 170.673 32.056 169.988 32.435 C 169.226 32.887 168.355 33.122 167.469 33.116 C 165.84 33.129 164.283 32.439 163.196 31.223 C 162.015 29.981 161.373 28.321 161.413 26.606 M 163.798 24.43 C 163.798 24.572 163.856 24.641 163.98 24.641 L 169.89 24.641 C 169.991 24.641 170.041 24.542 170.041 24.34 C 169.986 23.535 169.702 22.763 169.223 22.115 C 168.775 21.333 167.941 20.853 167.04 20.858 C 166.05 20.825 165.122 21.343 164.631 22.205 C 164.161 22.86 163.874 23.628 163.798 24.43\" fill=\"rgb(0, 0, 0)\"></path><path d=\"M 174.531 29.543 C 174.633 29.45 174.759 29.387 174.894 29.362 C 175.197 29.362 175.358 29.422 175.378 29.543 C 175.556 30.24 175.953 30.862 176.512 31.314 C 177.067 31.856 177.808 32.165 178.584 32.177 C 179.16 32.2 179.724 32.011 180.171 31.647 C 180.599 31.258 180.827 30.695 180.79 30.118 C 180.793 29.79 180.726 29.465 180.593 29.165 C 180.449 28.855 180.231 28.584 179.959 28.377 C 179.7 28.168 179.427 27.976 179.144 27.802 C 178.891 27.651 178.533 27.454 178.07 27.212 C 177.606 26.969 177.263 26.778 177.042 26.637 C 175.469 25.729 174.683 24.649 174.683 23.398 C 174.663 22.349 175.154 21.356 175.999 20.735 C 176.873 20.049 177.957 19.686 179.067 19.706 C 179.631 19.717 180.192 19.773 180.746 19.873 C 181.421 19.983 181.889 20.059 182.152 20.099 C 182.364 21.116 182.485 22.15 182.515 23.188 C 182.515 23.289 182.383 23.339 182.122 23.339 C 181.839 23.339 181.689 23.268 181.668 23.127 C 181.545 22.52 181.245 21.962 180.807 21.524 C 180.401 21.05 179.812 20.774 179.189 20.766 C 177.738 20.766 177.012 21.362 177.012 22.552 C 177.007 22.825 177.047 23.096 177.132 23.355 C 177.23 23.613 177.391 23.842 177.601 24.021 C 177.834 24.233 178.01 24.384 178.13 24.475 C 178.388 24.65 178.656 24.812 178.931 24.96 C 179.344 25.193 179.6 25.339 179.697 25.398 C 179.775 25.437 180.004 25.573 180.384 25.806 C 180.765 26.039 181.033 26.205 181.189 26.305 C 181.344 26.406 181.573 26.578 181.876 26.82 C 182.123 27.007 182.345 27.226 182.535 27.471 C 182.691 27.699 182.823 27.942 182.929 28.197 C 183.054 28.479 183.119 28.783 183.12 29.09 C 183.139 30.238 182.642 31.333 181.765 32.073 C 180.893 32.858 179.757 33.285 178.584 33.268 C 178.195 33.271 177.806 33.245 177.42 33.193 C 176.997 33.128 176.578 33.042 176.165 32.936 C 175.681 32.815 175.308 32.734 175.047 32.693 C 174.884 32.2 174.767 31.692 174.697 31.178 C 174.601 30.639 174.545 30.093 174.531 29.546\" fill=\"rgb(0, 0, 0)\"></path><path d=\"M 184.723 21.029 C 184.723 20.919 184.733 20.855 184.753 20.836 C 185.498 20.435 186.148 19.878 186.658 19.204 C 186.895 18.915 187.112 18.611 187.308 18.294 C 187.52 17.954 187.696 17.661 187.837 17.415 C 187.918 17.287 187.989 17.153 188.049 17.014 C 188.654 17.014 188.956 17.067 188.956 17.172 L 188.956 20.283 C 189.48 20.283 190.276 20.288 191.343 20.297 C 192.411 20.306 192.975 20.311 193.037 20.31 C 193.105 20.302 193.173 20.326 193.221 20.375 C 193.268 20.425 193.29 20.494 193.279 20.561 C 193.268 20.933 193.164 21.295 192.976 21.616 L 188.956 21.616 L 188.956 29.118 C 188.92 29.825 189.14 30.521 189.576 31.079 C 189.973 31.561 190.57 31.832 191.194 31.814 C 191.86 31.795 192.509 31.593 193.068 31.231 C 193.129 31.189 193.219 31.276 193.34 31.49 C 193.407 31.594 193.458 31.707 193.491 31.826 C 193.491 31.993 193.028 32.289 192.1 32.714 C 191.494 32.997 190.834 33.144 190.165 33.145 C 189.223 33.171 188.311 32.81 187.641 32.146 C 186.926 31.378 186.56 30.348 186.627 29.3 L 186.627 21.613 L 184.873 21.613 C 184.773 21.613 184.723 21.419 184.723 21.03\" fill=\"rgb(0, 0, 0)\"></path><path d=\"M 104.307 41.507 C 104.284 41.328 104.325 41.146 104.423 40.995 L 108.052 41.053 C 108.657 41.053 109.372 41.034 110.2 40.995 C 111.027 40.956 111.732 40.936 112.316 40.936 C 112.981 40.939 113.642 41.041 114.277 41.238 C 114.956 41.45 115.601 41.756 116.194 42.146 C 116.841 42.581 117.364 43.175 117.714 43.872 C 118.416 45.27 118.496 46.9 117.934 48.36 C 117.672 49.062 117.31 49.722 116.858 50.319 C 116.351 50.979 115.701 51.515 114.955 51.885 C 114.128 52.303 113.212 52.515 112.286 52.502 C 111.157 52.502 110.381 52.224 109.957 51.669 C 109.825 51.467 109.791 51.216 109.866 50.986 C 109.886 50.907 109.916 50.878 109.957 50.897 C 110.607 51.127 111.293 51.24 111.982 51.231 C 112.998 51.228 113.956 50.759 114.583 49.959 C 115.306 49.119 115.694 48.041 115.672 46.932 C 115.737 45.725 115.407 44.53 114.734 43.527 C 114.033 42.654 112.947 42.184 111.832 42.271 C 111.12 42.25 110.408 42.321 109.715 42.483 C 109.607 42.511 109.524 42.599 109.503 42.709 C 109.44 43.013 109.405 43.322 109.397 43.632 C 109.367 44.117 109.352 44.844 109.352 45.813 L 109.352 56.615 C 109.3 57.5 109.381 58.388 109.594 59.248 C 109.695 59.511 110.053 59.723 110.668 59.884 C 111.096 60.014 111.537 60.095 111.983 60.126 C 112.063 60.126 112.105 60.268 112.105 60.55 C 112.108 60.704 112.088 60.857 112.043 61.004 C 110.028 60.904 108.718 60.853 108.113 60.853 L 104.424 61.004 C 104.34 60.836 104.309 60.646 104.333 60.46 C 104.333 60.197 104.364 60.066 104.424 60.066 C 104.823 60.049 105.219 59.988 105.604 59.884 C 106.109 59.763 106.411 59.612 106.511 59.43 C 106.652 59.188 106.723 58.24 106.723 56.586 L 106.723 45.139 C 106.752 44.267 106.681 43.393 106.511 42.537 C 106.451 42.375 106.154 42.223 105.619 42.082 C 105.23 41.965 104.829 41.894 104.423 41.869 C 104.343 41.869 104.303 41.747 104.303 41.506\" fill=\"rgb(0, 0, 0)\"></path><path d=\"M 120.694 54.584 C 120.694 52.465 121.258 50.791 122.388 49.56 C 123.463 48.352 125.013 47.677 126.628 47.713 C 127.457 47.696 128.279 47.877 129.023 48.243 C 129.66 48.551 130.206 49.021 130.604 49.606 C 130.954 50.128 131.222 50.699 131.402 51.301 C 131.567 51.856 131.651 52.432 131.653 53.011 C 131.653 53.415 131.595 53.662 131.479 53.752 C 131.277 53.864 131.047 53.911 130.817 53.889 L 123.264 53.889 C 123.103 53.889 123.022 53.939 123.022 54.04 C 123.02 55.304 123.424 56.535 124.174 57.552 C 124.94 58.621 126.197 59.225 127.509 59.156 C 128.498 59.166 129.472 58.91 130.329 58.415 C 130.515 58.303 130.678 58.198 130.816 58.096 L 131.023 57.945 C 131.139 57.945 131.198 58.076 131.198 58.339 C 131.188 58.533 131.126 58.721 131.019 58.883 C 130.553 59.512 129.958 60.033 129.273 60.412 C 128.511 60.864 127.64 61.099 126.754 61.093 C 125.124 61.106 123.568 60.417 122.481 59.2 C 121.3 57.958 120.658 56.298 120.698 54.583 M 123.085 52.405 C 123.085 52.546 123.143 52.616 123.267 52.616 L 129.177 52.616 C 129.278 52.616 129.329 52.517 129.329 52.314 C 129.273 51.51 128.989 50.738 128.51 50.09 C 128.062 49.307 127.228 48.827 126.327 48.833 C 125.337 48.799 124.409 49.318 123.918 50.18 C 123.447 50.835 123.159 51.604 123.082 52.407\" fill=\"rgb(0, 0, 0)\"></path><path d=\"M 133.696 54.372 C 133.655 52.599 134.334 50.884 135.577 49.619 C 136.821 48.374 138.511 47.677 140.27 47.683 C 142.03 47.688 143.714 48.396 144.951 49.65 C 146.216 50.891 146.918 52.597 146.893 54.371 C 146.923 56.151 146.237 57.869 144.988 59.137 C 143.79 60.429 142.099 61.15 140.338 61.119 C 138.565 61.144 136.863 60.425 135.643 59.137 C 134.371 57.881 133.667 56.159 133.694 54.371 M 136.325 53.925 C 136.284 55.422 136.734 56.891 137.606 58.107 C 138.255 59.152 139.381 59.805 140.609 59.849 C 141.683 59.846 142.678 59.282 143.234 58.361 C 143.937 57.305 144.296 56.056 144.26 54.787 C 144.3 53.306 143.843 51.855 142.962 50.664 C 142.297 49.633 141.17 48.994 139.945 48.952 C 138.884 48.949 137.896 49.495 137.334 50.396 C 136.637 51.437 136.283 52.671 136.323 53.925\" fill=\"rgb(0, 0, 0)\"></path><path d=\"M 148.512 67.254 C 148.512 67 148.552 66.874 148.632 66.874 C 148.997 66.853 149.358 66.787 149.707 66.677 C 150.18 66.546 150.437 66.41 150.477 66.269 C 150.63 65.574 150.701 64.862 150.689 64.15 L 150.689 51.649 C 150.749 51.072 150.599 50.493 150.266 50.017 C 150.074 49.781 149.816 49.607 149.525 49.518 C 149.291 49.437 149.046 49.392 148.799 49.381 C 148.608 49.381 148.512 49.355 148.512 49.303 C 148.512 48.675 148.572 48.348 148.694 48.322 C 150.828 48.098 152.219 47.916 152.866 47.777 C 152.897 47.776 152.927 47.771 152.957 47.763 L 153.015 47.747 C 153.074 47.747 153.106 47.785 153.106 47.864 C 153.102 47.976 153.092 48.089 153.075 48.2 C 153.063 48.283 153.052 48.366 153.045 48.45 L 153.045 48.617 C 153.492 48.376 153.963 48.182 154.451 48.04 C 154.991 47.847 155.557 47.739 156.13 47.719 C 157.869 47.63 159.551 48.35 160.688 49.671 C 161.72 50.814 162.303 52.293 162.329 53.834 C 162.341 55.74 161.61 57.575 160.291 58.95 C 159.146 60.323 157.461 61.13 155.674 61.159 C 155.372 61.159 155.105 61.149 154.873 61.129 C 154.663 61.112 154.456 61.077 154.253 61.023 C 154.071 60.972 153.93 60.927 153.829 60.886 C 153.729 60.846 153.596 60.79 153.436 60.72 C 153.276 60.649 153.174 60.603 153.134 60.583 C 153.049 60.697 153.007 60.836 153.013 60.977 L 153.013 63.58 C 152.987 64.485 153.068 65.389 153.255 66.274 C 153.293 66.416 153.556 66.552 154.042 66.682 C 154.376 66.787 154.72 66.853 155.069 66.879 C 155.13 66.879 155.17 67.006 155.19 67.259 C 155.217 67.425 155.207 67.596 155.16 67.758 C 153.144 67.656 152.066 67.606 151.925 67.607 C 151.804 67.607 150.705 67.657 148.629 67.758 C 148.53 67.611 148.487 67.434 148.508 67.259 M 153.018 57.944 C 153.04 58.528 153.375 59.055 153.894 59.321 C 154.461 59.69 155.123 59.885 155.799 59.882 C 156.966 59.896 158.05 59.284 158.642 58.278 C 159.347 57.21 159.716 55.955 159.7 54.675 C 159.781 53.215 159.3 51.78 158.355 50.665 C 157.557 49.732 156.391 49.195 155.164 49.196 C 154.607 49.174 154.06 49.351 153.622 49.697 C 153.207 50.055 152.984 50.587 153.018 51.135 Z\" fill=\"rgb(0, 0, 0)\"></path><path d=\"M 163.903 60.503 C 163.903 60.251 163.943 60.125 164.023 60.125 C 164.388 60.104 164.749 60.038 165.097 59.928 C 165.571 59.797 165.828 59.661 165.868 59.52 C 166.021 58.824 166.092 58.113 166.08 57.401 L 166.08 44.295 C 166.083 43.645 166.022 42.996 165.898 42.358 C 165.798 42.035 165.284 41.873 164.357 41.873 L 164.084 41.873 C 163.964 41.873 163.903 41.756 163.903 41.516 C 163.903 41.169 163.964 40.995 164.084 40.995 C 164.69 40.938 165.25 40.862 165.763 40.767 C 166.172 40.696 166.576 40.601 166.973 40.479 C 167.264 40.383 167.512 40.293 167.714 40.208 C 167.869 40.144 168.02 40.072 168.168 39.993 L 168.288 39.906 L 168.347 39.906 C 168.449 39.92 168.539 39.982 168.589 40.073 C 168.661 40.167 168.712 40.275 168.74 40.39 C 168.489 41.245 168.377 42.134 168.407 43.025 L 168.407 56.827 C 168.381 57.731 168.462 58.635 168.649 59.52 C 168.688 59.662 168.95 59.798 169.435 59.928 C 169.769 60.033 170.114 60.099 170.463 60.126 C 170.521 60.126 170.564 60.246 170.585 60.488 C 170.593 60.559 170.598 60.63 170.599 60.7 C 170.604 60.803 170.589 60.906 170.554 61.004 C 168.538 60.903 167.459 60.852 167.318 60.852 C 167.198 60.852 166.099 60.903 164.023 61.004 C 163.924 60.857 163.881 60.68 163.902 60.504\" fill=\"rgb(0, 0, 0)\"></path><path d=\"M 172.158 54.584 C 172.158 52.465 172.723 50.791 173.852 49.56 C 174.927 48.352 176.478 47.677 178.093 47.713 C 178.922 47.696 179.744 47.878 180.488 48.243 C 181.125 48.551 181.67 49.021 182.069 49.606 C 182.418 50.128 182.687 50.699 182.867 51.301 C 183.032 51.856 183.117 52.432 183.118 53.011 C 183.118 53.415 183.06 53.662 182.944 53.752 C 182.743 53.864 182.512 53.911 182.283 53.889 L 174.726 53.889 C 174.564 53.889 174.484 53.939 174.484 54.04 C 174.481 55.304 174.885 56.535 175.635 57.552 C 176.401 58.621 177.658 59.225 178.97 59.156 C 179.702 59.156 180.429 59.018 181.11 58.748 C 181.344 58.653 181.571 58.541 181.789 58.415 C 181.977 58.304 182.139 58.198 182.277 58.097 L 182.484 57.945 C 182.6 57.945 182.659 58.077 182.659 58.339 C 182.649 58.533 182.589 58.721 182.484 58.884 C 182.017 59.512 181.422 60.034 180.737 60.413 C 179.975 60.864 179.104 61.1 178.219 61.093 C 176.589 61.107 175.033 60.417 173.947 59.201 C 172.765 57.959 172.123 56.299 172.162 54.584 M 174.55 52.405 C 174.55 52.547 174.608 52.617 174.731 52.617 L 180.642 52.617 C 180.743 52.617 180.793 52.517 180.793 52.315 C 180.738 51.511 180.455 50.739 179.977 50.09 C 179.529 49.308 178.695 48.828 177.795 48.834 C 176.804 48.8 175.877 49.319 175.386 50.181 C 174.914 50.835 174.624 51.603 174.547 52.407\" fill=\"rgb(0, 0, 0)\"></path><path d=\"M 104.207 83.333 C 104.207 83.213 104.369 83.152 104.691 83.152 C 104.972 83.12 105.252 83.22 105.448 83.423 C 106.133 86.32 107.806 87.768 110.467 87.768 C 111.406 87.793 112.321 87.471 113.038 86.863 C 113.763 86.215 114.152 85.27 114.096 84.299 C 114.1 83.919 114.038 83.542 113.914 83.183 C 113.816 82.89 113.689 82.607 113.536 82.338 C 113.35 82.059 113.113 81.819 112.837 81.629 C 112.504 81.377 112.247 81.191 112.064 81.071 C 111.881 80.95 111.548 80.759 111.064 80.498 C 110.579 80.236 110.247 80.055 110.069 79.955 C 109.493 79.612 109.091 79.371 108.863 79.23 C 108.635 79.089 108.258 78.843 107.732 78.491 C 107.312 78.228 106.926 77.914 106.584 77.556 C 106.347 77.284 106.069 76.952 105.751 76.56 C 105.446 76.192 105.218 75.766 105.081 75.308 C 104.951 74.857 104.886 74.39 104.888 73.921 C 104.853 72.438 105.501 71.021 106.646 70.08 C 107.777 69.093 109.232 68.558 110.732 68.576 C 111.152 68.574 111.571 68.6 111.988 68.654 C 112.314 68.693 112.638 68.75 112.958 68.825 C 113.21 68.887 113.573 68.984 114.048 69.116 C 114.523 69.249 114.941 69.357 115.304 69.442 C 115.578 70.866 115.7 72.316 115.667 73.767 C 115.667 73.908 115.566 73.979 115.364 73.979 C 114.881 73.979 114.618 73.878 114.577 73.677 C 114.433 72.702 113.982 71.798 113.291 71.097 C 112.596 70.292 111.581 69.834 110.518 69.846 C 109.306 69.846 108.452 70.147 107.956 70.751 C 107.451 71.383 107.188 72.175 107.213 72.984 C 107.212 73.361 107.284 73.734 107.425 74.084 C 107.542 74.387 107.684 74.679 107.85 74.958 C 108.063 75.265 108.323 75.535 108.622 75.759 C 108.996 76.06 109.269 76.272 109.441 76.392 C 109.613 76.512 109.956 76.734 110.471 77.055 C 110.987 77.377 111.314 77.58 111.455 77.66 C 111.557 77.72 111.91 77.936 112.514 78.308 C 113.119 78.68 113.534 78.941 113.759 79.093 C 113.981 79.244 114.329 79.516 114.803 79.909 C 115.19 80.21 115.536 80.56 115.832 80.95 C 116.073 81.305 116.277 81.684 116.439 82.081 C 116.628 82.524 116.726 83.001 116.726 83.483 C 116.756 85.037 116.056 86.515 114.836 87.475 C 113.594 88.511 112.022 89.065 110.406 89.038 C 109.89 89.036 109.375 89 108.864 88.931 C 108.321 88.858 107.867 88.785 107.504 88.713 C 107.141 88.641 106.682 88.538 106.128 88.403 C 105.574 88.268 105.186 88.18 104.963 88.139 C 104.59 86.558 104.337 84.952 104.206 83.333\" fill=\"rgb(0, 0, 0)\"></path><path d=\"M 119.009 82.199 C 118.968 80.425 119.646 78.71 120.889 77.445 C 122.133 76.2 123.823 75.503 125.582 75.509 C 127.342 75.515 129.026 76.222 130.263 77.476 C 131.528 78.717 132.23 80.423 132.205 82.197 C 132.235 83.977 131.549 85.695 130.3 86.963 C 129.102 88.255 127.411 88.976 125.65 88.945 C 123.877 88.97 122.175 88.252 120.955 86.963 C 119.683 85.708 118.979 83.985 119.007 82.197 M 121.637 81.751 C 121.596 83.248 122.046 84.717 122.918 85.934 C 123.567 86.978 124.693 87.631 125.922 87.675 C 126.996 87.672 127.991 87.108 128.547 86.187 C 129.25 85.131 129.609 83.882 129.574 82.614 C 129.614 81.133 129.157 79.681 128.275 78.49 C 127.61 77.459 126.483 76.82 125.258 76.778 C 124.197 76.775 123.209 77.321 122.647 78.222 C 121.95 79.263 121.596 80.498 121.636 81.751\" fill=\"rgb(0, 0, 0)\"></path><path d=\"M 133.763 88.329 C 133.763 88.077 133.804 87.951 133.884 87.951 C 134.249 87.93 134.61 87.864 134.958 87.754 C 135.432 87.623 135.689 87.487 135.729 87.346 C 135.882 86.65 135.953 85.939 135.94 85.227 L 135.94 72.122 C 135.944 71.471 135.883 70.822 135.759 70.184 C 135.659 69.861 135.145 69.7 134.218 69.699 L 133.945 69.699 C 133.825 69.699 133.764 69.583 133.764 69.342 C 133.764 68.995 133.824 68.821 133.945 68.821 C 134.551 68.764 135.11 68.688 135.624 68.593 C 136.033 68.523 136.437 68.427 136.834 68.306 C 137.125 68.209 137.372 68.119 137.575 68.034 C 137.73 67.97 137.881 67.899 138.029 67.819 L 138.149 67.732 L 138.207 67.732 C 138.31 67.746 138.4 67.808 138.45 67.899 C 138.522 67.993 138.573 68.101 138.6 68.216 C 138.35 69.071 138.238 69.961 138.268 70.851 L 138.268 84.653 C 138.242 85.557 138.323 86.461 138.51 87.346 C 138.549 87.488 138.811 87.624 139.296 87.754 C 139.63 87.859 139.975 87.925 140.324 87.952 C 140.382 87.952 140.424 88.073 140.445 88.315 C 140.454 88.385 140.459 88.456 140.46 88.527 C 140.465 88.63 140.449 88.733 140.415 88.83 C 138.399 88.729 137.32 88.679 137.179 88.678 C 137.058 88.678 135.96 88.729 133.883 88.83 C 133.784 88.683 133.742 88.506 133.763 88.33\" fill=\"rgb(0, 0, 0)\"></path><path d=\"M 141.807 77.23 C 141.807 76.71 141.865 76.439 141.988 76.414 C 143.392 76.233 144.785 75.971 146.16 75.628 C 146.191 75.626 146.221 75.621 146.251 75.612 L 146.309 75.598 C 146.39 75.598 146.44 75.683 146.461 75.855 C 146.481 75.98 146.481 76.108 146.461 76.233 C 146.358 76.975 146.297 77.723 146.28 78.472 L 146.28 82.56 C 146.28 84.114 146.511 85.259 146.974 85.995 C 147.468 86.751 148.336 87.176 149.236 87.102 C 149.876 87.087 150.488 86.836 150.953 86.396 C 151.496 85.925 151.768 85.517 151.768 85.178 L 151.768 79.549 C 151.828 78.975 151.68 78.399 151.351 77.925 C 151.162 77.691 150.908 77.518 150.621 77.428 C 150.39 77.348 150.149 77.303 149.905 77.293 C 149.717 77.293 149.622 77.271 149.622 77.227 C 149.622 76.707 149.674 76.436 149.779 76.411 C 151.192 76.231 152.593 75.969 153.975 75.625 C 154.006 75.623 154.037 75.618 154.067 75.609 L 154.125 75.595 C 154.205 75.595 154.257 75.68 154.276 75.852 C 154.297 75.977 154.297 76.105 154.276 76.23 C 154.175 76.952 154.114 77.68 154.095 78.409 L 154.095 84.464 C 154.086 85.236 154.155 86.007 154.303 86.764 C 154.356 86.919 154.476 87.042 154.63 87.097 C 154.81 87.178 155.001 87.229 155.197 87.248 C 155.395 87.268 155.594 87.279 155.792 87.278 L 156.061 87.304 C 156.119 87.32 156.151 87.412 156.151 87.577 C 156.14 87.66 156.115 87.74 156.075 87.813 C 156.025 87.922 155.969 87.975 155.908 87.975 C 155.569 88.004 155.231 88.052 154.896 88.118 C 154.523 88.189 154.176 88.273 153.854 88.368 C 153.532 88.464 153.23 88.559 152.948 88.653 C 152.666 88.748 152.444 88.831 152.283 88.903 L 152.01 88.974 C 151.847 88.974 151.766 88.812 151.766 88.489 L 151.766 86.951 L 151.708 86.8 C 150.381 88.233 149.064 88.948 147.758 88.948 C 147.071 88.967 146.396 88.772 145.824 88.39 C 145.292 88.026 144.879 87.512 144.637 86.913 C 144.396 86.342 144.217 85.745 144.105 85.135 C 144.001 84.543 143.95 83.943 143.952 83.342 L 143.952 79.549 C 144.012 78.975 143.864 78.398 143.534 77.925 C 143.345 77.69 143.091 77.517 142.803 77.428 C 142.573 77.348 142.332 77.303 142.088 77.293 C 141.899 77.293 141.805 77.271 141.805 77.227\" fill=\"rgb(0, 0, 0)\"></path><path d=\"M 157.046 76.833 C 157.046 76.722 157.056 76.658 157.076 76.639 C 157.821 76.239 158.471 75.682 158.981 75.007 C 159.218 74.719 159.436 74.414 159.632 74.097 C 159.843 73.758 160.02 73.465 160.161 73.218 C 160.242 73.09 160.313 72.956 160.373 72.818 C 160.977 72.818 161.28 72.869 161.28 72.975 L 161.28 76.086 C 161.804 76.086 162.599 76.091 163.667 76.1 C 164.736 76.109 165.3 76.114 165.361 76.114 C 165.429 76.105 165.497 76.129 165.544 76.179 C 165.592 76.228 165.613 76.297 165.603 76.365 C 165.592 76.736 165.488 77.099 165.3 77.419 L 161.279 77.419 L 161.279 84.921 C 161.242 85.628 161.462 86.324 161.898 86.882 C 162.294 87.364 162.892 87.635 163.516 87.617 C 164.182 87.598 164.83 87.397 165.39 87.034 C 165.45 86.993 165.541 87.079 165.663 87.293 C 165.73 87.397 165.781 87.51 165.813 87.63 C 165.813 87.796 165.35 88.092 164.422 88.517 C 163.816 88.8 163.155 88.947 162.487 88.948 C 161.544 88.974 160.632 88.613 159.962 87.95 C 159.248 87.181 158.881 86.151 158.949 85.104 L 158.949 77.416 L 157.195 77.416 C 157.094 77.416 157.044 77.222 157.044 76.833\" fill=\"rgb(0, 0, 0)\"></path><path d=\"M 166.994 88.329 C 166.994 88.077 167.035 87.951 167.116 87.951 C 167.48 87.93 167.84 87.864 168.188 87.755 C 168.663 87.624 168.92 87.488 168.96 87.347 C 169.112 86.655 169.184 85.948 169.172 85.239 L 169.172 79.551 C 169.232 78.976 169.081 78.398 168.748 77.925 C 168.555 77.691 168.298 77.518 168.007 77.428 C 167.773 77.349 167.528 77.303 167.281 77.294 C 167.089 77.294 166.994 77.271 166.994 77.229 C 166.994 76.708 167.055 76.436 167.176 76.413 C 168.581 76.234 169.974 75.971 171.348 75.626 L 171.406 75.595 L 171.498 75.595 C 171.578 75.595 171.629 75.682 171.648 75.852 C 171.669 75.978 171.669 76.105 171.648 76.231 C 171.554 76.954 171.503 77.682 171.498 78.411 L 171.498 84.647 C 171.472 85.551 171.553 86.455 171.739 87.341 C 171.778 87.482 172.04 87.618 172.526 87.749 C 172.86 87.853 173.205 87.92 173.554 87.946 C 173.614 87.946 173.654 88.067 173.674 88.309 C 173.684 88.379 173.689 88.45 173.69 88.521 C 173.695 88.623 173.679 88.726 173.645 88.823 C 171.629 88.722 170.551 88.672 170.409 88.672 C 170.267 88.672 169.169 88.722 167.114 88.823 C 167.014 88.677 166.971 88.499 166.992 88.324 M 169.034 71.856 C 168.51 71.343 168.422 70.53 168.824 69.916 C 169.227 69.302 170.007 69.059 170.686 69.337 C 171.366 69.614 171.753 70.334 171.612 71.055 C 171.471 71.775 170.84 72.295 170.107 72.295 C 169.704 72.303 169.316 72.144 169.034 71.856\" fill=\"rgb(0, 0, 0)\"></path><path d=\"M 175.28 82.199 C 175.238 80.425 175.916 78.71 177.16 77.445 C 178.404 76.2 180.093 75.503 181.853 75.509 C 183.612 75.515 185.297 76.222 186.533 77.476 C 187.799 78.717 188.501 80.423 188.475 82.197 C 188.506 83.977 187.82 85.695 186.571 86.963 C 185.373 88.255 183.682 88.976 181.921 88.945 C 180.148 88.97 178.446 88.252 177.226 86.963 C 175.954 85.708 175.25 83.985 175.278 82.197 M 177.908 81.751 C 177.867 83.248 178.317 84.717 179.189 85.934 C 179.838 86.978 180.964 87.631 182.192 87.675 C 183.267 87.672 184.262 87.108 184.817 86.187 C 185.521 85.131 185.88 83.882 185.844 82.614 C 185.884 81.133 185.427 79.681 184.546 78.49 C 183.881 77.459 182.754 76.82 181.528 76.778 C 180.467 76.775 179.48 77.321 178.918 78.222 C 178.22 79.263 177.867 80.498 177.907 81.751\" fill=\"rgb(0, 0, 0)\"></path><path d=\"M 190.457 88.329 C 190.457 88.077 190.498 87.95 190.579 87.95 C 190.943 87.929 191.304 87.863 191.652 87.753 C 192.125 87.622 192.383 87.486 192.423 87.345 C 192.576 86.649 192.647 85.938 192.635 85.226 L 192.635 79.505 C 192.695 78.927 192.544 78.348 192.211 77.873 C 192.019 77.637 191.761 77.464 191.471 77.374 C 191.237 77.293 190.993 77.247 190.745 77.237 C 190.553 77.237 190.458 77.217 190.458 77.179 C 190.458 76.713 190.519 76.47 190.639 76.45 C 192.046 76.265 193.439 75.992 194.812 75.634 C 194.843 75.632 194.873 75.627 194.902 75.618 L 194.961 75.602 C 195.042 75.602 195.092 75.692 195.112 75.869 C 195.133 75.999 195.133 76.132 195.112 76.262 C 195.046 76.655 195.006 77.051 194.99 77.449 C 194.99 77.53 195.011 77.57 195.049 77.57 C 195.07 77.57 195.1 77.549 195.14 77.511 C 195.703 76.965 196.34 76.503 197.034 76.138 C 197.726 75.728 198.512 75.5 199.316 75.478 C 200.727 75.478 201.715 75.983 202.28 76.994 C 202.844 78.004 203.126 79.639 203.127 81.898 L 203.127 84.653 C 203.101 85.557 203.182 86.461 203.368 87.346 C 203.407 87.488 203.669 87.624 204.154 87.754 C 204.488 87.859 204.833 87.926 205.183 87.952 C 205.243 87.952 205.283 88.073 205.303 88.315 C 205.313 88.385 205.318 88.456 205.319 88.527 C 205.323 88.63 205.308 88.733 205.273 88.83 C 203.258 88.729 202.179 88.679 202.038 88.678 C 201.999 88.678 200.941 88.729 198.863 88.83 C 198.764 88.683 198.721 88.506 198.742 88.33 C 198.742 88.078 198.782 87.952 198.863 87.952 C 199.208 87.933 199.549 87.866 199.876 87.754 C 200.309 87.623 200.546 87.487 200.587 87.346 C 200.739 86.651 200.81 85.94 200.798 85.228 L 200.798 82.2 C 200.798 80.323 200.556 79.041 200.073 78.353 C 199.513 77.631 198.624 77.243 197.715 77.324 C 197.031 77.338 196.374 77.589 195.855 78.035 C 195.259 78.509 194.961 78.938 194.962 79.322 L 194.962 84.65 C 194.936 85.554 195.017 86.458 195.204 87.343 C 195.243 87.485 195.505 87.621 195.99 87.751 C 196.324 87.856 196.669 87.922 197.018 87.948 C 197.076 87.948 197.118 88.069 197.139 88.311 C 197.165 88.483 197.154 88.658 197.109 88.826 C 195.093 88.726 194.014 88.675 193.873 88.675 C 193.752 88.675 192.654 88.725 190.578 88.826 C 190.478 88.68 190.435 88.503 190.456 88.327\" fill=\"rgb(0, 0, 0)\"></path><path d=\"M 207.24 85.347 C 207.341 85.253 207.467 85.19 207.603 85.165 C 207.904 85.165 208.066 85.226 208.087 85.347 C 208.264 86.044 208.662 86.665 209.221 87.117 C 209.775 87.66 210.516 87.968 211.291 87.98 C 211.867 88.003 212.432 87.815 212.879 87.45 C 213.307 87.062 213.535 86.499 213.498 85.921 C 213.501 85.593 213.434 85.268 213.301 84.968 C 213.157 84.658 212.939 84.388 212.667 84.18 C 212.408 83.971 212.135 83.78 211.852 83.606 C 211.6 83.454 211.243 83.258 210.779 83.015 C 210.315 82.773 209.972 82.581 209.751 82.44 C 208.178 81.532 207.392 80.453 207.392 79.202 C 207.372 78.152 207.863 77.159 208.708 76.538 C 209.583 75.852 210.666 75.489 211.776 75.509 C 212.339 75.52 212.9 75.576 213.455 75.676 C 214.13 75.787 214.599 75.862 214.861 75.903 C 215.073 76.919 215.195 77.953 215.223 78.992 C 215.223 79.092 215.093 79.143 214.831 79.143 C 214.548 79.143 214.397 79.072 214.377 78.931 C 214.254 78.323 213.953 77.765 213.515 77.327 C 213.109 76.853 212.52 76.577 211.897 76.569 C 210.446 76.569 209.72 77.165 209.72 78.356 C 209.715 78.628 209.756 78.899 209.84 79.158 C 209.938 79.416 210.1 79.645 210.309 79.824 C 210.542 80.036 210.718 80.188 210.838 80.278 C 211.097 80.453 211.364 80.615 211.64 80.763 C 212.053 80.996 212.308 81.142 212.406 81.201 C 212.484 81.24 212.712 81.376 213.092 81.609 C 213.474 81.842 213.742 82.007 213.898 82.108 C 214.054 82.209 214.282 82.381 214.584 82.623 C 214.831 82.81 215.053 83.029 215.243 83.274 C 215.399 83.502 215.531 83.746 215.638 84.001 C 215.762 84.282 215.827 84.586 215.828 84.894 C 215.848 86.041 215.35 87.137 214.473 87.876 C 213.601 88.661 212.465 89.088 211.292 89.072 C 210.902 89.074 210.513 89.048 210.127 88.996 C 209.705 88.931 209.287 88.846 208.873 88.739 C 208.389 88.618 208.017 88.537 207.754 88.496 C 207.592 88.003 207.475 87.496 207.405 86.981 C 207.308 86.442 207.252 85.896 207.238 85.349\" fill=\"rgb(0, 0, 0)\"></path></svg>',svgContentId:12848367791,withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-hbvab2\",\"data-framer-name\":\"Logo-h\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 157 100\"><path d=\"M 95.158 0.154 L 93.784 0.325 C 93.587 0.343 93.393 0.388 93.208 0.459 C 93.133 0.504 92.682 0.587 92.207 0.645 C 91.731 0.702 91.279 0.798 91.199 0.859 C 91.121 0.921 90.732 1.02 90.336 1.077 C 89.94 1.134 89.551 1.229 89.472 1.289 C 89.392 1.348 88.907 1.482 88.391 1.584 C 87.877 1.686 87.395 1.825 87.321 1.895 C 87.216 1.973 87.091 2.018 86.96 2.023 C 86.835 2.025 86.478 2.152 86.161 2.305 C 85.938 2.422 85.704 2.517 85.463 2.589 C 85.337 2.595 84.726 2.85 83.697 3.327 C 83.372 3.479 83.032 3.602 82.942 3.602 C 82.853 3.602 82.778 3.668 82.778 3.746 C 82.778 3.825 82.696 3.889 82.6 3.889 C 82.398 3.889 80.873 4.627 80.762 4.779 C 80.721 4.832 80.514 4.921 80.304 4.973 C 80.091 5.027 79.886 5.154 79.847 5.259 C 79.806 5.362 79.579 5.491 79.344 5.545 C 79.108 5.595 78.88 5.73 78.835 5.845 C 78.782 5.965 78.667 6.045 78.536 6.052 C 78.414 6.052 78.314 6.109 78.314 6.179 C 78.314 6.248 78.12 6.386 77.883 6.484 C 77.645 6.582 77.451 6.72 77.451 6.789 C 77.451 6.861 77.383 6.916 77.298 6.916 C 77.149 6.916 76.05 7.679 75.544 8.13 C 75.405 8.255 75.242 8.359 75.183 8.359 C 75.124 8.361 74.923 8.523 74.737 8.72 C 74.55 8.916 74.323 9.08 74.232 9.084 C 74.143 9.087 73.91 9.28 73.715 9.516 C 73.519 9.75 73.305 9.943 73.237 9.943 C 73.071 9.943 68.093 14.925 68.093 15.089 C 68.093 15.159 67.902 15.375 67.667 15.57 C 67.435 15.762 67.239 15.989 67.235 16.07 C 67.232 16.152 67.051 16.421 66.834 16.671 C 66.108 17.504 65.865 17.811 65.432 18.454 C 65.272 18.697 65.104 18.934 64.927 19.164 C 64.816 19.324 64.72 19.493 64.638 19.67 C 64.52 19.907 64.341 20.152 64.243 20.216 C 64.139 20.287 64.072 20.402 64.061 20.529 C 64.061 20.636 64.011 20.746 63.949 20.773 C 63.887 20.8 63.649 21.146 63.421 21.541 C 63.272 21.816 63.106 22.081 62.923 22.334 C 62.877 22.373 62.645 22.796 62.406 23.271 C 62.17 23.746 61.931 24.168 61.879 24.209 C 61.826 24.25 61.737 24.459 61.683 24.677 C 61.63 24.895 61.532 25.071 61.467 25.071 C 61.403 25.071 61.307 25.263 61.257 25.495 C 61.207 25.727 61.071 25.995 60.959 26.089 C 60.845 26.182 60.752 26.323 60.752 26.402 C 60.752 26.555 60.484 27.193 59.945 28.316 C 59.755 28.714 59.599 29.12 59.599 29.216 C 59.599 29.314 59.549 29.395 59.491 29.395 C 59.43 29.395 59.221 29.734 59.027 30.152 C 58.832 30.568 58.632 30.941 58.581 30.98 C 58.531 31.02 58.411 31.295 58.313 31.593 C 58.217 31.889 58.083 32.132 58.017 32.132 C 57.949 32.132 57.853 32.329 57.801 32.564 C 57.747 32.802 57.656 32.998 57.596 32.998 C 57.535 32.998 57.403 33.273 57.303 33.609 C 57.203 33.946 57.071 34.254 57.012 34.295 C 56.873 34.384 55.282 37.7 55.282 37.895 C 55.282 37.975 55.223 38.041 55.152 38.041 C 55.082 38.041 54.938 38.332 54.834 38.689 C 54.727 39.046 54.597 39.337 54.541 39.337 C 54.486 39.337 54.399 39.532 54.345 39.77 C 54.292 40.007 54.202 40.202 54.149 40.202 C 54.035 40.202 53.266 41.812 53.266 42.048 C 53.266 42.129 53.218 42.216 53.159 42.245 C 53.014 42.307 52.258 43.834 52.258 44.059 C 52.258 44.157 52.201 44.238 52.129 44.238 C 52.058 44.238 51.956 44.414 51.903 44.63 C 51.849 44.848 51.76 45.059 51.707 45.1 C 51.482 45.266 50.818 46.789 50.818 47.132 C 50.818 47.338 50.195 48.763 49.435 50.3 C 48.675 51.839 47.289 54.654 46.356 56.557 C 45.423 58.459 43.129 63.118 41.261 66.909 C 39.391 70.702 37.862 73.859 37.862 73.927 C 37.862 73.993 37.732 74.137 37.575 74.248 C 37.416 74.359 37.33 74.493 37.382 74.545 C 37.575 74.737 64.215 74.654 64.4 74.461 C 64.495 74.361 65.184 73.048 65.929 71.543 C 66.675 70.036 67.33 68.771 67.382 68.732 C 67.433 68.693 67.56 68.4 67.662 68.084 C 67.763 67.766 67.888 67.475 67.938 67.436 C 68.083 67.32 69.246 64.909 69.246 64.721 C 69.246 64.63 69.308 64.554 69.387 64.554 C 69.464 64.554 69.569 64.393 69.619 64.193 C 69.667 63.996 69.767 63.834 69.836 63.834 C 69.908 63.834 69.954 63.784 69.942 63.727 C 69.929 63.666 69.995 63.434 70.084 63.211 C 70.162 63.039 70.219 62.857 70.252 62.671 C 70.252 62.596 70.316 62.536 70.395 62.536 C 70.472 62.536 70.575 62.375 70.627 62.177 C 70.675 61.979 70.77 61.816 70.832 61.816 C 70.898 61.816 70.993 61.62 71.046 61.384 C 71.096 61.146 71.191 60.952 71.253 60.952 C 71.315 60.952 71.449 60.659 71.549 60.304 C 71.647 59.946 71.785 59.654 71.852 59.654 C 71.92 59.654 72.015 59.493 72.067 59.295 C 72.115 59.096 72.204 58.934 72.261 58.934 C 72.32 58.934 72.448 58.659 72.55 58.321 C 72.65 57.984 72.777 57.677 72.832 57.637 C 72.932 57.564 73.437 56.637 73.813 55.836 C 73.914 55.616 74.023 55.4 74.14 55.187 C 74.563 54.457 75.583 52.35 75.581 52.209 C 75.581 52.118 75.629 52.02 75.688 51.995 C 75.849 51.923 76.587 50.443 76.587 50.195 C 76.587 50.079 76.646 50.02 76.719 50.064 C 76.791 50.111 76.894 49.952 76.946 49.712 C 77 49.475 77.101 49.28 77.174 49.28 C 77.246 49.28 77.306 49.211 77.306 49.127 C 77.306 48.92 78.063 47.357 78.216 47.246 C 78.286 47.194 78.334 47.117 78.35 47.03 C 78.377 46.702 78.504 46.398 78.614 46.398 C 78.68 46.398 78.812 46.138 78.907 45.821 C 79.003 45.504 79.135 45.245 79.201 45.245 C 79.267 45.245 79.322 45.177 79.322 45.093 C 79.322 44.891 80.059 43.321 80.198 43.227 C 80.259 43.186 80.352 42.977 80.407 42.759 C 80.461 42.541 80.557 42.363 80.621 42.363 C 80.687 42.363 80.782 42.17 80.835 41.932 C 80.885 41.693 80.985 41.498 81.055 41.498 C 81.126 41.498 81.26 41.239 81.355 40.921 C 81.449 40.605 81.578 40.346 81.636 40.346 C 81.697 40.346 81.79 40.15 81.842 39.914 C 81.895 39.677 81.984 39.482 82.045 39.482 C 82.107 39.482 82.241 39.221 82.345 38.905 C 82.45 38.588 82.586 38.329 82.644 38.329 C 82.705 38.329 82.796 38.134 82.85 37.896 C 82.903 37.659 83.005 37.464 83.076 37.464 C 83.149 37.464 83.21 37.389 83.21 37.298 C 83.21 37.107 83.954 35.555 84.098 35.445 C 84.152 35.405 84.239 35.195 84.295 34.977 C 84.348 34.759 84.439 34.584 84.498 34.584 C 84.555 34.584 84.689 34.323 84.792 34.005 C 84.898 33.689 85.032 33.43 85.092 33.43 C 85.153 33.43 85.246 33.234 85.297 32.998 C 85.349 32.759 85.435 32.564 85.488 32.563 C 85.542 32.563 85.779 32.155 86.016 31.662 C 86.254 31.168 86.53 30.713 86.628 30.648 C 86.733 30.573 86.799 30.454 86.807 30.325 C 86.807 30.209 86.869 30.116 86.942 30.116 C 87.015 30.116 87.115 29.993 87.164 29.845 C 87.243 29.64 87.355 29.45 87.495 29.282 C 87.633 29.121 87.841 28.845 87.959 28.668 C 88.473 27.902 90.082 26.268 91.156 25.418 C 91.906 24.825 92.964 24.186 94.079 23.65 L 95.595 22.914 C 95.718 22.852 96.089 22.757 96.423 22.7 C 96.755 22.645 97.062 22.545 97.101 22.48 C 97.14 22.414 97.513 22.316 97.931 22.259 C 98.344 22.205 98.776 22.084 98.887 21.995 C 99.035 21.875 102.744 21.818 112.49 21.787 C 120.763 21.763 125.944 21.693 126.03 21.609 C 126.116 21.521 131.798 21.47 141.111 21.47 C 152.964 21.47 156.056 21.434 156.062 21.291 C 156.065 21.191 156.062 20.354 156.054 19.43 C 156.046 18.395 156.097 17.714 156.19 17.655 C 156.293 17.593 156.342 14.761 156.342 8.78 L 156.342 0 L 126.217 0.018 C 109.65 0.03 95.674 0.089 95.156 0.154 Z\" fill=\"rgb(67,164,220)\"></path><path d=\"M 0 0.209 C 0 0.323 0.062 0.455 0.141 0.504 C 0.218 0.552 0.459 0.977 0.674 1.45 C 0.89 1.921 1.12 2.307 1.181 2.307 C 1.245 2.307 1.295 2.382 1.295 2.473 C 1.295 2.682 2.018 4.227 2.159 4.325 C 2.218 4.364 2.314 4.557 2.375 4.757 C 2.437 4.954 2.526 5.15 2.574 5.189 C 2.624 5.229 2.858 5.682 3.095 6.196 C 3.333 6.712 3.566 7.166 3.616 7.205 C 3.707 7.331 3.774 7.473 3.813 7.623 C 3.871 7.814 4.107 8.286 4.334 8.671 C 4.56 9.057 4.787 9.534 4.837 9.73 C 4.887 9.927 4.983 10.087 5.054 10.087 C 5.126 10.087 5.183 10.157 5.183 10.241 C 5.183 10.42 5.927 11.998 6.061 12.105 C 6.111 12.145 6.2 12.334 6.26 12.523 C 6.319 12.714 6.546 13.173 6.767 13.546 C 6.985 13.918 7.213 14.379 7.272 14.57 C 7.311 14.72 7.378 14.862 7.47 14.987 C 7.52 15.027 8.851 17.654 10.432 20.823 C 12.011 23.993 13.354 26.609 13.418 26.634 C 13.481 26.661 13.532 26.741 13.532 26.811 C 13.532 27.034 14.283 28.602 14.415 28.652 C 14.483 28.679 14.54 28.777 14.54 28.868 C 14.54 28.961 14.646 29.23 14.772 29.468 C 14.899 29.707 15.261 30.42 15.575 31.054 C 15.891 31.687 16.2 32.309 16.264 32.432 C 16.33 32.557 16.556 33.011 16.769 33.441 C 17.763 35.402 18.747 37.368 19.721 39.339 C 20.527 40.977 21.345 42.61 22.173 44.237 C 22.462 44.72 23.034 45.959 23.034 46.102 C 23.034 46.186 23.086 46.255 23.149 46.255 C 23.213 46.255 23.35 46.498 23.457 46.796 C 23.564 47.093 23.691 47.368 23.743 47.407 C 23.793 47.448 24.997 49.814 26.421 52.668 C 27.844 55.52 29.04 57.887 29.079 57.927 C 29.12 57.966 29.347 58.42 29.584 58.936 C 29.821 59.45 30.048 59.904 30.089 59.943 C 30.128 59.984 31.552 62.804 33.252 66.211 C 34.952 69.62 36.385 72.439 36.435 72.479 C 36.486 72.52 36.576 72.705 36.635 72.895 C 36.806 73.441 37.3 74.209 37.48 74.207 C 37.573 74.207 37.552 74.146 37.434 74.071 C 37.252 73.955 37.255 73.923 37.461 73.845 C 37.596 73.791 37.664 73.662 37.619 73.541 C 37.571 73.416 37.614 73.35 37.73 73.375 C 37.835 73.398 37.93 73.32 37.942 73.2 C 37.957 73.044 37.97 72.888 37.983 72.732 C 37.996 72.593 38.083 72.496 38.178 72.516 C 38.272 72.536 38.37 72.421 38.399 72.264 C 38.531 71.5 38.601 71.33 38.765 71.364 C 38.863 71.382 38.922 71.286 38.9 71.146 C 38.875 71.009 38.922 70.895 39.004 70.895 C 39.082 70.895 39.111 70.795 39.064 70.673 C 39.009 70.53 39.05 70.466 39.175 70.493 C 39.364 70.532 39.389 70.466 39.428 69.841 C 39.437 69.698 39.509 69.62 39.585 69.668 C 39.662 69.714 39.764 69.573 39.814 69.352 C 39.99 68.566 40.044 68.441 40.176 68.523 C 40.297 68.598 40.37 68.4 40.326 68.121 C 40.317 68.061 40.372 68.014 40.449 68.014 C 40.526 68.014 40.547 67.905 40.495 67.773 C 40.436 67.62 40.46 67.568 40.563 67.63 C 40.722 67.73 40.968 67.22 40.911 66.912 C 40.893 66.823 40.979 66.711 41.098 66.664 C 41.218 66.62 41.318 66.414 41.318 66.209 C 41.318 66.002 41.377 65.871 41.452 65.918 C 41.578 65.996 41.837 65.462 41.778 65.239 C 41.76 65.18 41.817 65.132 41.901 65.132 C 41.985 65.132 42.015 65.068 41.967 64.993 C 41.921 64.916 42.014 64.723 42.172 64.564 C 42.333 64.404 42.424 64.175 42.378 64.054 C 42.331 63.934 42.363 63.834 42.449 63.834 C 42.535 63.834 42.565 63.734 42.518 63.612 C 42.465 63.47 42.504 63.405 42.631 63.432 C 42.75 63.457 42.813 63.373 42.786 63.221 C 42.763 63.084 42.809 62.971 42.89 62.971 C 42.97 62.971 42.997 62.87 42.95 62.748 C 42.897 62.609 42.936 62.541 43.054 62.568 C 43.159 62.591 43.266 62.479 43.293 62.321 C 43.427 61.557 43.494 61.389 43.658 61.421 C 43.757 61.439 43.819 61.368 43.796 61.261 C 43.732 60.957 43.914 60.507 44.063 60.6 C 44.183 60.673 44.258 60.475 44.213 60.196 C 44.204 60.136 44.258 60.089 44.336 60.089 C 44.411 60.089 44.433 59.98 44.383 59.848 C 44.322 59.689 44.347 59.643 44.454 59.711 C 44.558 59.773 44.652 59.661 44.709 59.409 C 44.884 58.623 44.939 58.498 45.071 58.582 C 45.191 58.655 45.266 58.457 45.221 58.179 C 45.212 58.12 45.266 58.071 45.343 58.071 C 45.419 58.071 45.441 57.964 45.391 57.83 C 45.328 57.67 45.355 57.625 45.468 57.695 C 45.619 57.789 45.699 57.618 45.653 57.314 C 45.644 57.255 45.698 57.207 45.776 57.207 C 45.851 57.207 45.873 57.1 45.823 56.966 C 45.764 56.812 45.787 56.762 45.889 56.823 C 46.058 56.929 46.295 56.405 46.231 56.075 C 46.21 55.968 46.256 55.92 46.333 55.968 C 46.415 56.018 46.44 55.93 46.395 55.759 C 46.342 55.557 46.381 55.479 46.517 55.507 C 46.627 55.53 46.699 55.468 46.679 55.368 C 46.661 55.27 46.713 55.189 46.797 55.189 C 46.879 55.189 46.909 55.127 46.863 55.05 C 46.816 54.973 46.907 54.782 47.066 54.621 C 47.227 54.461 47.319 54.232 47.273 54.111 C 47.227 53.991 47.259 53.893 47.344 53.893 C 47.428 53.893 47.46 53.793 47.414 53.67 C 47.359 53.529 47.4 53.462 47.526 53.491 C 47.644 53.514 47.705 53.432 47.682 53.279 C 47.658 53.141 47.705 53.029 47.785 53.029 C 47.865 53.029 47.889 52.92 47.839 52.787 C 47.78 52.634 47.803 52.584 47.905 52.645 C 48.06 52.741 48.113 52.63 48.288 51.839 C 48.336 51.621 48.456 51.459 48.554 51.479 C 48.652 51.498 48.711 51.402 48.69 51.262 C 48.665 51.123 48.711 51.011 48.793 51.011 C 48.872 51.011 48.897 50.904 48.847 50.77 C 48.786 50.616 48.811 50.566 48.913 50.627 C 49.08 50.734 49.318 50.211 49.253 49.879 C 49.232 49.771 49.278 49.723 49.353 49.771 C 49.51 49.866 49.667 49.541 49.667 49.116 C 49.667 48.961 49.728 48.87 49.801 48.914 C 49.93 48.993 50.186 48.459 50.128 48.236 C 50.11 48.177 50.167 48.129 50.252 48.129 C 50.335 48.129 50.36 48.059 50.308 47.975 C 50.256 47.891 50.333 47.723 50.481 47.604 C 50.627 47.484 50.666 47.427 50.57 47.477 C 50.44 47.541 50.413 47.454 50.47 47.162 C 50.533 46.839 49.869 45.4 47.084 39.829 C 45.179 36.018 43.621 32.829 43.621 32.745 C 43.621 32.659 43.567 32.568 43.501 32.543 C 43.368 32.489 42.613 30.936 42.613 30.714 C 42.613 30.637 42.561 30.552 42.501 30.525 C 42.367 30.468 40.597 26.895 40.597 26.684 C 40.597 26.604 40.549 26.516 40.49 26.491 C 40.429 26.464 38.388 22.462 35.953 17.598 C 34.319 14.331 32.681 11.065 31.038 7.802 C 30.49 6.732 29.587 4.929 28.123 1.982 L 27.136 0.002 L 13.568 0.002 C 1.85 0.002 0 0.03 0 0.209 Z M 126.305 21.714 C 126.358 21.768 126.223 21.887 126.005 21.98 C 125.747 22.11 125.533 22.314 125.391 22.566 C 125.272 22.796 125.141 23.016 125.102 23.055 C 124.888 23.271 124.383 24.073 124.383 24.204 C 124.383 24.286 124.321 24.354 124.246 24.354 C 124.171 24.354 124.026 24.512 123.923 24.707 C 123.819 24.904 123.152 25.911 122.439 26.948 C 121.725 27.984 121.077 28.943 120.997 29.079 C 120.747 29.502 120.291 30.186 120.208 30.261 C 120.166 30.3 119.613 31.111 118.981 32.061 C 118.349 33.011 117.768 33.862 117.688 33.954 C 117.574 34.091 117.468 34.235 117.372 34.386 C 117.01 34.946 115.821 36.707 115.22 37.573 C 114.876 38.068 114.594 38.509 114.594 38.552 C 114.594 38.627 114.023 39.477 113.873 39.627 C 113.834 39.666 113.606 39.991 113.37 40.346 C 113.133 40.704 112.906 41.029 112.867 41.068 C 112.685 41.248 111.611 42.896 111.529 43.121 C 111.475 43.259 111.368 43.373 111.286 43.373 C 111.202 43.376 111.136 43.446 111.138 43.53 C 111.138 43.618 111.026 43.837 110.887 44.018 C 110.564 44.443 110.401 44.682 109.668 45.821 C 109.454 46.167 109.227 46.504 108.987 46.832 C 108.805 46.995 107.684 48.723 107.684 48.837 C 107.684 48.907 107.586 48.998 107.467 49.045 C 107.349 49.091 107.252 49.223 107.252 49.341 C 107.242 49.475 107.17 49.597 107.056 49.67 C 106.949 49.734 106.771 49.959 106.662 50.171 C 106.551 50.386 105.811 51.505 105.021 52.664 C 103.584 54.766 103.401 55.041 102.865 55.891 C 102.71 56.139 102.532 56.341 102.469 56.341 C 102.407 56.341 102.357 56.402 102.357 56.477 C 102.357 56.55 101.904 57.268 101.349 58.071 C 100.796 58.875 100.341 59.586 100.341 59.654 C 100.341 59.72 100.293 59.796 100.234 59.823 C 100.173 59.85 99.931 60.162 99.693 60.52 C 99.456 60.877 99.197 61.243 99.117 61.334 C 99.038 61.423 98.559 62.155 98.05 62.955 C 97.542 63.755 97.072 64.411 97.006 64.411 C 96.94 64.411 96.887 64.468 96.887 64.539 C 96.887 64.741 95.85 66.284 95.715 66.284 C 95.647 66.284 95.59 66.352 95.59 66.432 C 95.59 66.514 95.105 67.295 94.51 68.166 C 93.916 69.037 93.431 69.784 93.431 69.825 C 93.431 69.904 93.228 70.164 92.819 70.618 C 92.68 70.77 92.568 70.921 92.568 70.957 C 92.568 71.045 91.467 72.702 90.837 73.561 C 89.981 74.732 88.791 74.641 104.821 74.641 L 119.209 74.641 L 119.507 74.137 C 119.671 73.859 119.864 73.632 119.936 73.632 C 120.007 73.632 120.064 73.548 120.064 73.446 C 120.064 73.343 120.162 73.132 120.282 72.977 C 120.401 72.823 120.756 72.339 121.068 71.904 C 121.382 71.468 121.689 71.046 121.752 70.968 C 121.812 70.887 122.059 70.53 122.296 70.175 C 122.533 69.818 122.779 69.461 122.844 69.382 C 122.985 69.205 124.01 67.739 125.413 65.707 C 125.985 64.875 127.079 63.32 127.843 62.25 C 128.606 61.179 129.418 60.012 129.65 59.655 C 129.88 59.298 130.144 58.929 130.235 58.83 C 130.324 58.734 130.549 58.409 130.731 58.111 C 130.913 57.811 131.097 57.534 131.141 57.495 C 131.324 57.263 131.495 57.022 131.653 56.773 C 132.126 56.062 132.174 55.996 132.592 55.491 C 132.749 55.3 132.877 55.098 132.877 55.045 C 132.877 54.991 132.99 54.807 133.127 54.639 C 133.266 54.471 133.607 54.005 133.884 53.602 C 134.162 53.198 134.597 52.584 134.856 52.236 C 135.113 51.889 135.323 51.536 135.323 51.45 C 135.323 51.366 135.377 51.298 135.443 51.298 C 135.571 51.298 136.331 50.191 136.331 50.004 C 136.331 49.941 136.429 49.852 136.547 49.805 C 136.667 49.761 136.763 49.634 136.763 49.525 C 136.763 49.414 136.893 49.209 137.052 49.064 C 137.209 48.921 137.339 48.725 137.339 48.627 C 137.339 48.527 137.436 48.411 137.553 48.364 C 137.673 48.318 137.771 48.212 137.771 48.127 C 137.771 47.987 138.181 47.341 138.563 46.88 C 138.642 46.786 138.934 46.377 139.211 45.971 C 139.487 45.568 139.942 44.921 140.219 44.536 C 140.495 44.15 140.82 43.691 140.938 43.518 C 141.057 43.345 141.305 42.998 141.491 42.748 C 141.676 42.498 142.051 41.945 142.326 41.523 C 142.528 41.202 142.742 40.89 142.968 40.586 C 143.195 40.327 147.844 33.7 149.098 31.846 C 149.717 30.936 150.303 30.137 150.402 30.073 C 150.502 30.011 150.583 29.895 150.583 29.816 C 150.583 29.691 151.091 28.887 151.303 28.675 C 151.434 28.513 151.558 28.345 151.674 28.171 C 152.709 26.679 153.105 26.132 153.273 25.964 C 153.379 25.855 153.446 25.714 153.462 25.562 C 153.462 25.448 153.56 25.316 153.678 25.27 C 153.798 25.225 153.896 25.123 153.896 25.046 C 153.896 24.97 154.12 24.629 154.399 24.291 C 154.675 23.952 154.902 23.634 154.902 23.584 C 154.902 23.532 155.134 23.189 155.414 22.82 C 155.694 22.452 155.892 22.066 155.853 21.962 C 155.812 21.855 155.913 21.752 156.099 21.716 C 156.272 21.68 149.617 21.645 141.309 21.636 C 133.002 21.623 126.251 21.659 126.305 21.714 Z M 3.215 82.654 C 3.051 82.725 3.329 83.855 3.604 84.223 C 3.661 84.304 3.757 84.595 3.818 84.871 C 3.875 85.15 4.014 85.504 4.121 85.661 C 4.228 85.816 4.318 86.03 4.318 86.137 C 4.318 86.243 4.451 86.632 4.615 87.005 C 4.985 87.852 5.067 88.054 5.472 89.123 C 5.652 89.598 5.92 90.259 6.068 90.591 C 6.214 90.925 6.335 91.284 6.335 91.391 C 6.335 91.498 6.389 91.648 6.455 91.723 C 6.521 91.798 6.76 92.379 6.987 93.012 C 7.213 93.646 7.481 94.329 7.584 94.527 C 7.683 94.708 7.747 94.906 7.773 95.111 C 7.773 95.236 7.87 95.461 7.986 95.614 C 8.102 95.77 8.2 95.993 8.207 96.111 C 8.212 96.23 8.341 96.587 8.492 96.904 C 8.647 97.221 8.774 97.545 8.778 97.623 C 8.783 97.793 9.381 99.27 9.548 99.534 C 9.75 99.852 14.341 99.784 14.444 99.462 C 14.487 99.323 14.688 98.82 14.89 98.345 C 15.093 97.87 15.259 97.412 15.259 97.33 C 15.259 97.248 15.488 96.634 15.764 95.966 C 16.041 95.3 16.269 94.686 16.273 94.604 C 16.274 94.521 16.403 94.193 16.556 93.877 C 16.708 93.561 16.836 93.187 16.838 93.05 C 16.842 92.911 16.91 92.796 16.988 92.796 C 17.067 92.796 17.134 92.684 17.136 92.546 C 17.14 92.405 17.266 92.034 17.42 91.716 C 17.572 91.4 17.7 91.03 17.702 90.895 C 17.705 90.762 17.766 90.616 17.837 90.573 C 17.909 90.527 18.051 90.166 18.153 89.77 C 18.255 89.375 18.39 89.05 18.455 89.05 C 18.519 89.05 18.571 88.954 18.571 88.836 C 18.571 88.652 18.899 87.743 19.507 86.241 C 19.605 86.004 19.832 85.42 20.012 84.945 C 20.192 84.468 20.433 83.866 20.546 83.605 C 20.945 82.677 20.879 82.643 18.69 82.598 C 16.465 82.554 16.382 82.586 16.123 83.616 C 16.037 83.958 15.915 84.289 15.759 84.605 C 15.651 84.789 15.58 84.991 15.548 85.202 C 15.548 85.32 15.452 85.602 15.334 85.827 C 15.215 86.055 15.117 86.337 15.117 86.457 C 15.083 86.675 15.01 86.885 14.903 87.077 C 14.764 87.356 14.647 87.645 14.551 87.941 C 14.28 88.816 13.445 91.141 13.295 91.429 C 13.11 91.875 12.949 92.332 12.813 92.796 C 12.63 93.391 12.43 93.943 12.371 94.021 C 12.312 94.102 12.217 94.409 12.162 94.705 C 12.064 95.23 11.805 95.33 11.805 94.841 C 11.773 94.611 11.699 94.389 11.588 94.186 C 11.47 93.959 11.374 93.709 11.374 93.632 C 11.331 93.425 11.261 93.225 11.167 93.036 C 11.052 92.786 10.785 92.062 10.574 91.429 C 10.362 90.795 10.132 90.214 10.062 90.137 C 9.991 90.062 9.934 89.87 9.932 89.707 C 9.912 89.475 9.847 89.248 9.739 89.041 C 9.619 88.801 9.522 88.55 9.45 88.291 C 9.379 88.025 9.292 87.763 9.19 87.507 C 8.721 86.294 8.288 85.067 7.891 83.829 C 7.807 83.53 7.682 83.287 7.613 83.287 C 7.541 83.287 7.486 83.162 7.486 83.014 C 7.486 82.864 7.402 82.709 7.301 82.67 C 7.053 82.575 3.431 82.562 3.215 82.654 Z M 22.376 82.755 C 22.337 82.859 22.323 83.654 22.346 84.521 L 22.387 86.096 L 26.526 86.096 C 28.801 86.096 30.665 86.116 30.665 86.141 C 30.665 86.166 30.404 86.737 30.089 87.411 C 29.771 88.084 29.512 88.664 29.512 88.7 C 29.512 88.736 29.373 89.073 29.204 89.448 C 29.034 89.823 28.74 90.487 28.547 90.923 L 28.005 92.148 L 27.056 94.309 C 26.883 94.705 26.556 95.425 26.328 95.907 C 26.099 96.389 25.914 96.829 25.914 96.886 C 25.914 96.943 25.694 97.457 25.429 98.027 C 25.161 98.598 24.899 99.211 24.843 99.389 L 24.742 99.714 L 28.931 99.714 L 29.432 98.637 C 29.709 98.048 29.976 97.398 30.028 97.198 C 30.078 96.996 30.176 96.832 30.247 96.832 C 30.319 96.832 30.376 96.762 30.376 96.68 C 30.376 96.596 30.495 96.255 30.644 95.923 C 30.79 95.591 31.065 94.93 31.255 94.454 C 31.445 93.979 31.648 93.568 31.709 93.543 C 31.768 93.514 31.816 93.382 31.816 93.25 C 31.816 93.116 31.905 92.877 32.012 92.721 C 32.14 92.524 32.243 92.311 32.317 92.087 C 32.5 91.6 32.702 91.12 32.922 90.648 C 33.193 90.046 33.553 89.23 33.719 88.834 C 33.885 88.437 34.197 87.725 34.413 87.248 C 34.922 86.12 35.032 85.83 35.006 85.7 C 34.993 85.641 35.047 85.593 35.127 85.593 C 35.339 85.593 35.313 82.955 35.098 82.739 C 34.834 82.475 22.478 82.491 22.378 82.757 Z M 40.597 92.291 L 40.597 99.714 L 43.332 99.714 L 43.332 94.309 L 44.574 94.321 C 45.799 94.334 45.817 94.339 46.01 94.754 C 46.199 95.161 46.308 95.345 46.807 96.111 C 47.014 96.429 47.223 96.786 47.86 97.913 C 47.949 98.07 48.235 98.541 48.497 98.957 L 48.972 99.714 L 50.542 99.714 C 52.244 99.714 52.383 99.636 51.83 98.998 C 51.67 98.812 51.543 98.601 51.453 98.373 C 51.402 98.212 51.325 98.06 51.225 97.923 C 51.014 97.677 50.129 96.288 49.482 95.182 C 49.153 94.623 48.825 94.123 48.752 94.075 C 48.681 94.021 48.825 93.936 49.077 93.88 C 52.456 93.138 53.05 88.118 50.051 85.639 C 49.337 85.048 48.003 84.871 44.253 84.871 L 40.597 84.871 L 40.597 92.293 Z M 94.99 85.118 C 93.574 85.996 94.571 88.32 96.209 87.961 C 96.701 87.854 97.001 87.604 97.279 87.068 C 97.988 85.696 96.33 84.286 94.99 85.118 Z M 100.127 86.145 C 100.086 86.25 100.054 86.912 100.054 87.614 L 100.054 88.893 L 99.226 88.936 L 98.398 88.979 L 98.398 91.139 L 99.226 91.182 L 100.054 91.227 L 100.071 94.57 C 100.08 96.409 100.08 97.962 100.071 98.02 C 100.061 98.08 100.118 98.127 100.196 98.127 C 100.277 98.127 100.341 98.25 100.341 98.396 C 100.341 99.804 103.789 100.479 105.108 99.33 C 105.343 99.125 105.318 98.416 105.076 98.416 C 105.004 98.416 104.947 98.266 104.947 98.084 C 104.947 97.591 104.596 97.162 104.351 97.357 C 103.97 97.661 103.345 97.679 103.06 97.391 C 102.812 97.141 102.789 96.866 102.789 94.166 L 102.789 91.212 L 103.688 91.211 C 104.883 91.207 104.915 91.175 104.894 89.987 L 104.876 88.979 L 103.832 88.936 L 102.789 88.893 L 102.787 87.639 C 102.785 86.948 102.728 86.296 102.66 86.187 C 102.484 85.911 100.232 85.873 100.127 86.145 Z M 148.065 86.141 C 148.026 86.248 147.994 86.911 147.994 87.614 L 147.994 88.893 L 147.164 88.936 L 146.336 88.979 L 146.336 91.139 L 147.164 91.182 L 147.992 91.227 L 147.992 94.516 C 147.992 98.038 148.058 98.438 148.757 99.195 C 149.576 100.079 152.133 100.166 153.045 99.341 C 153.448 98.975 152.675 97.045 152.263 97.388 C 151.828 97.75 150.872 97.609 150.872 97.184 C 150.872 97.068 150.807 96.975 150.729 96.975 C 150.636 96.975 150.583 95.92 150.583 94.095 L 150.583 91.213 L 151.555 91.211 C 152.87 91.207 152.911 91.168 152.857 89.973 L 152.815 88.979 L 151.699 88.936 L 150.583 88.895 L 150.583 87.459 C 150.583 86.67 150.534 86.023 150.476 86.021 C 148.29 85.95 148.138 85.955 148.067 86.141 Z M 47.937 87.732 C 48.743 88.164 49.021 88.657 49.004 89.62 C 48.973 91.28 48.349 91.655 45.455 91.755 L 43.332 91.827 L 43.332 87.466 L 45.385 87.466 C 47.111 87.466 47.519 87.509 47.937 87.732 Z M 56.648 88.759 C 56.3 88.838 55.962 88.955 55.64 89.109 C 55.403 89.234 55.144 89.338 55.066 89.341 C 54.857 89.345 53.814 90.33 53.368 90.946 C 52.078 92.72 52.024 96.071 53.26 97.607 C 53.996 98.518 54.326 98.848 54.504 98.848 C 54.615 98.848 54.706 98.902 54.706 98.968 C 54.706 99.771 59.375 100.136 60.816 99.445 C 62.45 98.663 62.561 98.446 61.879 97.391 C 61.437 96.709 61.152 96.534 60.968 96.832 C 60.791 97.118 59.66 97.573 58.932 97.654 C 57.023 97.861 55.894 97.325 55.296 95.927 L 55.005 95.25 L 59.066 95.213 L 63.126 95.175 L 63.171 94.348 C 63.355 90.813 60.094 88.018 56.648 88.759 Z M 68.814 88.775 C 63.774 89.748 62.903 96.913 67.517 99.43 C 69.059 100.271 72.37 99.888 73.601 98.725 C 74.282 98.08 74.275 97.957 73.53 97.182 C 72.789 96.414 72.732 96.411 71.899 97.048 C 70.489 98.125 68.357 97.613 67.535 96 C 66.572 94.107 67.753 91.134 69.497 91.061 C 69.556 91.057 69.749 91.02 69.926 90.975 C 70.439 90.846 71.804 91.35 72.191 91.811 C 72.382 92.036 72.584 92.221 72.643 92.221 C 72.843 92.221 74.141 90.85 74.141 90.639 C 74.141 90.375 73.078 89.386 72.654 89.254 C 72.48 89.2 72.304 89.098 72.261 89.03 C 72.074 88.741 69.844 88.577 68.814 88.775 Z M 80.459 88.764 C 79.763 88.882 78.83 89.396 78.325 89.938 L 78.027 90.259 L 78.027 88.895 L 76.768 88.938 L 75.508 88.979 L 75.471 94.346 L 75.433 99.714 L 78.027 99.714 L 78.027 96.064 C 78.027 92.186 78.106 91.788 78.866 91.788 C 78.959 91.788 79.035 91.729 79.035 91.655 C 79.035 91.496 80.289 91.213 80.991 91.213 L 81.494 91.213 L 81.453 89.963 C 81.406 88.595 81.413 88.605 80.459 88.766 Z M 111.247 88.768 C 110.84 88.836 110.226 89.107 109.734 89.436 L 108.906 89.989 L 108.906 88.979 L 106.316 88.979 L 106.275 94.021 C 106.225 100.28 106.095 99.714 107.599 99.714 C 109.097 99.714 108.979 100.05 108.979 95.805 C 108.979 91.823 108.979 91.82 110.237 91.263 C 111.026 90.913 111.443 90.845 111.629 91.03 C 111.689 91.091 111.78 91.141 111.834 91.141 C 111.887 91.141 112.093 91.255 112.291 91.395 L 112.649 91.65 L 112.721 95.645 L 112.794 99.641 L 114.053 99.682 L 115.313 99.725 L 115.313 92.275 L 115.709 91.913 C 117.077 90.666 118.553 90.666 119.102 91.913 C 119.308 92.379 119.345 93.005 119.345 96.093 L 119.345 99.725 L 120.605 99.684 L 121.864 99.641 L 121.902 95.616 C 121.955 90.08 121.62 89.116 119.522 88.779 C 118.606 88.632 116.897 88.809 116.897 89.05 C 116.897 89.113 116.751 89.202 116.573 89.246 C 116.394 89.293 115.998 89.557 115.689 89.832 L 115.131 90.334 L 114.828 89.886 C 114.668 89.649 114.467 89.443 114.234 89.279 C 114.099 89.21 113.975 89.122 113.866 89.016 C 113.784 88.907 112.376 88.605 112.091 88.636 C 112.002 88.645 111.622 88.704 111.245 88.768 Z M 127.55 88.762 C 125.257 89.191 123.588 91.12 123.133 93.864 C 122.819 95.761 124.26 98.377 126.183 99.395 C 127.58 100.136 132.446 99.804 132.446 98.966 C 132.446 98.902 132.531 98.848 132.638 98.848 C 133.297 98.848 133.352 98.312 132.783 97.491 C 132.287 96.775 131.725 96.427 131.725 96.836 C 131.725 96.918 131.611 97.025 131.473 97.073 C 131.285 97.154 131.11 97.262 130.954 97.395 C 130.064 98.162 127.075 97.541 126.481 96.466 C 126.415 96.336 126.33 96.215 126.23 96.109 C 126.176 96.07 126.089 95.859 126.034 95.645 L 125.935 95.252 L 129.946 95.212 L 133.957 95.175 L 134.035 94.48 C 134.08 94.1 134.073 93.761 134.021 93.73 C 133.967 93.695 133.884 93.32 133.834 92.891 C 133.734 92.045 133.614 91.766 132.924 90.77 C 131.812 89.166 129.668 88.366 127.55 88.762 Z M 140.651 88.766 C 139.916 88.912 139.222 89.213 138.613 89.65 C 138.106 90 138.085 89.993 138.032 89.446 L 137.987 88.979 L 136.727 88.938 L 135.468 88.895 L 135.468 99.725 L 136.727 99.684 L 137.987 99.641 L 138.058 95.92 L 138.13 92.196 L 138.59 91.786 C 139.668 90.821 141.296 90.727 142.099 91.582 C 142.449 91.954 142.451 91.968 142.522 95.798 L 142.593 99.641 L 143.853 99.682 L 145.113 99.725 L 145.113 95.37 C 145.113 90.566 145.047 90.173 144.128 89.486 C 143.919 89.327 143.664 89.129 143.562 89.045 C 143.384 88.893 141.935 88.604 141.514 88.636 C 141.225 88.67 140.937 88.713 140.651 88.766 Z M 82.875 89.002 C 82.821 89.055 82.778 90.963 82.778 93.241 C 82.778 97.923 82.85 98.302 83.897 99.236 C 85.064 100.273 88.304 100.041 89.601 98.825 L 89.904 98.541 L 89.949 99.127 L 89.993 99.714 L 92.571 99.714 L 92.532 94.346 L 92.496 88.979 L 91.237 88.938 L 89.975 88.895 L 89.975 92.72 C 89.975 94.821 89.927 96.543 89.868 96.543 C 89.808 96.543 89.572 96.705 89.342 96.904 C 89.112 97.102 88.837 97.264 88.73 97.264 C 88.623 97.264 88.537 97.329 88.537 97.407 C 88.537 97.491 88.065 97.552 87.41 97.552 C 85.481 97.552 85.369 97.275 85.369 92.502 L 85.369 88.907 L 84.17 88.907 C 83.51 88.907 82.926 88.95 82.875 89.002 Z M 94.582 94.309 L 94.582 99.714 L 97.174 99.714 L 97.174 88.907 L 94.582 88.907 Z M 59.364 91.25 C 59.903 91.561 60.607 92.562 60.607 93.018 C 60.607 93.196 60.177 93.229 57.803 93.229 L 54.998 93.229 L 55.243 92.689 C 55.599 91.898 55.994 91.355 56.21 91.355 C 56.313 91.355 56.477 91.259 56.577 91.141 C 56.875 90.78 58.675 90.852 59.366 91.25 Z M 129.88 91.055 C 130.347 91.241 131.097 91.97 131.204 92.341 C 131.486 93.327 131.759 93.229 128.711 93.229 C 126.182 93.229 125.966 93.209 125.966 92.975 C 125.966 92.466 127.111 91.07 127.441 91.177 C 127.502 91.195 127.55 91.146 127.55 91.068 C 127.55 90.886 129.427 90.877 129.88 91.055 Z\" fill=\"rgb(36,35,91)\"></path><path d=\"M 156.129 17.72 C 155.99 17.941 156.07 21.47 156.213 21.47 C 156.285 21.47 156.342 20.595 156.342 19.523 C 156.342 17.648 156.315 17.418 156.128 17.72 Z\" fill=\"rgb(52,116,164)\"></path><path d=\"M 27.505 0.793 C 27.505 0.871 27.602 1.063 27.718 1.216 C 27.834 1.37 27.928 1.43 27.928 1.352 C 27.928 1.273 27.834 1.082 27.718 0.929 C 27.602 0.775 27.505 0.714 27.505 0.793 Z M 125.918 21.709 C 125.73 21.898 125.828 22.018 126.108 21.945 C 126.265 21.904 126.358 21.813 126.317 21.741 C 126.223 21.589 126.051 21.577 125.918 21.709 Z M 15.117 30.348 C 15.117 30.427 15.211 30.618 15.327 30.773 C 15.443 30.927 15.539 30.987 15.539 30.909 C 15.539 30.829 15.443 30.637 15.327 30.484 C 15.211 30.33 15.117 30.27 15.117 30.348 Z M 16.556 33.23 C 16.556 33.309 16.651 33.5 16.767 33.654 C 16.883 33.809 16.979 33.868 16.979 33.789 C 16.979 33.711 16.883 33.521 16.767 33.366 C 16.651 33.212 16.556 33.152 16.556 33.23 Z M 47.66 40.995 C 47.66 41.073 47.757 41.264 47.873 41.418 C 47.988 41.571 48.083 41.632 48.083 41.554 C 48.083 41.475 47.988 41.284 47.873 41.13 C 47.757 40.977 47.66 40.916 47.66 40.995 Z M 48.088 41.868 C 48.085 41.952 48.178 42.146 48.295 42.3 C 48.411 42.454 48.509 42.511 48.509 42.427 C 48.513 42.343 48.42 42.148 48.304 41.995 C 48.187 41.841 48.09 41.784 48.087 41.868 Z M 49.1 43.877 C 49.1 43.955 49.195 44.145 49.312 44.3 C 49.428 44.454 49.523 44.514 49.523 44.436 C 49.523 44.357 49.428 44.166 49.312 44.013 C 49.195 43.857 49.1 43.798 49.1 43.877 Z M 50.108 45.895 C 50.108 45.973 50.203 46.162 50.319 46.318 C 50.436 46.471 50.531 46.532 50.531 46.454 C 50.531 46.373 50.436 46.182 50.319 46.029 C 50.203 45.875 50.108 45.814 50.108 45.893 Z M 50.49 47.073 C 50.39 47.591 50.461 47.662 50.675 47.259 C 50.784 47.057 50.795 46.893 50.707 46.805 C 50.618 46.716 50.54 46.812 50.49 47.073 Z M 31.816 63.634 C 31.816 63.713 31.91 63.904 32.026 64.057 C 32.142 64.211 32.239 64.271 32.239 64.193 C 32.239 64.114 32.142 63.925 32.026 63.77 C 31.91 63.616 31.816 63.555 31.816 63.634 Z M 22.233 82.754 C 22.192 82.859 22.18 83.686 22.201 84.593 L 22.242 86.239 L 26.31 86.279 C 29.416 86.307 30.378 86.357 30.378 86.493 C 30.379 86.661 30.656 86.343 30.663 86.168 C 30.663 86.127 28.801 86.096 26.524 86.096 L 22.385 86.096 L 22.385 84.329 C 22.385 82.57 22.369 82.398 22.233 82.754 Z M 20.396 83.814 C 20.342 83.868 20.303 84.046 20.307 84.211 C 20.315 84.486 20.328 84.482 20.455 84.166 C 20.597 83.813 20.567 83.641 20.394 83.814 Z M 94.15 86.384 C 94.15 86.661 94.204 86.888 94.266 86.888 C 94.328 86.888 94.355 86.661 94.321 86.384 C 94.289 86.105 94.237 85.879 94.207 85.879 C 94.177 85.879 94.15 86.105 94.15 86.384 Z M 101.028 85.984 C 101.286 86.016 101.675 86.014 101.891 85.984 C 102.107 85.948 101.897 85.923 101.42 85.923 C 100.946 85.923 100.769 85.952 101.028 85.984 Z M 148.966 85.984 C 149.225 86.016 149.614 86.014 149.83 85.984 C 150.047 85.948 149.835 85.923 149.361 85.923 C 148.884 85.923 148.708 85.952 148.968 85.984 Z M 14.904 86.652 C 14.861 86.78 14.797 86.986 14.762 87.104 C 14.724 87.223 14.726 87.32 14.765 87.32 C 14.874 87.32 15.133 86.57 15.051 86.488 C 15.011 86.446 14.944 86.521 14.904 86.652 Z M 43.364 89.589 L 43.332 91.786 L 45.096 91.755 L 46.859 91.725 L 45.171 91.679 L 43.484 91.634 L 43.441 89.512 L 43.396 87.393 Z M 57.164 88.525 C 57.301 88.646 58.581 88.714 58.509 88.598 C 58.466 88.53 58.133 88.473 57.767 88.473 C 57.403 88.473 57.132 88.496 57.166 88.527 Z M 69.403 88.525 C 69.558 88.661 70.837 88.745 70.755 88.614 C 70.707 88.538 70.37 88.471 70.006 88.471 C 69.64 88.471 69.369 88.496 69.401 88.525 Z M 80.762 88.602 C 80.762 88.673 80.923 88.721 81.123 88.709 C 81.592 88.682 81.592 88.473 81.123 88.473 C 80.925 88.473 80.762 88.53 80.762 88.602 Z M 111.664 88.58 C 111.629 88.641 111.877 88.687 112.218 88.687 C 112.558 88.687 112.808 88.641 112.771 88.58 C 112.735 88.521 112.485 88.473 112.218 88.473 C 111.95 88.473 111.7 88.521 111.664 88.58 Z M 118.143 88.58 C 118.107 88.641 118.358 88.695 118.704 88.704 C 119.051 88.711 119.3 88.662 119.258 88.595 C 119.165 88.445 118.233 88.434 118.143 88.58 Z M 128.032 88.584 C 127.939 88.641 128.21 88.689 128.629 88.689 C 129.05 88.689 129.364 88.641 129.327 88.582 C 129.241 88.443 128.249 88.445 128.032 88.582 Z M 141.032 88.58 C 140.997 88.641 141.277 88.687 141.657 88.687 C 142.039 88.687 142.32 88.641 142.283 88.58 C 142.247 88.521 141.965 88.473 141.659 88.473 C 141.35 88.473 141.07 88.521 141.034 88.58 Z M 75.529 88.87 C 75.494 88.929 75.861 88.959 76.35 88.938 C 77.938 88.866 78.124 88.807 76.85 88.784 C 76.159 88.771 75.565 88.809 75.529 88.87 Z M 82.871 88.87 C 82.835 88.929 83.203 88.959 83.692 88.938 C 85.28 88.866 85.467 88.807 84.191 88.784 C 83.503 88.771 82.908 88.809 82.871 88.87 Z M 90.336 88.852 C 91.367 88.959 92.535 88.968 92.473 88.87 C 92.437 88.809 91.843 88.771 91.155 88.784 C 90.466 88.796 90.098 88.827 90.336 88.852 Z M 95.196 88.866 C 95.57 88.896 96.186 88.896 96.562 88.866 C 96.939 88.838 96.63 88.813 95.879 88.813 C 95.126 88.813 94.819 88.838 95.196 88.866 Z M 98.419 88.87 C 98.384 88.929 98.655 88.959 99.024 88.934 C 100.075 88.866 100.202 88.796 99.306 88.777 C 98.855 88.768 98.457 88.809 98.419 88.87 Z M 103.076 88.85 C 103.936 88.957 104.915 88.968 104.855 88.868 C 104.819 88.809 104.319 88.771 103.752 88.782 C 103.181 88.795 102.878 88.825 103.076 88.85 Z M 106.337 88.868 C 106.301 88.929 106.863 88.977 107.588 88.977 L 108.908 88.977 L 108.908 89.504 C 108.908 89.795 108.956 90 109.015 89.964 C 109.186 89.857 109.14 89.125 108.949 88.934 C 108.76 88.745 106.451 88.686 106.337 88.87 Z M 136.763 88.896 L 137.987 88.977 L 138.032 89.445 C 138.057 89.704 138.126 89.914 138.187 89.914 C 138.351 89.914 138.187 88.995 138.003 88.871 C 137.914 88.812 137.325 88.777 136.692 88.791 L 135.539 88.814 Z M 146.301 88.857 C 146.105 88.936 146.037 90.998 146.229 91.116 C 146.288 91.154 146.336 90.688 146.336 90.08 L 146.336 88.977 L 147.2 88.893 L 148.063 88.809 L 147.273 88.796 C 146.838 88.789 146.399 88.816 146.301 88.857 Z M 151.088 88.846 C 151.749 88.954 152.854 88.97 152.793 88.87 C 152.757 88.809 152.294 88.77 151.762 88.78 C 151.234 88.791 150.929 88.821 151.088 88.846 Z M 135.388 94.309 C 135.388 97.32 135.407 98.573 135.432 97.091 C 135.455 95.611 135.455 93.146 135.432 91.616 C 135.409 90.086 135.389 91.296 135.389 94.309 Z M 52.006 89.839 C 52.008 90.157 52.038 90.27 52.072 90.089 C 52.106 89.899 52.105 89.704 52.069 89.514 C 52.033 89.377 52.004 89.523 52.006 89.839 Z M 124.733 90.236 L 124.31 90.704 L 124.779 90.28 C 125.215 89.888 125.313 89.768 125.202 89.768 C 125.177 89.768 124.967 89.979 124.733 90.236 Z M 53.423 90.611 C 53.186 91.05 53.235 91.173 53.496 90.8 C 53.623 90.618 53.692 90.436 53.653 90.395 C 53.61 90.354 53.507 90.45 53.421 90.609 Z M 69.729 91.03 C 69.637 91.089 69.929 91.143 70.375 91.15 C 70.941 91.159 71.08 91.132 70.828 91.057 C 70.345 90.912 69.929 90.904 69.728 91.03 Z M 110.728 91.048 C 110.601 91.129 110.737 91.168 111.111 91.157 C 111.429 91.15 111.659 91.093 111.622 91.032 C 111.531 90.884 110.97 90.895 110.726 91.05 Z M 117.186 91.02 C 117.012 91.047 116.846 91.111 116.699 91.209 C 116.63 91.275 116.831 91.271 117.145 91.202 C 117.492 91.123 117.852 91.126 118.198 91.211 C 118.505 91.3 118.626 91.298 118.537 91.209 C 118.358 91.03 117.645 90.93 117.184 91.02 Z M 140.01 91.05 C 139.835 91.12 140.078 91.161 140.651 91.161 C 141.223 91.161 141.466 91.12 141.291 91.05 C 141.084 90.981 140.867 90.944 140.649 90.941 C 140.432 90.944 140.216 90.981 140.01 91.05 Z M 32.561 91.425 C 32.472 91.621 32.454 91.786 32.522 91.786 C 32.642 91.786 32.856 91.195 32.768 91.107 C 32.745 91.082 32.652 91.225 32.561 91.425 Z M 6.444 92.005 C 6.48 92.202 6.564 92.363 6.626 92.363 C 6.76 92.363 6.637 91.811 6.483 91.716 C 6.425 91.68 6.407 91.809 6.444 92.005 Z M 109.049 92.254 C 108.938 92.563 108.901 99.702 109.01 99.593 C 109.104 99.498 109.247 92.073 109.154 92.075 C 109.133 92.075 109.085 92.155 109.049 92.254 Z M 119.165 94.932 C 119.227 99.6 119.284 100.011 119.315 96.009 C 119.332 93.932 119.297 92.205 119.236 92.168 C 119.177 92.132 119.145 93.375 119.165 94.932 Z M 62.936 92.432 C 62.941 92.631 62.981 92.826 63.055 93.011 C 63.212 93.377 63.212 92.998 63.055 92.505 C 62.962 92.216 62.939 92.202 62.936 92.434 Z M 138.028 96.036 C 138.005 98.057 138.035 99.711 138.096 99.711 C 138.155 99.711 138.203 98.057 138.203 96.036 C 138.203 94.014 138.172 92.363 138.137 92.363 C 138.099 92.363 138.049 94.014 138.028 96.036 Z M 67.401 92.864 C 67.31 93.064 67.292 93.227 67.36 93.227 C 67.48 93.227 67.696 92.636 67.608 92.548 C 67.585 92.523 67.49 92.666 67.401 92.864 Z M 12.385 93.65 C 12.203 93.989 12.194 94.132 12.364 94.029 C 12.49 93.95 12.688 93.37 12.589 93.37 C 12.56 93.37 12.467 93.495 12.385 93.65 Z M 52.295 94.163 C 52.295 94.48 52.326 94.591 52.36 94.413 C 52.394 94.222 52.394 94.027 52.358 93.838 C 52.322 93.698 52.293 93.846 52.295 94.163 Z M 16.405 94.182 C 16.324 94.391 16.287 94.589 16.319 94.623 C 16.351 94.655 16.448 94.484 16.533 94.241 C 16.719 93.705 16.605 93.652 16.405 94.182 Z M 134.005 94.595 C 133.978 94.952 134.003 95.243 134.064 95.243 C 134.123 95.243 134.171 94.952 134.171 94.595 C 134.171 94.237 134.146 93.946 134.115 93.946 C 134.083 93.946 134.033 94.239 134.005 94.595 Z M 43.364 97.009 L 43.398 99.782 L 43.441 97.121 C 43.471 95.22 43.534 94.432 43.66 94.352 C 43.783 94.273 43.76 94.239 43.584 94.238 C 43.352 94.234 43.334 94.45 43.364 97.009 Z M 45.573 94.439 C 45.874 94.659 46.01 94.636 45.858 94.388 C 45.805 94.304 45.657 94.236 45.528 94.236 C 45.332 94.236 45.339 94.268 45.573 94.439 Z M 123.088 95.243 C 123.088 95.482 123.142 95.675 123.206 95.675 C 123.272 95.675 123.297 95.482 123.261 95.243 C 123.225 95.005 123.172 94.811 123.143 94.811 C 123.113 94.811 123.088 95.007 123.088 95.243 Z M 67.235 95.323 C 67.282 95.5 67.356 95.667 67.456 95.82 L 67.674 96.18 L 67.58 95.82 C 67.481 95.445 67.226 95.075 67.235 95.323 Z M 72.341 96.439 C 71.842 97.052 71.778 97.184 72.138 96.864 C 72.34 96.686 72.584 96.541 72.682 96.541 C 72.78 96.541 72.821 96.475 72.771 96.396 C 72.657 96.207 72.518 96.221 72.341 96.439 Z M 15.422 96.775 C 15.327 96.984 15.283 97.186 15.322 97.227 C 15.363 97.268 15.464 97.12 15.548 96.9 C 15.632 96.68 15.677 96.477 15.648 96.448 C 15.618 96.418 15.516 96.566 15.422 96.775 Z M 25 98.588 C 24.883 99.034 24.972 99.059 25.166 98.63 C 25.257 98.432 25.275 98.27 25.207 98.27 C 25.14 98.27 25.047 98.413 25 98.588 Z M 24.672 99.343 C 24.576 99.596 24.715 99.855 24.951 99.852 C 25.072 99.852 25.068 99.816 24.936 99.732 C 24.835 99.668 24.794 99.507 24.843 99.375 C 24.895 99.243 24.895 99.134 24.843 99.134 C 24.794 99.134 24.717 99.229 24.672 99.343 Z M 104.969 99.427 C 104.781 99.582 104.696 99.711 104.778 99.711 C 104.922 99.711 105.379 99.32 105.379 99.196 C 105.379 99.098 105.329 99.125 104.969 99.429 Z M 56.383 99.891 C 56.418 99.95 57.187 99.998 58.088 99.998 C 58.989 99.998 59.756 99.95 59.794 99.891 C 59.829 99.83 59.062 99.784 58.088 99.784 C 57.114 99.784 56.347 99.83 56.383 99.891 Z M 68.509 99.896 C 68.572 99.957 69.33 99.989 70.193 99.968 L 71.763 99.925 L 70.079 99.854 C 69.153 99.814 68.447 99.834 68.509 99.896 Z M 84.887 99.891 C 84.923 99.95 85.599 99.998 86.386 99.998 C 87.172 99.998 87.817 99.95 87.817 99.891 C 87.817 99.83 87.142 99.784 86.318 99.784 C 85.495 99.784 84.851 99.83 84.887 99.891 Z M 101.765 99.896 C 101.829 99.961 102.328 99.993 102.874 99.968 L 103.868 99.923 L 102.758 99.852 C 102.148 99.814 101.702 99.834 101.766 99.896 Z M 127.263 99.891 C 127.263 99.95 128.003 99.998 128.909 99.998 C 129.814 99.998 130.587 99.95 130.622 99.891 C 130.658 99.83 129.917 99.784 128.975 99.784 C 128.033 99.784 127.263 99.83 127.263 99.891 Z M 150.551 99.959 C 150.809 99.991 151.198 99.989 151.414 99.959 C 151.63 99.923 151.419 99.898 150.943 99.9 C 150.468 99.9 150.292 99.927 150.551 99.959 Z\" fill=\"rgb(36,12,68)\"></path><path d=\"M 133.86 21.579 C 138.003 21.598 144.74 21.598 148.831 21.579 C 152.923 21.557 149.532 21.539 141.298 21.539 C 133.063 21.539 129.716 21.557 133.859 21.579 Z\" fill=\"rgb(44,60,116)\"></path></svg>',svgContentId:112519e5,withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1d4k5my\",\"data-framer-name\":\"Adria-logo\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 191 72\"><g transform=\"translate(0.95 0)\" id=\"ss9204118662_1\"><path d=\"M 0 0 L 190 0 L 190 72 L 0 72 Z\" fill=\"transparent\"></path><path d=\"M 91.424 48.416 C 90.529 48.416 89.806 48.153 89.288 47.629 C 88.763 47.105 88.501 46.389 88.501 45.494 L 88.501 17.14 C 88.501 16.245 88.763 15.529 89.288 15.005 C 89.812 14.48 90.528 14.218 91.424 14.218 C 92.32 14.218 93.037 14.487 93.561 15.011 C 94.086 15.535 94.348 16.251 94.348 17.146 L 94.348 17.984 C 95.358 16.893 96.554 15.991 97.88 15.318 C 99.773 14.353 101.834 13.867 104.015 13.867 C 105.781 13.867 107.22 14.11 108.282 14.583 C 109.812 15.273 110.138 16.296 110.138 17.031 C 110.138 17.338 110.106 17.575 110.048 17.767 C 109.85 18.47 109.498 18.981 109.012 19.262 C 108.57 19.525 108.001 19.652 107.272 19.652 C 106.894 19.652 106.28 19.614 105.346 19.532 C 104.885 19.487 104.421 19.467 103.958 19.474 C 101.111 19.474 98.769 20.234 96.984 21.73 C 95.212 23.22 94.348 25.112 94.348 27.503 L 94.348 45.5 C 94.348 46.395 94.086 47.111 93.561 47.636 C 93.037 48.16 92.321 48.422 91.424 48.422 Z M 120.643 48.415 C 119.785 48.415 119.069 48.128 118.506 47.565 C 117.943 47.009 117.655 46.286 117.655 45.43 L 117.655 17.204 C 117.655 16.354 117.943 15.631 118.506 15.069 C 119.069 14.506 119.785 14.219 120.643 14.219 C 121.5 14.219 122.217 14.506 122.76 15.075 C 123.298 15.638 123.573 16.354 123.573 17.204 L 123.573 45.436 C 123.573 46.286 123.298 46.996 122.76 47.559 C 122.217 48.128 121.506 48.415 120.643 48.415 Z M 120.579 9.225 C 119.478 9.225 118.544 8.835 117.802 8.068 C 117.066 7.308 116.689 6.368 116.689 5.274 C 116.689 4.181 117.079 3.19 117.853 2.461 C 118.615 1.745 119.549 1.387 120.643 1.387 C 121.737 1.387 122.607 1.752 123.368 2.461 C 124.142 3.184 124.533 4.13 124.533 5.274 C 124.533 6.419 124.149 7.307 123.387 8.074 C 122.626 8.835 121.679 9.225 120.585 9.225 Z M 149.861 48.722 C 146.707 48.722 143.809 47.955 141.25 46.434 C 138.691 44.919 136.65 42.815 135.178 40.174 C 133.707 37.547 132.958 34.574 132.958 31.346 C 132.958 28.117 133.726 25.132 135.242 22.485 C 136.759 19.825 138.864 17.709 141.499 16.2 C 144.142 14.685 147.117 13.918 150.341 13.918 C 153.566 13.918 156.541 14.685 159.183 16.2 C 161.798 17.694 163.96 19.868 165.44 22.491 C 166.956 25.144 167.724 28.13 167.724 31.352 L 167.724 45.5 C 167.724 46.312 167.436 47.016 166.873 47.578 C 166.31 48.141 165.587 48.428 164.736 48.428 C 163.885 48.428 163.175 48.154 162.612 47.623 C 162.043 47.079 161.755 46.37 161.755 45.507 L 161.755 43.665 C 160.487 45.032 158.985 46.162 157.321 47.003 C 155.069 48.147 152.561 48.729 149.861 48.729 Z M 150.341 19.403 C 148.179 19.403 146.189 19.934 144.43 20.97 C 142.681 21.994 141.242 23.472 140.265 25.247 C 139.254 27.05 138.748 29.102 138.748 31.352 C 138.748 33.602 139.26 35.648 140.265 37.452 C 141.236 39.221 142.674 40.689 144.423 41.696 C 146.189 42.719 148.179 43.237 150.341 43.237 C 152.504 43.237 154.48 42.719 156.227 41.697 C 157.963 40.681 159.392 39.214 160.36 37.451 C 161.364 35.648 161.876 33.596 161.876 31.352 C 161.876 29.108 161.364 27.05 160.36 25.253 C 159.385 23.485 157.956 22.009 156.221 20.976 C 154.48 19.94 152.504 19.41 150.341 19.41 Z M 16.904 48.722 C 13.749 48.722 10.851 47.955 8.292 46.434 C 5.733 44.919 3.692 42.815 2.221 40.174 C 0.749 37.547 0.001 34.574 0.001 31.346 C 0.001 28.117 0.768 25.132 2.285 22.485 C 3.801 19.825 5.905 17.709 8.542 16.2 C 11.177 14.685 14.152 13.918 17.383 13.918 C 20.614 13.918 23.583 14.685 26.225 16.2 C 28.84 17.694 31.002 19.868 32.482 22.491 C 33.998 25.144 34.766 28.13 34.766 31.352 L 34.766 45.5 C 34.766 46.312 34.478 47.016 33.916 47.578 C 33.352 48.141 32.629 48.428 31.778 48.428 C 30.928 48.428 30.218 48.154 29.654 47.616 C 29.084 47.073 28.797 46.363 28.797 45.5 L 28.797 43.66 C 27.529 45.027 26.027 46.157 24.363 46.997 C 22.111 48.142 19.603 48.723 16.903 48.723 Z M 17.384 19.403 C 15.221 19.403 13.231 19.934 11.472 20.97 C 9.724 21.994 8.284 23.472 7.307 25.247 C 6.297 27.05 5.791 29.102 5.791 31.352 C 5.791 33.602 6.302 35.648 7.307 37.452 C 8.28 39.22 9.718 40.687 11.465 41.696 C 13.231 42.719 15.221 43.237 17.383 43.237 C 19.546 43.237 21.523 42.719 23.263 41.697 C 24.999 40.681 26.428 39.214 27.396 37.451 C 28.4 35.648 28.912 33.603 28.912 31.352 C 28.912 29.102 28.4 27.05 27.396 25.253 C 26.419 23.486 24.99 22.01 23.256 20.976 C 21.516 19.94 19.539 19.41 17.376 19.41 L 17.383 19.403 Z M 8.612 58.926 C 9.265 59.296 9.813 59.826 10.205 60.466 C 10.284 60.588 10.326 60.731 10.327 60.876 C 10.327 61.093 10.224 61.259 10.02 61.381 C 9.812 61.484 9.566 61.475 9.367 61.355 C 9.259 61.292 9.168 61.201 9.105 61.093 C 8.471 60.103 7.518 59.597 6.239 59.584 C 5.324 59.584 4.601 59.776 4.069 60.16 C 3.539 60.543 3.276 61.093 3.276 61.803 C 3.276 63.126 4.345 63.925 6.476 64.207 C 7.876 64.411 8.919 64.84 9.61 65.492 C 10.301 66.144 10.647 67.007 10.647 68.081 C 10.647 68.874 10.455 69.551 10.071 70.127 C 9.682 70.705 9.136 71.16 8.497 71.437 C 7.832 71.737 7.083 71.885 6.257 71.885 C 5.183 71.885 4.237 71.655 3.404 71.201 C 2.573 70.747 1.978 70.127 1.619 69.347 C 1.572 69.265 1.548 69.172 1.549 69.078 C 1.549 68.918 1.607 68.791 1.729 68.682 C 1.849 68.573 2.009 68.522 2.208 68.522 C 2.342 68.522 2.47 68.56 2.592 68.631 C 2.71 68.705 2.802 68.815 2.854 68.944 C 3.116 69.449 3.545 69.858 4.153 70.171 C 4.754 70.485 5.458 70.638 6.264 70.638 C 7.192 70.638 7.934 70.414 8.504 69.967 C 9.066 69.519 9.348 68.899 9.348 68.094 C 9.348 67.384 9.086 66.784 8.561 66.297 C 8.036 65.811 7.249 65.504 6.201 65.364 C 4.889 65.204 3.859 64.794 3.111 64.136 C 2.361 63.478 1.984 62.666 1.984 61.706 C 1.984 61.029 2.17 60.435 2.534 59.923 C 2.899 59.412 3.411 59.015 4.057 58.74 C 4.71 58.466 5.445 58.325 6.271 58.325 C 7.16 58.325 7.947 58.523 8.625 58.919 Z M 30.422 59.214 C 31.439 59.782 32.278 60.621 32.847 61.637 C 33.429 62.666 33.717 63.823 33.717 65.108 C 33.717 66.393 33.423 67.557 32.847 68.586 C 32.28 69.606 31.44 70.447 30.422 71.016 C 29.386 71.603 28.234 71.898 26.954 71.898 C 25.674 71.898 24.51 71.604 23.48 71.015 C 22.467 70.444 21.632 69.603 21.068 68.586 C 20.486 67.55 20.198 66.393 20.198 65.108 C 20.198 63.823 20.486 62.666 21.068 61.637 C 21.636 60.624 22.47 59.786 23.48 59.214 C 24.51 58.625 25.669 58.331 26.954 58.331 C 28.24 58.331 29.386 58.625 30.422 59.214 Z M 24.152 60.314 C 23.333 60.788 22.657 61.475 22.195 62.301 C 21.721 63.139 21.485 64.079 21.485 65.101 C 21.485 66.125 21.721 67.077 22.195 67.921 C 22.657 68.748 23.333 69.434 24.152 69.909 C 24.984 70.395 25.918 70.639 26.954 70.639 C 27.991 70.639 28.912 70.395 29.744 69.909 C 30.564 69.435 31.24 68.748 31.702 67.921 C 32.175 67.077 32.412 66.137 32.412 65.101 C 32.412 64.066 32.175 63.139 31.702 62.301 C 31.24 61.474 30.564 60.788 29.744 60.313 C 28.912 59.827 27.984 59.584 26.954 59.584 C 25.924 59.584 24.984 59.827 24.152 60.314 Z M 52.302 70.65 C 52.423 70.767 52.491 70.929 52.488 71.098 C 52.492 71.267 52.425 71.43 52.302 71.546 C 52.175 71.668 52.005 71.733 51.829 71.725 L 44.542 71.725 C 44.367 71.727 44.198 71.658 44.075 71.533 C 43.95 71.41 43.881 71.242 43.883 71.067 L 43.883 59.169 C 43.883 58.989 43.947 58.829 44.075 58.702 C 44.198 58.577 44.367 58.508 44.542 58.51 C 44.734 58.51 44.894 58.574 45.015 58.696 C 45.139 58.822 45.206 58.993 45.201 59.169 L 45.201 70.479 L 51.822 70.479 C 52.014 70.479 52.174 70.536 52.296 70.657 L 52.302 70.651 Z M 62.231 58.69 C 62.357 58.566 62.528 58.498 62.705 58.504 C 62.897 58.504 63.057 58.568 63.178 58.689 C 63.302 58.815 63.369 58.986 63.364 59.162 L 63.364 67.359 C 63.364 68.011 63.53 68.599 63.863 69.11 C 64.196 69.622 64.663 70.024 65.258 70.312 C 65.859 70.6 66.538 70.74 67.305 70.74 C 68.073 70.74 68.732 70.6 69.32 70.312 C 69.882 70.046 70.361 69.63 70.702 69.11 C 71.035 68.599 71.202 68.01 71.202 67.359 L 71.202 59.162 C 71.202 58.971 71.265 58.811 71.387 58.689 C 71.513 58.565 71.684 58.498 71.86 58.504 C 72.037 58.499 72.208 58.565 72.334 58.689 C 72.458 58.815 72.524 58.986 72.519 59.162 L 72.519 67.359 C 72.519 68.247 72.295 69.046 71.847 69.756 C 71.393 70.467 70.751 71.038 69.992 71.406 C 69.199 71.802 68.303 72 67.299 72 C 66.294 72 65.373 71.802 64.573 71.405 C 63.773 71.009 63.146 70.459 62.699 69.755 C 62.251 69.053 62.027 68.254 62.027 67.359 L 62.027 59.162 C 62.022 58.986 62.089 58.815 62.212 58.689 L 62.232 58.689 Z M 92.333 58.676 C 92.449 58.793 92.512 58.953 92.506 59.118 C 92.51 59.277 92.448 59.43 92.333 59.54 C 92.215 59.654 92.056 59.714 91.892 59.706 L 87.86 59.706 L 87.86 71.066 C 87.862 71.24 87.795 71.408 87.674 71.533 C 87.551 71.661 87.379 71.731 87.201 71.725 C 87.026 71.727 86.857 71.658 86.734 71.533 C 86.609 71.41 86.54 71.242 86.542 71.067 L 86.542 59.706 L 82.524 59.706 C 82.361 59.711 82.202 59.651 82.083 59.54 C 81.97 59.429 81.907 59.277 81.91 59.118 C 81.904 58.953 81.967 58.793 82.083 58.676 C 82.201 58.562 82.36 58.502 82.524 58.51 L 91.891 58.51 C 92.054 58.505 92.213 58.565 92.332 58.676 Z M 102.083 58.69 C 102.208 58.569 102.376 58.502 102.55 58.504 C 102.742 58.504 102.902 58.568 103.023 58.689 C 103.147 58.815 103.214 58.986 103.209 59.162 L 103.209 71.06 C 103.211 71.234 103.144 71.402 103.023 71.527 C 102.9 71.655 102.728 71.725 102.55 71.719 C 102.375 71.721 102.206 71.652 102.083 71.527 C 101.958 71.404 101.889 71.235 101.891 71.06 L 101.891 59.162 C 101.891 58.971 101.955 58.811 102.083 58.689 Z M 123.611 59.214 C 124.628 59.782 125.467 60.621 126.036 61.637 C 126.618 62.666 126.906 63.823 126.906 65.108 C 126.906 66.393 126.618 67.557 126.036 68.586 C 125.467 69.604 124.628 70.445 123.611 71.016 C 122.575 71.603 121.423 71.898 120.144 71.898 C 118.864 71.898 117.7 71.604 116.67 71.015 C 115.657 70.444 114.822 69.603 114.258 68.586 C 113.676 67.55 113.388 66.393 113.388 65.108 C 113.388 63.823 113.676 62.666 114.258 61.637 C 114.826 60.624 115.66 59.786 116.67 59.214 C 117.7 58.625 118.858 58.331 120.144 58.331 C 121.43 58.331 122.575 58.625 123.611 59.214 Z M 117.342 60.314 C 116.522 60.788 115.846 61.475 115.384 62.301 C 114.911 63.139 114.674 64.079 114.674 65.101 C 114.674 66.125 114.911 67.077 115.384 67.921 C 115.846 68.748 116.522 69.435 117.342 69.909 C 118.173 70.395 119.107 70.639 120.144 70.639 C 121.18 70.639 122.102 70.395 122.933 69.909 C 123.753 69.435 124.429 68.748 124.891 67.921 C 125.364 67.077 125.601 66.137 125.601 65.101 C 125.601 64.066 125.364 63.139 124.891 62.301 C 124.429 61.474 123.753 60.787 122.933 60.313 C 122.102 59.827 121.174 59.584 120.144 59.584 C 119.114 59.584 118.173 59.827 117.342 60.314 Z M 146.534 58.69 C 146.659 58.569 146.827 58.502 147.001 58.504 C 147.178 58.499 147.349 58.565 147.475 58.689 C 147.599 58.815 147.665 58.986 147.66 59.162 L 147.66 71.06 C 147.662 71.234 147.595 71.402 147.475 71.527 C 147.351 71.655 147.179 71.725 147.001 71.719 C 146.778 71.719 146.611 71.649 146.509 71.501 L 138.397 60.869 L 138.397 71.06 C 138.399 71.234 138.332 71.402 138.211 71.527 C 138.088 71.655 137.916 71.725 137.738 71.719 C 137.561 71.724 137.39 71.657 137.264 71.533 C 137.14 71.407 137.074 71.236 137.079 71.06 L 137.079 59.162 C 137.074 58.986 137.141 58.815 137.264 58.689 C 137.39 58.565 137.561 58.498 137.738 58.504 C 137.942 58.504 138.109 58.581 138.243 58.74 L 146.342 69.372 L 146.342 59.162 C 146.342 58.971 146.406 58.811 146.534 58.689 Z M 164.909 58.926 C 165.562 59.296 166.11 59.826 166.502 60.466 C 166.581 60.588 166.623 60.731 166.623 60.876 C 166.623 61.093 166.521 61.259 166.316 61.381 C 166.109 61.484 165.863 61.475 165.664 61.355 C 165.557 61.29 165.467 61.2 165.401 61.093 C 164.768 60.103 163.815 59.597 162.535 59.584 C 161.62 59.584 160.897 59.776 160.366 60.16 C 159.835 60.543 159.573 61.093 159.573 61.803 C 159.573 63.126 160.641 63.925 162.772 64.207 C 164.173 64.411 165.216 64.84 165.907 65.492 C 166.598 66.144 166.943 67.007 166.943 68.081 C 166.943 68.874 166.751 69.551 166.367 70.127 C 165.979 70.705 165.433 71.16 164.794 71.437 C 164.128 71.737 163.38 71.885 162.554 71.885 C 161.48 71.885 160.533 71.655 159.701 71.201 C 158.869 70.747 158.274 70.127 157.916 69.347 C 157.869 69.265 157.845 69.172 157.846 69.078 C 157.846 68.918 157.903 68.791 158.025 68.682 C 158.146 68.573 158.306 68.522 158.505 68.522 C 158.639 68.522 158.767 68.56 158.888 68.631 C 159.006 68.705 159.098 68.815 159.151 68.944 C 159.413 69.449 159.842 69.858 160.45 70.171 C 161.057 70.485 161.755 70.638 162.561 70.638 C 163.488 70.638 164.231 70.414 164.8 69.967 C 165.369 69.519 165.644 68.899 165.644 68.094 C 165.644 67.384 165.382 66.784 164.858 66.297 C 164.333 65.811 163.546 65.504 162.497 65.364 C 161.185 65.204 160.155 64.794 159.407 64.136 C 158.658 63.478 158.281 62.666 158.281 61.706 C 158.281 61.029 158.466 60.435 158.831 59.923 C 159.196 59.412 159.707 59.015 160.354 58.74 C 161 58.466 161.742 58.325 162.567 58.325 C 163.456 58.325 164.243 58.523 164.922 58.919 Z\" fill=\"rgb(10,44,79)\"></path><path d=\"M 71.553 32.362 C 71.406 34.152 70.913 35.802 70.101 37.266 C 69.124 39.033 67.695 40.509 65.961 41.543 C 64.221 42.585 62.244 43.109 60.081 43.109 C 57.919 43.109 55.93 42.579 54.171 41.537 C 52.422 40.513 50.983 39.035 50.005 37.26 C 49.186 35.795 48.7 34.146 48.547 32.356 L 42.744 32.452 C 42.923 35.188 43.671 37.732 44.984 40.022 C 46.466 42.641 48.627 44.813 51.24 46.306 C 53.876 47.821 56.85 48.588 60.082 48.588 C 63.312 48.588 66.288 47.821 68.923 46.306 C 71.536 44.812 73.698 42.641 75.18 40.021 C 76.486 37.733 77.24 35.181 77.42 32.451 L 71.553 32.356 Z\" fill=\"rgb(243,190,18)\"></path><path d=\"M 77.465 17.012 C 77.465 16.762 77.445 16.558 77.407 16.386 L 77.407 2.986 C 77.407 2.136 77.132 1.419 76.594 0.856 C 76.051 0.289 75.34 0 74.477 0 C 73.613 0 72.903 0.288 72.34 0.85 C 71.777 1.413 71.489 2.135 71.489 2.992 L 71.559 18.809 C 70.741 18.101 69.856 17.474 68.917 16.936 C 66.281 15.42 63.307 14.653 60.075 14.653 C 56.845 14.653 53.87 15.42 51.234 16.936 C 48.619 18.428 46.457 20.599 44.977 23.22 C 43.672 25.509 42.917 28.053 42.737 30.79 L 42.725 30.988 L 48.534 30.988 L 48.534 30.886 C 48.694 29.096 49.18 27.446 49.999 25.982 C 50.976 24.207 52.416 22.729 54.164 21.705 C 55.924 20.663 57.913 20.132 60.076 20.132 C 62.238 20.132 64.215 20.662 65.955 21.698 C 67.689 22.732 69.118 24.208 70.095 25.975 C 70.913 27.433 71.4 29.083 71.547 30.879 L 71.547 30.981 L 77.458 30.981 L 77.458 17.012 Z\" fill=\"rgb(10,44,79)\"></path></g></svg>',svgContentId:9204118662,withExternalLayout:true}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:127.27272451416526,intrinsicWidth:454.54544469344734,pixelHeight:140,pixelWidth:500,src:\"https://framerusercontent.com/images/AS6tB0Z3M4cFRaCAMFRqk0H1rg.png\"},className:\"framer-vy0kw3\",\"data-framer-name\":\"65ca233ab931cdebe3c0f0e4 Newsom_Primary-p-500\"})],speed:40,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1m7sjlb\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{zPcqYc0Lf:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-1.5px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"Client Feedback\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-2.6px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"Client Feedback\"})}),className:\"framer-c30c7g\",fonts:[\"GF;Inter-700\"],id:elementId5,ref:ref6,verticalAlignment:\"top\",withExternalLayout:true})})}),isDisplayed2()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation1,__framer__exit:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-cxuisn-container hidden-if76u1\",id:elementId6,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"uZVCv9Ji5\",ref:ref7,rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.3)\",arrowGap:10,arrowPadding:20,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:40,showMouseControls:true},autoPlayControl:true,borderRadius:50,direction:\"left\",dragControl:true,effectsOptions:{effectsHover:false,effectsOpacity:1,effectsPerspective:200,effectsRotate:0,effectsScale:1,playOffscreen:false},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:0,overflow:false},gap:25,height:\"100%\",id:\"uZVCv9Ji5\",intervalControl:3,itemAmount:3,layoutId:\"uZVCv9Ji5\",padding:50,paddingBottom:50,paddingLeft:50,paddingPerSide:true,paddingRight:50,paddingTop:50,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-v6zr53\",\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1llsruz\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:100,intrinsicWidth:100,src:\"https://framerusercontent.com/images/yifANZz08LFTlpktSXzUNZAGAQ4.png\"},className:\"framer-fn2lw8\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1skuskf\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-b9c3c957-2c66-49c4-9732-fa196fddac20, rgb(0, 17, 34))\"},children:\"Dave Topping\"})}),className:\"framer-1hgwmuj\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-fb4b67b5-91ba-4b73-b4a6-f55417ea1c0c, rgb(102, 102, 102))\"},children:\"Operations Director,\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-fb4b67b5-91ba-4b73-b4a6-f55417ea1c0c, rgb(102, 102, 102))\"},children:\"Walker Lovell\"})]}),className:\"framer-ezdgu2\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(102, 102, 102)\"},children:'\"Our experience with Tech2Rec has been nothing short of exceptional, they have a deep understanding of the latest trends and have advised us on the most effective solutions for our business. This has led to increased revenue & growth for our business.\"'})}),className:\"framer-1i3sz4m\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-fndxnn\",\"data-framer-name\":\"Venturi\",id:elementId2,ref:ref3,children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-p06rvr\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:100,intrinsicWidth:100,src:\"https://framerusercontent.com/images/6SFrcqoMs9H4eYnMrBhej3SMqSs.png\"},className:\"framer-n28hvc\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1edtaqm\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-b9c3c957-2c66-49c4-9732-fa196fddac20, rgb(0, 17, 34))\"},children:\"Brad Lamb\"})}),className:\"framer-11taugn\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-fb4b67b5-91ba-4b73-b4a6-f55417ea1c0c, rgb(102, 102, 102))\"},children:\"CEO,\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-fb4b67b5-91ba-4b73-b4a6-f55417ea1c0c, rgb(102, 102, 102))\"},children:\"Venturi\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-fb4b67b5-91ba-4b73-b4a6-f55417ea1c0c, rgb(102, 102, 102))\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})})]}),className:\"framer-1fq7rms\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(102, 102, 102)\"},children:'\"I would highly recommend the team at Tech2Rec. They can\\'t do more to support you & their knowledge and guidance regarding technology has been really invaluable. They are friendly & nothing is too much trouble. Navigating how to get the best out of the tools to take you forward as a recruitment business\"'})}),className:\"framer-196x0hs\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-z0wp89\",\"data-framer-name\":\"Integro\",id:elementId3,ref:ref4,children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-m1ylh\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:100,intrinsicWidth:100,src:\"https://framerusercontent.com/images/2Lzd2aaT4idu6gbGvkR9kvto2cM.png\"},className:\"framer-ik9iu7\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-nfpnyg\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-b9c3c957-2c66-49c4-9732-fa196fddac20, rgb(0, 17, 34))\"},children:\"Jonny O'Dea\"})}),className:\"framer-1gi20xe\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-fb4b67b5-91ba-4b73-b4a6-f55417ea1c0c, rgb(102, 102, 102))\"},children:\"Director,\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-fb4b67b5-91ba-4b73-b4a6-f55417ea1c0c, rgb(102, 102, 102))\"},children:\"Integro Partners\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-fb4b67b5-91ba-4b73-b4a6-f55417ea1c0c, rgb(102, 102, 102))\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})})]}),className:\"framer-1qz5u1u\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(102, 102, 102)\"},children:\"\\\"The onboarding process with Tech2Rec was seamless, we had a technology roadmap for the next 6 months in place within a week. We've recently implemented an AI phone system which is saving each member of my team hours every week. I wouldn't hesitate to recommend Tech2Rec to any recruiter looking for a forward thinking technology partner.\\\"\"})}),className:\"framer-mxkrq1\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1diheow\",\"data-framer-name\":\"ddn2\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1swq06n\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:100,intrinsicWidth:100,sizes:\"50px\",src:\"https://framerusercontent.com/images/0rQYDFtIVNRBI5LhcFkO8GyRco.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/0rQYDFtIVNRBI5LhcFkO8GyRco.png?scale-down-to=512 512w,https://framerusercontent.com/images/0rQYDFtIVNRBI5LhcFkO8GyRco.png 640w\"},className:\"framer-1btdqxk\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-2z4jef\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-b9c3c957-2c66-49c4-9732-fa196fddac20, rgb(0, 17, 34))\"},children:\"John Marks\"})}),className:\"framer-1oeq89y\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-fb4b67b5-91ba-4b73-b4a6-f55417ea1c0c, rgb(102, 102, 102))\"},children:\"Operations Director,\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-fb4b67b5-91ba-4b73-b4a6-f55417ea1c0c, rgb(102, 102, 102))\"},children:\"Dynamic Search\"})]}),className:\"framer-g14lnq\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(102, 102, 102)\"},children:'\"The team at Tech2Rec have been instrumental to our business growth over the last 18 months. Recommending automation & AI to streamline sales & operations. Their knowledge of the recruitment sector has proven invaluable. They know exactly what solutions to implement when helping us solve a business problem.\"'})}),className:\"framer-oi36vr\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})],startFrom:0,style:{height:\"100%\",maxHeight:\"100%\",width:\"100%\"},transitionControl:{damping:40,delay:0,mass:1,stiffness:200,type:\"spring\"},width:\"100%\"})})}),isDisplayed3()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1icxda6-container hidden-72rtr7\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"F_vSvrhnw\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.3)\",arrowGap:10,arrowPadding:20,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:40,showMouseControls:true},autoPlayControl:true,borderRadius:50,direction:\"left\",dragControl:true,effectsOptions:{effectsHover:false,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1,playOffscreen:false},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:0,overflow:false},gap:19,height:\"100%\",id:\"F_vSvrhnw\",intervalControl:5,itemAmount:2,layoutId:\"F_vSvrhnw\",padding:50,paddingBottom:50,paddingLeft:50,paddingPerSide:false,paddingRight:50,paddingTop:50,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-v6zr53\",\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1llsruz\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:100,intrinsicWidth:100,src:\"https://framerusercontent.com/images/yifANZz08LFTlpktSXzUNZAGAQ4.png\"},className:\"framer-fn2lw8\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1skuskf\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-b9c3c957-2c66-49c4-9732-fa196fddac20, rgb(0, 17, 34))\"},children:\"Dave Topping\"})}),className:\"framer-1hgwmuj\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-fb4b67b5-91ba-4b73-b4a6-f55417ea1c0c, rgb(102, 102, 102))\"},children:\"Operations Director,\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-fb4b67b5-91ba-4b73-b4a6-f55417ea1c0c, rgb(102, 102, 102))\"},children:\"Walker Lovell\"})]}),className:\"framer-ezdgu2\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(102, 102, 102)\"},children:'\"Our experience with Tech2Rec has been nothing short of exceptional, they have a deep understanding of the latest trends and have advised us on the most effective solutions for our business. This has led to increased revenue & growth for our business.\"'})}),className:\"framer-1i3sz4m\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-fndxnn\",\"data-framer-name\":\"Venturi\",id:elementId2,ref:ref3,children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-p06rvr\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:100,intrinsicWidth:100,src:\"https://framerusercontent.com/images/6SFrcqoMs9H4eYnMrBhej3SMqSs.png\"},className:\"framer-n28hvc\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1edtaqm\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-b9c3c957-2c66-49c4-9732-fa196fddac20, rgb(0, 17, 34))\"},children:\"Brad Lamb\"})}),className:\"framer-11taugn\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-fb4b67b5-91ba-4b73-b4a6-f55417ea1c0c, rgb(102, 102, 102))\"},children:\"CEO,\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-fb4b67b5-91ba-4b73-b4a6-f55417ea1c0c, rgb(102, 102, 102))\"},children:\"Venturi\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-fb4b67b5-91ba-4b73-b4a6-f55417ea1c0c, rgb(102, 102, 102))\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})})]}),className:\"framer-1fq7rms\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(102, 102, 102)\"},children:'\"I would highly recommend the team at Tech2Rec. They can\\'t do more to support you & their knowledge and guidance regarding technology has been really invaluable. They are friendly & nothing is too much trouble. Navigating how to get the best out of the tools to take you forward as a recruitment business\"'})}),className:\"framer-196x0hs\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-z0wp89\",\"data-framer-name\":\"Integro\",id:elementId3,ref:ref4,children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-m1ylh\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:100,intrinsicWidth:100,src:\"https://framerusercontent.com/images/2Lzd2aaT4idu6gbGvkR9kvto2cM.png\"},className:\"framer-ik9iu7\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-nfpnyg\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-b9c3c957-2c66-49c4-9732-fa196fddac20, rgb(0, 17, 34))\"},children:\"Jonny O'Dea\"})}),className:\"framer-1gi20xe\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-fb4b67b5-91ba-4b73-b4a6-f55417ea1c0c, rgb(102, 102, 102))\"},children:\"Director,\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-fb4b67b5-91ba-4b73-b4a6-f55417ea1c0c, rgb(102, 102, 102))\"},children:\"Integro Partners\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-fb4b67b5-91ba-4b73-b4a6-f55417ea1c0c, rgb(102, 102, 102))\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})})]}),className:\"framer-1qz5u1u\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(102, 102, 102)\"},children:\"\\\"The onboarding process with Tech2Rec was seamless, we had a technology roadmap for the next 6 months in place within a week. We've recently implemented an AI phone system which is saving each member of my team hours every week. I wouldn't hesitate to recommend Tech2Rec to any recruiter looking for a forward thinking technology partner.\\\"\"})}),className:\"framer-mxkrq1\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1diheow\",\"data-framer-name\":\"ddn2\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1swq06n\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:100,intrinsicWidth:100,sizes:\"50px\",src:\"https://framerusercontent.com/images/0rQYDFtIVNRBI5LhcFkO8GyRco.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/0rQYDFtIVNRBI5LhcFkO8GyRco.png?scale-down-to=512 512w,https://framerusercontent.com/images/0rQYDFtIVNRBI5LhcFkO8GyRco.png 640w\"},className:\"framer-1btdqxk\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-2z4jef\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-b9c3c957-2c66-49c4-9732-fa196fddac20, rgb(0, 17, 34))\"},children:\"John Marks\"})}),className:\"framer-1oeq89y\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-fb4b67b5-91ba-4b73-b4a6-f55417ea1c0c, rgb(102, 102, 102))\"},children:\"Operations Director,\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-fb4b67b5-91ba-4b73-b4a6-f55417ea1c0c, rgb(102, 102, 102))\"},children:\"Dynamic Search\"})]}),className:\"framer-g14lnq\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(102, 102, 102)\"},children:'\"The team at Tech2Rec have been instrumental to our business growth over the last 18 months. Recommending automation & AI to streamline sales & operations. Their knowledge of the recruitment sector has proven invaluable. They know exactly what solutions to implement when helping us solve a business problem.\"'})}),className:\"framer-oi36vr\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:40,delay:0,mass:1,stiffness:200,type:\"spring\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1080,pixelWidth:1920,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/yAa9ewOZq2DNJbK38THgOBMnpmo.jpg\",srcSet:\"https://framerusercontent.com/images/yAa9ewOZq2DNJbK38THgOBMnpmo.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/yAa9ewOZq2DNJbK38THgOBMnpmo.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/yAa9ewOZq2DNJbK38THgOBMnpmo.jpg 1920w\"},className:\"framer-lqw4vn\",\"data-framer-name\":\"Blog\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hFcrj_iqy:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-1.5px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Our Services\"})})},zPcqYc0Lf:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-1.5px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Our Services\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-2.6px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Our Services\"})}),className:\"framer-15sneej\",fonts:[\"GF;Inter-700\"],id:elementId7,ref:ref8,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1yb69bh\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation3,__framer__exit:animation4,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1vycaui\",\"data-framer-name\":\"Card\",whileHover:animation5,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-zm3run\",\"data-framer-name\":\"Image\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1ao0pxs\",\"data-framer-name\":\"Graphic\",fill:\"rgb(163, 64, 255)\",intrinsicHeight:103,intrinsicWidth:123,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"122.88\" height=\"102.828\" xml:space=\"preserve\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M29.83 90.018V53.095h16.606c7.041 1.263 14.082 5.079 21.123 9.513h12.898c5.84.352 8.896 6.27 3.225 10.158-4.525 3.316-10.49 3.129-16.607 2.58-4.217-.208-4.402 5.463 0 5.481 1.527.118 3.189-.239 4.641-.241 7.635-.007 13.924-1.467 17.771-7.498l1.936-4.515 19.188-9.513c9.602-3.162 16.424 6.883 9.352 13.866-13.898 10.111-28.152 18.433-42.729 25.152-10.588 6.44-21.175 6.222-31.763 0l-15.641-8.06zm72.231-59.168c-.27-.186-.578-.269-.889-.207a1.195 1.195 0 0 0-.764.496l-1.053 1.486a7.108 7.108 0 0 0-1.178-.392 12.806 12.806 0 0 0-1.217-.248l-.332-1.941a1.187 1.187 0 0 0-.475-.764c-.268-.186-.557-.248-.887-.186l-2.438.434a1.222 1.222 0 0 0-.764.475c-.186.269-.268.558-.207.888l.311 1.776a7.088 7.088 0 0 0-1.115.579 8.747 8.747 0 0 0-1.012.702l-1.652-1.136c-.268-.186-.557-.268-.867-.206a1.19 1.19 0 0 0-.764.496l-1.404 2.003a1.155 1.155 0 0 0-.207.888c.063.331.229.578.496.764l1.486 1.053c-.164.372-.289.764-.393 1.177s-.186.805-.248 1.218l-1.939.331a1.2 1.2 0 0 0-.766.475c-.186.269-.246.558-.186.888l.434 2.437c.063.31.207.557.477.764.268.186.557.268.887.206l1.775-.31c.166.392.352.764.578 1.115.207.351.455.702.703 1.032l-1.137 1.631c-.186.268-.268.558-.205.867.061.31.227.578.494.764l2.023 1.425c.27.186.58.247.889.186.311-.062.578-.206.785-.475l1.053-1.507c.371.165.764.289 1.178.392.412.103.805.186 1.217.248l.332 1.94c.061.331.227.578.475.764.268.187.557.248.887.187l2.438-.434c.309-.062.557-.206.764-.475.186-.269.268-.558.207-.889l-.311-1.775a7.083 7.083 0 0 0 1.115-.578c.352-.207.701-.455 1.033-.702l1.631 1.136c.268.186.557.269.887.206a1.15 1.15 0 0 0 .766-.495l1.424-2.024c.186-.268.248-.578.186-.888a1.252 1.252 0 0 0-.475-.785l-1.508-1.033c.166-.372.289-.764.393-1.177.104-.413.186-.805.248-1.218l1.941-.331c.33-.062.578-.227.764-.475.186-.269.248-.558.186-.888l-.434-2.437a1.22 1.22 0 0 0-.475-.764c-.268-.186-.557-.269-.889-.207l-1.775.31a9.48 9.48 0 0 0-.578-1.115 7.435 7.435 0 0 0-.701-1.011l1.135-1.652c.186-.269.27-.558.207-.867s-.227-.578-.496-.764l-2.002-1.404-.062.021zm-7.082 5.74a4.966 4.966 0 0 1 1.92.042 4.988 4.988 0 0 1 1.693.743c.496.351.928.806 1.279 1.342s.578 1.136.682 1.776.104 1.28-.041 1.92a4.999 4.999 0 0 1-.744 1.693c-.35.496-.805.929-1.342 1.28s-1.135.578-1.775.682a5.005 5.005 0 0 1-1.92-.042 4.988 4.988 0 0 1-1.693-.743 4.975 4.975 0 0 1-1.281-1.342 4.576 4.576 0 0 1-.682-1.776 5.025 5.025 0 0 1 .043-1.92 5.034 5.034 0 0 1 .742-1.693 5 5 0 0 1 1.342-1.28 4.522 4.522 0 0 1 1.777-.682zM76.229 7.64a.864.864 0 0 0-.289-.207.694.694 0 0 0-.311-.062.691.691 0 0 0-.309.062 1.13 1.13 0 0 0-.27.186l-.02.021-2.334 2.333a1.318 1.318 0 0 1-1.693.145c-.268-.165-.537-.331-.846-.496-.33-.165-.641-.331-.93-.475a13.873 13.873 0 0 0-.971-.413c-.289-.103-.619-.227-1.012-.351a1.327 1.327 0 0 1-.908-1.26V3.552c0-.124-.021-.248-.063-.331s-.104-.186-.186-.248a.956.956 0 0 0-.248-.186.774.774 0 0 0-.33-.063H61.01c-.124 0-.227.021-.31.042a1.081 1.081 0 0 0-.289.207.582.582 0 0 0-.166.248.795.795 0 0 0-.062.331v3.283a1.35 1.35 0 0 1-1.094 1.321c-.351.083-.681.165-.97.248-.331.104-.64.207-.971.33-.31.124-.64.248-.95.413-.331.145-.62.31-.909.455a1.308 1.308 0 0 1-1.569-.228l-2.581-2.56c-.019-.021-.019-.021-.019-.041a.973.973 0 0 0-.248-.186c-.083-.041-.165-.041-.289-.041s-.227.021-.31.062a.831.831 0 0 0-.289.207l-3.139 3.159a.827.827 0 0 0-.207.289c-.042.083-.062.186-.062.31s.021.227.062.31c.041.083.103.186.186.269v.021l2.333 2.333c.455.455.517 1.177.145 1.693-.165.269-.33.537-.495.847-.166.33-.331.64-.475.929-.145.31-.29.64-.413.971-.103.289-.227.619-.351 1.012a1.327 1.327 0 0 1-1.26.908h-3.572a.787.787 0 0 0-.33.062 1.703 1.703 0 0 0-.248.166.567.567 0 0 0-.165.247.795.795 0 0 0-.062.331v4.501c0 .124.021.227.042.31.041.083.103.186.207.289a.57.57 0 0 0 .248.165.78.78 0 0 0 .331.062h3.283c.661 0 1.198.475 1.322 1.095.082.351.165.681.248.95.103.33.207.661.33.991.124.31.248.64.413.971.166.351.31.661.455.95.269.537.165 1.156-.248 1.549l-2.561 2.54-.021.021a.956.956 0 0 0-.186.248c-.041.083-.041.166-.041.289 0 .124.021.227.062.31a.68.68 0 0 0 .206.289l3.118 3.16a.862.862 0 0 0 .289.186.97.97 0 0 0 .682 0c.082-.041.186-.103.269-.165l2.313-2.354c.454-.475 1.177-.516 1.693-.165.269.165.536.331.846.496.331.165.64.33.929.475.31.145.64.289.971.413.289.103.62.227 1.012.351.558.186.909.702.909 1.26v3.572c0 .124.021.248.062.331.041.083.103.186.165.248.165.165.351.227.599.227h4.502c.123 0 .227-.021.309-.042a1.09 1.09 0 0 0 .289-.206.597.597 0 0 0 .166-.248.794.794 0 0 0 .063-.331v-3.283c0-.661.475-1.198 1.094-1.322.35-.083.682-.165.971-.248.33-.104.639-.207.971-.331.309-.124.639-.248.969-.413.352-.165.662-.31.951-.454.537-.269 1.156-.165 1.549.248l2.539 2.561.021.021a.95.95 0 0 0 .246.186c.084.042.188.042.311.042a.7.7 0 0 0 .311-.062c.082-.042.164-.104.248-.186.02-.021.041-.041.061-.041l3.139-3.098a.847.847 0 0 0 .186-.289.826.826 0 0 0 .063-.33.929.929 0 0 0-.063-.351 1.847 1.847 0 0 0-.164-.269l-2.354-2.313a1.316 1.316 0 0 1-.166-1.693c.166-.269.33-.537.496-.847.164-.33.33-.64.475-.929.145-.31.289-.64.412-.971.104-.289.229-.619.352-1.012a1.324 1.324 0 0 1 1.26-.908h3.572a.768.768 0 0 0 .33-.063 1.04 1.04 0 0 0 .248-.165c.166-.165.227-.351.227-.599V21.79c0-.124-.02-.227-.041-.31a1.097 1.097 0 0 0-.207-.289.573.573 0 0 0-.246-.165.797.797 0 0 0-.33-.062h-3.285c-.66 0-1.217-.496-1.32-1.115a56.031 56.031 0 0 1-.248-.908c-.104-.31-.207-.641-.352-.991 0-.021-.02-.042-.02-.063-.125-.33-.248-.619-.373-.908-.145-.31-.289-.62-.453-.909a1.31 1.31 0 0 1 .227-1.569l2.561-2.581c0-.021.021-.021.041-.021.082-.082.145-.165.186-.248s.041-.165.041-.289a.69.69 0 0 0-.061-.31.831.831 0 0 0-.207-.289l-3.16-3.139.014.016zm.744-2.663c.434.186.805.434 1.135.764l3.16 3.139h.02c.33.331.578.702.764 1.115.188.434.27.867.27 1.342 0 .476-.104.93-.27 1.343a3.17 3.17 0 0 1-.783 1.094l-1.859 1.879c.021.062.063.124.082.186.166.351.311.723.455 1.073 0 .021.021.042.021.063.145.351.268.743.393 1.156l.041.145h2.271c.475 0 .928.083 1.342.269.412.165.783.434 1.115.764l.02.021c.33.33.578.702.744 1.115.164.413.268.867.268 1.322v4.501c0 .971-.33 1.796-1.012 2.478-.33.331-.723.599-1.135.764a3.613 3.613 0 0 1-1.342.248h-2.645c-.02.062-.061.145-.082.207-.145.372-.311.743-.475 1.115-.186.392-.352.764-.537 1.094l-.063.124 1.611 1.59.063.062c.33.331.557.723.723 1.136.164.413.248.847.248 1.322a3.552 3.552 0 0 1-.971 2.437l-.041.041-3.16 3.139c-.33.351-.703.599-1.115.785s-.867.268-1.363.268c-.475 0-.928-.103-1.363-.268a3.27 3.27 0 0 1-1.113-.785l-1.838-1.858a.65.65 0 0 1-.207.083c-.352.145-.723.31-1.115.454-.371.145-.764.269-1.156.393-.063.021-.104.042-.166.042v2.25c0 .475-.082.929-.268 1.342a3.376 3.376 0 0 1-.764 1.115l-.021.021c-.33.33-.701.578-1.115.743a3.573 3.573 0 0 1-1.32.269h-4.502c-.971 0-1.796-.33-2.478-1.012a3.454 3.454 0 0 1-.764-1.136 3.61 3.61 0 0 1-.248-1.342V40.74c-.062-.021-.145-.062-.207-.083-.372-.145-.743-.31-1.115-.475-.393-.186-.764-.351-1.095-.537l-.124-.062-1.59 1.611-.062.062a3.318 3.318 0 0 1-1.136.723 3.5 3.5 0 0 1-1.321.248 3.552 3.552 0 0 1-2.437-.971l-.042-.041-3.159-3.201a3.718 3.718 0 0 1-.764-1.115 3.314 3.314 0 0 1-.268-1.342c0-.475.103-.929.268-1.342.186-.413.455-.785.785-1.115l1.858-1.838a.61.61 0 0 1-.082-.207c-.145-.351-.31-.723-.455-1.115-.145-.393-.289-.764-.392-1.156l-.042-.166h-2.25c-.476 0-.93-.082-1.343-.268a3.371 3.371 0 0 1-1.115-.764l-.021-.021a3.298 3.298 0 0 1-.743-1.115 3.598 3.598 0 0 1-.269-1.321v-4.501c0-.475.083-.909.248-1.342.165-.413.434-.784.764-1.136.331-.33.723-.599 1.136-.764a3.59 3.59 0 0 1 1.343-.248h2.643c.021-.062.062-.145.083-.206.145-.372.31-.744.475-1.115.186-.393.351-.764.537-1.095l.062-.124-1.59-1.61a3.228 3.228 0 0 1-.764-1.136 3.386 3.386 0 0 1-.269-1.342c0-.476.083-.909.269-1.342.186-.434.433-.806.764-1.136l3.139-3.159v-.02c.331-.33.702-.578 1.115-.764a3.315 3.315 0 0 1 1.342-.269c.476 0 .93.103 1.342.269.413.186.785.434 1.095.784l1.878 1.858c.063-.021.125-.062.166-.082.351-.166.723-.31 1.115-.475.372-.145.764-.269 1.156-.392.062-.021.103-.042.165-.042V3.49c0-.475.083-.929.269-1.342.166-.413.434-.784.764-1.115l.021-.021c.331-.33.702-.578 1.115-.743S60.556 0 61.01 0h4.501c.475 0 .908.083 1.342.248s.807.434 1.137.764.598.723.764 1.136c.164.413.248.867.248 1.342v2.643c.061.021.145.062.205.083.373.145.744.31 1.115.475.393.186.764.351 1.096.537l.123.062 1.611-1.59c.33-.331.701-.599 1.135-.764a3.39 3.39 0 0 1 1.342-.269c.477 0 .91.083 1.344.269v.041zm-14.27 8.362c.682 0 1.363.063 2.023.207.641.124 1.281.33 1.92.599.6.269 1.178.578 1.715.929s1.033.764 1.486 1.218c.455.455.867.95 1.219 1.508.371.537.682 1.114.93 1.713.02.042.02.083.041.103.248.599.434 1.219.557 1.817.125.661.207 1.342.207 2.023s-.063 1.363-.207 2.024a9.76 9.76 0 0 1-.598 1.92 12.49 12.49 0 0 1-.93 1.714 12.027 12.027 0 0 1-1.219 1.507 8.524 8.524 0 0 1-1.508 1.219 9.13 9.13 0 0 1-1.713.929c-.041.021-.082.021-.104.041-.6.248-1.219.434-1.816.558-.662.124-1.344.207-2.023.207a9.453 9.453 0 0 1-2.024-.207 9.841 9.841 0 0 1-1.921-.599 12.593 12.593 0 0 1-1.714-.929 9.28 9.28 0 0 1-1.486-1.219 8.719 8.719 0 0 1-1.219-1.507 9.228 9.228 0 0 1-.929-1.714c-.021-.041-.021-.083-.042-.103a10.094 10.094 0 0 1-.557-1.817c-.124-.661-.207-1.342-.207-2.024s.062-1.363.207-2.023c.124-.64.33-1.28.599-1.92.268-.599.578-1.177.929-1.713.352-.537.765-1.033 1.219-1.508.454-.454.95-.867 1.486-1.218a9.112 9.112 0 0 1 1.714-.929c.042-.021.083-.021.104-.042a10.175 10.175 0 0 1 1.817-.557 11.019 11.019 0 0 1 2.024-.207h.02zm1.508 2.808c-.475-.103-.992-.145-1.508-.145s-1.011.042-1.507.145a8.121 8.121 0 0 0-1.321.393c-.021.021-.042.021-.083.041-.475.207-.909.434-1.301.702s-.764.558-1.094.888a6.42 6.42 0 0 0-.888 1.095 7.694 7.694 0 0 0-.702 1.301 7.32 7.32 0 0 0-.579 2.911c0 .516.042 1.011.145 1.507.104.475.228.908.392 1.321.021.021.021.041.042.083.206.475.434.908.702 1.301.268.393.557.764.888 1.094.33.331.702.64 1.094.888.392.269.826.496 1.301.702.434.186.909.33 1.404.434.476.104.992.145 1.507.145s1.012-.041 1.508-.145a8.369 8.369 0 0 0 1.322-.392c.02-.021.041-.021.082-.042.475-.207.908-.434 1.301-.702s.764-.557 1.094-.888.641-.702.889-1.094a7.73 7.73 0 0 0 .701-1.301c.186-.434.33-.909.434-1.404.104-.475.145-.991.145-1.507s-.041-1.012-.145-1.507a8.234 8.234 0 0 0-.393-1.322c-.02-.021-.02-.041-.041-.083a7.763 7.763 0 0 0-1.59-2.396c-.33-.33-.701-.64-1.094-.888a7.513 7.513 0 0 0-2.705-1.135zM0 49.547h24.831v44.179H0V49.547z\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1fzazw1\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-b9c3c957-2c66-49c4-9732-fa196fddac20, rgb(0, 17, 34))\"},children:\"Support\"})}),className:\"framer-emq0c0\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(102, 102, 102)\"},children:\"Recruitment specific IT & Tech\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(102, 102, 102)\"},children:\"Support for your business.\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(102, 102, 102)\"},children:\"From hardware to rec tech &\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(102, 102, 102)\"},children:\"everything in between.\"})]}),className:\"framer-dsle5q\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation1,__framer__exit:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-v3a13e\",\"data-framer-name\":\"Card\",whileHover:animation5,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-e9iho5\",\"data-framer-name\":\"Image\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-z6xmch\",\"data-framer-name\":\"Graphic\",fill:\"rgb(163, 64, 255)\",intrinsicHeight:123,intrinsicWidth:110,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 109.69 122.88\" style=\"enable-background:new 0 0 109.69 122.88\" xml:space=\"preserve\"><path d=\"M101.41 37.05a30.895 30.895 0 0 1-6.77 5.6c-.31.23-.74.26-1.09.03-3.76-2.39-6.93-5.27-9.41-8.4-3.43-4.3-5.59-9.07-6.33-13.66-.75-4.66-.05-9.14 2.27-12.79.92-1.43 2.09-2.75 3.51-3.88 3.27-2.6 7-3.98 10.73-3.95 3.58.03 7.12 1.36 10.18 4.15 1.08.98 1.98 2.09 2.72 3.31 2.49 4.11 3.03 9.34 1.93 14.65-1.08 5.25-3.76 10.58-7.74 14.94zM23.88 92.06a30.895 30.895 0 0 1-6.77 5.6c-.31.23-.74.26-1.09.03-3.76-2.4-6.93-5.27-9.41-8.4C3.19 85 1.03 80.23.29 75.63c-.75-4.66-.05-9.14 2.27-12.78a15.48 15.48 0 0 1 3.51-3.88c3.27-2.6 7-3.98 10.72-3.95 3.58.03 7.12 1.36 10.18 4.15 1.08.98 1.98 2.09 2.72 3.31 2.49 4.11 3.03 9.34 1.93 14.65-1.08 5.24-3.76 10.57-7.74 14.93zm-6.81 10.98c4.51 0 8.32 3.02 9.52 7.14h59.97c2.96 0 5.66-1.21 7.62-3.17a10.741 10.741 0 0 0 0-15.24 10.741 10.741 0 0 0-7.62-3.17H65.58c-4.71 0-8.99-1.92-12.09-5.02a17.06 17.06 0 0 1-5.02-12.09c0-4.71 1.92-8.99 5.02-12.09 3.1-3.1 7.38-5.02 12.09-5.02h18.97a9.918 9.918 0 0 1 19.34 3.1c0 5.48-4.44 9.92-9.92 9.92-4.35 0-8.04-2.8-9.38-6.69H65.58c-2.96 0-5.66 1.21-7.62 3.17a10.741 10.741 0 0 0-3.17 7.62c0 2.96 1.21 5.66 3.17 7.62 1.94 1.94 4.61 3.15 7.55 3.17h21.06c4.71 0 8.99 1.92 12.09 5.02 3.1 3.1 5.02 7.38 5.02 12.09s-1.92 8.99-5.02 12.09a17.06 17.06 0 0 1-12.09 5.02H26.34a9.922 9.922 0 0 1-9.27 6.37c-5.48 0-9.92-4.44-9.92-9.92 0-5.48 4.44-9.92 9.92-9.92zm-.99-39.74c4.42 0 8 3.58 8 8s-3.58 8-8 8-8-3.58-8-8 3.58-8 8-8zM93.61 8.28c4.42 0 8 3.58 8 8s-3.58 8-8 8-8-3.58-8-8 3.58-8 8-8z\" style=\"fill-rule:evenodd;clip-rule:evenodd\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-18v3eyy\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-b9c3c957-2c66-49c4-9732-fa196fddac20, rgb(0, 17, 34))\"},children:\"Fractional CTO\"})}),className:\"framer-1vquwjg\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(102, 102, 102)\"},children:\"Technology roadmaps,\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(102, 102, 102)\"},children:\"vendor/contract management &\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(102, 102, 102)\"},children:\"tech forecasting. Allowing\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(102, 102, 102)\"},children:\"decision makers to focus on the\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(102, 102, 102)\"},children:\"running the business.\"})]}),className:\"framer-43vqnw\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation3,__framer__exit:animation4,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1smuhf5\",\"data-framer-name\":\"Card\",whileHover:animation5,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-jq2eto\",\"data-framer-name\":\"Image\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1nsf4v5\",\"data-framer-name\":\"Graphic\",fill:\"rgb(163, 64, 255)\",intrinsicHeight:111,intrinsicWidth:123,svg:'<svg data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 122.88 111.48\"><path d=\"M50.21 38.57A17.17 17.17 0 1 1 33 55.74a17.17 17.17 0 0 1 17.21-17.17ZM91.31 94v-8.72H67.46a44 44 0 0 0 5.64-6.17h21.28a3.09 3.09 0 0 1 3.08 3.07V94a9 9 0 1 1-6.15 0Zm-2.15-63.29H75.51A44.78 44.78 0 0 0 71 24.55h15.09v-7a9 9 0 1 1 6.15-.06v10.15a3.07 3.07 0 0 1-3.08 3.07ZM122.88 15a9 9 0 1 0-12.65 8.25v18H80.12a43.4 43.4 0 0 1 1.27 6.16h31.91a3.09 3.09 0 0 0 3.07-3.08V23.67a9 9 0 0 0 6.51-8.67Zm-.15 49.93a9 9 0 0 0-17.49-3.08H80.88A42.08 42.08 0 0 1 79.14 68h26.1a9 9 0 0 0 17.49-3.07ZM49.56 105.3H46a6.13 6.13 0 0 1-6.12-6.11v-6.26a38.11 38.11 0 0 1-10-3.78l-4.18 4.18a6.13 6.13 0 0 1-8.65 0L12 88.24a6.14 6.14 0 0 1 0-8.65l3.81-3.81a38 38 0 0 1-4.47-10.33H6.12A6.13 6.13 0 0 1 0 59.34v-7.2A6.13 6.13 0 0 1 6.12 46h5.12a38 38 0 0 1 4.44-10.44L12 31.88a6.14 6.14 0 0 1 0-8.64l5.09-5.09a6.13 6.13 0 0 1 8.65 0l4 4a38 38 0 0 1 10.13-3.87v-6A6.13 6.13 0 0 1 46 6.18h7.19A6.13 6.13 0 0 1 59.27 12v20.48A24.54 24.54 0 0 0 50.84 31h-2.55a24.61 24.61 0 1 0 0 49.21h2.55a24.54 24.54 0 0 0 8.43-1.48v20.75a6.13 6.13 0 0 1-6.11 5.82Z\" style=\"fill-rule:evenodd\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-17m4s8p\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-b9c3c957-2c66-49c4-9732-fa196fddac20, rgb(0, 17, 34))\"},children:\"Automation\"})}),className:\"framer-1okm0le\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(102, 102, 102)\"},children:\"Introduction of AI & automation\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(102, 102, 102)\"},children:\"into your recruitment workflow.\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(102, 102, 102)\"},children:\"Freeing up consultants to focus on\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(102, 102, 102)\"},children:\"billing & building relationships.\"})]}),className:\"framer-7bmtui\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation1,__framer__exit:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-ewaw02\",\"data-framer-name\":\"Card\",whileHover:animation5,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-18od516\",\"data-framer-name\":\"Image\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1xiolwe\",\"data-framer-name\":\"Graphic\",fill:\"rgb(163, 64, 255)\",intrinsicHeight:121,intrinsicWidth:123,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 122.88 120.54\" style=\"enable-background:new 0 0 122.88 120.54\" xml:space=\"preserve\"><path d=\"M95.7 65.5c15.01 0 27.18 12.17 27.18 27.18s-12.17 27.18-27.18 27.18-27.18-12.17-27.18-27.18S80.69 65.5 95.7 65.5zm.26 21.35c3.24 0 5.86 2.63 5.86 5.86s-2.63 5.86-5.86 5.86-5.86-2.63-5.86-5.86 2.62-5.86 5.86-5.86zm10.29-6.91 2.32 2.32c.61.61.61 1.61 0 2.22l-1.87 1.87c.52.97.91 2.02 1.16 3.09h2.42c.87 0 1.57.71 1.57 1.57v3.28c0 .86-.71 1.57-1.57 1.57h-2.64c-.32 1.06-.78 2.07-1.37 3l1.71 1.71c.61.61.61 1.61 0 2.22l-2.32 2.32c-.61.61-1.61.61-2.22 0l-1.87-1.87c-.97.52-2.02.92-3.09 1.16v2.42c0 .86-.71 1.57-1.57 1.57h-3.28c-.86 0-1.57-.71-1.57-1.57v-2.64c-1.06-.32-2.07-.78-3-1.37l-1.71 1.71c-.61.61-1.61.61-2.22 0l-2.32-2.32c-.61-.61-.61-1.61 0-2.22l1.87-1.87c-.52-.97-.91-2.02-1.16-3.09H81.1c-.86 0-1.57-.71-1.57-1.57v-3.28c0-.86.71-1.57 1.57-1.57h2.64c.32-1.06.78-2.07 1.37-3.01l-1.71-1.71c-.61-.61-.61-1.61 0-2.22l2.32-2.32c.61-.61 1.61-.61 2.22 0l1.87 1.87c.96-.52 2-.91 3.09-1.16v-2.42c0-.86.71-1.57 1.57-1.57h3.28c.86 0 1.57.71 1.57 1.57v2.64c1.06.32 2.07.78 3.01 1.37l1.71-1.71c.6-.6 1.6-.6 2.21.01zM17.69 26.67c8.1 2.71 19.38 4.38 31.91 4.38 12.53 0 23.81-1.67 31.91-4.38 7.11-2.37 11.51-5.25 11.51-8.06 0-2.81-4.4-5.69-11.51-8.06-8.1-2.7-19.38-4.38-31.91-4.38-12.53 0-23.81 1.67-31.91 4.38-15.09 5.04-15.51 10.95 0 16.12zM6.24 47.86c.56 2.62 4.83 5.26 11.45 7.47 8.1 2.71 19.38 4.38 31.91 4.38s23.81-1.67 31.91-4.38c7.11-2.37 11.51-5.25 11.51-8.06h.03v-19.3c-2.53 1.73-5.78 3.26-9.59 4.53-8.73 2.91-20.71 4.72-33.86 4.72-13.16 0-25.13-1.8-33.86-4.72-3.77-1.26-6.98-2.76-9.49-4.47v19.83h-.01zM63.3 92.54c-4.35.44-8.95.67-13.7.67-13.16 0-25.13-1.8-33.86-4.72-3.77-1.26-6.98-2.76-9.49-4.47v18.49c.56 2.62 4.83 5.26 11.45 7.47 8.1 2.7 19.38 4.38 31.91 4.38 7.52 0 14.58-.6 20.78-1.67 1.56 1.94 3.33 3.7 5.29 5.24-7.53 1.65-16.49 2.6-26.07 2.6-13.16 0-25.13-1.8-33.86-4.72-4.6-1.54-15.67-6.58-15.67-12.62v-1.98C.06 73.69 0 46.15 0 18.61c0-5.76 6.01-10.65 15.73-13.9C24.46 1.8 36.44 0 49.6 0c13.16 0 25.13 1.8 33.86 4.72 8.85 2.95 14.62 7.27 15.59 12.37.12.32.18.67.18 1.04V60.5c-1.2-.14-2.42-.21-3.66-.21-.85 0-1.68.03-2.51.1v-3.74c-2.53 1.73-5.78 3.26-9.59 4.53-8.73 2.91-20.71 4.72-33.86 4.72-13.16 0-25.13-1.8-33.86-4.72-3.77-1.26-6.98-2.76-9.49-4.47V75.2c.56 2.62 4.83 5.26 11.45 7.47 8.1 2.7 19.38 4.38 31.91 4.38 5.01 0 9.82-.27 14.31-.76a30.6 30.6 0 0 0-.63 6.25z\" style=\"fill-rule:evenodd;clip-rule:evenodd\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1drm9ee\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-b9c3c957-2c66-49c4-9732-fa196fddac20, rgb(0, 17, 34))\"},children:\"Data\"})}),className:\"framer-16ywjl1\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(102, 102, 102)\"},children:\"Data workflows, enrichment &\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(102, 102, 102)\"},children:\"market mapping to\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(102, 102, 102)\"},children:\"improve business development.\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(102, 102, 102)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})})]}),className:\"framer-76le6h\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1t7e4tu\",\"data-framer-name\":\"Testimonials\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1hpcmm5\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hFcrj_iqy:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-1.5px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"Numbers Across Our Clients\"})})},zPcqYc0Lf:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-1.5px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"Numbers Across Our Clients\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-2.6px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"Numbers Across Our Clients\"})}),className:\"framer-1uw42am\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1q5d6r2\",\"data-framer-name\":\"Testimonials\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-68bszx\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation7,__framer__exit:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1apoci1\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-6ho0uy\",\"data-framer-name\":\"Button\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-k6yuay\",\"data-framer-name\":\"Graphic\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 72 72\"><path d=\"M 42.812 22.942 C 42.812 20.948 41.17 19.331 39.144 19.331 C 37.118 19.331 35.476 20.948 35.476 22.942 L 35.476 38.071 L 25.306 42.471 C 23.453 43.273 22.613 45.4 23.428 47.222 C 24.244 49.043 26.406 49.87 28.257 49.069 L 40.432 43.802 C 41.823 43.289 42.812 41.97 42.812 40.422 Z M 71.251 23.998 C 71.356 23.691 71.421 23.365 71.439 23.025 L 71.994 12.997 C 72.098 11.012 70.545 9.319 68.527 9.219 C 66.509 9.116 64.79 10.644 64.687 12.63 L 64.585 14.486 C 63.073 12.572 61.363 10.819 59.48 9.257 C 56.988 7.188 54.158 5.424 51.02 4.047 C 42.052 0.11 32.32 0.12 23.837 3.317 C 15.441 6.483 8.256 12.769 4.229 21.442 C 4.122 21.63 4.032 21.829 3.96 22.037 C 0.097 30.778 0.142 40.23 3.354 48.483 C 6.571 56.745 12.96 63.814 21.774 67.776 C 22.32 68.077 22.936 68.234 23.561 68.233 C 25.587 68.233 27.229 66.617 27.229 64.624 C 27.229 63.054 26.211 61.72 24.79 61.223 C 23.724 60.742 22.702 60.204 21.727 59.613 C 21.616 59.523 21.498 59.438 21.373 59.359 C 19.802 58.36 18.309 57.217 16.958 55.942 C 16.869 55.859 16.776 55.78 16.681 55.708 C 13.816 52.911 11.622 49.559 10.203 45.916 C 7.616 39.271 7.6 31.662 10.772 24.668 L 10.773 24.664 C 13.945 17.669 19.702 12.598 26.446 10.056 C 33.199 7.512 40.931 7.496 48.04 10.616 C 50.464 11.678 52.723 13.071 54.751 14.754 C 56.119 15.89 57.359 17.137 58.461 18.478 L 57.983 18.419 C 55.973 18.178 54.144 19.586 53.899 21.563 C 53.653 23.541 55.084 25.34 57.094 25.582 L 67.225 26.81 C 69.119 27.036 70.853 25.799 71.251 23.998 Z M 32.687 70.795 C 29.792 70.476 28.411 67.121 30.266 64.906 C 31.058 63.96 32.262 63.495 33.496 63.621 C 35.654 63.859 37.813 63.855 39.969 63.603 C 41.264 63.451 42.528 63.974 43.324 64.991 C 45.038 67.233 43.677 70.417 40.852 70.769 C 38.137 71.089 35.405 71.096 32.687 70.795 Z M 56.087 65.246 C 54.989 65.964 53.623 66.045 52.437 65.483 C 49.901 64.247 49.668 60.788 52.02 59.239 C 53.796 58.086 55.506 56.652 56.958 55.124 C 58.286 53.732 60.463 53.589 61.965 54.798 C 62.749 55.43 63.232 56.354 63.299 57.349 C 63.366 58.344 63.011 59.322 62.319 60.051 C 60.469 61.989 58.344 63.782 56.087 65.246 Z M 70.484 46.298 C 70.079 47.586 68.997 48.525 67.654 48.779 C 64.944 49.274 62.66 46.754 63.475 44.164 C 64.122 42.117 64.514 40.035 64.673 37.897 C 64.862 35.396 67.476 33.855 69.813 34.85 C 71.237 35.484 72.095 36.868 71.991 38.407 C 71.794 41.09 71.295 43.729 70.484 46.298 Z\" fill=\"rgba(145, 145, 145, 0.5)\"></path></svg>',svgContentId:9512173006,withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(31, 10, 74)\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(0deg, rgb(163, 64, 255) 51.453700000000005%, rgb(35, 10, 74) 125%)\"},children:\"9000\"})})}),className:\"framer-yfc12i\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1n67ga1\",\"data-framer-name\":\"Button\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"monthly hours\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"saved\"})]}),className:\"framer-zsaxvi\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation7,__framer__exit:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1f4f390\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ezegz4\",\"data-framer-name\":\"Button\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1pw46e1\",\"data-framer-name\":\"Graphic\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 80 71\"><path d=\"M 18.485 62.786 L 18.485 39.487 L 31.07 39.487 C 35.571 40.283 40.072 42.698 44.566 45.492 L 52.813 45.492 C 56.54 45.71 58.498 49.448 54.875 51.914 C 51.98 54.001 48.169 53.885 44.26 53.539 C 41.561 53.41 41.444 56.987 44.26 57 C 45.236 57.071 46.296 56.846 47.226 56.846 C 52.104 56.846 56.124 55.921 58.582 52.113 L 59.837 49.255 L 72.098 43.25 C 78.237 41.253 82.595 47.592 78.075 51.997 C 69.523 58.167 60.372 63.485 50.758 67.872 C 43.993 71.938 37.223 71.796 30.459 67.872 L 18.491 62.786 Z M 2.016 37.246 L 13.854 37.246 C 14.964 37.253 15.863 38.14 15.87 39.237 L 15.87 63.133 C 15.866 64.231 14.966 65.12 13.854 65.124 L 2.016 65.124 C 0.904 65.12 0.004 64.231 0 63.133 L 0 39.237 C 0.007 38.14 0.906 37.253 2.016 37.246 Z M 10.569 56.12 C 11.507 56.118 12.353 56.674 12.714 57.529 C 13.074 58.383 12.876 59.368 12.213 60.023 C 11.55 60.678 10.552 60.873 9.687 60.517 C 8.821 60.162 8.258 59.326 8.26 58.4 C 8.26 57.141 9.294 56.12 10.569 56.12 Z M 67.259 21.698 C 67.052 21.522 66.782 21.437 66.511 21.461 C 66.24 21.491 65.993 21.625 65.821 21.833 L 64.826 23.021 C 64.511 22.857 64.183 22.719 63.844 22.61 C 63.506 22.497 63.163 22.4 62.816 22.321 L 62.66 20.658 C 62.635 20.396 62.506 20.153 62.302 19.983 C 62.098 19.81 61.828 19.731 61.561 19.765 L 59.441 19.971 C 59.188 20.007 58.956 20.132 58.79 20.324 C 58.603 20.523 58.511 20.792 58.537 21.062 L 58.68 22.584 C 58.337 22.695 58.005 22.832 57.685 22.995 C 57.37 23.152 57.066 23.328 56.774 23.522 L 55.434 22.456 C 55.235 22.281 54.971 22.197 54.706 22.225 C 54.437 22.255 54.19 22.386 54.016 22.591 L 52.715 24.196 C 52.54 24.4 52.455 24.665 52.481 24.931 C 52.507 25.197 52.641 25.442 52.852 25.609 L 53.984 26.598 C 53.818 26.909 53.681 27.233 53.574 27.568 C 53.457 27.908 53.359 28.21 53.275 28.583 L 51.597 28.737 C 51.329 28.756 51.081 28.881 50.907 29.083 C 50.748 29.295 50.685 29.562 50.732 29.822 L 50.94 31.909 C 50.964 32.174 51.093 32.418 51.298 32.59 C 51.5 32.767 51.77 32.851 52.039 32.821 L 53.58 32.673 C 53.686 33.012 53.821 33.341 53.984 33.656 C 54.14 33.964 54.328 34.298 54.517 34.574 L 53.437 35.859 C 53.259 36.055 53.174 36.316 53.203 36.578 C 53.231 36.844 53.364 37.089 53.574 37.259 L 55.213 38.594 C 55.42 38.769 55.692 38.848 55.961 38.813 C 56.232 38.787 56.483 38.661 56.663 38.46 L 57.665 37.259 C 57.98 37.422 58.308 37.557 58.647 37.663 C 58.992 37.779 59.298 37.875 59.675 37.959 L 59.837 39.635 C 59.866 39.898 59.993 40.141 60.195 40.316 C 60.404 40.486 60.675 40.563 60.943 40.528 L 63.057 40.322 C 63.322 40.296 63.567 40.17 63.74 39.969 C 63.919 39.769 64.004 39.502 63.974 39.237 L 63.824 37.715 C 64.168 37.605 64.501 37.465 64.82 37.297 C 65.139 37.139 65.45 36.963 65.75 36.771 L 67.05 37.837 C 67.256 38.014 67.527 38.1 67.798 38.074 C 68.07 38.049 68.319 37.914 68.488 37.702 L 69.841 36.083 C 70.015 35.878 70.095 35.611 70.062 35.345 C 70.033 35.078 69.906 34.831 69.704 34.651 L 68.481 33.682 C 68.649 33.371 68.788 33.047 68.898 32.712 C 69.014 32.379 69.112 32.041 69.19 31.697 L 70.875 31.543 C 71.129 31.515 71.362 31.391 71.525 31.196 C 71.7 30.992 71.781 30.724 71.746 30.458 L 71.538 28.371 C 71.511 28.107 71.383 27.864 71.18 27.69 C 70.974 27.514 70.704 27.43 70.433 27.459 L 68.891 27.6 C 68.774 27.265 68.633 26.939 68.468 26.624 C 68.319 26.308 68.141 26.007 67.935 25.725 L 69.021 24.402 C 69.196 24.204 69.281 23.944 69.255 23.683 C 69.228 23.416 69.094 23.172 68.885 23.002 L 67.259 21.717 L 67.207 21.717 Z M 30.12 13.844 L 30.12 12.951 L 31.87 12.951 L 31.87 13.844 L 32.338 13.889 C 32.741 13.934 33.112 13.985 33.463 14.05 C 33.815 14.114 34.114 14.172 34.407 14.242 L 34.407 16.413 C 33.964 16.374 33.47 16.342 32.917 16.317 C 32.364 16.291 31.863 16.284 31.415 16.284 C 31.173 16.282 30.931 16.301 30.693 16.342 C 30.509 16.368 30.337 16.446 30.198 16.567 C 30.076 16.688 30.013 16.856 30.024 17.026 C 30.035 17.197 30.12 17.355 30.257 17.46 C 30.466 17.598 30.715 17.664 30.966 17.646 L 31.915 17.646 C 32.498 17.625 33.076 17.753 33.593 18.018 C 34.026 18.253 34.377 18.611 34.602 19.046 C 35.121 20.245 35.074 21.61 34.472 22.771 C 34.157 23.246 33.675 23.589 33.119 23.734 C 32.714 23.85 32.297 23.923 31.876 23.952 L 31.876 25.076 L 30.12 25.076 L 30.12 23.959 L 29.984 23.959 C 29.685 23.959 29.483 23.907 29.19 23.875 L 28.351 23.747 C 28.078 23.695 27.818 23.638 27.571 23.573 L 27.571 21.377 L 28.631 21.448 L 29.782 21.493 L 30.868 21.493 C 31.135 21.497 31.401 21.473 31.662 21.422 C 31.839 21.389 32.003 21.309 32.137 21.191 C 32.255 21.092 32.318 20.942 32.305 20.789 C 32.292 20.636 32.205 20.499 32.072 20.42 C 31.921 20.312 31.738 20.255 31.551 20.26 L 30.784 20.26 C 29.878 20.321 28.979 20.064 28.247 19.534 C 27.005 18.494 27.096 15.591 28.332 14.583 C 28.838 14.163 29.462 13.905 30.12 13.844 Z M 40.364 5.894 C 40.285 5.825 40.192 5.775 40.091 5.746 C 40.023 5.73 39.951 5.73 39.883 5.746 C 39.786 5.755 39.691 5.781 39.603 5.823 C 39.523 5.864 39.454 5.924 39.402 5.996 L 37.756 7.923 C 37.455 8.276 36.947 8.374 36.533 8.161 C 36.309 8.042 36.079 7.935 35.844 7.839 C 35.59 7.73 35.337 7.64 35.083 7.557 C 34.56 7.386 34.031 7.236 33.496 7.107 C 33.06 7.011 32.744 6.636 32.728 6.195 L 32.52 3.569 C 32.508 3.475 32.479 3.384 32.436 3.299 C 32.395 3.227 32.342 3.161 32.28 3.106 C 32.22 3.052 32.149 3.013 32.072 2.991 C 31.979 2.977 31.885 2.977 31.792 2.991 L 28.345 3.331 C 28.251 3.341 28.158 3.365 28.072 3.402 C 27.986 3.449 27.909 3.51 27.844 3.582 C 27.792 3.65 27.753 3.726 27.727 3.806 C 27.717 3.879 27.717 3.952 27.727 4.025 L 27.967 6.523 C 28.011 6.989 27.714 7.42 27.259 7.55 C 27.046 7.619 26.805 7.709 26.537 7.82 C 26.296 7.915 26.061 8.025 25.834 8.148 L 25.795 8.148 C 25.574 8.257 25.34 8.379 25.145 8.507 L 25.08 8.546 C 24.859 8.674 24.644 8.809 24.429 8.938 C 24.074 9.178 23.6 9.16 23.265 8.893 L 20.995 7.133 C 20.923 7.069 20.839 7.019 20.748 6.985 C 20.682 6.969 20.613 6.969 20.546 6.985 C 20.451 6.996 20.358 7.025 20.273 7.069 L 20.234 7.069 C 20.172 7.109 20.117 7.159 20.072 7.217 L 17.886 9.837 C 17.821 9.915 17.77 10.004 17.737 10.1 C 17.721 10.172 17.721 10.246 17.737 10.318 L 17.737 10.363 C 17.749 10.441 17.773 10.517 17.808 10.588 L 17.808 10.62 C 17.851 10.683 17.904 10.74 17.964 10.787 L 19.915 12.412 C 20.283 12.705 20.387 13.215 20.163 13.626 C 20.044 13.844 19.937 14.069 19.844 14.3 C 19.733 14.563 19.636 14.814 19.558 15.051 C 19.48 15.289 19.395 15.552 19.311 15.835 C 19.226 16.117 19.161 16.374 19.102 16.618 C 19.005 17.036 18.644 17.342 18.211 17.376 L 15.532 17.614 C 15.436 17.623 15.343 17.651 15.259 17.697 C 15.184 17.733 15.118 17.783 15.063 17.845 C 15.01 17.909 14.97 17.983 14.946 18.063 C 14.929 18.15 14.929 18.24 14.946 18.327 L 15.291 21.737 C 15.301 21.832 15.328 21.926 15.369 22.013 C 15.417 22.093 15.476 22.167 15.545 22.231 C 15.612 22.281 15.687 22.32 15.766 22.347 C 15.847 22.364 15.932 22.364 16.013 22.347 L 18.543 22.109 C 18.996 22.103 19.396 22.402 19.512 22.835 C 19.582 23.045 19.673 23.282 19.785 23.548 C 19.898 23.786 20.024 24.017 20.163 24.241 L 20.202 24.325 C 20.306 24.53 20.429 24.749 20.566 24.967 L 20.566 25.018 C 20.696 25.243 20.833 25.461 20.969 25.661 C 21.197 26.014 21.17 26.471 20.904 26.797 L 19.102 28.968 C 19.056 29.034 19.017 29.105 18.985 29.18 C 18.969 29.243 18.969 29.309 18.985 29.372 C 18.995 29.468 19.021 29.562 19.063 29.649 C 19.107 29.726 19.167 29.794 19.239 29.848 C 20.143 30.58 21.054 31.318 21.945 32.057 C 22.005 32.104 22.073 32.138 22.146 32.16 C 22.23 32.176 22.316 32.176 22.4 32.16 C 22.499 32.148 22.595 32.123 22.686 32.083 L 22.719 32.083 C 22.785 32.048 22.844 32.002 22.894 31.948 L 24.52 30.021 C 24.819 29.661 25.335 29.561 25.75 29.783 C 25.973 29.903 26.203 30.01 26.439 30.105 C 26.693 30.207 26.946 30.304 27.2 30.387 C 27.454 30.471 27.701 30.548 27.993 30.631 C 28.286 30.715 28.533 30.779 28.787 30.837 C 29.222 30.933 29.535 31.309 29.548 31.749 L 29.815 34.394 C 29.824 34.491 29.853 34.585 29.899 34.671 C 29.936 34.744 29.987 34.809 30.049 34.863 C 30.111 34.916 30.184 34.956 30.263 34.979 C 30.354 34.996 30.446 34.996 30.537 34.979 L 33.984 34.645 C 34.083 34.636 34.18 34.61 34.27 34.568 C 34.344 34.518 34.412 34.46 34.472 34.394 C 34.532 34.322 34.578 34.239 34.608 34.15 C 34.625 34.072 34.625 33.991 34.608 33.913 L 34.367 31.408 C 34.324 30.965 34.592 30.548 35.018 30.4 C 35.278 30.31 35.532 30.22 35.772 30.117 L 35.844 30.117 C 36.052 30.028 36.267 29.925 36.494 29.809 L 36.533 29.809 C 36.78 29.687 37.021 29.565 37.242 29.437 C 37.463 29.308 37.704 29.161 37.958 29.006 C 38.316 28.782 38.779 28.808 39.109 29.071 L 41.307 30.85 C 41.373 30.898 41.445 30.937 41.522 30.965 C 41.593 30.981 41.666 30.981 41.737 30.965 C 41.832 30.962 41.925 30.938 42.01 30.894 C 42.086 30.848 42.154 30.789 42.211 30.721 C 42.94 29.835 43.688 28.904 44.449 28.043 C 44.492 27.982 44.525 27.915 44.546 27.844 C 44.566 27.762 44.566 27.676 44.546 27.594 C 44.535 27.496 44.509 27.401 44.468 27.311 C 44.425 27.227 44.366 27.153 44.293 27.093 L 42.341 25.532 C 41.972 25.24 41.868 24.729 42.094 24.318 C 42.211 24.1 42.322 23.869 42.42 23.638 C 42.517 23.406 42.621 23.124 42.706 22.886 C 42.79 22.649 42.868 22.379 42.953 22.096 C 43.037 21.814 43.096 21.576 43.154 21.313 C 43.258 20.879 43.646 20.57 44.098 20.561 L 46.829 20.266 C 46.926 20.256 47.021 20.23 47.109 20.189 C 47.182 20.149 47.248 20.097 47.304 20.035 C 47.353 19.97 47.392 19.899 47.421 19.823 C 47.435 19.74 47.435 19.655 47.421 19.572 L 47.083 16.169 C 47.072 16.073 47.045 15.98 47.005 15.893 L 47.005 15.854 C 46.958 15.788 46.904 15.727 46.842 15.674 C 46.777 15.62 46.702 15.579 46.621 15.552 C 46.551 15.536 46.477 15.536 46.407 15.552 L 43.87 15.79 C 43.423 15.828 43.007 15.564 42.855 15.148 C 42.771 14.917 42.673 14.672 42.563 14.403 C 42.452 14.133 42.276 13.844 42.179 13.639 L 42.179 13.594 C 42.068 13.374 41.947 13.159 41.815 12.951 C 41.685 12.739 41.541 12.515 41.385 12.309 C 41.132 11.94 41.164 11.449 41.463 11.115 L 43.213 8.983 C 43.274 8.907 43.322 8.823 43.356 8.732 C 43.37 8.669 43.37 8.603 43.356 8.539 C 43.345 8.443 43.316 8.35 43.272 8.263 L 43.272 8.225 C 43.233 8.164 43.185 8.109 43.128 8.064 L 40.715 6.138 C 40.598 6.099 40.487 6.04 40.39 5.964 Z M 30.257 9.471 C 30.889 9.416 31.524 9.416 32.156 9.471 C 32.795 9.535 33.427 9.66 34.042 9.843 C 34.642 10.028 35.222 10.271 35.772 10.569 C 36.316 10.857 36.832 11.195 37.314 11.577 C 37.788 11.963 38.224 12.393 38.615 12.861 C 39.018 13.347 39.373 13.87 39.675 14.422 C 40.291 15.543 40.663 16.779 40.767 18.05 C 40.823 18.679 40.823 19.31 40.767 19.939 C 40.706 20.57 40.58 21.194 40.39 21.801 L 40.39 21.839 C 40.205 22.423 39.965 22.988 39.675 23.528 L 39.675 23.567 C 39.386 24.09 39.051 24.586 38.673 25.05 C 38.284 25.52 37.848 25.951 37.372 26.335 C 36.874 26.732 36.338 27.08 35.772 27.375 C 35.211 27.681 34.618 27.927 34.003 28.107 L 33.971 28.107 C 33.36 28.284 32.732 28.4 32.098 28.454 C 31.461 28.509 30.822 28.509 30.185 28.454 C 29.539 28.392 28.9 28.265 28.28 28.075 C 27.684 27.892 27.106 27.653 26.556 27.362 C 26.01 27.077 25.494 26.739 25.015 26.354 C 24.542 25.967 24.106 25.537 23.714 25.07 C 23.32 24.587 22.969 24.071 22.667 23.528 C 22.357 22.974 22.108 22.388 21.925 21.782 L 21.925 21.743 C 21.743 21.143 21.626 20.525 21.574 19.9 C 21.515 19.278 21.515 18.653 21.574 18.031 C 21.633 17.391 21.758 16.759 21.945 16.143 C 22.134 15.555 22.378 14.985 22.673 14.441 C 22.965 13.904 23.307 13.395 23.694 12.919 C 24.498 11.972 25.475 11.183 26.576 10.594 C 27.136 10.292 27.727 10.049 28.338 9.869 C 28.959 9.686 29.598 9.568 30.244 9.516 Z M 32.026 10.871 C 31.476 10.826 30.924 10.826 30.374 10.871 C 29.825 10.913 29.282 11.012 28.754 11.166 C 28.238 11.327 27.741 11.543 27.272 11.808 C 26.793 12.063 26.34 12.362 25.919 12.701 C 25.51 13.027 25.135 13.392 24.8 13.793 C 24.131 14.61 23.626 15.545 23.311 16.548 C 23.145 17.068 23.036 17.604 22.985 18.147 C 22.94 18.687 22.94 19.231 22.985 19.772 C 23.029 20.302 23.127 20.827 23.278 21.339 L 23.278 21.371 C 23.443 21.882 23.661 22.375 23.928 22.841 C 24.19 23.309 24.493 23.754 24.833 24.171 C 25.164 24.575 25.534 24.947 25.938 25.282 C 26.346 25.603 26.781 25.889 27.239 26.136 C 27.712 26.387 28.209 26.591 28.722 26.746 C 29.247 26.909 29.787 27.016 30.335 27.067 C 30.889 27.112 31.446 27.112 32 27.067 C 32.54 27.024 33.074 26.927 33.593 26.778 C 34.111 26.615 34.61 26.4 35.083 26.136 C 35.554 25.881 36.002 25.586 36.423 25.256 C 36.83 24.928 37.205 24.563 37.541 24.164 C 37.863 23.763 38.146 23.333 38.387 22.88 L 38.387 22.848 C 38.647 22.39 38.864 21.911 39.037 21.416 C 39.198 20.899 39.305 20.367 39.356 19.829 C 39.408 19.283 39.408 18.732 39.356 18.185 C 39.273 17.115 38.963 16.073 38.446 15.128 C 37.928 14.19 37.243 13.353 36.423 12.656 C 36.015 12.334 35.58 12.048 35.122 11.802 C 34.65 11.545 34.156 11.33 33.646 11.16 C 33.124 11.002 32.588 10.897 32.046 10.845 Z M 40.689 3.89 C 40.906 3.962 41.113 4.059 41.307 4.179 C 41.449 4.213 41.58 4.279 41.691 4.372 L 44.345 6.523 C 44.587 6.717 44.792 6.951 44.95 7.217 L 45.002 7.3 C 45.165 7.601 45.271 7.93 45.314 8.27 C 45.353 8.62 45.315 8.975 45.203 9.31 C 45.096 9.621 44.933 9.91 44.722 10.164 L 43.421 11.783 L 43.512 11.93 C 43.683 12.21 43.837 12.5 43.974 12.797 C 44.13 13.106 44.26 13.375 44.364 13.626 L 44.423 13.767 L 46.179 13.6 C 46.518 13.561 46.861 13.591 47.187 13.69 L 47.246 13.69 C 47.547 13.792 47.828 13.944 48.078 14.139 L 48.163 14.21 C 48.393 14.412 48.586 14.65 48.735 14.917 L 48.787 15 C 48.931 15.291 49.023 15.603 49.06 15.925 C 49.06 16.792 49.288 18.442 49.405 19.354 C 49.444 19.679 49.419 20.008 49.333 20.324 L 49.333 20.375 C 49.233 20.704 49.067 21.01 48.846 21.274 L 48.846 21.306 C 48.63 21.556 48.367 21.761 48.072 21.91 C 47.767 22.07 47.433 22.171 47.089 22.206 L 45.015 22.392 L 44.963 22.584 C 44.885 22.848 44.793 23.137 44.683 23.451 C 44.572 23.766 44.468 24.094 44.351 24.338 L 44.299 24.46 L 45.737 25.596 C 46.212 26.059 46.507 26.674 46.569 27.33 C 46.665 28.015 46.478 28.71 46.049 29.257 L 43.785 31.961 C 43.567 32.222 43.3 32.44 42.998 32.603 C 42.692 32.766 42.356 32.869 42.01 32.905 C 41.662 32.943 41.309 32.908 40.976 32.802 L 40.917 32.802 C 40.624 32.701 40.349 32.554 40.104 32.365 L 38.413 31.004 L 38.237 31.106 C 37.951 31.267 37.672 31.421 37.405 31.55 C 37.138 31.678 36.904 31.794 36.637 31.909 L 36.403 32.012 L 36.592 33.752 C 36.632 34.107 36.594 34.466 36.481 34.806 C 36.373 35.124 36.205 35.421 35.987 35.679 L 35.987 35.717 C 35.777 35.95 35.528 36.145 35.252 36.295 L 35.187 36.334 C 34.895 36.477 34.58 36.57 34.257 36.61 C 33.372 36.61 31.701 36.828 30.777 36.944 C 30.43 36.985 30.079 36.957 29.743 36.861 C 29.41 36.762 29.1 36.598 28.833 36.379 C 28.57 36.169 28.349 35.912 28.182 35.621 C 28.021 35.317 27.919 34.986 27.883 34.645 L 27.701 32.603 L 27.473 32.468 C 27.213 32.391 26.92 32.301 26.595 32.192 C 26.27 32.083 25.984 31.98 25.704 31.864 L 25.567 31.826 L 24.39 33.239 C 24.176 33.478 23.918 33.677 23.629 33.823 L 23.558 33.861 C 23.276 33.994 22.976 34.082 22.667 34.125 L 22.634 34.125 C 22.285 34.168 21.931 34.14 21.593 34.041 C 21.278 33.956 20.983 33.807 20.728 33.605 L 17.984 31.376 C 17.719 31.163 17.498 30.901 17.333 30.606 C 17.167 30.305 17.061 29.976 17.021 29.636 C 16.979 29.292 17.017 28.942 17.132 28.615 C 17.225 28.318 17.371 28.04 17.561 27.793 L 18.94 26.123 L 18.862 25.95 C 18.719 25.712 18.582 25.455 18.446 25.185 C 18.283 24.89 18.146 24.601 18.023 24.318 L 17.958 24.158 L 16.208 24.325 C 15.851 24.365 15.489 24.328 15.148 24.216 C 14.843 24.118 14.558 23.966 14.309 23.766 L 14.224 23.695 C 13.956 23.478 13.735 23.209 13.574 22.906 C 13.425 22.616 13.331 22.303 13.294 21.981 C 13.294 21.12 13.073 19.463 12.956 18.558 C 12.912 18.213 12.94 17.863 13.041 17.53 C 13.136 17.2 13.303 16.893 13.528 16.631 C 13.744 16.366 14.009 16.144 14.309 15.976 C 14.614 15.818 14.948 15.72 15.291 15.687 L 17.366 15.501 L 17.424 15.308 C 17.496 15.045 17.593 14.756 17.698 14.435 C 17.802 14.114 17.919 13.793 18.029 13.555 L 18.088 13.42 L 16.722 12.296 C 16.464 12.101 16.244 11.862 16.072 11.59 L 16.033 11.519 C 15.874 11.233 15.773 10.919 15.733 10.594 L 15.733 10.55 C 15.69 10.202 15.723 9.849 15.831 9.516 C 15.939 9.188 16.109 8.883 16.332 8.617 L 18.517 5.99 C 18.717 5.752 18.957 5.55 19.226 5.393 L 19.311 5.341 C 19.613 5.18 19.944 5.077 20.286 5.039 C 20.643 4.994 21.006 5.032 21.346 5.149 C 21.659 5.255 21.95 5.416 22.205 5.624 L 23.857 6.908 L 24.065 6.825 C 24.325 6.671 24.598 6.523 24.865 6.394 C 25.132 6.266 25.444 6.112 25.711 5.996 L 25.873 5.932 L 25.711 4.211 C 25.671 3.874 25.702 3.533 25.802 3.209 L 25.802 3.158 C 25.904 2.86 26.058 2.582 26.257 2.336 L 26.322 2.252 C 26.555 1.998 26.835 1.791 27.148 1.642 C 27.439 1.488 27.757 1.39 28.085 1.353 C 28.963 1.353 30.634 1.135 31.551 1 C 31.9 0.959 32.254 0.988 32.592 1.083 C 32.923 1.183 33.232 1.345 33.502 1.559 L 33.535 1.559 C 33.782 1.774 33.989 2.03 34.146 2.317 C 34.325 2.631 34.435 2.979 34.472 3.338 L 34.66 5.386 L 34.855 5.444 C 35.122 5.515 35.415 5.611 35.74 5.714 C 36.065 5.817 36.351 5.926 36.631 6.041 L 36.767 6.099 L 37.906 4.75 C 38.346 4.215 38.981 3.872 39.675 3.794 C 40.027 3.751 40.384 3.784 40.722 3.89 Z M 60.813 26.084 C 61.906 25.975 62.998 26.299 63.85 26.983 C 64.263 27.322 64.605 27.737 64.859 28.204 C 65.125 28.681 65.285 29.208 65.327 29.751 C 65.43 30.834 65.093 31.913 64.39 32.75 C 64.054 33.156 63.644 33.496 63.18 33.752 C 62.697 34.014 62.163 34.172 61.613 34.215 C 61.061 34.264 60.505 34.21 59.974 34.054 C 59.464 33.894 58.988 33.644 58.569 33.316 C 58.162 32.973 57.822 32.56 57.567 32.095 C 57.302 31.616 57.142 31.086 57.099 30.541 C 57.037 29.998 57.084 29.448 57.236 28.923 C 57.395 28.419 57.649 27.948 57.984 27.536 C 58.329 27.132 58.748 26.797 59.22 26.547 C 59.702 26.284 60.237 26.126 60.787 26.084 Z\" fill=\"rgba(145, 145, 145, 0.5)\"></path></svg>',svgContentId:9754659723,withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(31, 10, 74)\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(0deg, rgb(163, 64, 255) 51%, rgb(35, 10, 74) 125%)\"},children:\"\\xa3350k\"})})}),className:\"framer-19tdadn\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-slconm\",\"data-framer-name\":\"Button\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"savings in annual \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"tech spend \"})]}),className:\"framer-n8wcws\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation7,__framer__exit:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1rf71wi\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1aoelzc\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-d5mxnh\",\"data-framer-name\":\"Button\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1w1ta2h\",\"data-framer-name\":\"Graphic\",fill:\"rgba(145, 145, 145, 0.6)\",intrinsicHeight:112,intrinsicWidth:123,svg:'<svg data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 122.88 112.13\"><path d=\"M36 72.55a1.44 1.44 0 1 1-2.88 0V35.4H2.88v71.08h5v2.88H1.44A1.44 1.44 0 0 1 0 107.92V34.63a2.15 2.15 0 0 1 .62-1.5 2.12 2.12 0 0 1 1.5-.62h31v-30a2.49 2.49 0 0 1 .74-1.76A2.52 2.52 0 0 1 35.65 0H87a2.52 2.52 0 0 1 1.79.74l.11.12a2.55 2.55 0 0 1 .64 1.67v30h31.22a2.11 2.11 0 0 1 1.49.62 2.11 2.11 0 0 1 .62 1.49v73.29a1.44 1.44 0 0 1-1.44 1.44h-9.13v-2.88h7.7V35.4H89.53v36.73a1.44 1.44 0 0 1-2.88 0V2.88H36v69.67Zm6.38-59.85H51a.26.26 0 0 1 .25.24v8.59a.26.26 0 0 1-.25.24h-8.62a.23.23 0 0 1-.23-.24v-8.59a.23.23 0 0 1 .23-.24Zm29.26 0h8.58a.24.24 0 0 1 .24.24v8.59a.24.24 0 0 1-.24.24h-8.35a.25.25 0 0 1-.25-.24v-8.59a.25.25 0 0 1 .25-.24h-.23Zm-14.77 0h8.58a.24.24 0 0 1 .24.24v8.59a.24.24 0 0 1-.24.24h-8.58a.25.25 0 0 1-.24-.24v-8.59a.25.25 0 0 1 .24-.24Zm40 57.58h16.38v5.06H96.91v-5.06Zm-87.44 0h16.42v5.06H9.47v-5.06Zm84 31.05a50 50 0 0 1 8.12 3.64c3.11 1.94 4 4.21 4.39 7.16h-20V108c2.79.36 8.14-1.28 7.53-6.66Zm-67.35.67c1.48 4.35 7.73 4.6 9.14 0a4.59 4.59 0 0 0 1.34.77 11.66 11.66 0 0 0-.51 1.25 15.18 15.18 0 0 0-.75 3.77.34.34 0 0 1 0 .1l-.3 4.24H14.8l.27-2.73a6.22 6.22 0 0 1 1.13-3.32 4.84 4.84 0 0 1 1.51-1.28c1.82-1 6.72-1.34 8.37-2.83Zm-1.24-10.58a1.33 1.33 0 0 0-.57.16.47.47 0 0 0-.17.2.86.86 0 0 0-.06.34 3.23 3.23 0 0 0 .66 1.59L26.12 96A12.16 12.16 0 0 0 28 98.45a3.85 3.85 0 0 0 2.65 1.07 3.93 3.93 0 0 0 2.81-1.11 12.5 12.5 0 0 0 1.94-2.65l1.6-2.62c.32-.73.42-1.17.32-1.38s-.33-.16-.76-.13a1.26 1.26 0 0 1-.87-.15l.79-2.38a12.4 12.4 0 0 1-7.26-2c-.77-.49-1-1.06-1.78-1a2.61 2.61 0 0 0-1.47.8 3.66 3.66 0 0 0-.84 1.66l.47 2.86a.8.8 0 0 1-.75.06Zm12.61-.71a1.19 1.19 0 0 1 .75.6 2.76 2.76 0 0 1-.3 2.23v.06l-1.61 2.65a13.15 13.15 0 0 1-2.11 2.86 4.86 4.86 0 0 1-3.48 1.38 4.71 4.71 0 0 1-3.31-1.33 12.46 12.46 0 0 1-2.05-2.68l-1.44-2.25a4.22 4.22 0 0 1-.82-2.1 1.65 1.65 0 0 1 .15-.78 1.43 1.43 0 0 1 .52-.6 1.42 1.42 0 0 1 .39-.19 34.5 34.5 0 0 1-.06-4 5.94 5.94 0 0 1 .17-.92 5.39 5.39 0 0 1 2.39-3 7 7 0 0 1 1.29-.64c2.72-1 6.32-.45 8.25 1.64a5.44 5.44 0 0 1 1.38 3.47l-.11 3.58Zm14.23-10a1.85 1.85 0 0 0-.74.23.69.69 0 0 0-.25.29 1.28 1.28 0 0 0-.09.5 5 5 0 0 0 1 2.37l2.11 3.36a17.85 17.85 0 0 0 2.81 3.7 5.63 5.63 0 0 0 4 1.59 5.82 5.82 0 0 0 4.18-1.66 18.3 18.3 0 0 0 2.89-4l2.37-3.9c.48-1.09.62-1.75.47-2s-.51-.25-1.21-.18H69a2.27 2.27 0 0 1-1-.23l1.07-3.56c-7.22-.09-13.33-5-15.69-2.43-.56.6-1 .48-1.26 1.54l.75 4.31a1.46 1.46 0 0 1-1.24 0Zm2 15.73c2.89 8.49 11.12 8.23 13.65 0 1.48 1.32 4.34 2 7 2.69 6.47 1.63 8 3.57 8.62 10.3.07.78.15 1.66.23 2.66H37.81l.35-4.58a9.18 9.18 0 0 1 1.69-5 7.12 7.12 0 0 1 2.26-1.91c2.71-1.53 9.06-2 11.53-4.2Zm17-16.8a1.73 1.73 0 0 1 1.12.9c.36.73.22 1.8-.45 3.33v.09l-2.41 4a19.52 19.52 0 0 1-3.15 4.26 7.22 7.22 0 0 1-5.19 2.06 7.05 7.05 0 0 1-4.95-2 19.07 19.07 0 0 1-3.07-4l-2.11-3.36a6.26 6.26 0 0 1-1.22-3.14 2.56 2.56 0 0 1 .22-1.16 2.18 2.18 0 0 1 .78-.9 2.62 2.62 0 0 1 .58-.29 54.84 54.84 0 0 1-.09-5.89 8.26 8.26 0 0 1 .26-1.37 8 8 0 0 1 3.57-4.54 9.21 9.21 0 0 1 1.92-.93c4.05-1.47 9.43-.67 12.31 2.45a8.22 8.22 0 0 1 2.07 5.17l-.15 5.34ZM77.93 98h3.41c-1.8-5.55-1.2-10.65 3.14-15a9.72 9.72 0 0 0 5.2 5.8 27.5 27.5 0 0 1 3.9 3.59c.22-.92-.63-2-1.66-3.18a5 5 0 0 1 2.45 2.4 6.65 6.65 0 0 1 .47 4.31 8.86 8.86 0 0 1-.55 2.07h2.57c2.71-5.8 1-14.41-4.55-18.06-1.7-1.12-2.92-1.08-4.92-1.08-2.28 0-3.45.07-5.41 1.37-2.88 1.91-4.66 5.21-5.4 9.79-.15 2.29-.25 6.24 1.35 8.07Zm19.22-39.73h15.9c.13 0 .24.08.24.18v4.7c0 .1-.11.18-.24.18h-15.9c-.13 0-.24-.08-.24-.18v-4.7c0-.1.11-.18.24-.18Zm0-12.17h15.9c.13 0 .24.08.24.18V51c0 .1-.11.18-.24.18h-15.9c-.13 0-.24-.08-.24-.18v-4.7c0-.1.11-.18.24-.18ZM9.71 58.27h15.9c.13 0 .24.08.24.18v4.7c0 .1-.11.18-.24.18H9.71c-.13 0-.24-.08-.24-.18v-4.7c0-.1.11-.18.24-.18Zm0-12.17h15.9c.13 0 .24.08.24.18V51c0 .1-.11.18-.24.18H9.71c-.13 0-.24-.08-.24-.18v-4.7c0-.1.11-.18.24-.18Zm62 4.87h8.49a.24.24 0 0 1 .24.24v8.49a.24.24 0 0 1-.24.24h-8.53a.24.24 0 0 1-.24-.24v-8.49a.24.24 0 0 1 .24-.24ZM57.08 51h8.49a.24.24 0 0 1 .24.24v8.46a.24.24 0 0 1-.24.24h-8.49a.24.24 0 0 1-.24-.24v-8.49a.24.24 0 0 1 .24-.24Zm-14.59 0H51a.24.24 0 0 1 .24.24v8.46a.24.24 0 0 1-.24.24h-8.51a.24.24 0 0 1-.24-.24v-8.49a.24.24 0 0 1 .24-.24Zm29.18-20.28h8.49a.24.24 0 0 1 .24.24v8.49a.24.24 0 0 1-.24.24h-8.49a.24.24 0 0 1-.24-.24V31a.24.24 0 0 1 .24-.24Zm-14.59 0h8.49a.24.24 0 0 1 .24.24v8.49a.24.24 0 0 1-.24.24h-8.49a.24.24 0 0 1-.24-.24V31a.24.24 0 0 1 .24-.24Zm-14.59 0H51a.24.24 0 0 1 .24.24v8.49a.24.24 0 0 1-.24.24h-8.51a.24.24 0 0 1-.24-.24V31a.24.24 0 0 1 .24-.24Z\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(31, 10, 74)\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(0deg, rgb(163, 64, 255) 52%, rgb(31, 10, 74) 125%)\"},children:\"400+\"})})}),className:\"framer-13hr6el\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1msrbhm\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-y14rsd\",\"data-framer-name\":\"Button\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"recruiters\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"supported\"})]}),className:\"framer-19q1m79\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})})})]})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1iklprk\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-fix4xt\",\"data-framer-name\":\"Features Large\",id:elementId8,ref:ref9,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1rbx6lo\",\"data-framer-name\":\"Features\",id:elementId9,ref:ref10,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hFcrj_iqy:{__framer__enter:animation1,__framer__exit:animation6},zPcqYc0Lf:{__framer__enter:animation1,__framer__exit:animation6}},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation3,__framer__exit:animation4,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1n3udp7\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hFcrj_iqy:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:720,intrinsicWidth:960,pixelHeight:1166,pixelWidth:1954,sizes:\"360px\",src:\"https://framerusercontent.com/images/lbbrVXZHuoYrJDX5KROzhfN4g.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/lbbrVXZHuoYrJDX5KROzhfN4g.png?scale-down-to=512 512w,https://framerusercontent.com/images/lbbrVXZHuoYrJDX5KROzhfN4g.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/lbbrVXZHuoYrJDX5KROzhfN4g.png 1954w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:720,intrinsicWidth:960,pixelHeight:1166,pixelWidth:1954,sizes:\"450px\",src:\"https://framerusercontent.com/images/lbbrVXZHuoYrJDX5KROzhfN4g.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/lbbrVXZHuoYrJDX5KROzhfN4g.png?scale-down-to=512 512w,https://framerusercontent.com/images/lbbrVXZHuoYrJDX5KROzhfN4g.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/lbbrVXZHuoYrJDX5KROzhfN4g.png 1954w\"},className:\"framer-1i1hsy7\",\"data-framer-name\":\"Image\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hFcrj_iqy:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1326,intrinsicWidth:1744,pixelHeight:1326,pixelWidth:1744,sizes:\"398px\",src:\"https://framerusercontent.com/images/83EPCJ0fQ9P2SHRMUuOrhb3mo7Q.png\",srcSet:\"https://framerusercontent.com/images/83EPCJ0fQ9P2SHRMUuOrhb3mo7Q.png?scale-down-to=512 512w,https://framerusercontent.com/images/83EPCJ0fQ9P2SHRMUuOrhb3mo7Q.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/83EPCJ0fQ9P2SHRMUuOrhb3mo7Q.png 1744w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1326,intrinsicWidth:1744,pixelHeight:1326,pixelWidth:1744,sizes:\"551px\",src:\"https://framerusercontent.com/images/83EPCJ0fQ9P2SHRMUuOrhb3mo7Q.png\",srcSet:\"https://framerusercontent.com/images/83EPCJ0fQ9P2SHRMUuOrhb3mo7Q.png?scale-down-to=512 512w,https://framerusercontent.com/images/83EPCJ0fQ9P2SHRMUuOrhb3mo7Q.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/83EPCJ0fQ9P2SHRMUuOrhb3mo7Q.png 1744w\"},className:\"framer-1sbx0r4\",\"data-framer-name\":\"Frame 2\"})})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hFcrj_iqy:{__framer__enter:animation3,__framer__exit:animation4},zPcqYc0Lf:{__framer__enter:animation3,__framer__exit:animation4}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation1,__framer__exit:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-fn0i1p\",\"data-framer-name\":\"Content\",id:\"fn0i1p\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-2px\",\"--framer-text-alignment\":\"left\"},children:[\"Leaders In Care\",/*#__PURE__*/_jsx(\"br\",{}),\"Case Study\"]})}),className:\"framer-blswxd\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(120, 120, 120)\"},children:\"We helped Leaders In Care save 600+ monthly hours, \\xa315k+ in annual tech spend and gain thousands of new business opportunities, here's how.\"})}),className:\"framer-10itt71\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-8mjku3\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"AyVLgUc6p\"},motionChild:true,nodeId:\"zckOv9cVF\",openInNewTab:false,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-15520n4 framer-lux5qc\",\"data-framer-name\":\"Button\",whileHover:animation9,children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Learn More\"})}),className:\"framer-1etgx57\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true})})})})]})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ods776\",\"data-framer-name\":\"Features Large\",id:elementId10,ref:ref11,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-eryhgm\",\"data-framer-name\":\"Features\",id:\"eryhgm\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation3,__framer__exit:animation4,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-kxar8n\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-2px\",\"--framer-text-alignment\":\"left\"},children:[\"Integro Partners \",/*#__PURE__*/_jsx(\"br\",{}),\"Case Study\"]})}),className:\"framer-fdr3e7\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(120, 120, 120)\"},children:\"We helped Integro Partners save 300+ monthly hours and increase interviews booked, placements made & average billings per head, here's how.\"})}),className:\"framer-yqswr0\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-l0687e\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"copNDXZ7J\"},motionChild:true,nodeId:\"OXtb5ZB9r\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1lv681h framer-lux5qc\",\"data-framer-name\":\"Button\",whileHover:animation9,children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Learn More\"})}),className:\"framer-odswc9\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true})})})})]}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation1,__framer__exit:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-bwdd8d\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hFcrj_iqy:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:720,intrinsicWidth:960,pixelHeight:1166,pixelWidth:1954,sizes:\"360px\",src:\"https://framerusercontent.com/images/pkKAlXOq8apBdxCPW6tJGvadjRA.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/pkKAlXOq8apBdxCPW6tJGvadjRA.png?scale-down-to=512 512w,https://framerusercontent.com/images/pkKAlXOq8apBdxCPW6tJGvadjRA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/pkKAlXOq8apBdxCPW6tJGvadjRA.png 1954w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:720,intrinsicWidth:960,pixelHeight:1166,pixelWidth:1954,sizes:\"450px\",src:\"https://framerusercontent.com/images/pkKAlXOq8apBdxCPW6tJGvadjRA.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/pkKAlXOq8apBdxCPW6tJGvadjRA.png?scale-down-to=512 512w,https://framerusercontent.com/images/pkKAlXOq8apBdxCPW6tJGvadjRA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/pkKAlXOq8apBdxCPW6tJGvadjRA.png 1954w\"},className:\"framer-1rg6v6x\",\"data-framer-name\":\"Image\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hFcrj_iqy:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1326,intrinsicWidth:1744,pixelHeight:1326,pixelWidth:1744,sizes:\"397px\",src:\"https://framerusercontent.com/images/gKgQnOo84Xe3LQ1p8Ag5LARrc.png\",srcSet:\"https://framerusercontent.com/images/gKgQnOo84Xe3LQ1p8Ag5LARrc.png?scale-down-to=512 512w,https://framerusercontent.com/images/gKgQnOo84Xe3LQ1p8Ag5LARrc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/gKgQnOo84Xe3LQ1p8Ag5LARrc.png 1744w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1326,intrinsicWidth:1744,pixelHeight:1326,pixelWidth:1744,sizes:\"559px\",src:\"https://framerusercontent.com/images/gKgQnOo84Xe3LQ1p8Ag5LARrc.png\",srcSet:\"https://framerusercontent.com/images/gKgQnOo84Xe3LQ1p8Ag5LARrc.png?scale-down-to=512 512w,https://framerusercontent.com/images/gKgQnOo84Xe3LQ1p8Ag5LARrc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/gKgQnOo84Xe3LQ1p8Ag5LARrc.png 1744w\"},className:\"framer-10nbfrr\",\"data-framer-name\":\"Frame 1 (1)\"})})})})})]})})]}),/*#__PURE__*/_jsx(\"header\",{className:\"framer-1lj0e9d\",\"data-framer-name\":\"Header\",children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation7,__framer__exit:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1p7p2tc\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1uxa69q\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-2px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"Let's Scale Together!\"})}),className:\"framer-jwmva2\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-3ophh6\",children:/*#__PURE__*/_jsx(Link,{href:\"https://calendly.com/techwithtom/recruitment\",motionChild:true,nodeId:\"ZP3UVPcCu\",openInNewTab:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-19j18l8 framer-lux5qc\",\"data-framer-name\":\"Button\",whileHover:animation,children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Book free strategy call\"})}),className:\"framer-1wekhs3\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true})})})})]})}),isDisplayed3()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-bc6kj4 hidden-72rtr7 hidden-1xek37s\",\"data-framer-name\":\"Footer\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1lu7dha\",\"data-framer-name\":\"Logo\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1012.2222490369545,intrinsicWidth:4142.222331953641,pixelHeight:911,pixelWidth:3728,sizes:\"309px\",src:\"https://framerusercontent.com/images/hZ03Gwx0xSbYpjnVF4KPd41pskQ.png\",srcSet:\"https://framerusercontent.com/images/hZ03Gwx0xSbYpjnVF4KPd41pskQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/hZ03Gwx0xSbYpjnVF4KPd41pskQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/hZ03Gwx0xSbYpjnVF4KPd41pskQ.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/hZ03Gwx0xSbYpjnVF4KPd41pskQ.png 3728w\"},className:\"framer-1si2hjj\",\"data-framer-name\":\"T2R Logo White\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.7px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[\"We help companies to grow more effectively by managing and optimising their IT.\",/*#__PURE__*/_jsx(\"br\",{}),\" \"]}),/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.7px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Remember; if your technology is poor, growing becomes near-impossible. By optimising your processes and tech-stack, you can easily increase your output by up to 28%.\"}),/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.7px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})})]}),className:\"framer-cv2itu\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1co5590\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-18xjqkn\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.7px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\" \"})}),className:\"framer-1dlztck\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-4ifvk7\",\"data-framer-name\":\"Contact\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-w0sdl4\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-147y0px\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.7px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://calendly.com/techwithtom/client-30mins?back=1&month=2025-03\",motionChild:true,nodeId:\"GXcPvx384\",openInNewTab:true,scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-uz83zr\",\"data-styles-preset\":\"CY7_OpFbP\",children:\"Book Consultation\"})})})}),className:\"framer-y6ykgg\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-svoz01\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.7px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"GqF0WNHdP\"},motionChild:true,nodeId:\"XUpshtkBf\",openInNewTab:false,scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-uz83zr\",\"data-styles-preset\":\"CY7_OpFbP\",children:\"Contact\"})})})}),className:\"framer-1gloyqt\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-gz7iop\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.7px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(Link,{href:{hash:\":SajGnREMb\",webPageId:\"augiA20Il\"},motionChild:true,nodeId:\"UiyIWDUPE\",openInNewTab:false,scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-uz83zr\",\"data-styles-preset\":\"CY7_OpFbP\",children:\"About\"})})})}),className:\"framer-11mgc03\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1iodube\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.7px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(Link,{href:{hash:\":j1Gou6S3j\",webPageId:\"augiA20Il\"},motionChild:true,nodeId:\"AphyzRh12\",openInNewTab:false,scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-uz83zr\",\"data-styles-preset\":\"CY7_OpFbP\",children:\"Services\"})})})}),className:\"framer-msubdi\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1v1eula\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.7px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"augiA20Il\"},motionChild:true,nodeId:\"LzyUvyUT0\",openInNewTab:false,scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-uz83zr\",\"data-styles-preset\":\"CY7_OpFbP\",children:\"Testimonials\"})})})}),className:\"framer-1g6rh3i\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-5mjrop\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.7px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(Link,{href:{hash:\":d36E0ehTd\",webPageId:\"augiA20Il\"},motionChild:true,nodeId:\"n2iUmlh3z\",openInNewTab:false,scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-uz83zr\",\"data-styles-preset\":\"CY7_OpFbP\",children:\"Case Studies\"})})})}),className:\"framer-10yydrd\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})})]})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1luo8qa\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1xqbtvp\",\"data-framer-name\":\"Contact\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-qzorw5\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1fdxp5x\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.7px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\" \"})}),className:\"framer-1h9p97e\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-uc2p8s\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-mq7tx\",\"data-framer-name\":\"Graphic\",fill:\"rgb(112, 0, 254)\",intrinsicHeight:123,intrinsicWidth:119,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"118.875\" height=\"122.877\" xml:space=\"preserve\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M1.432 20.714c9.427 6.476 18.779 12.989 26.673 21.375C23.58 62.076 41.64 78.045 58.111 87.453c6.448 3.683 9.298 6.265 16.476 5.024l28.268 27.696C49.657 138.039-10.045 63.084 1.432 20.714zm80.442 64.642 6.201-6.298c1.788-1.819 4.74-1.842 6.559-.053l22.862 22.509a4.653 4.653 0 0 1 .053 6.559l-6.203 6.299c-1.789 1.818-4.741 1.841-6.56.052L81.924 91.915c-1.819-1.788-1.841-4.74-.05-6.559zM7.004 7.467l4.5-5.464c1.929-2.342 5.425-2.68 7.767-.751l23.405 19.281c2.342 1.931 2.677 5.425.75 7.77l-4.502 5.461c-1.93 2.345-5.425 2.68-7.768.751L7.755 15.234c-2.342-1.929-2.682-5.425-.751-7.767z\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.7px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"+44 161 549 5368\"})}),className:\"framer-1f9vvs\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1lwg3kz\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1tyv3j8\",\"data-framer-name\":\"Graphic\",fill:\"rgb(112, 0, 254)\",intrinsicHeight:79,intrinsicWidth:123,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"122.88\" height=\"78.607\" xml:space=\"preserve\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"m61.058 65.992 24.224-24.221 36.837 36.836H0l36.836-36.836 24.222 24.221zM1.401 0l59.656 59.654L120.714 0H1.401zM0 69.673l31.625-31.628L0 6.42v63.253zm122.88 3.025L88.227 38.045 122.88 3.393v69.305z\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.7px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"info@tech2rec.co.uk\"})}),className:\"framer-1vrtm6y\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-t96ukt\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-ys6mwj\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-18x4tlq\",\"data-framer-name\":\"Graphic\",fill:\"rgb(112, 0, 254)\",intrinsicHeight:113,intrinsicWidth:123,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 122.88 113.05\" style=\"enable-background:new 0 0 122.88 113.05\" xml:space=\"preserve\"><path d=\"M0 100.07h14.72V1.57c0-.86.71-1.57 1.57-1.57h49.86c.86 0 1.57.71 1.57 1.57V38.5h44.12c.86 0 1.57.71 1.57 1.57v59.99h9.47v12.99H0v-12.98zm27.32-85.25h10.2c.31 0 .57.26.57.57v12.36c0 .31-.26.57-.57.57h-10.2c-.31 0-.57-.26-.57-.57V15.39c0-.31.26-.57.57-.57zM44.6 76.3h10.2c.31 0 .57.26.57.57v12.36c0 .31-.26.57-.57.57H44.6c-.31 0-.57-.26-.57-.57V76.87c0-.32.26-.57.57-.57zm-17.28 0h10.2c.31 0 .57.26.57.57v12.36c0 .31-.26.57-.57.57h-10.2c-.31 0-.57-.26-.57-.57V76.87c0-.32.26-.57.57-.57zM44.6 55.8h10.2c.31 0 .57.26.57.57v12.36c0 .31-.26.57-.57.57H44.6c-.31 0-.57-.26-.57-.57V56.38c0-.32.26-.58.57-.58zm-17.28 0h10.2c.31 0 .57.26.57.57v12.36c0 .31-.26.57-.57.57h-10.2c-.31 0-.57-.26-.57-.57V56.38c0-.32.26-.58.57-.58zM44.6 35.31h10.2c.31 0 .57.26.57.57v12.36c0 .31-.26.57-.57.57H44.6c-.31 0-.57-.26-.57-.57V35.88c0-.31.26-.57.57-.57zm-17.28 0h10.2c.31 0 .57.26.57.57v12.36c0 .31-.26.57-.57.57h-10.2c-.31 0-.57-.26-.57-.57V35.88c0-.31.26-.57.57-.57zM44.6 14.82h10.2c.31 0 .57.26.57.57v12.36c0 .31-.26.57-.57.57H44.6c-.31 0-.57-.26-.57-.57V15.39c0-.31.26-.57.57-.57zm-21.43-7.5h35.92c.62 0 1.13.61 1.13 1.35v85.87c0 .74-.51 1.35-1.13 1.35H23.17c-.62 0-1.13-.61-1.13-1.35V8.67c0-.74.51-1.35 1.13-1.35zm49.44 46.11h10.2c.31 0 .57.26.57.57v12.36c0 .31-.26.57-.57.57h-10.2c-.31 0-.57-.26-.57-.57V54c0-.31.26-.57.57-.57zM89.89 76.3h10.2c.31 0 .57.26.57.57v12.36c0 .31-.26.57-.57.57h-10.2c-.31 0-.57-.26-.57-.57V76.87c0-.32.26-.57.57-.57zm-17.28 0h10.2c.31 0 .57.26.57.57v12.36c0 .31-.26.57-.57.57h-10.2c-.31 0-.57-.26-.57-.57V76.87c0-.32.26-.57.57-.57zm17.28-22.87h10.2c.31 0 .57.26.57.57v12.36c0 .31-.26.57-.57.57h-10.2c-.31 0-.57-.26-.57-.57V54c0-.31.26-.57.57-.57zm-21.03-7.61h35.92c.62 0 1.13.61 1.13 1.35v47.37c0 .74-.51 1.35-1.13 1.35H68.86c-.62 0-1.13-.61-1.13-1.35V47.17c0-.74.51-1.35 1.13-1.35z\" style=\"fill-rule:evenodd;clip-rule:evenodd\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.7px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[\"Tech2Rec, Concordia, \",/*#__PURE__*/_jsx(\"br\",{}),\"Dunkirk Ln, Hyde \",/*#__PURE__*/_jsx(\"br\",{}),\"SK14 4NL,\",/*#__PURE__*/_jsx(\"br\",{}),\"United Kingdom\"]})}),className:\"framer-14somkz\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-xaxjf0\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-wbdqhx\",\"data-framer-name\":\"Socials\",children:[/*#__PURE__*/_jsx(Link,{href:\"https://www.linkedin.com/company/tech-2-rec/\",motionChild:true,nodeId:\"Py4UwV4CS\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-1oqqlz2 framer-lux5qc\",\"data-framer-name\":\"Graphic\",fill:\"rgb(112, 0, 254)\",intrinsicHeight:510,intrinsicWidth:512,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" image-rendering=\"optimizeQuality\" fill-rule=\"evenodd\" clip-rule=\"evenodd\" viewBox=\"0 0 512 509.64\"><rect width=\"512\" height=\"509.64\" rx=\"115.61\" ry=\"115.61\"/><path fill=\"#fff\" d=\"M204.97 197.54h64.69v33.16h.94c9.01-16.16 31.04-33.16 63.89-33.16 68.31 0 80.94 42.51 80.94 97.81v116.92h-67.46l-.01-104.13c0-23.81-.49-54.45-35.08-54.45-35.12 0-40.51 25.91-40.51 52.72v105.86h-67.4V197.54zm-38.23-65.09c0 19.36-15.72 35.08-35.08 35.08-19.37 0-35.09-15.72-35.09-35.08 0-19.37 15.72-35.08 35.09-35.08 19.36 0 35.08 15.71 35.08 35.08zm-70.17 65.09h70.17v214.73H96.57V197.54z\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.facebook.com/invotechnologyitservices/\",motionChild:true,nodeId:\"vGNGidZ36\",openInNewTab:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-xp7kk8 framer-lux5qc\",\"data-framer-name\":\"Graphic\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 26 26\"><g id=\"ss9588067520_1\"><path d=\"M 26 13 C 26 5.82 20.18 0 13 0 C 5.82 0 0 5.82 0 13 C 0 19.097 4.197 24.212 9.86 25.617 L 9.86 16.973 L 7.179 16.973 L 7.179 13 L 9.86 13 L 9.86 11.288 C 9.86 6.863 11.862 4.812 16.206 4.812 C 17.03 4.812 18.451 4.974 19.032 5.136 L 19.032 8.737 C 18.725 8.705 18.192 8.688 17.53 8.688 C 15.399 8.688 14.575 9.496 14.575 11.595 L 14.575 13 L 18.821 13 L 18.092 16.973 L 14.575 16.973 L 14.575 25.905 C 21.012 25.128 26 19.647 26 13 Z\" fill=\"rgb(117, 0, 251)\"></path><path d=\"M 18.092 16.973 L 18.821 13 L 14.575 13 L 14.575 11.595 C 14.575 9.496 15.399 8.688 17.53 8.688 C 18.192 8.688 18.725 8.705 19.032 8.737 L 19.032 5.136 C 18.451 4.974 17.03 4.812 16.206 4.812 C 11.862 4.812 9.86 6.864 9.86 11.288 L 9.86 13 L 7.179 13 L 7.179 16.973 L 9.86 16.973 L 9.86 25.617 C 10.865 25.867 11.917 26 13 26 C 13.533 26 14.058 25.967 14.575 25.905 L 14.575 16.973 Z\" fill=\"rgb(255,255,255)\"></path></g></svg>',svgContentId:9588067520,withExternalLayout:true})}),/*#__PURE__*/_jsx(Link,{href:\"https://x.com/InvoTechnology\",motionChild:true,nodeId:\"xfcU0sPrT\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-rpf9iz framer-lux5qc\",\"data-framer-name\":\"Graphic\",fill:\"rgb(121, 0, 248)\",intrinsicHeight:463,intrinsicWidth:512,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" image-rendering=\"optimizeQuality\" fill-rule=\"evenodd\" clip-rule=\"evenodd\" viewBox=\"0 0 512 462.799\"><path fill-rule=\"nonzero\" d=\"M403.229 0h78.506L310.219 196.04 512 462.799H354.002L230.261 301.007 88.669 462.799h-78.56l183.455-209.683L0 0h161.999l111.856 147.88L403.229 0zm-27.556 415.805h43.505L138.363 44.527h-46.68l283.99 371.278z\"/></svg>',withExternalLayout:true})})]})})]})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-176vrnm\",\"data-framer-name\":\"Footer\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1kv83cn\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.7px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"@2025 Tech2Rec\"})}),className:\"framer-yoepcg\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})})})]}),isDisplayed()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1j16bid hidden-72rtr7 hidden-if76u1\",\"data-framer-name\":\"Footer\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-mhaoj\",\"data-framer-name\":\"Logo\",children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"augiA20Il\"},motionChild:true,nodeId:\"zfBbSXsFT\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:1012.2222490369545,intrinsicWidth:4142.222331953641,pixelHeight:911,pixelWidth:3728,sizes:\"309px\",src:\"https://framerusercontent.com/images/hZ03Gwx0xSbYpjnVF4KPd41pskQ.png\",srcSet:\"https://framerusercontent.com/images/hZ03Gwx0xSbYpjnVF4KPd41pskQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/hZ03Gwx0xSbYpjnVF4KPd41pskQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/hZ03Gwx0xSbYpjnVF4KPd41pskQ.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/hZ03Gwx0xSbYpjnVF4KPd41pskQ.png 3728w\"},className:\"framer-19leggf framer-lux5qc\",\"data-framer-name\":\"T2R Logo White\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.7px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[\"We help companies to grow more effectively by managing and optimising their IT.\",/*#__PURE__*/_jsx(\"br\",{}),\" \"]}),/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.7px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Remember; if your technology is poor, growing becomes near-impossible. By optimising your processes and tech-stack, you can easily increase your output by up to 28%.\"}),/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.7px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})})]}),className:\"framer-1qhe12m\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1p727ti\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-o9vsi3\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.7px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\" \"})}),className:\"framer-1bprv5w\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-jhf9tr\",\"data-framer-name\":\"Contact\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1a7auwo\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-msn53s\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.7px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://calendly.com/techwithtom/client-30mins?back=1&month=2025-03\",motionChild:true,nodeId:\"vkXrSnQ6m\",openInNewTab:true,scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-uz83zr\",\"data-styles-preset\":\"CY7_OpFbP\",children:\"Book Consultation\"})})})}),className:\"framer-5u0ym\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1upegmk\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.7px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"GqF0WNHdP\"},motionChild:true,nodeId:\"ySnFY4mIB\",openInNewTab:false,scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-uz83zr\",\"data-styles-preset\":\"CY7_OpFbP\",children:\"Contact\"})})})}),className:\"framer-1gxkhf\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-y4cb2w\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.7px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(Link,{href:{hash:\":SajGnREMb\",webPageId:\"augiA20Il\"},motionChild:true,nodeId:\"sBYDLGEo1\",openInNewTab:false,scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-uz83zr\",\"data-styles-preset\":\"CY7_OpFbP\",children:\"About\"})})})}),className:\"framer-clig4s\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-k2eb78\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.7px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(Link,{href:{hash:\":j1Gou6S3j\",webPageId:\"augiA20Il\"},motionChild:true,nodeId:\"WGsFXPjZA\",openInNewTab:false,scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-uz83zr\",\"data-styles-preset\":\"CY7_OpFbP\",children:\"Services\"})})})}),className:\"framer-1ylhvta\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1a2psut\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.7px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"augiA20Il\"},motionChild:true,nodeId:\"cT2twFBwC\",openInNewTab:false,scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-uz83zr\",\"data-styles-preset\":\"CY7_OpFbP\",children:\"Testimonials\"})})})}),className:\"framer-1b69q2i\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-j8y9tj\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.7px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(Link,{href:{hash:\":d36E0ehTd\",webPageId:\"augiA20Il\"},motionChild:true,nodeId:\"VEp136M61\",openInNewTab:false,scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-uz83zr\",\"data-styles-preset\":\"CY7_OpFbP\",children:\"Case Studies\"})})})}),className:\"framer-4110qo\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})})]})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1p9w08o\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-10276yw\",\"data-framer-name\":\"Contact\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-s82zcp\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-g47918\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.7px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\" \"})}),className:\"framer-1p9krgw\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-167nbb\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1hh062i\",\"data-framer-name\":\"Graphic\",fill:\"rgb(112, 0, 254)\",intrinsicHeight:123,intrinsicWidth:119,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"118.875\" height=\"122.877\" xml:space=\"preserve\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M1.432 20.714c9.427 6.476 18.779 12.989 26.673 21.375C23.58 62.076 41.64 78.045 58.111 87.453c6.448 3.683 9.298 6.265 16.476 5.024l28.268 27.696C49.657 138.039-10.045 63.084 1.432 20.714zm80.442 64.642 6.201-6.298c1.788-1.819 4.74-1.842 6.559-.053l22.862 22.509a4.653 4.653 0 0 1 .053 6.559l-6.203 6.299c-1.789 1.818-4.741 1.841-6.56.052L81.924 91.915c-1.819-1.788-1.841-4.74-.05-6.559zM7.004 7.467l4.5-5.464c1.929-2.342 5.425-2.68 7.767-.751l23.405 19.281c2.342 1.931 2.677 5.425.75 7.77l-4.502 5.461c-1.93 2.345-5.425 2.68-7.768.751L7.755 15.234c-2.342-1.929-2.682-5.425-.751-7.767z\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.7px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"+44 161 549 5368\"})}),className:\"framer-1w0b6p\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5dlxr8\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-s069ln\",\"data-framer-name\":\"Graphic\",fill:\"rgb(112, 0, 254)\",intrinsicHeight:79,intrinsicWidth:123,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"122.88\" height=\"78.607\" xml:space=\"preserve\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"m61.058 65.992 24.224-24.221 36.837 36.836H0l36.836-36.836 24.222 24.221zM1.401 0l59.656 59.654L120.714 0H1.401zM0 69.673l31.625-31.628L0 6.42v63.253zm122.88 3.025L88.227 38.045 122.88 3.393v69.305z\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.7px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"info@tech2rec.co.uk\"})}),className:\"framer-1bga1fy\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1lbjcyz\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-18mejrm\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-emk2a6\",\"data-framer-name\":\"Graphic\",fill:\"rgb(112, 0, 254)\",intrinsicHeight:113,intrinsicWidth:123,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 122.88 113.05\" style=\"enable-background:new 0 0 122.88 113.05\" xml:space=\"preserve\"><path d=\"M0 100.07h14.72V1.57c0-.86.71-1.57 1.57-1.57h49.86c.86 0 1.57.71 1.57 1.57V38.5h44.12c.86 0 1.57.71 1.57 1.57v59.99h9.47v12.99H0v-12.98zm27.32-85.25h10.2c.31 0 .57.26.57.57v12.36c0 .31-.26.57-.57.57h-10.2c-.31 0-.57-.26-.57-.57V15.39c0-.31.26-.57.57-.57zM44.6 76.3h10.2c.31 0 .57.26.57.57v12.36c0 .31-.26.57-.57.57H44.6c-.31 0-.57-.26-.57-.57V76.87c0-.32.26-.57.57-.57zm-17.28 0h10.2c.31 0 .57.26.57.57v12.36c0 .31-.26.57-.57.57h-10.2c-.31 0-.57-.26-.57-.57V76.87c0-.32.26-.57.57-.57zM44.6 55.8h10.2c.31 0 .57.26.57.57v12.36c0 .31-.26.57-.57.57H44.6c-.31 0-.57-.26-.57-.57V56.38c0-.32.26-.58.57-.58zm-17.28 0h10.2c.31 0 .57.26.57.57v12.36c0 .31-.26.57-.57.57h-10.2c-.31 0-.57-.26-.57-.57V56.38c0-.32.26-.58.57-.58zM44.6 35.31h10.2c.31 0 .57.26.57.57v12.36c0 .31-.26.57-.57.57H44.6c-.31 0-.57-.26-.57-.57V35.88c0-.31.26-.57.57-.57zm-17.28 0h10.2c.31 0 .57.26.57.57v12.36c0 .31-.26.57-.57.57h-10.2c-.31 0-.57-.26-.57-.57V35.88c0-.31.26-.57.57-.57zM44.6 14.82h10.2c.31 0 .57.26.57.57v12.36c0 .31-.26.57-.57.57H44.6c-.31 0-.57-.26-.57-.57V15.39c0-.31.26-.57.57-.57zm-21.43-7.5h35.92c.62 0 1.13.61 1.13 1.35v85.87c0 .74-.51 1.35-1.13 1.35H23.17c-.62 0-1.13-.61-1.13-1.35V8.67c0-.74.51-1.35 1.13-1.35zm49.44 46.11h10.2c.31 0 .57.26.57.57v12.36c0 .31-.26.57-.57.57h-10.2c-.31 0-.57-.26-.57-.57V54c0-.31.26-.57.57-.57zM89.89 76.3h10.2c.31 0 .57.26.57.57v12.36c0 .31-.26.57-.57.57h-10.2c-.31 0-.57-.26-.57-.57V76.87c0-.32.26-.57.57-.57zm-17.28 0h10.2c.31 0 .57.26.57.57v12.36c0 .31-.26.57-.57.57h-10.2c-.31 0-.57-.26-.57-.57V76.87c0-.32.26-.57.57-.57zm17.28-22.87h10.2c.31 0 .57.26.57.57v12.36c0 .31-.26.57-.57.57h-10.2c-.31 0-.57-.26-.57-.57V54c0-.31.26-.57.57-.57zm-21.03-7.61h35.92c.62 0 1.13.61 1.13 1.35v47.37c0 .74-.51 1.35-1.13 1.35H68.86c-.62 0-1.13-.61-1.13-1.35V47.17c0-.74.51-1.35 1.13-1.35z\" style=\"fill-rule:evenodd;clip-rule:evenodd\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.7px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[\"Tech2Rec, Concordia, \",/*#__PURE__*/_jsx(\"br\",{}),\"Dunkirk Ln, Hyde \",/*#__PURE__*/_jsx(\"br\",{}),\"SK14 4NL,\",/*#__PURE__*/_jsx(\"br\",{}),\"United Kingdom\"]})}),className:\"framer-fz7pzz\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ukwviq\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ja4lu3\",\"data-framer-name\":\"Socials\",children:[/*#__PURE__*/_jsx(Link,{href:\"https://www.linkedin.com/company/tech-2-rec/\",motionChild:true,nodeId:\"GUMqA5TAh\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-w45t9g framer-lux5qc\",\"data-framer-name\":\"Graphic\",fill:\"rgb(112, 0, 254)\",intrinsicHeight:510,intrinsicWidth:512,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" image-rendering=\"optimizeQuality\" fill-rule=\"evenodd\" clip-rule=\"evenodd\" viewBox=\"0 0 512 509.64\"><rect width=\"512\" height=\"509.64\" rx=\"115.61\" ry=\"115.61\"/><path fill=\"#fff\" d=\"M204.97 197.54h64.69v33.16h.94c9.01-16.16 31.04-33.16 63.89-33.16 68.31 0 80.94 42.51 80.94 97.81v116.92h-67.46l-.01-104.13c0-23.81-.49-54.45-35.08-54.45-35.12 0-40.51 25.91-40.51 52.72v105.86h-67.4V197.54zm-38.23-65.09c0 19.36-15.72 35.08-35.08 35.08-19.37 0-35.09-15.72-35.09-35.08 0-19.37 15.72-35.08 35.09-35.08 19.36 0 35.08 15.71 35.08 35.08zm-70.17 65.09h70.17v214.73H96.57V197.54z\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.facebook.com/invotechnologyitservices/\",motionChild:true,nodeId:\"SExWqTwrl\",openInNewTab:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-1o3co2t framer-lux5qc\",\"data-framer-name\":\"Graphic\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 26 26\"><g id=\"ss9588067520_1\"><path d=\"M 26 13 C 26 5.82 20.18 0 13 0 C 5.82 0 0 5.82 0 13 C 0 19.097 4.197 24.212 9.86 25.617 L 9.86 16.973 L 7.179 16.973 L 7.179 13 L 9.86 13 L 9.86 11.288 C 9.86 6.863 11.862 4.812 16.206 4.812 C 17.03 4.812 18.451 4.974 19.032 5.136 L 19.032 8.737 C 18.725 8.705 18.192 8.688 17.53 8.688 C 15.399 8.688 14.575 9.496 14.575 11.595 L 14.575 13 L 18.821 13 L 18.092 16.973 L 14.575 16.973 L 14.575 25.905 C 21.012 25.128 26 19.647 26 13 Z\" fill=\"rgb(117, 0, 251)\"></path><path d=\"M 18.092 16.973 L 18.821 13 L 14.575 13 L 14.575 11.595 C 14.575 9.496 15.399 8.688 17.53 8.688 C 18.192 8.688 18.725 8.705 19.032 8.737 L 19.032 5.136 C 18.451 4.974 17.03 4.812 16.206 4.812 C 11.862 4.812 9.86 6.864 9.86 11.288 L 9.86 13 L 7.179 13 L 7.179 16.973 L 9.86 16.973 L 9.86 25.617 C 10.865 25.867 11.917 26 13 26 C 13.533 26 14.058 25.967 14.575 25.905 L 14.575 16.973 Z\" fill=\"rgb(255,255,255)\"></path></g></svg>',svgContentId:9588067520,withExternalLayout:true})}),/*#__PURE__*/_jsx(Link,{href:\"https://x.com/InvoTechnology\",motionChild:true,nodeId:\"fk9ZT1G0C\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-16zy7s framer-lux5qc\",\"data-framer-name\":\"Graphic\",fill:\"rgb(121, 0, 248)\",intrinsicHeight:463,intrinsicWidth:512,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" image-rendering=\"optimizeQuality\" fill-rule=\"evenodd\" clip-rule=\"evenodd\" viewBox=\"0 0 512 462.799\"><path fill-rule=\"nonzero\" d=\"M403.229 0h78.506L310.219 196.04 512 462.799H354.002L230.261 301.007 88.669 462.799h-78.56l183.455-209.683L0 0h161.999l111.856 147.88L403.229 0zm-27.556 415.805h43.505L138.363 44.527h-46.68l283.99 371.278z\"/></svg>',withExternalLayout:true})})]})})]})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-i2r9t5\",\"data-framer-name\":\"Footer\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1qhvuux\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.7px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"@2025 Tech2Rec\"})}),className:\"framer-2pnsdp\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})})})]}),isDisplayed4()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ju6f6r hidden-1xek37s hidden-if76u1\",\"data-framer-name\":\"Footer\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ae5nug\",\"data-framer-name\":\"Logo\",children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"augiA20Il\"},motionChild:true,nodeId:\"krUbCEbcc\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:1012.2222490369545,intrinsicWidth:4142.222331953641,pixelHeight:911,pixelWidth:3728,sizes:\"331px\",src:\"https://framerusercontent.com/images/hZ03Gwx0xSbYpjnVF4KPd41pskQ.png\",srcSet:\"https://framerusercontent.com/images/hZ03Gwx0xSbYpjnVF4KPd41pskQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/hZ03Gwx0xSbYpjnVF4KPd41pskQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/hZ03Gwx0xSbYpjnVF4KPd41pskQ.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/hZ03Gwx0xSbYpjnVF4KPd41pskQ.png 3728w\"},className:\"framer-ronyfs framer-lux5qc\",\"data-framer-name\":\"T2R Logo White\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.7px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"20px\"},children:\"We help companies to grow more effectively by managing and optimising their IT.\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"20px\"},children:/*#__PURE__*/_jsx(\"br\",{})}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"20px\"},children:\" \"})]}),/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.7px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Remember; if your technology is poor, growing becomes near-impossible. By optimising your processes and tech-stack, you can easily increase your output by up to 28%.\"}),/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.7px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})})]}),className:\"framer-1r1qh84\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-mvc60r\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-gwhs7d\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.7px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\" \"})}),className:\"framer-1t041o8\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-10w3oo5\",\"data-framer-name\":\"Contact\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1iu4p69\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-qywgwe\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.7px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://calendly.com/techwithtom/client-30mins?back=1&month=2025-03\",motionChild:true,nodeId:\"r0H6_Jems\",openInNewTab:true,scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-uz83zr\",\"data-styles-preset\":\"CY7_OpFbP\",children:\"Book Consultation\"})})})}),className:\"framer-1x602uw\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-r5uzde\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.7px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"GqF0WNHdP\"},motionChild:true,nodeId:\"LIW5wrNSK\",openInNewTab:false,scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-uz83zr\",\"data-styles-preset\":\"CY7_OpFbP\",children:\"Contact\"})})})}),className:\"framer-36d5tc\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-k7qk3h\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.7px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(Link,{href:{hash:\":SajGnREMb\",webPageId:\"augiA20Il\"},motionChild:true,nodeId:\"IO07j2A6K\",openInNewTab:false,scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-uz83zr\",\"data-styles-preset\":\"CY7_OpFbP\",children:\"About\"})})})}),className:\"framer-1nkuv34\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-erhu2v\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.7px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(Link,{href:{hash:\":j1Gou6S3j\",webPageId:\"augiA20Il\"},motionChild:true,nodeId:\"v53LxTnQ4\",openInNewTab:false,scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-uz83zr\",\"data-styles-preset\":\"CY7_OpFbP\",children:\"Services\"})})})}),className:\"framer-177u1yv\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1jntzy9\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.7px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"augiA20Il\"},motionChild:true,nodeId:\"eEBAWoToA\",openInNewTab:false,scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-uz83zr\",\"data-styles-preset\":\"CY7_OpFbP\",children:\"Testimonials\"})})})}),className:\"framer-1kukbmw\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1n0dbnr\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.7px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(Link,{href:{hash:\":XDNCTtdGq\",webPageId:\"augiA20Il\"},motionChild:true,nodeId:\"KS0gDv11t\",openInNewTab:false,scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-uz83zr\",\"data-styles-preset\":\"CY7_OpFbP\",children:\"Case Studies\"})})})}),className:\"framer-cja66k\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})})]})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-9e1vt8\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1pwoulb\",\"data-framer-name\":\"Contact\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1eo4fgz\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-10sgcqf\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.7px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\" \"})}),className:\"framer-1fsbgr5\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ej2wm7\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-95uh81\",\"data-framer-name\":\"Graphic\",fill:\"rgb(112, 0, 254)\",intrinsicHeight:123,intrinsicWidth:119,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"118.875\" height=\"122.877\" xml:space=\"preserve\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M1.432 20.714c9.427 6.476 18.779 12.989 26.673 21.375C23.58 62.076 41.64 78.045 58.111 87.453c6.448 3.683 9.298 6.265 16.476 5.024l28.268 27.696C49.657 138.039-10.045 63.084 1.432 20.714zm80.442 64.642 6.201-6.298c1.788-1.819 4.74-1.842 6.559-.053l22.862 22.509a4.653 4.653 0 0 1 .053 6.559l-6.203 6.299c-1.789 1.818-4.741 1.841-6.56.052L81.924 91.915c-1.819-1.788-1.841-4.74-.05-6.559zM7.004 7.467l4.5-5.464c1.929-2.342 5.425-2.68 7.767-.751l23.405 19.281c2.342 1.931 2.677 5.425.75 7.77l-4.502 5.461c-1.93 2.345-5.425 2.68-7.768.751L7.755 15.234c-2.342-1.929-2.682-5.425-.751-7.767z\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.7px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"+44 161 549 5368\"})}),className:\"framer-1lqrka7\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-sxnupy\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-cql3qm\",\"data-framer-name\":\"Graphic\",fill:\"rgb(112, 0, 254)\",intrinsicHeight:79,intrinsicWidth:123,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"122.88\" height=\"78.607\" xml:space=\"preserve\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"m61.058 65.992 24.224-24.221 36.837 36.836H0l36.836-36.836 24.222 24.221zM1.401 0l59.656 59.654L120.714 0H1.401zM0 69.673l31.625-31.628L0 6.42v63.253zm122.88 3.025L88.227 38.045 122.88 3.393v69.305z\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.7px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"info@tech2rec.co.uk\"})}),className:\"framer-offafj\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5gfw57\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-10znrcw\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-p0wc2v\",\"data-framer-name\":\"Graphic\",fill:\"rgb(112, 0, 254)\",intrinsicHeight:113,intrinsicWidth:123,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 122.88 113.05\" style=\"enable-background:new 0 0 122.88 113.05\" xml:space=\"preserve\"><path d=\"M0 100.07h14.72V1.57c0-.86.71-1.57 1.57-1.57h49.86c.86 0 1.57.71 1.57 1.57V38.5h44.12c.86 0 1.57.71 1.57 1.57v59.99h9.47v12.99H0v-12.98zm27.32-85.25h10.2c.31 0 .57.26.57.57v12.36c0 .31-.26.57-.57.57h-10.2c-.31 0-.57-.26-.57-.57V15.39c0-.31.26-.57.57-.57zM44.6 76.3h10.2c.31 0 .57.26.57.57v12.36c0 .31-.26.57-.57.57H44.6c-.31 0-.57-.26-.57-.57V76.87c0-.32.26-.57.57-.57zm-17.28 0h10.2c.31 0 .57.26.57.57v12.36c0 .31-.26.57-.57.57h-10.2c-.31 0-.57-.26-.57-.57V76.87c0-.32.26-.57.57-.57zM44.6 55.8h10.2c.31 0 .57.26.57.57v12.36c0 .31-.26.57-.57.57H44.6c-.31 0-.57-.26-.57-.57V56.38c0-.32.26-.58.57-.58zm-17.28 0h10.2c.31 0 .57.26.57.57v12.36c0 .31-.26.57-.57.57h-10.2c-.31 0-.57-.26-.57-.57V56.38c0-.32.26-.58.57-.58zM44.6 35.31h10.2c.31 0 .57.26.57.57v12.36c0 .31-.26.57-.57.57H44.6c-.31 0-.57-.26-.57-.57V35.88c0-.31.26-.57.57-.57zm-17.28 0h10.2c.31 0 .57.26.57.57v12.36c0 .31-.26.57-.57.57h-10.2c-.31 0-.57-.26-.57-.57V35.88c0-.31.26-.57.57-.57zM44.6 14.82h10.2c.31 0 .57.26.57.57v12.36c0 .31-.26.57-.57.57H44.6c-.31 0-.57-.26-.57-.57V15.39c0-.31.26-.57.57-.57zm-21.43-7.5h35.92c.62 0 1.13.61 1.13 1.35v85.87c0 .74-.51 1.35-1.13 1.35H23.17c-.62 0-1.13-.61-1.13-1.35V8.67c0-.74.51-1.35 1.13-1.35zm49.44 46.11h10.2c.31 0 .57.26.57.57v12.36c0 .31-.26.57-.57.57h-10.2c-.31 0-.57-.26-.57-.57V54c0-.31.26-.57.57-.57zM89.89 76.3h10.2c.31 0 .57.26.57.57v12.36c0 .31-.26.57-.57.57h-10.2c-.31 0-.57-.26-.57-.57V76.87c0-.32.26-.57.57-.57zm-17.28 0h10.2c.31 0 .57.26.57.57v12.36c0 .31-.26.57-.57.57h-10.2c-.31 0-.57-.26-.57-.57V76.87c0-.32.26-.57.57-.57zm17.28-22.87h10.2c.31 0 .57.26.57.57v12.36c0 .31-.26.57-.57.57h-10.2c-.31 0-.57-.26-.57-.57V54c0-.31.26-.57.57-.57zm-21.03-7.61h35.92c.62 0 1.13.61 1.13 1.35v47.37c0 .74-.51 1.35-1.13 1.35H68.86c-.62 0-1.13-.61-1.13-1.35V47.17c0-.74.51-1.35 1.13-1.35z\" style=\"fill-rule:evenodd;clip-rule:evenodd\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.7px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[\"Tech2Rec, Concordia, \",/*#__PURE__*/_jsx(\"br\",{}),\"Dunkirk Ln, Hyde \",/*#__PURE__*/_jsx(\"br\",{}),\"SK14 4NL,\",/*#__PURE__*/_jsx(\"br\",{}),\"United Kingdom\"]})}),className:\"framer-1t66a47\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-2qs1bn\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1owzlwb\",\"data-framer-name\":\"Socials\",children:[/*#__PURE__*/_jsx(Link,{href:\"https://www.linkedin.com/company/tech-2-rec/\",motionChild:true,nodeId:\"z7qgNc13E\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-wyp8cf framer-lux5qc\",\"data-framer-name\":\"Graphic\",fill:\"rgb(112, 0, 254)\",intrinsicHeight:510,intrinsicWidth:512,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" image-rendering=\"optimizeQuality\" fill-rule=\"evenodd\" clip-rule=\"evenodd\" viewBox=\"0 0 512 509.64\"><rect width=\"512\" height=\"509.64\" rx=\"115.61\" ry=\"115.61\"/><path fill=\"#fff\" d=\"M204.97 197.54h64.69v33.16h.94c9.01-16.16 31.04-33.16 63.89-33.16 68.31 0 80.94 42.51 80.94 97.81v116.92h-67.46l-.01-104.13c0-23.81-.49-54.45-35.08-54.45-35.12 0-40.51 25.91-40.51 52.72v105.86h-67.4V197.54zm-38.23-65.09c0 19.36-15.72 35.08-35.08 35.08-19.37 0-35.09-15.72-35.09-35.08 0-19.37 15.72-35.08 35.09-35.08 19.36 0 35.08 15.71 35.08 35.08zm-70.17 65.09h70.17v214.73H96.57V197.54z\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.facebook.com/invotechnologyitservices/\",motionChild:true,nodeId:\"A5OE_7aCu\",openInNewTab:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-1py4ows framer-lux5qc\",\"data-framer-name\":\"Graphic\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 26 26\"><g id=\"ss9588067520_1\"><path d=\"M 26 13 C 26 5.82 20.18 0 13 0 C 5.82 0 0 5.82 0 13 C 0 19.097 4.197 24.212 9.86 25.617 L 9.86 16.973 L 7.179 16.973 L 7.179 13 L 9.86 13 L 9.86 11.288 C 9.86 6.863 11.862 4.812 16.206 4.812 C 17.03 4.812 18.451 4.974 19.032 5.136 L 19.032 8.737 C 18.725 8.705 18.192 8.688 17.53 8.688 C 15.399 8.688 14.575 9.496 14.575 11.595 L 14.575 13 L 18.821 13 L 18.092 16.973 L 14.575 16.973 L 14.575 25.905 C 21.012 25.128 26 19.647 26 13 Z\" fill=\"rgb(117, 0, 251)\"></path><path d=\"M 18.092 16.973 L 18.821 13 L 14.575 13 L 14.575 11.595 C 14.575 9.496 15.399 8.688 17.53 8.688 C 18.192 8.688 18.725 8.705 19.032 8.737 L 19.032 5.136 C 18.451 4.974 17.03 4.812 16.206 4.812 C 11.862 4.812 9.86 6.864 9.86 11.288 L 9.86 13 L 7.179 13 L 7.179 16.973 L 9.86 16.973 L 9.86 25.617 C 10.865 25.867 11.917 26 13 26 C 13.533 26 14.058 25.967 14.575 25.905 L 14.575 16.973 Z\" fill=\"rgb(255,255,255)\"></path></g></svg>',svgContentId:9588067520,withExternalLayout:true})}),/*#__PURE__*/_jsx(Link,{href:\"https://x.com/InvoTechnology\",motionChild:true,nodeId:\"OjGrFlAH6\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-i9xbhw framer-lux5qc\",\"data-framer-name\":\"Graphic\",fill:\"rgb(121, 0, 248)\",intrinsicHeight:463,intrinsicWidth:512,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" image-rendering=\"optimizeQuality\" fill-rule=\"evenodd\" clip-rule=\"evenodd\" viewBox=\"0 0 512 462.799\"><path fill-rule=\"nonzero\" d=\"M403.229 0h78.506L310.219 196.04 512 462.799H354.002L230.261 301.007 88.669 462.799h-78.56l183.455-209.683L0 0h161.999l111.856 147.88L403.229 0zm-27.556 415.805h43.505L138.363 44.527h-46.68l283.99 371.278z\"/></svg>',withExternalLayout:true})})]})})]})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-16n9i5a\",\"data-framer-name\":\"Footer\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1pxpnpf\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.7px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"@2025 Tech2Rec\"})}),className:\"framer-pwllmm\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})})})]})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-fESjF.framer-lux5qc, .framer-fESjF .framer-lux5qc { display: block; }\",\".framer-fESjF.framer-72rtr7 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1200px; }\",\".framer-fESjF .framer-148tbwu { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: center; overflow: hidden; padding: 25px 40px 175px 40px; position: relative; width: 100%; }\",\".framer-fESjF .framer-kfuts { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 125px 0px; position: relative; width: 100%; }\",\".framer-fESjF .framer-n0nymo { aspect-ratio: 4.0922063666300765 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 46px); overflow: visible; position: relative; text-decoration: none; width: 188px; }\",\".framer-fESjF .framer-stpg6m, .framer-fESjF .framer-fdr3e7, .framer-fESjF .framer-jwmva2 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 100%; position: relative; white-space: pre-wrap; width: auto; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-fESjF .framer-9kt2s5 { --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 100%; overflow: visible; position: relative; white-space: pre-wrap; width: 541px; word-break: break-word; word-wrap: break-word; }\",\".framer-fESjF .framer-1yt6wfp { align-content: center; align-items: center; background-color: #200949; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-fESjF .framer-rif30x, .framer-fESjF .framer-19j18l8 { align-content: center; align-items: center; background-color: #7400fb; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; box-shadow: 0px 0.7065919983928324px 0.7065919983928324px -0.625px rgba(0, 0, 0, 0.15), 0px 1.8065619053231785px 1.8065619053231785px -1.25px rgba(0, 0, 0, 0.14), 0px 3.6217592146567767px 3.6217592146567767px -1.875px rgba(0, 0, 0, 0.14), 0px 6.8655999097303715px 6.8655999097303715px -2.5px rgba(0, 0, 0, 0.13), 0px 13.646761411524492px 13.646761411524492px -3.125px rgba(0, 0, 0, 0.1), 0px 30px 30px -3.75px rgba(0, 0, 0, 0.05); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 40px; justify-content: center; overflow: visible; padding: 15px; position: relative; text-decoration: none; width: min-content; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-fESjF .framer-1us7cu7, .framer-fESjF .framer-1etgx57, .framer-fESjF .framer-odswc9, .framer-fESjF .framer-1wekhs3 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-fESjF .framer-1f4120j { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 40px 20px 20px 20px; position: relative; width: 100%; }\",\".framer-fESjF .framer-137tf3u, .framer-fESjF .framer-xuyt1l, .framer-fESjF .framer-1gssvbf, .framer-fESjF .framer-c30c7g, .framer-fESjF .framer-15sneej, .framer-fESjF .framer-1uw42am { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 100%; position: relative; white-space: pre-wrap; width: auto; word-break: break-word; word-wrap: break-word; }\",\".framer-fESjF .framer-153noc0-container, .framer-fESjF .framer-10ewijl-container { flex: none; height: 200px; position: relative; width: 100%; }\",\".framer-fESjF .framer-5lzflz { height: 75px; position: relative; width: 230px; }\",\".framer-fESjF .framer-1tgflfh { height: 50px; position: relative; width: 228px; }\",\".framer-fESjF .framer-xkg8nn { height: 80px; position: relative; width: 164px; }\",\".framer-fESjF .framer-1j1c9we { aspect-ratio: 4.473684210526316 / 1; height: var(--framer-aspect-ratio-supported, 52px); overflow: visible; position: relative; width: 232px; }\",\".framer-fESjF .framer-1penjd4 { height: 48px; position: relative; width: 388px; }\",\".framer-fESjF .framer-1oc0w1s { height: 98px; position: relative; width: 242px; }\",\".framer-fESjF .framer-9zhfjf { aspect-ratio: 1.3790849673202614 / 1; height: var(--framer-aspect-ratio-supported, 211px); overflow: visible; position: relative; width: 291px; }\",\".framer-fESjF .framer-1scerul { height: 102px; position: relative; width: 216px; }\",\".framer-fESjF .framer-hbvab2 { height: 100px; position: relative; width: 157px; }\",\".framer-fESjF .framer-1d4k5my { height: 72px; position: relative; width: 191px; }\",\".framer-fESjF .framer-vy0kw3 { aspect-ratio: 3.571428571428571 / 1; height: var(--framer-aspect-ratio-supported, 59px); overflow: visible; position: relative; width: 211px; }\",\".framer-fESjF .framer-wjsd2n { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 40px 0px 20px 0px; position: relative; width: 100%; }\",\".framer-fESjF .framer-1ne61pg, .framer-fESjF .framer-dalmxh, .framer-fESjF .framer-fjzhu9 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-fESjF .framer-l6zh8m-container { flex: none; height: 614px; position: relative; width: 390px; }\",\".framer-fESjF .framer-v6zr53, .framer-fESjF .framer-1diheow { align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; box-shadow: 0px 0.7961918735236395px 2.3885756205709185px -0.625px rgba(0, 0, 0, 0.05), 0px 2.414506143104518px 7.2435184293135535px -1.25px rgba(0, 0, 0, 0.05), 0px 6.382653521484461px 19.147960564453385px -1.875px rgba(0, 0, 0, 0.05), 0px 20px 60px -2.5px rgba(0, 0, 0, 0.05); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 25px; height: min-content; justify-content: flex-start; padding: 30px; position: relative; width: min-content; }\",\".framer-fESjF .framer-1llsruz, .framer-fESjF .framer-p06rvr, .framer-fESjF .framer-m1ylh, .framer-fESjF .framer-1swq06n { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 260px; }\",\".framer-fESjF .framer-fn2lw8, .framer-fESjF .framer-1btdqxk { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 50px); overflow: hidden; position: relative; width: 50px; }\",\".framer-fESjF .framer-1skuskf, .framer-fESjF .framer-1edtaqm, .framer-fESjF .framer-nfpnyg, .framer-fESjF .framer-2z4jef { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 200px; }\",\".framer-fESjF .framer-1hgwmuj, .framer-fESjF .framer-ezdgu2, .framer-fESjF .framer-11taugn, .framer-fESjF .framer-1fq7rms, .framer-fESjF .framer-1gi20xe, .framer-fESjF .framer-1qz5u1u, .framer-fESjF .framer-1oeq89y, .framer-fESjF .framer-g14lnq { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre; width: auto; }\",\".framer-fESjF .framer-1i3sz4m { --framer-paragraph-spacing: 0px; flex: none; height: 230px; overflow: visible; position: relative; white-space: pre-wrap; width: 260px; word-break: break-word; word-wrap: break-word; }\",\".framer-fESjF .framer-fndxnn, .framer-fESjF .framer-z0wp89 { align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; box-shadow: 0px 0.7961918735236395px 2.3885756205709185px -0.625px rgba(0, 0, 0, 0.05), 0px 2.414506143104518px 7.2435184293135535px -1.25px rgba(0, 0, 0, 0.05), 0px 6.382653521484461px 19.147960564453385px -1.875px rgba(0, 0, 0, 0.05), 0px 20px 60px -2.5px rgba(0, 0, 0, 0.05); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; padding: 30px; position: relative; width: min-content; }\",\".framer-fESjF .framer-n28hvc, .framer-fESjF .framer-ik9iu7 { aspect-ratio: 1 / 1; border-bottom-left-radius: 50%; border-bottom-right-radius: 50%; border-top-left-radius: 50%; border-top-right-radius: 50%; flex: none; height: var(--framer-aspect-ratio-supported, 50px); overflow: hidden; position: relative; width: 50px; will-change: var(--framer-will-change-override, transform); }\",\".framer-fESjF .framer-196x0hs, .framer-fESjF .framer-oi36vr { --framer-paragraph-spacing: 0px; flex: none; height: 282px; overflow: visible; position: relative; white-space: pre-wrap; width: 260px; word-break: break-word; word-wrap: break-word; }\",\".framer-fESjF .framer-mxkrq1 { --framer-paragraph-spacing: 0px; flex: none; height: 307px; overflow: visible; position: relative; white-space: pre-wrap; width: 260px; word-break: break-word; word-wrap: break-word; }\",\".framer-fESjF .framer-lemk7c { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 1030px; justify-content: center; overflow: hidden; padding: 50px 0px 75px 0px; position: relative; width: 100%; }\",\".framer-fESjF .framer-14zvssp, .framer-fESjF .framer-1hpcmm5 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-fESjF .framer-es9cnq-container { flex: 1 0 0px; height: 200px; position: relative; width: 1px; }\",\".framer-fESjF .framer-1m7sjlb { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 50px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-fESjF .framer-cxuisn-container { flex: 1 0 0px; height: 1px; max-height: 100%; position: relative; width: 100%; }\",\".framer-fESjF .framer-1icxda6-container { flex: none; height: 559px; position: relative; width: 715px; }\",\".framer-fESjF .framer-lqw4vn { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 100px; height: min-content; justify-content: center; overflow: hidden; padding: 100px 40px 100px 40px; position: relative; width: 100%; }\",\".framer-fESjF .framer-1yb69bh { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 50px; height: min-content; justify-content: center; max-width: 100%; overflow: visible; padding: 0px; position: relative; width: 1062px; }\",\".framer-fESjF .framer-1vycaui, .framer-fESjF .framer-v3a13e, .framer-fESjF .framer-1smuhf5, .framer-fESjF .framer-ewaw02 { align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; box-shadow: 0px 0.7961918735236395px 2.3885756205709185px -0.625px rgba(0, 0, 0, 0.05), 0px 2.414506143104518px 7.2435184293135535px -1.25px rgba(0, 0, 0, 0.05), 0px 6.382653521484461px 19.147960564453385px -1.875px rgba(0, 0, 0, 0.05), 0px 20px 60px -2.5px rgba(0, 0, 0, 0.05); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 400px; justify-content: center; min-width: 100px; overflow: hidden; padding: 0px; position: relative; width: 400px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-fESjF .framer-zm3run { align-content: center; align-items: center; background: linear-gradient(180deg, var(--token-bdb91799-7da4-4b4e-bb85-e05873916ee7, #ffffff) 0%, rgb(238, 219, 255) 100%); border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 32px 0px 32px 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-fESjF .framer-1ao0pxs { aspect-ratio: 1.1941747572815533 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 109px); position: relative; width: 130px; }\",\".framer-fESjF .framer-1fzazw1 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; padding: 38px 30px 38px 30px; position: relative; width: 100%; }\",\".framer-fESjF .framer-emq0c0, .framer-fESjF .framer-1vquwjg, .framer-fESjF .framer-1okm0le, .framer-fESjF .framer-16ywjl1 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-fESjF .framer-dsle5q, .framer-fESjF .framer-43vqnw, .framer-fESjF .framer-7bmtui, .framer-fESjF .framer-76le6h { --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-fESjF .framer-e9iho5 { align-content: center; align-items: center; background: linear-gradient(180deg, var(--token-bdb91799-7da4-4b4e-bb85-e05873916ee7, #ffffff) 0%, rgb(238, 219, 255) 100%); border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 1px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-fESjF .framer-z6xmch { aspect-ratio: 0.8943089430894309 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 123px); position: relative; width: 110px; }\",\".framer-fESjF .framer-18v3eyy { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; padding: 27px 30px 27px 30px; position: relative; width: 400px; }\",\".framer-fESjF .framer-jq2eto { align-content: center; align-items: center; background: linear-gradient(180deg, var(--token-bdb91799-7da4-4b4e-bb85-e05873916ee7, #ffffff) 0%, rgb(238, 219, 255) 100%); border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 38px 0px 38px 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-fESjF .framer-1nsf4v5 { aspect-ratio: 1.1081081081081081 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 111px); position: relative; width: 123px; }\",\".framer-fESjF .framer-17m4s8p { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; padding: 30px; position: relative; width: 100%; }\",\".framer-fESjF .framer-18od516 { align-content: center; align-items: center; background: linear-gradient(180deg, var(--token-bdb91799-7da4-4b4e-bb85-e05873916ee7, #ffffff) 0%, rgb(238, 219, 255) 100%); border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 33px 0px 33px 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-fESjF .framer-1xiolwe { aspect-ratio: 1.0165289256198347 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 111px); position: relative; width: 113px; }\",\".framer-fESjF .framer-1drm9ee { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; padding: 27px 30px 27px 30px; position: relative; width: 100%; }\",\".framer-fESjF .framer-1t7e4tu { align-content: center; align-items: center; background-color: rgba(255, 255, 255, 0); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: hidden; padding: 100px 40px 75px 40px; position: relative; width: 100%; }\",\".framer-fESjF .framer-1q5d6r2 { align-content: center; align-items: center; background-color: rgba(255, 255, 255, 0); display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 40px 0px 40px; position: relative; width: 100%; }\",\".framer-fESjF .framer-68bszx { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: wrap; gap: 30px; height: min-content; justify-content: center; overflow: hidden; padding: 20px; position: relative; width: 1px; }\",\".framer-fESjF .framer-1apoci1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 312px; }\",\".framer-fESjF .framer-6ho0uy { align-content: center; align-items: center; background-color: rgba(255, 255, 255, 0); border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: 96px; justify-content: center; overflow: visible; padding: 15px 15px 0px 15px; position: relative; width: 276px; }\",\".framer-fESjF .framer-k6yuay { flex: none; height: 72px; position: relative; width: 72px; }\",\".framer-fESjF .framer-yfc12i, .framer-fESjF .framer-zsaxvi, .framer-fESjF .framer-n8wcws, .framer-fESjF .framer-13hr6el, .framer-fESjF .framer-19q1m79 { --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre; width: auto; }\",\".framer-fESjF .framer-1n67ga1 { align-content: center; align-items: center; background-color: rgba(255, 255, 255, 0); border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-end; overflow: visible; padding: 0px 35px 15px 15px; position: relative; width: 312px; }\",\".framer-fESjF .framer-1f4f390 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: wrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 312px; }\",\".framer-fESjF .framer-1ezegz4 { align-content: center; align-items: center; background-color: rgba(255, 255, 255, 0); border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: 96px; justify-content: center; overflow: visible; padding: 20px 0px 0px 0px; position: relative; width: 310px; }\",\".framer-fESjF .framer-1pw46e1 { flex: none; height: 71px; position: relative; width: 80px; }\",\".framer-fESjF .framer-19tdadn { --framer-paragraph-spacing: 0px; flex: none; height: 80px; overflow: visible; position: relative; white-space: pre-wrap; width: 159px; word-break: break-word; word-wrap: break-word; }\",\".framer-fESjF .framer-slconm { align-content: center; align-items: center; background-color: rgba(255, 255, 255, 0); border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-end; overflow: visible; padding: 0px 15px 15px 40px; position: relative; width: 312px; }\",\".framer-fESjF .framer-1rf71wi { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: wrap; gap: 4px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 312px; }\",\".framer-fESjF .framer-1aoelzc { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; z-index: 1; }\",\".framer-fESjF .framer-d5mxnh { align-content: center; align-items: center; background-color: rgba(255, 255, 255, 0); border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: 96px; justify-content: center; overflow: visible; padding: 20px 0px 0px 0px; position: relative; width: 282px; }\",\".framer-fESjF .framer-1w1ta2h { aspect-ratio: 1.0982142857142858 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 70px); position: relative; width: 77px; }\",\".framer-fESjF .framer-1msrbhm { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 15px; height: 79px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; z-index: 1; }\",\".framer-fESjF .framer-y14rsd { align-content: center; align-items: center; background-color: rgba(255, 255, 255, 0); border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-end; overflow: visible; padding: 0px 30px 15px 15px; position: relative; width: 312px; }\",\".framer-fESjF .framer-1iklprk { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-fESjF .framer-fix4xt { align-content: center; align-items: center; background-color: rgba(255, 255, 255, 0); display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 100px 0px 100px 0px; position: relative; width: 100%; }\",\".framer-fESjF .framer-1rbx6lo, .framer-fESjF .framer-eryhgm { align-content: center; align-items: center; background-color: rgba(255, 255, 255, 0); display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: wrap; gap: 40px; height: min-content; justify-content: center; max-width: 1000px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-fESjF .framer-1n3udp7 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 20px 15px 20px 15px; position: relative; width: 480px; }\",\".framer-fESjF .framer-1i1hsy7 { align-content: center; align-items: center; aspect-ratio: 1.2 / 1; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: var(--framer-aspect-ratio-supported, 375px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-fESjF .framer-1sbx0r4 { aspect-ratio: 1.315233785822021 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 419px); overflow: visible; position: relative; width: 551px; }\",\".framer-fESjF .framer-fn0i1p, .framer-fESjF .framer-kxar8n { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; padding: 0px 30px 0px 30px; position: relative; width: 480px; }\",\".framer-fESjF .framer-blswxd { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 100%; position: relative; white-space: pre-wrap; width: 421px; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-fESjF .framer-10itt71 { --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 100%; overflow: visible; position: relative; white-space: pre-wrap; width: 492px; word-break: break-word; word-wrap: break-word; }\",\".framer-fESjF .framer-8mjku3, .framer-fESjF .framer-l0687e { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-fESjF .framer-15520n4, .framer-fESjF .framer-1lv681h { align-content: center; align-items: center; background-color: #222222; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; box-shadow: 0px 0.7065919983928324px 0.7065919983928324px -0.625px rgba(0, 0, 0, 0.15), 0px 1.8065619053231785px 1.8065619053231785px -1.25px rgba(0, 0, 0, 0.14), 0px 3.6217592146567767px 3.6217592146567767px -1.875px rgba(0, 0, 0, 0.14), 0px 6.8655999097303715px 6.8655999097303715px -2.5px rgba(0, 0, 0, 0.13), 0px 13.646761411524492px 13.646761411524492px -3.125px rgba(0, 0, 0, 0.1), 0px 30px 30px -3.75px rgba(0, 0, 0, 0.05); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 40px; justify-content: center; overflow: visible; padding: 15px; position: relative; text-decoration: none; width: min-content; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-fESjF .framer-ods776 { align-content: center; align-items: center; background-color: rgba(255, 255, 255, 0); display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 40px 0px 75px 0px; position: relative; width: 100%; }\",\".framer-fESjF .framer-yqswr0 { --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 100%; overflow: visible; position: relative; white-space: pre-wrap; width: auto; word-break: break-word; word-wrap: break-word; }\",\".framer-fESjF .framer-bwdd8d { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 20px 15px 20px 15px; position: relative; width: 480px; }\",\".framer-fESjF .framer-1rg6v6x { align-content: center; align-items: center; aspect-ratio: 1.2 / 1; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 100px; height: var(--framer-aspect-ratio-supported, 375px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-fESjF .framer-10nbfrr { aspect-ratio: 1.315233785822021 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 425px); overflow: visible; position: relative; width: 559px; }\",\".framer-fESjF .framer-1lj0e9d { align-content: center; align-items: center; background-color: rgba(255, 255, 255, 0); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 75px 40px 75px 40px; position: relative; width: 100%; }\",\".framer-fESjF .framer-1p7p2tc { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 30px 0px 30px 0px; position: relative; width: 100%; }\",\".framer-fESjF .framer-1uxa69q { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 100px; height: min-content; justify-content: center; max-width: 2018px; padding: 0px; position: relative; width: 731px; }\",\".framer-fESjF .framer-3ophh6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 10px 0px 0px 0px; position: relative; width: min-content; }\",\".framer-fESjF .framer-bc6kj4 { align-content: center; align-items: center; background-color: #1f0a4a; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 60px 40px 0px 40px; position: relative; width: 100%; }\",\".framer-fESjF .framer-1lu7dha, .framer-fESjF .framer-mhaoj { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; max-width: 100%; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-fESjF .framer-1si2hjj { aspect-ratio: 4.092206366630077 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 76px); overflow: visible; position: relative; width: 309px; }\",\".framer-fESjF .framer-cv2itu, .framer-fESjF .framer-msubdi, .framer-fESjF .framer-1qhe12m, .framer-fESjF .framer-1ylhvta { --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 500px; overflow: visible; position: relative; white-space: pre-wrap; width: 283px; word-break: break-word; word-wrap: break-word; }\",\".framer-fESjF .framer-1co5590, .framer-fESjF .framer-1p727ti { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; max-width: 100%; overflow: hidden; padding: 0px; position: relative; width: 277px; }\",\".framer-fESjF .framer-18xjqkn, .framer-fESjF .framer-o9vsi3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 277px; }\",\".framer-fESjF .framer-1dlztck, .framer-fESjF .framer-10yydrd, .framer-fESjF .framer-1bprv5w, .framer-fESjF .framer-4110qo { --framer-paragraph-spacing: 0px; flex: 1 0 0px; height: auto; max-width: 500px; overflow: visible; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-fESjF .framer-4ifvk7, .framer-fESjF .framer-jhf9tr { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 100%; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-fESjF .framer-w0sdl4, .framer-fESjF .framer-1a7auwo { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 274px; }\",\".framer-fESjF .framer-147y0px, .framer-fESjF .framer-svoz01, .framer-fESjF .framer-gz7iop, .framer-fESjF .framer-1iodube, .framer-fESjF .framer-1v1eula, .framer-fESjF .framer-msn53s, .framer-fESjF .framer-1upegmk, .framer-fESjF .framer-y4cb2w, .framer-fESjF .framer-k2eb78, .framer-fESjF .framer-1a2psut { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 15px 0px 15px; position: relative; width: 100%; }\",\".framer-fESjF .framer-y6ykgg, .framer-fESjF .framer-1gloyqt, .framer-fESjF .framer-11mgc03, .framer-fESjF .framer-1h9p97e, .framer-fESjF .framer-1f9vvs, .framer-fESjF .framer-5u0ym, .framer-fESjF .framer-1gxkhf, .framer-fESjF .framer-clig4s, .framer-fESjF .framer-1p9krgw, .framer-fESjF .framer-1w0b6p { --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 500px; overflow: visible; position: relative; white-space: pre-wrap; width: 169px; word-break: break-word; word-wrap: break-word; }\",\".framer-fESjF .framer-1g6rh3i, .framer-fESjF .framer-1b69q2i, .framer-fESjF .framer-1t041o8, .framer-fESjF .framer-1x602uw, .framer-fESjF .framer-36d5tc, .framer-fESjF .framer-1nkuv34, .framer-fESjF .framer-177u1yv, .framer-fESjF .framer-1kukbmw, .framer-fESjF .framer-cja66k { --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 500px; overflow: visible; position: relative; white-space: pre-wrap; width: auto; word-break: break-word; word-wrap: break-word; }\",\".framer-fESjF .framer-5mjrop, .framer-fESjF .framer-j8y9tj { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 15px 0px 15px; position: relative; width: 100%; }\",\".framer-fESjF .framer-1luo8qa, .framer-fESjF .framer-1p9w08o { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: center; max-width: 100%; overflow: hidden; padding: 0px 15px 0px 25px; position: relative; width: 277px; }\",\".framer-fESjF .framer-1xqbtvp, .framer-fESjF .framer-10276yw { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; max-width: 100%; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-fESjF .framer-qzorw5, .framer-fESjF .framer-s82zcp { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; overflow: hidden; padding: 15px; position: relative; width: 277px; }\",\".framer-fESjF .framer-1fdxp5x, .framer-fESjF .framer-g47918 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-fESjF .framer-uc2p8s, .framer-fESjF .framer-wbdqhx, .framer-fESjF .framer-167nbb, .framer-fESjF .framer-ja4lu3, .framer-fESjF .framer-ej2wm7, .framer-fESjF .framer-sxnupy, .framer-fESjF .framer-1owzlwb { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-fESjF .framer-mq7tx, .framer-fESjF .framer-1hh062i { aspect-ratio: 0.967479674796748 / 1; flex: none; height: 27px; position: relative; width: var(--framer-aspect-ratio-supported, 26px); }\",\".framer-fESjF .framer-1lwg3kz, .framer-fESjF .framer-5dlxr8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-fESjF .framer-1tyv3j8, .framer-fESjF .framer-s069ln { aspect-ratio: 1.5569620253164558 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 17px); position: relative; width: 26px; }\",\".framer-fESjF .framer-1vrtm6y, .framer-fESjF .framer-1bga1fy { --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 500px; overflow: visible; position: relative; white-space: pre-wrap; width: 180px; word-break: break-word; word-wrap: break-word; }\",\".framer-fESjF .framer-t96ukt, .framer-fESjF .framer-1lbjcyz { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-fESjF .framer-ys6mwj, .framer-fESjF .framer-18mejrm { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-fESjF .framer-18x4tlq, .framer-fESjF .framer-emk2a6 { aspect-ratio: 1.0884955752212389 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 24px); position: relative; width: 26px; }\",\".framer-fESjF .framer-14somkz, .framer-fESjF .framer-fz7pzz { --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 500px; overflow: visible; position: relative; white-space: pre-wrap; width: 264px; word-break: break-word; word-wrap: break-word; }\",\".framer-fESjF .framer-xaxjf0, .framer-fESjF .framer-1ukwviq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 15px 10px 10px 3px; position: relative; width: 100%; }\",\".framer-fESjF .framer-1oqqlz2, .framer-fESjF .framer-w45t9g, .framer-fESjF .framer-wyp8cf { aspect-ratio: 1.003921568627451 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 27px); position: relative; text-decoration: none; width: 27px; }\",\".framer-fESjF .framer-xp7kk8, .framer-fESjF .framer-1o3co2t, .framer-fESjF .framer-1py4ows { flex: none; height: 26px; position: relative; text-decoration: none; width: 26px; }\",\".framer-fESjF .framer-rpf9iz, .framer-fESjF .framer-16zy7s, .framer-fESjF .framer-i9xbhw { aspect-ratio: 1.1058315334773219 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 23px); position: relative; text-decoration: none; width: 25px; }\",\".framer-fESjF .framer-176vrnm, .framer-fESjF .framer-i2r9t5 { align-content: flex-start; align-items: flex-start; background-color: #1f0a4a; display: flex; flex: none; flex-direction: column; flex-wrap: wrap; gap: 0px; height: 78px; justify-content: center; overflow: hidden; padding: 50px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-fESjF .framer-1kv83cn, .framer-fESjF .framer-1qhvuux { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; max-width: 100%; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-fESjF .framer-yoepcg, .framer-fESjF .framer-2pnsdp { --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 500px; overflow: visible; position: relative; white-space: pre-wrap; width: 331px; word-break: break-word; word-wrap: break-word; }\",\".framer-fESjF .framer-1j16bid { align-content: center; align-items: center; background-color: #1f0a4a; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 60px 40px 0px 40px; position: relative; width: 390px; }\",\".framer-fESjF .framer-19leggf { aspect-ratio: 4.092206366630077 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 76px); overflow: visible; position: relative; text-decoration: none; width: 309px; }\",\".framer-fESjF .framer-1ju6f6r { align-content: center; align-items: center; background-color: #1f0a4a; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 60px 40px 0px 40px; position: relative; width: 100%; }\",\".framer-fESjF .framer-1ae5nug { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; max-width: 100%; overflow: visible; padding: 0px 0px 0px 30px; position: relative; width: min-content; }\",\".framer-fESjF .framer-ronyfs { aspect-ratio: 4.092206366630077 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 81px); overflow: visible; position: relative; text-decoration: none; width: 331px; }\",\".framer-fESjF .framer-1r1qh84 { --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 500px; overflow: visible; position: relative; white-space: pre-wrap; width: 287px; word-break: break-word; word-wrap: break-word; }\",\".framer-fESjF .framer-mvc60r { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; overflow: hidden; padding: 15px 0px 15px 0px; position: relative; width: 1px; }\",\".framer-fESjF .framer-gwhs7d { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 536px; }\",\".framer-fESjF .framer-10w3oo5 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 100%; overflow: visible; padding: 0px 0px 0px 177px; position: relative; width: 536px; }\",\".framer-fESjF .framer-1iu4p69 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-fESjF .framer-qywgwe, .framer-fESjF .framer-r5uzde, .framer-fESjF .framer-k7qk3h, .framer-fESjF .framer-erhu2v, .framer-fESjF .framer-1jntzy9 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 15px 0px 15px; position: relative; width: 100%; }\",\".framer-fESjF .framer-1n0dbnr { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 15px 0px 15px; position: relative; width: 100%; }\",\".framer-fESjF .framer-9e1vt8 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 100px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 15px 0px 15px; position: relative; width: 1px; }\",\".framer-fESjF .framer-1pwoulb { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; max-width: 100%; overflow: visible; padding: 0px 0px 0px 40px; position: relative; width: min-content; }\",\".framer-fESjF .framer-1eo4fgz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-fESjF .framer-10sgcqf { align-content: center; align-items: center; align-self: stretch; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 100px; height: min-content; justify-content: center; overflow: hidden; padding: 15px 0px 30px 0px; position: relative; width: auto; }\",\".framer-fESjF .framer-1fsbgr5, .framer-fESjF .framer-1lqrka7, .framer-fESjF .framer-offafj { --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 500px; overflow: visible; position: relative; white-space: pre-wrap; width: 250px; word-break: break-word; word-wrap: break-word; }\",\".framer-fESjF .framer-95uh81 { aspect-ratio: 0.967479674796748 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 31px); position: relative; width: 30px; }\",\".framer-fESjF .framer-cql3qm { aspect-ratio: 1.5569620253164558 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 19px); position: relative; width: 30px; }\",\".framer-fESjF .framer-5gfw57 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-fESjF .framer-10znrcw { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 8px; position: relative; width: min-content; }\",\".framer-fESjF .framer-p0wc2v { aspect-ratio: 1.0884955752212389 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 27px); position: relative; width: 30px; }\",\".framer-fESjF .framer-1t66a47 { --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 500px; overflow: visible; position: relative; white-space: pre-wrap; width: 245px; word-break: break-word; word-wrap: break-word; }\",\".framer-fESjF .framer-2qs1bn { align-content: center; align-items: center; align-self: stretch; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 30px 10px 10px 10px; position: relative; width: auto; }\",\".framer-fESjF .framer-16n9i5a { align-content: flex-start; align-items: flex-start; background-color: #1f0a4a; display: flex; flex: none; flex-direction: column; flex-wrap: wrap; gap: 0px; height: 78px; justify-content: flex-start; overflow: hidden; padding: 50px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-fESjF .framer-1pxpnpf { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-fESjF .framer-pwllmm { --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 500px; overflow: visible; position: relative; white-space: pre-wrap; width: 500px; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-fESjF.framer-72rtr7, .framer-fESjF .framer-148tbwu, .framer-fESjF .framer-kfuts, .framer-fESjF .framer-1yt6wfp, .framer-fESjF .framer-rif30x, .framer-fESjF .framer-1f4120j, .framer-fESjF .framer-wjsd2n, .framer-fESjF .framer-1ne61pg, .framer-fESjF .framer-v6zr53, .framer-fESjF .framer-1llsruz, .framer-fESjF .framer-1skuskf, .framer-fESjF .framer-fndxnn, .framer-fESjF .framer-p06rvr, .framer-fESjF .framer-1edtaqm, .framer-fESjF .framer-z0wp89, .framer-fESjF .framer-m1ylh, .framer-fESjF .framer-nfpnyg, .framer-fESjF .framer-1diheow, .framer-fESjF .framer-1swq06n, .framer-fESjF .framer-2z4jef, .framer-fESjF .framer-lemk7c, .framer-fESjF .framer-dalmxh, .framer-fESjF .framer-fjzhu9, .framer-fESjF .framer-14zvssp, .framer-fESjF .framer-1m7sjlb, .framer-fESjF .framer-lqw4vn, .framer-fESjF .framer-1yb69bh, .framer-fESjF .framer-1vycaui, .framer-fESjF .framer-zm3run, .framer-fESjF .framer-1fzazw1, .framer-fESjF .framer-v3a13e, .framer-fESjF .framer-e9iho5, .framer-fESjF .framer-18v3eyy, .framer-fESjF .framer-1smuhf5, .framer-fESjF .framer-jq2eto, .framer-fESjF .framer-17m4s8p, .framer-fESjF .framer-ewaw02, .framer-fESjF .framer-18od516, .framer-fESjF .framer-1drm9ee, .framer-fESjF .framer-1t7e4tu, .framer-fESjF .framer-1hpcmm5, .framer-fESjF .framer-1q5d6r2, .framer-fESjF .framer-68bszx, .framer-fESjF .framer-1apoci1, .framer-fESjF .framer-6ho0uy, .framer-fESjF .framer-1n67ga1, .framer-fESjF .framer-1f4f390, .framer-fESjF .framer-1ezegz4, .framer-fESjF .framer-slconm, .framer-fESjF .framer-1rf71wi, .framer-fESjF .framer-1aoelzc, .framer-fESjF .framer-d5mxnh, .framer-fESjF .framer-1msrbhm, .framer-fESjF .framer-y14rsd, .framer-fESjF .framer-1iklprk, .framer-fESjF .framer-fix4xt, .framer-fESjF .framer-1rbx6lo, .framer-fESjF .framer-1n3udp7, .framer-fESjF .framer-1i1hsy7, .framer-fESjF .framer-fn0i1p, .framer-fESjF .framer-8mjku3, .framer-fESjF .framer-15520n4, .framer-fESjF .framer-ods776, .framer-fESjF .framer-eryhgm, .framer-fESjF .framer-kxar8n, .framer-fESjF .framer-l0687e, .framer-fESjF .framer-1lv681h, .framer-fESjF .framer-bwdd8d, .framer-fESjF .framer-1rg6v6x, .framer-fESjF .framer-1lj0e9d, .framer-fESjF .framer-1p7p2tc, .framer-fESjF .framer-1uxa69q, .framer-fESjF .framer-3ophh6, .framer-fESjF .framer-19j18l8, .framer-fESjF .framer-bc6kj4, .framer-fESjF .framer-1lu7dha, .framer-fESjF .framer-1co5590, .framer-fESjF .framer-18xjqkn, .framer-fESjF .framer-4ifvk7, .framer-fESjF .framer-w0sdl4, .framer-fESjF .framer-147y0px, .framer-fESjF .framer-svoz01, .framer-fESjF .framer-gz7iop, .framer-fESjF .framer-1iodube, .framer-fESjF .framer-1v1eula, .framer-fESjF .framer-5mjrop, .framer-fESjF .framer-1luo8qa, .framer-fESjF .framer-1xqbtvp, .framer-fESjF .framer-qzorw5, .framer-fESjF .framer-1fdxp5x, .framer-fESjF .framer-uc2p8s, .framer-fESjF .framer-1lwg3kz, .framer-fESjF .framer-t96ukt, .framer-fESjF .framer-ys6mwj, .framer-fESjF .framer-xaxjf0, .framer-fESjF .framer-wbdqhx, .framer-fESjF .framer-176vrnm, .framer-fESjF .framer-1kv83cn, .framer-fESjF .framer-1j16bid, .framer-fESjF .framer-mhaoj, .framer-fESjF .framer-1p727ti, .framer-fESjF .framer-o9vsi3, .framer-fESjF .framer-jhf9tr, .framer-fESjF .framer-1a7auwo, .framer-fESjF .framer-msn53s, .framer-fESjF .framer-1upegmk, .framer-fESjF .framer-y4cb2w, .framer-fESjF .framer-k2eb78, .framer-fESjF .framer-1a2psut, .framer-fESjF .framer-j8y9tj, .framer-fESjF .framer-1p9w08o, .framer-fESjF .framer-10276yw, .framer-fESjF .framer-s82zcp, .framer-fESjF .framer-g47918, .framer-fESjF .framer-167nbb, .framer-fESjF .framer-5dlxr8, .framer-fESjF .framer-1lbjcyz, .framer-fESjF .framer-18mejrm, .framer-fESjF .framer-1ukwviq, .framer-fESjF .framer-ja4lu3, .framer-fESjF .framer-i2r9t5, .framer-fESjF .framer-1qhvuux, .framer-fESjF .framer-1ju6f6r, .framer-fESjF .framer-1ae5nug, .framer-fESjF .framer-mvc60r, .framer-fESjF .framer-gwhs7d, .framer-fESjF .framer-10w3oo5, .framer-fESjF .framer-1iu4p69, .framer-fESjF .framer-qywgwe, .framer-fESjF .framer-r5uzde, .framer-fESjF .framer-k7qk3h, .framer-fESjF .framer-erhu2v, .framer-fESjF .framer-1jntzy9, .framer-fESjF .framer-1n0dbnr, .framer-fESjF .framer-9e1vt8, .framer-fESjF .framer-1pwoulb, .framer-fESjF .framer-1eo4fgz, .framer-fESjF .framer-10sgcqf, .framer-fESjF .framer-ej2wm7, .framer-fESjF .framer-sxnupy, .framer-fESjF .framer-5gfw57, .framer-fESjF .framer-10znrcw, .framer-fESjF .framer-2qs1bn, .framer-fESjF .framer-1owzlwb, .framer-fESjF .framer-16n9i5a, .framer-fESjF .framer-1pxpnpf { gap: 0px; } .framer-fESjF.framer-72rtr7 > *, .framer-fESjF .framer-1skuskf > *, .framer-fESjF .framer-fndxnn > *, .framer-fESjF .framer-1edtaqm > *, .framer-fESjF .framer-z0wp89 > *, .framer-fESjF .framer-nfpnyg > *, .framer-fESjF .framer-2z4jef > *, .framer-fESjF .framer-lemk7c > *, .framer-fESjF .framer-1vycaui > *, .framer-fESjF .framer-v3a13e > *, .framer-fESjF .framer-1smuhf5 > *, .framer-fESjF .framer-ewaw02 > *, .framer-fESjF .framer-bc6kj4 > *, .framer-fESjF .framer-1co5590 > *, .framer-fESjF .framer-176vrnm > *, .framer-fESjF .framer-1j16bid > *, .framer-fESjF .framer-1p727ti > *, .framer-fESjF .framer-i2r9t5 > *, .framer-fESjF .framer-16n9i5a > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-fESjF.framer-72rtr7 > :first-child, .framer-fESjF .framer-148tbwu > :first-child, .framer-fESjF .framer-1ne61pg > :first-child, .framer-fESjF .framer-v6zr53 > :first-child, .framer-fESjF .framer-1skuskf > :first-child, .framer-fESjF .framer-fndxnn > :first-child, .framer-fESjF .framer-1edtaqm > :first-child, .framer-fESjF .framer-z0wp89 > :first-child, .framer-fESjF .framer-nfpnyg > :first-child, .framer-fESjF .framer-1diheow > :first-child, .framer-fESjF .framer-2z4jef > :first-child, .framer-fESjF .framer-lemk7c > :first-child, .framer-fESjF .framer-dalmxh > :first-child, .framer-fESjF .framer-fjzhu9 > :first-child, .framer-fESjF .framer-lqw4vn > :first-child, .framer-fESjF .framer-1vycaui > :first-child, .framer-fESjF .framer-1fzazw1 > :first-child, .framer-fESjF .framer-v3a13e > :first-child, .framer-fESjF .framer-18v3eyy > :first-child, .framer-fESjF .framer-1smuhf5 > :first-child, .framer-fESjF .framer-17m4s8p > :first-child, .framer-fESjF .framer-ewaw02 > :first-child, .framer-fESjF .framer-1drm9ee > :first-child, .framer-fESjF .framer-1t7e4tu > :first-child, .framer-fESjF .framer-1f4f390 > :first-child, .framer-fESjF .framer-1rf71wi > :first-child, .framer-fESjF .framer-1iklprk > :first-child, .framer-fESjF .framer-fn0i1p > :first-child, .framer-fESjF .framer-kxar8n > :first-child, .framer-fESjF .framer-1lj0e9d > :first-child, .framer-fESjF .framer-1p7p2tc > :first-child, .framer-fESjF .framer-bc6kj4 > :first-child, .framer-fESjF .framer-1lu7dha > :first-child, .framer-fESjF .framer-1co5590 > :first-child, .framer-fESjF .framer-4ifvk7 > :first-child, .framer-fESjF .framer-w0sdl4 > :first-child, .framer-fESjF .framer-1xqbtvp > :first-child, .framer-fESjF .framer-qzorw5 > :first-child, .framer-fESjF .framer-176vrnm > :first-child, .framer-fESjF .framer-1j16bid > :first-child, .framer-fESjF .framer-mhaoj > :first-child, .framer-fESjF .framer-1p727ti > :first-child, .framer-fESjF .framer-jhf9tr > :first-child, .framer-fESjF .framer-1a7auwo > :first-child, .framer-fESjF .framer-10276yw > :first-child, .framer-fESjF .framer-s82zcp > :first-child, .framer-fESjF .framer-i2r9t5 > :first-child, .framer-fESjF .framer-1ae5nug > :first-child, .framer-fESjF .framer-mvc60r > :first-child, .framer-fESjF .framer-10w3oo5 > :first-child, .framer-fESjF .framer-1iu4p69 > :first-child, .framer-fESjF .framer-1pwoulb > :first-child, .framer-fESjF .framer-1eo4fgz > :first-child, .framer-fESjF .framer-16n9i5a > :first-child { margin-top: 0px; } .framer-fESjF.framer-72rtr7 > :last-child, .framer-fESjF .framer-148tbwu > :last-child, .framer-fESjF .framer-1ne61pg > :last-child, .framer-fESjF .framer-v6zr53 > :last-child, .framer-fESjF .framer-1skuskf > :last-child, .framer-fESjF .framer-fndxnn > :last-child, .framer-fESjF .framer-1edtaqm > :last-child, .framer-fESjF .framer-z0wp89 > :last-child, .framer-fESjF .framer-nfpnyg > :last-child, .framer-fESjF .framer-1diheow > :last-child, .framer-fESjF .framer-2z4jef > :last-child, .framer-fESjF .framer-lemk7c > :last-child, .framer-fESjF .framer-dalmxh > :last-child, .framer-fESjF .framer-fjzhu9 > :last-child, .framer-fESjF .framer-lqw4vn > :last-child, .framer-fESjF .framer-1vycaui > :last-child, .framer-fESjF .framer-1fzazw1 > :last-child, .framer-fESjF .framer-v3a13e > :last-child, .framer-fESjF .framer-18v3eyy > :last-child, .framer-fESjF .framer-1smuhf5 > :last-child, .framer-fESjF .framer-17m4s8p > :last-child, .framer-fESjF .framer-ewaw02 > :last-child, .framer-fESjF .framer-1drm9ee > :last-child, .framer-fESjF .framer-1t7e4tu > :last-child, .framer-fESjF .framer-1f4f390 > :last-child, .framer-fESjF .framer-1rf71wi > :last-child, .framer-fESjF .framer-1iklprk > :last-child, .framer-fESjF .framer-fn0i1p > :last-child, .framer-fESjF .framer-kxar8n > :last-child, .framer-fESjF .framer-1lj0e9d > :last-child, .framer-fESjF .framer-1p7p2tc > :last-child, .framer-fESjF .framer-bc6kj4 > :last-child, .framer-fESjF .framer-1lu7dha > :last-child, .framer-fESjF .framer-1co5590 > :last-child, .framer-fESjF .framer-4ifvk7 > :last-child, .framer-fESjF .framer-w0sdl4 > :last-child, .framer-fESjF .framer-1xqbtvp > :last-child, .framer-fESjF .framer-qzorw5 > :last-child, .framer-fESjF .framer-176vrnm > :last-child, .framer-fESjF .framer-1j16bid > :last-child, .framer-fESjF .framer-mhaoj > :last-child, .framer-fESjF .framer-1p727ti > :last-child, .framer-fESjF .framer-jhf9tr > :last-child, .framer-fESjF .framer-1a7auwo > :last-child, .framer-fESjF .framer-10276yw > :last-child, .framer-fESjF .framer-s82zcp > :last-child, .framer-fESjF .framer-i2r9t5 > :last-child, .framer-fESjF .framer-1ae5nug > :last-child, .framer-fESjF .framer-mvc60r > :last-child, .framer-fESjF .framer-10w3oo5 > :last-child, .framer-fESjF .framer-1iu4p69 > :last-child, .framer-fESjF .framer-1pwoulb > :last-child, .framer-fESjF .framer-1eo4fgz > :last-child, .framer-fESjF .framer-16n9i5a > :last-child { margin-bottom: 0px; } .framer-fESjF .framer-148tbwu > * { margin: 0px; margin-bottom: calc(50px / 2); margin-top: calc(50px / 2); } .framer-fESjF .framer-kfuts > *, .framer-fESjF .framer-rif30x > *, .framer-fESjF .framer-1f4120j > *, .framer-fESjF .framer-wjsd2n > *, .framer-fESjF .framer-14zvssp > *, .framer-fESjF .framer-1m7sjlb > *, .framer-fESjF .framer-zm3run > *, .framer-fESjF .framer-e9iho5 > *, .framer-fESjF .framer-jq2eto > *, .framer-fESjF .framer-18od516 > *, .framer-fESjF .framer-1hpcmm5 > *, .framer-fESjF .framer-1apoci1 > *, .framer-fESjF .framer-1n67ga1 > *, .framer-fESjF .framer-slconm > *, .framer-fESjF .framer-y14rsd > *, .framer-fESjF .framer-fix4xt > *, .framer-fESjF .framer-15520n4 > *, .framer-fESjF .framer-ods776 > *, .framer-fESjF .framer-1lv681h > *, .framer-fESjF .framer-bwdd8d > *, .framer-fESjF .framer-19j18l8 > *, .framer-fESjF .framer-18xjqkn > *, .framer-fESjF .framer-ys6mwj > *, .framer-fESjF .framer-xaxjf0 > *, .framer-fESjF .framer-o9vsi3 > *, .framer-fESjF .framer-18mejrm > *, .framer-fESjF .framer-1ukwviq > *, .framer-fESjF .framer-gwhs7d > *, .framer-fESjF .framer-10znrcw > *, .framer-fESjF .framer-2qs1bn > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-fESjF .framer-kfuts > :first-child, .framer-fESjF .framer-1yt6wfp > :first-child, .framer-fESjF .framer-rif30x > :first-child, .framer-fESjF .framer-1f4120j > :first-child, .framer-fESjF .framer-wjsd2n > :first-child, .framer-fESjF .framer-1llsruz > :first-child, .framer-fESjF .framer-p06rvr > :first-child, .framer-fESjF .framer-m1ylh > :first-child, .framer-fESjF .framer-1swq06n > :first-child, .framer-fESjF .framer-14zvssp > :first-child, .framer-fESjF .framer-1m7sjlb > :first-child, .framer-fESjF .framer-1yb69bh > :first-child, .framer-fESjF .framer-zm3run > :first-child, .framer-fESjF .framer-e9iho5 > :first-child, .framer-fESjF .framer-jq2eto > :first-child, .framer-fESjF .framer-18od516 > :first-child, .framer-fESjF .framer-1hpcmm5 > :first-child, .framer-fESjF .framer-1q5d6r2 > :first-child, .framer-fESjF .framer-68bszx > :first-child, .framer-fESjF .framer-1apoci1 > :first-child, .framer-fESjF .framer-6ho0uy > :first-child, .framer-fESjF .framer-1n67ga1 > :first-child, .framer-fESjF .framer-1ezegz4 > :first-child, .framer-fESjF .framer-slconm > :first-child, .framer-fESjF .framer-1aoelzc > :first-child, .framer-fESjF .framer-d5mxnh > :first-child, .framer-fESjF .framer-1msrbhm > :first-child, .framer-fESjF .framer-y14rsd > :first-child, .framer-fESjF .framer-fix4xt > :first-child, .framer-fESjF .framer-1rbx6lo > :first-child, .framer-fESjF .framer-1n3udp7 > :first-child, .framer-fESjF .framer-1i1hsy7 > :first-child, .framer-fESjF .framer-8mjku3 > :first-child, .framer-fESjF .framer-15520n4 > :first-child, .framer-fESjF .framer-ods776 > :first-child, .framer-fESjF .framer-eryhgm > :first-child, .framer-fESjF .framer-l0687e > :first-child, .framer-fESjF .framer-1lv681h > :first-child, .framer-fESjF .framer-bwdd8d > :first-child, .framer-fESjF .framer-1rg6v6x > :first-child, .framer-fESjF .framer-1uxa69q > :first-child, .framer-fESjF .framer-3ophh6 > :first-child, .framer-fESjF .framer-19j18l8 > :first-child, .framer-fESjF .framer-18xjqkn > :first-child, .framer-fESjF .framer-147y0px > :first-child, .framer-fESjF .framer-svoz01 > :first-child, .framer-fESjF .framer-gz7iop > :first-child, .framer-fESjF .framer-1iodube > :first-child, .framer-fESjF .framer-1v1eula > :first-child, .framer-fESjF .framer-5mjrop > :first-child, .framer-fESjF .framer-1luo8qa > :first-child, .framer-fESjF .framer-1fdxp5x > :first-child, .framer-fESjF .framer-uc2p8s > :first-child, .framer-fESjF .framer-1lwg3kz > :first-child, .framer-fESjF .framer-t96ukt > :first-child, .framer-fESjF .framer-ys6mwj > :first-child, .framer-fESjF .framer-xaxjf0 > :first-child, .framer-fESjF .framer-wbdqhx > :first-child, .framer-fESjF .framer-1kv83cn > :first-child, .framer-fESjF .framer-o9vsi3 > :first-child, .framer-fESjF .framer-msn53s > :first-child, .framer-fESjF .framer-1upegmk > :first-child, .framer-fESjF .framer-y4cb2w > :first-child, .framer-fESjF .framer-k2eb78 > :first-child, .framer-fESjF .framer-1a2psut > :first-child, .framer-fESjF .framer-j8y9tj > :first-child, .framer-fESjF .framer-1p9w08o > :first-child, .framer-fESjF .framer-g47918 > :first-child, .framer-fESjF .framer-167nbb > :first-child, .framer-fESjF .framer-5dlxr8 > :first-child, .framer-fESjF .framer-1lbjcyz > :first-child, .framer-fESjF .framer-18mejrm > :first-child, .framer-fESjF .framer-1ukwviq > :first-child, .framer-fESjF .framer-ja4lu3 > :first-child, .framer-fESjF .framer-1qhvuux > :first-child, .framer-fESjF .framer-1ju6f6r > :first-child, .framer-fESjF .framer-gwhs7d > :first-child, .framer-fESjF .framer-qywgwe > :first-child, .framer-fESjF .framer-r5uzde > :first-child, .framer-fESjF .framer-k7qk3h > :first-child, .framer-fESjF .framer-erhu2v > :first-child, .framer-fESjF .framer-1jntzy9 > :first-child, .framer-fESjF .framer-1n0dbnr > :first-child, .framer-fESjF .framer-9e1vt8 > :first-child, .framer-fESjF .framer-10sgcqf > :first-child, .framer-fESjF .framer-ej2wm7 > :first-child, .framer-fESjF .framer-sxnupy > :first-child, .framer-fESjF .framer-5gfw57 > :first-child, .framer-fESjF .framer-10znrcw > :first-child, .framer-fESjF .framer-2qs1bn > :first-child, .framer-fESjF .framer-1owzlwb > :first-child, .framer-fESjF .framer-1pxpnpf > :first-child { margin-left: 0px; } .framer-fESjF .framer-kfuts > :last-child, .framer-fESjF .framer-1yt6wfp > :last-child, .framer-fESjF .framer-rif30x > :last-child, .framer-fESjF .framer-1f4120j > :last-child, .framer-fESjF .framer-wjsd2n > :last-child, .framer-fESjF .framer-1llsruz > :last-child, .framer-fESjF .framer-p06rvr > :last-child, .framer-fESjF .framer-m1ylh > :last-child, .framer-fESjF .framer-1swq06n > :last-child, .framer-fESjF .framer-14zvssp > :last-child, .framer-fESjF .framer-1m7sjlb > :last-child, .framer-fESjF .framer-1yb69bh > :last-child, .framer-fESjF .framer-zm3run > :last-child, .framer-fESjF .framer-e9iho5 > :last-child, .framer-fESjF .framer-jq2eto > :last-child, .framer-fESjF .framer-18od516 > :last-child, .framer-fESjF .framer-1hpcmm5 > :last-child, .framer-fESjF .framer-1q5d6r2 > :last-child, .framer-fESjF .framer-68bszx > :last-child, .framer-fESjF .framer-1apoci1 > :last-child, .framer-fESjF .framer-6ho0uy > :last-child, .framer-fESjF .framer-1n67ga1 > :last-child, .framer-fESjF .framer-1ezegz4 > :last-child, .framer-fESjF .framer-slconm > :last-child, .framer-fESjF .framer-1aoelzc > :last-child, .framer-fESjF .framer-d5mxnh > :last-child, .framer-fESjF .framer-1msrbhm > :last-child, .framer-fESjF .framer-y14rsd > :last-child, .framer-fESjF .framer-fix4xt > :last-child, .framer-fESjF .framer-1rbx6lo > :last-child, .framer-fESjF .framer-1n3udp7 > :last-child, .framer-fESjF .framer-1i1hsy7 > :last-child, .framer-fESjF .framer-8mjku3 > :last-child, .framer-fESjF .framer-15520n4 > :last-child, .framer-fESjF .framer-ods776 > :last-child, .framer-fESjF .framer-eryhgm > :last-child, .framer-fESjF .framer-l0687e > :last-child, .framer-fESjF .framer-1lv681h > :last-child, .framer-fESjF .framer-bwdd8d > :last-child, .framer-fESjF .framer-1rg6v6x > :last-child, .framer-fESjF .framer-1uxa69q > :last-child, .framer-fESjF .framer-3ophh6 > :last-child, .framer-fESjF .framer-19j18l8 > :last-child, .framer-fESjF .framer-18xjqkn > :last-child, .framer-fESjF .framer-147y0px > :last-child, .framer-fESjF .framer-svoz01 > :last-child, .framer-fESjF .framer-gz7iop > :last-child, .framer-fESjF .framer-1iodube > :last-child, .framer-fESjF .framer-1v1eula > :last-child, .framer-fESjF .framer-5mjrop > :last-child, .framer-fESjF .framer-1luo8qa > :last-child, .framer-fESjF .framer-1fdxp5x > :last-child, .framer-fESjF .framer-uc2p8s > :last-child, .framer-fESjF .framer-1lwg3kz > :last-child, .framer-fESjF .framer-t96ukt > :last-child, .framer-fESjF .framer-ys6mwj > :last-child, .framer-fESjF .framer-xaxjf0 > :last-child, .framer-fESjF .framer-wbdqhx > :last-child, .framer-fESjF .framer-1kv83cn > :last-child, .framer-fESjF .framer-o9vsi3 > :last-child, .framer-fESjF .framer-msn53s > :last-child, .framer-fESjF .framer-1upegmk > :last-child, .framer-fESjF .framer-y4cb2w > :last-child, .framer-fESjF .framer-k2eb78 > :last-child, .framer-fESjF .framer-1a2psut > :last-child, .framer-fESjF .framer-j8y9tj > :last-child, .framer-fESjF .framer-1p9w08o > :last-child, .framer-fESjF .framer-g47918 > :last-child, .framer-fESjF .framer-167nbb > :last-child, .framer-fESjF .framer-5dlxr8 > :last-child, .framer-fESjF .framer-1lbjcyz > :last-child, .framer-fESjF .framer-18mejrm > :last-child, .framer-fESjF .framer-1ukwviq > :last-child, .framer-fESjF .framer-ja4lu3 > :last-child, .framer-fESjF .framer-1qhvuux > :last-child, .framer-fESjF .framer-1ju6f6r > :last-child, .framer-fESjF .framer-gwhs7d > :last-child, .framer-fESjF .framer-qywgwe > :last-child, .framer-fESjF .framer-r5uzde > :last-child, .framer-fESjF .framer-k7qk3h > :last-child, .framer-fESjF .framer-erhu2v > :last-child, .framer-fESjF .framer-1jntzy9 > :last-child, .framer-fESjF .framer-1n0dbnr > :last-child, .framer-fESjF .framer-9e1vt8 > :last-child, .framer-fESjF .framer-10sgcqf > :last-child, .framer-fESjF .framer-ej2wm7 > :last-child, .framer-fESjF .framer-sxnupy > :last-child, .framer-fESjF .framer-5gfw57 > :last-child, .framer-fESjF .framer-10znrcw > :last-child, .framer-fESjF .framer-2qs1bn > :last-child, .framer-fESjF .framer-1owzlwb > :last-child, .framer-fESjF .framer-1pxpnpf > :last-child { margin-right: 0px; } .framer-fESjF .framer-1yt6wfp > *, .framer-fESjF .framer-1llsruz > *, .framer-fESjF .framer-p06rvr > *, .framer-fESjF .framer-m1ylh > *, .framer-fESjF .framer-1swq06n > *, .framer-fESjF .framer-1aoelzc > *, .framer-fESjF .framer-1msrbhm > *, .framer-fESjF .framer-8mjku3 > *, .framer-fESjF .framer-l0687e > * { margin: 0px; margin-left: calc(15px / 2); margin-right: calc(15px / 2); } .framer-fESjF .framer-1ne61pg > *, .framer-fESjF .framer-dalmxh > *, .framer-fESjF .framer-fjzhu9 > *, .framer-fESjF .framer-1f4f390 > *, .framer-fESjF .framer-1iklprk > *, .framer-fESjF .framer-1p7p2tc > *, .framer-fESjF .framer-4ifvk7 > *, .framer-fESjF .framer-jhf9tr > *, .framer-fESjF .framer-10w3oo5 > *, .framer-fESjF .framer-1pwoulb > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-fESjF .framer-v6zr53 > *, .framer-fESjF .framer-1diheow > * { margin: 0px; margin-bottom: calc(25px / 2); margin-top: calc(25px / 2); } .framer-fESjF .framer-lqw4vn > * { margin: 0px; margin-bottom: calc(100px / 2); margin-top: calc(100px / 2); } .framer-fESjF .framer-1yb69bh > *, .framer-fESjF .framer-1luo8qa > *, .framer-fESjF .framer-1p9w08o > * { margin: 0px; margin-left: calc(50px / 2); margin-right: calc(50px / 2); } .framer-fESjF .framer-1fzazw1 > *, .framer-fESjF .framer-18v3eyy > *, .framer-fESjF .framer-17m4s8p > *, .framer-fESjF .framer-1drm9ee > *, .framer-fESjF .framer-fn0i1p > *, .framer-fESjF .framer-kxar8n > *, .framer-fESjF .framer-1lj0e9d > *, .framer-fESjF .framer-w0sdl4 > *, .framer-fESjF .framer-1a7auwo > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-fESjF .framer-1t7e4tu > *, .framer-fESjF .framer-1lu7dha > *, .framer-fESjF .framer-mhaoj > *, .framer-fESjF .framer-1ae5nug > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-fESjF .framer-1q5d6r2 > *, .framer-fESjF .framer-1n3udp7 > *, .framer-fESjF .framer-3ophh6 > *, .framer-fESjF .framer-1fdxp5x > *, .framer-fESjF .framer-1kv83cn > *, .framer-fESjF .framer-g47918 > *, .framer-fESjF .framer-1qhvuux > *, .framer-fESjF .framer-1ju6f6r > *, .framer-fESjF .framer-1pxpnpf > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-fESjF .framer-68bszx > * { margin: 0px; margin-left: calc(30px / 2); margin-right: calc(30px / 2); } .framer-fESjF .framer-6ho0uy > *, .framer-fESjF .framer-1ezegz4 > *, .framer-fESjF .framer-d5mxnh > *, .framer-fESjF .framer-1rbx6lo > *, .framer-fESjF .framer-eryhgm > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } .framer-fESjF .framer-1rf71wi > * { margin: 0px; margin-bottom: calc(4px / 2); margin-top: calc(4px / 2); } .framer-fESjF .framer-1i1hsy7 > *, .framer-fESjF .framer-147y0px > *, .framer-fESjF .framer-svoz01 > *, .framer-fESjF .framer-gz7iop > *, .framer-fESjF .framer-1iodube > *, .framer-fESjF .framer-1v1eula > *, .framer-fESjF .framer-5mjrop > *, .framer-fESjF .framer-uc2p8s > *, .framer-fESjF .framer-1lwg3kz > *, .framer-fESjF .framer-t96ukt > *, .framer-fESjF .framer-wbdqhx > *, .framer-fESjF .framer-msn53s > *, .framer-fESjF .framer-1upegmk > *, .framer-fESjF .framer-y4cb2w > *, .framer-fESjF .framer-k2eb78 > *, .framer-fESjF .framer-1a2psut > *, .framer-fESjF .framer-j8y9tj > *, .framer-fESjF .framer-167nbb > *, .framer-fESjF .framer-5dlxr8 > *, .framer-fESjF .framer-1lbjcyz > *, .framer-fESjF .framer-ja4lu3 > *, .framer-fESjF .framer-qywgwe > *, .framer-fESjF .framer-r5uzde > *, .framer-fESjF .framer-k7qk3h > *, .framer-fESjF .framer-erhu2v > *, .framer-fESjF .framer-1jntzy9 > *, .framer-fESjF .framer-1n0dbnr > *, .framer-fESjF .framer-ej2wm7 > *, .framer-fESjF .framer-sxnupy > *, .framer-fESjF .framer-5gfw57 > *, .framer-fESjF .framer-1owzlwb > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-fESjF .framer-1rg6v6x > *, .framer-fESjF .framer-1uxa69q > *, .framer-fESjF .framer-9e1vt8 > *, .framer-fESjF .framer-10sgcqf > * { margin: 0px; margin-left: calc(100px / 2); margin-right: calc(100px / 2); } .framer-fESjF .framer-1xqbtvp > *, .framer-fESjF .framer-qzorw5 > *, .framer-fESjF .framer-10276yw > *, .framer-fESjF .framer-s82zcp > *, .framer-fESjF .framer-mvc60r > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-fESjF .framer-1iu4p69 > *, .framer-fESjF .framer-1eo4fgz > * { margin: 0px; margin-bottom: calc(15px / 2); margin-top: calc(15px / 2); } }\",...sharedStyle.css,\"@media (max-width: 809px) { .framer-fESjF.framer-72rtr7, .framer-fESjF .framer-bwdd8d { width: 390px; } .framer-fESjF .framer-148tbwu { order: 0; padding: 25px 40px 150px 40px; } .framer-fESjF .framer-kfuts { padding: 0px 0px 75px 0px; } .framer-fESjF .framer-n0nymo { width: 187px; } .framer-fESjF .framer-1f4120j { flex-direction: column; order: 2; } .framer-fESjF .framer-137tf3u { order: 0; } .framer-fESjF .framer-153noc0-container { order: 3; } .framer-fESjF .framer-wjsd2n { order: 4; } .framer-fESjF .framer-1ne61pg { flex-direction: row; order: 5; } .framer-fESjF .framer-lqw4vn { gap: 60px; order: 6; padding: 60px 40px 80px 40px; } .framer-fESjF .framer-1vycaui, .framer-fESjF .framer-v3a13e, .framer-fESjF .framer-1vquwjg, .framer-fESjF .framer-1smuhf5, .framer-fESjF .framer-ewaw02, .framer-fESjF .framer-kxar8n { width: 340px; } .framer-fESjF .framer-18v3eyy { width: 100%; } .framer-fESjF .framer-43vqnw { white-space: pre; width: auto; } .framer-fESjF .framer-1t7e4tu { order: 7; padding: 80px 40px 75px 40px; } .framer-fESjF .framer-1q5d6r2 { order: 8; } .framer-fESjF .framer-68bszx, .framer-fESjF .framer-1rbx6lo, .framer-fESjF .framer-eryhgm { max-width: 100%; } .framer-fESjF .framer-1iklprk { order: 12; } .framer-fESjF .framer-fix4xt { order: 0; padding: 100px 0px 20px 0px; } .framer-fESjF .framer-1n3udp7 { order: 1; width: 390px; } .framer-fESjF .framer-1i1hsy7, .framer-fESjF .framer-1rg6v6x { height: var(--framer-aspect-ratio-supported, 300px); } .framer-fESjF .framer-1sbx0r4 { height: var(--framer-aspect-ratio-supported, 302px); width: 398px; } .framer-fESjF .framer-fn0i1p { order: 0; width: 340px; } .framer-fESjF .framer-ods776 { order: 1; } .framer-fESjF .framer-10nbfrr { height: var(--framer-aspect-ratio-supported, 302px); width: 397px; } .framer-fESjF .framer-1lj0e9d { order: 13; padding: 20px 60px 60px 60px; } .framer-fESjF .framer-1uxa69q { flex-wrap: wrap; width: 315px; } .framer-fESjF .framer-3ophh6 { padding: 22px 0px 0px 0px; } .framer-fESjF .framer-1j16bid { order: 14; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-fESjF .framer-1f4120j, .framer-fESjF .framer-1ne61pg, .framer-fESjF .framer-lqw4vn { gap: 0px; } .framer-fESjF .framer-1f4120j > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-fESjF .framer-1f4120j > :first-child, .framer-fESjF .framer-lqw4vn > :first-child { margin-top: 0px; } .framer-fESjF .framer-1f4120j > :last-child, .framer-fESjF .framer-lqw4vn > :last-child { margin-bottom: 0px; } .framer-fESjF .framer-1ne61pg > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-fESjF .framer-1ne61pg > :first-child { margin-left: 0px; } .framer-fESjF .framer-1ne61pg > :last-child { margin-right: 0px; } .framer-fESjF .framer-lqw4vn > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } }}\",\"@media (min-width: 810px) and (max-width: 1199px) { .framer-fESjF.framer-72rtr7 { width: 810px; } .framer-fESjF .framer-148tbwu { padding: 25px 40px 150px 40px; } .framer-fESjF .framer-kfuts { padding: 0px 0px 100px 0px; } .framer-fESjF .framer-n0nymo { width: 188px; } .framer-fESjF .framer-fjzhu9 { flex-direction: row; padding: 40px; } .framer-fESjF .framer-lqw4vn { gap: 60px; padding: 60px 40px 100px 40px; } .framer-fESjF .framer-1t7e4tu { padding: 80px 40px 75px 40px; } .framer-fESjF .framer-1n3udp7 { order: 1; } .framer-fESjF .framer-fn0i1p { order: 0; } .framer-fESjF .framer-ods776 { padding: 20px 0px 75px 0px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-fESjF .framer-fjzhu9, .framer-fESjF .framer-lqw4vn { gap: 0px; } .framer-fESjF .framer-fjzhu9 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-fESjF .framer-fjzhu9 > :first-child { margin-left: 0px; } .framer-fESjF .framer-fjzhu9 > :last-child { margin-right: 0px; } .framer-fESjF .framer-lqw4vn > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-fESjF .framer-lqw4vn > :first-child { margin-top: 0px; } .framer-fESjF .framer-lqw4vn > :last-child { margin-bottom: 0px; } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 5469\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"hFcrj_iqy\":{\"layout\":[\"fixed\",\"auto\"]},\"zPcqYc0Lf\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"qp99uoJyj\":{\"pattern\":\":qp99uoJyj\",\"name\":\"testimonials\"},\"kThfFjAdK\":{\"pattern\":\":kThfFjAdK\",\"name\":\"testimonials\"},\"f_NR1IM5M\":{\"pattern\":\":f_NR1IM5M\",\"name\":\"integro\"},\"cUa43wRdv\":{\"pattern\":\":cUa43wRdv\",\"name\":\"integro\"},\"B5rqOmE6q\":{\"pattern\":\":B5rqOmE6q\",\"name\":\"testimonials\"},\"Pakof5DPG\":{\"pattern\":\":Pakof5DPG\",\"name\":\"testimonials\"},\"uZVCv9Ji5\":{\"pattern\":\":uZVCv9Ji5\",\"name\":\"\"},\"j1Gou6S3j\":{\"pattern\":\":j1Gou6S3j\",\"name\":\"services\"},\"d36E0ehTd\":{\"pattern\":\":d36E0ehTd\",\"name\":\"case-studies\"},\"n1k82Fy7i\":{\"pattern\":\":n1k82Fy7i\",\"name\":\"case-studies\"},\"XDNCTtdGq\":{\"pattern\":\":XDNCTtdGq\",\"name\":\"\"}}\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-fESjF\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:5469,width:1200};addFonts(FrameraugiA20Il,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuFuYMZ1rib2Bg-4.woff2\",weight:\"700\"},{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuI6fMZ1rib2Bg-4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuGKYMZ1rib2Bg-4.woff2\",weight:\"600\"}]},...TickerFonts,...SlideshowFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerResponsiveScreen\":\"\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"1200\",\"framerIntrinsicHeight\":\"5469\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"hFcrj_iqy\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"zPcqYc0Lf\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerColorSyntax\":\"true\",\"framerContractVersion\":\"1\",\"framerScrollSections\":\"{\\\"qp99uoJyj\\\":{\\\"pattern\\\":\\\":qp99uoJyj\\\",\\\"name\\\":\\\"testimonials\\\"},\\\"kThfFjAdK\\\":{\\\"pattern\\\":\\\":kThfFjAdK\\\",\\\"name\\\":\\\"testimonials\\\"},\\\"f_NR1IM5M\\\":{\\\"pattern\\\":\\\":f_NR1IM5M\\\",\\\"name\\\":\\\"integro\\\"},\\\"cUa43wRdv\\\":{\\\"pattern\\\":\\\":cUa43wRdv\\\",\\\"name\\\":\\\"integro\\\"},\\\"B5rqOmE6q\\\":{\\\"pattern\\\":\\\":B5rqOmE6q\\\",\\\"name\\\":\\\"testimonials\\\"},\\\"Pakof5DPG\\\":{\\\"pattern\\\":\\\":Pakof5DPG\\\",\\\"name\\\":\\\"testimonials\\\"},\\\"uZVCv9Ji5\\\":{\\\"pattern\\\":\\\":uZVCv9Ji5\\\",\\\"name\\\":\\\"\\\"},\\\"j1Gou6S3j\\\":{\\\"pattern\\\":\\\":j1Gou6S3j\\\",\\\"name\\\":\\\"services\\\"},\\\"d36E0ehTd\\\":{\\\"pattern\\\":\\\":d36E0ehTd\\\",\\\"name\\\":\\\"case-studies\\\"},\\\"n1k82Fy7i\\\":{\\\"pattern\\\":\\\":n1k82Fy7i\\\",\\\"name\\\":\\\"case-studies\\\"},\\\"XDNCTtdGq\\\":{\\\"pattern\\\":\\\":XDNCTtdGq\\\",\\\"name\\\":\\\"\\\"}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["noopReturn", "t", "isFunction", "t", "e", "t", "velocityPerSecond", "calcBezier", "t", "n", "e", "i", "binarySubdivide", "r", "c", "u", "a", "s", "cubicBezier", "o", "noopReturn", "getTForX", "o", "cubicBezier", "__rest", "e", "t", "r", "n", "o", "n", "e", "t", "r", "s", "calcGeneratorVelocity", "t", "n", "r", "a", "velocityPerSecond", "calcDampingRatio", "e", "hasReachedTarget", "spring", "o", "c", "i", "h", "u", "d", "f", "l", "g", "glide", "isOutOfBounds", "nearestBoundary", "m", "calcDelta", "calcLatest", "applyFriction", "p", "M", "checkCatchBoundary", "pregenerateKeyframes", "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", "o", "getGenerator", "i", "s", "r", "a", "getKeyframes", "pregenerateKeyframes", "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", "dispatchPointerEvent", "e", "t", "n", "dispatchViewEvent", "ae", "o", "i", "s", "__rest", "inView$1", "mouseEvent", "ce", "le", "onPointerUp", "window", "onPointerDown", "fe", "ue", "MAX_DUPLICATED_ITEMS", "directionTransformers", "offset", "Ticker", "props", "slots", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "speed", "hoverFactor", "direction", "alignment", "sizingOptions", "fadeOptions", "style", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "widthType", "heightType", "paddingValue", "currentTarget", "RenderTarget", "isCanvas", "filteredSlots", "numChildren", "j", "hasChildren", "isHorizontal", "useMotionValue", "transformer", "transform", "useTransform", "parentRef", "pe", "childrenRef", "se", "size", "setSize", "ye", "clonedChildren", "dupedChildren", "duplicateBy", "opacity", "measure", "te", "parentLength", "start", "childrenLength", "Z", "childrenStyles", "initialResize", "ue", "frame", "resize", "contentSize", "child", "index", "ref", "p", "LayoutGroup", "q", "isInView", "useInView", "i", "childIndex", "animateToValue", "initialTime", "prevTime", "xOrY", "isHover", "isReducedMotion", "useReducedMotion", "listRef", "animationRef", "playOrPause", "hidden", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "containerStyle", "u", "motion", "isValidNumber", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "addPropertyControls", "ControlType", "num", "min", "max", "value", "isBrowser", "usePageVisibility", "isVisible", "setIsVisible", "ye", "ue", "onVisibilityChange", "awaitRefCallback", "element", "controller", "refCallbackResolve", "refCallbackPromise", "resolve", "reject", "current", "node", "OPACITY_0", "Slideshow", "props", "slots", "startFrom", "direction", "effectsOptions", "autoPlayControl", "dragControl", "alignment", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "itemAmount", "fadeOptions", "intervalControl", "transitionControl", "arrowOptions", "borderRadius", "progressOptions", "style", "effectsOpacity", "effectsScale", "effectsRotate", "effectsPerspective", "effectsHover", "playOffscreen", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "showMouseControls", "arrowSize", "arrowRadius", "arrowFill", "leftArrow", "rightArrow", "arrowShouldSpace", "arrowShouldFadeIn", "arrowPosition", "arrowPadding", "arrowGap", "arrowPaddingTop", "arrowPaddingRight", "arrowPaddingBottom", "arrowPaddingLeft", "showProgressDots", "dotSize", "dotsInset", "dotsRadius", "dotsPadding", "dotsGap", "dotsFill", "dotsBackground", "dotsActiveOpacity", "dotsOpacity", "dotsBlur", "paddingValue", "isCanvas", "RenderTarget", "filteredSlots", "hasChildren", "j", "isHorizontal", "isInverted", "u", "placeholderStyles", "p", "emojiStyles", "titleStyles", "subtitleStyles", "parentRef", "pe", "childrenRef", "se", "index", "timeoutRef", "size", "setSize", "ye", "isHovering", "setIsHovering", "shouldPlayOnHover", "setShouldPlayOnHover", "isMouseDown", "setIsMouseDown", "isResizing", "setIsResizing", "dupedChildren", "duplicateBy", "measure", "te", "firstChild", "lastChild", "parentLength", "start", "childrenLength", "itemSize", "itemWidth", "itemHeight", "viewportLength", "window", "Z", "scheduleMeasure", "frame", "fe", "initialResize", "ue", "resize", "contentSize", "timer", "totalItems", "childrenSize", "itemWithGap", "itemOffset", "currentItem", "setCurrentItem", "isDragging", "setIsDragging", "visibilityRef", "isInView", "useInView", "isVisible", "usePageVisibility", "factor", "xOrY", "useMotionValue", "canvasPosition", "newPosition", "wrappedValue", "useTransform", "value", "wrapped", "wrap", "wrappedIndex", "wrappedIndexInverted", "switchPages", "animate", "item", "setDelta", "delta", "transition", "setPage", "currentItemWrapped", "currentItemWrappedInvert", "goto", "gotoInverted", "handleDragStart", "handleDragEnd", "event", "offset", "velocity", "offsetXorY", "velocityThreshold", "velocityXorY", "isHalfOfNext", "isHalfOfPrev", "normalizedOffset", "itemDelta", "itemDeltaFromOne", "childCounter", "columnOrRowValue", "child", "childIndex", "ref", "Slide", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "dots", "dotsBlurStyle", "i", "Dot", "dotStyle", "baseButtonStyles", "dragProps", "arrowHasTop", "arrowHasBottom", "arrowHasLeft", "arrowHasRight", "arrowHasMid", "containerStyle", "motion", "controlsStyles", "dotsContainerStyle", "addPropertyControls", "ControlType", "num", "min", "max", "Y", "slideKey", "width", "height", "numChildren", "effects", "isLast", "childOffset", "scrollRange", "val", "rotateY", "rotateX", "opacity", "scale", "originXorY", "latest", "newValue", "visibility", "mix", "LayoutGroup", "q", "selectedOpacity", "total", "buttonStyle", "isSelected", "inlinePadding", "top", "bottom", "right", "left", "TickerFonts", "getFonts", "Ticker", "SlideshowFonts", "Slideshow", "ContainerWithFX", "withFX", "Container", "MotionDivWithFX", "motion", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transition1", "animation", "animation1", "transition2", "animation2", "animation3", "transition3", "animation4", "animation5", "animation6", "animation7", "transition4", "animation8", "animation9", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "isDisplayed", "elementId", "useRouteElementId", "ref1", "elementId1", "ref2", "elementId2", "ref3", "elementId3", "ref4", "isDisplayed1", "elementId4", "ref5", "isDisplayed2", "isDisplayed3", "elementId5", "ref6", "elementId6", "ref7", "elementId7", "ref8", "elementId8", "ref9", "elementId9", "ref10", "elementId10", "ref11", "isDisplayed4", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "Image2", "Link", "PropertyOverrides2", "RichText2", "x", "ComponentViewportProvider", "SVG", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
