{
  "version": 3,
  "sources": ["ssg:https://ga.jspm.io/npm:@motionone/utils@10.14.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:@motionone/easing@10.12.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:@motionone/animation@10.12.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:tslib@2.4.0/tslib.es6.js", "ssg:https://ga.jspm.io/npm:hey-listen@1.0.8/dist/index.js", "ssg:https://ga.jspm.io/npm:@motionone/generators@10.12.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:@motionone/dom@10.12.0/dist/index.es.js", "ssg:https://framerusercontent.com/modules/V9ryrjN5Am9WM1dJeyyJ/GzHgU466IQmt8g4qOKj8/UsePageVisibility.js", "ssg:https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/vzgdvq3ezmf3RWurtT17/SlideShow.js", "ssg:https://framerusercontent.com/modules/8Kx0pTS9QXPOhgE0YDO4/BMgKEAs8mJXX3Lvsqz2H/Z7vfWkEiz.js", "ssg:https://framerusercontent.com/modules/he29uPc3wWyrTI0JaRdF/6FXrA2S3g5a6mo5FpP8o/L19Tvfnan.js"],
  "sourcesContent": ["function addUniqueItem(t,e){-1===t.indexOf(e)&&t.push(e)}function removeItem(t,e){const n=t.indexOf(e);n>-1&&t.splice(n,1)}const clamp=(t,e,n)=>Math.min(Math.max(n,t),e);const t={duration:.3,delay:0,endDelay:0,repeat:0,easing:\"ease\"};const isNumber=t=>\"number\"===typeof t;const isEasingList=t=>Array.isArray(t)&&!isNumber(t[0]);const wrap=(t,e,n)=>{const o=e-t;return((n-t)%o+o)%o+t};function getEasingForSegment(t,e){return isEasingList(t)?t[wrap(0,t.length,e)]:t}const mix=(t,e,n)=>-n*t+n*e+t;const noop=()=>{};const noopReturn=t=>t;const progress=(t,e,n)=>e-t===0?1:(n-t)/(e-t);function fillOffset(t,e){const n=t[t.length-1];for(let o=1;o<=e;o++){const s=progress(0,e,o);t.push(mix(n,1,s))}}function defaultOffset(t){const e=[0];fillOffset(e,t-1);return e}function interpolate(t,e=defaultOffset(t.length),n=noopReturn){const o=t.length;const s=o-e.length;s>0&&fillOffset(e,s);return s=>{let f=0;for(;f<o-2;f++)if(s<e[f+1])break;let r=clamp(0,1,progress(e[f],e[f+1],s));const c=getEasingForSegment(n,f);r=c(r);return mix(t[f],t[f+1],r)}}const isCubicBezier=t=>Array.isArray(t)&&isNumber(t[0]);const isEasingGenerator=t=>\"object\"===typeof t&&Boolean(t.createAnimation);const isFunction=t=>\"function\"===typeof t;const isString=t=>\"string\"===typeof t;const e={ms:t=>1e3*t,s:t=>t/1e3};\n/*\n  Convert velocity into velocity per second\n\n  @param [number]: Unit per frame\n  @param [number]: Frame duration in ms\n*/function velocityPerSecond(t,e){return e?t*(1e3/e):0}export{addUniqueItem,clamp,defaultOffset,t as defaults,fillOffset,getEasingForSegment,interpolate,isCubicBezier,isEasingGenerator,isEasingList,isFunction,isNumber,isString,mix,noop,noopReturn,progress,removeItem,e as time,velocityPerSecond,wrap};\n\n//# sourceMappingURL=index.es.js.map", "import{noopReturn as t,clamp as n}from\"@motionone/utils\";const calcBezier=(t,n,e)=>(((1-3*e+3*n)*t+(3*e-6*n))*t+3*n)*t;const e=1e-7;const i=12;function binarySubdivide(t,n,o,r,c){let u;let a;let s=0;do{a=n+(o-n)/2;u=calcBezier(a,r,c)-t;u>0?o=a:n=a}while(Math.abs(u)>e&&++s<i);return a}function cubicBezier(n,e,i,o){if(n===e&&i===o)return t;const getTForX=t=>binarySubdivide(t,0,1,n,i);return t=>0===t||1===t?t:calcBezier(getTForX(t),e,o)}const steps=(t,e=\"end\")=>i=>{i=\"end\"===e?Math.min(i,.999):Math.max(i,.001);const o=i*t;const r=\"end\"===e?Math.floor(o):Math.ceil(o);return n(0,1,r/t)};export{cubicBezier,steps};\n\n//# sourceMappingURL=index.es.js.map", "import{noopReturn as t,defaults as i,isEasingGenerator as e,isEasingList as s,interpolate as a}from\"@motionone/utils\";import{cubicBezier as n,steps as r}from\"@motionone/easing\";const o={ease:n(.25,.1,.25,1),\"ease-in\":n(.42,0,1,1),\"ease-in-out\":n(.42,0,.58,1),\"ease-out\":n(0,0,.58,1)};const h=/\\((.*?)\\)/;function getEasingFunction(i){if(\"function\"===typeof i)return i;if(Array.isArray(i))return n(...i);if(o[i])return o[i];if(i.startsWith(\"steps\")){const t=h.exec(i);if(t){const i=t[1].split(\",\");return r(parseFloat(i[0]),i[1].trim())}}return t}class Animation{constructor(n,r=[0,1],{easing:o,duration:h=i.duration,delay:u=i.delay,endDelay:l=i.endDelay,repeat:m=i.repeat,offset:c,direction:p=\"normal\"}={}){this.startTime=null;this.rate=1;this.t=0;this.cancelTimestamp=null;this.easing=t;this.duration=0;this.totalDuration=0;this.repeat=0;this.playState=\"idle\";this.finished=new Promise(((t,i)=>{this.resolve=t;this.reject=i}));o=o||i.easing;if(e(o)){const t=o.createAnimation(r,(()=>\"0\"),true);o=t.easing;void 0!==t.keyframes&&(r=t.keyframes);void 0!==t.duration&&(h=t.duration)}this.repeat=m;this.easing=s(o)?t:getEasingFunction(o);this.updateDuration(h);const d=a(r,c,s(o)?o.map(getEasingFunction):t);this.tick=t=>{var i;u=u;let e=0;e=void 0!==this.pauseTime?this.pauseTime:(t-this.startTime)*this.rate;this.t=e;e/=1e3;e=Math.max(e-u,0);\"finished\"===this.playState&&void 0===this.pauseTime&&(e=this.totalDuration);const s=e/this.duration;let a=Math.floor(s);let r=s%1;!r&&s>=1&&(r=1);1===r&&a--;const o=a%2;(\"reverse\"===p||\"alternate\"===p&&o||\"alternate-reverse\"===p&&!o)&&(r=1-r);const h=e>=this.totalDuration?1:Math.min(r,1);const m=d(this.easing(h));n(m);const c=void 0===this.pauseTime&&(\"finished\"===this.playState||e>=this.totalDuration+l);if(c){this.playState=\"finished\";null===(i=this.resolve)||void 0===i?void 0:i.call(this,m)}else\"idle\"!==this.playState&&(this.frameRequestId=requestAnimationFrame(this.tick))};this.play()}play(){const t=performance.now();this.playState=\"running\";void 0!==this.pauseTime?this.startTime=t-this.pauseTime:this.startTime||(this.startTime=t);this.cancelTimestamp=this.startTime;this.pauseTime=void 0;this.frameRequestId=requestAnimationFrame(this.tick)}pause(){this.playState=\"paused\";this.pauseTime=this.t}finish(){this.playState=\"finished\";this.tick(0)}stop(){var t;this.playState=\"idle\";void 0!==this.frameRequestId&&cancelAnimationFrame(this.frameRequestId);null===(t=this.reject)||void 0===t?void 0:t.call(this,false)}cancel(){this.stop();this.tick(this.cancelTimestamp)}reverse(){this.rate*=-1}commitStyles(){}updateDuration(t){this.duration=t;this.totalDuration=t*(this.repeat+1)}get currentTime(){return this.t}set currentTime(t){void 0!==this.pauseTime||0===this.rate?this.pauseTime=t:this.startTime=performance.now()-t/this.rate}get playbackRate(){return this.rate}set playbackRate(t){this.rate=t}}export{Animation,getEasingFunction};\n\n//# sourceMappingURL=index.es.js.map", "var extendStatics=function(e,t){extendStatics=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var r in t)Object.prototype.hasOwnProperty.call(t,r)&&(e[r]=t[r])};return extendStatics(e,t)};function __extends(e,t){if(\"function\"!==typeof t&&null!==t)throw new TypeError(\"Class extends value \"+String(t)+\" is not a constructor or null\");extendStatics(e,t);function __(){this.constructor=e}e.prototype=null===t?Object.create(t):(__.prototype=t.prototype,new __)}var __assign=function(){__assign=Object.assign||function __assign(e){for(var t,r=1,n=arguments.length;r<n;r++){t=arguments[r];for(var o in t)Object.prototype.hasOwnProperty.call(t,o)&&(e[o]=t[o])}return e};return __assign.apply(this,arguments)};function __rest(e,t){var r={};for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&t.indexOf(n)<0&&(r[n]=e[n]);if(null!=e&&\"function\"===typeof Object.getOwnPropertySymbols){var o=0;for(n=Object.getOwnPropertySymbols(e);o<n.length;o++)t.indexOf(n[o])<0&&Object.prototype.propertyIsEnumerable.call(e,n[o])&&(r[n[o]]=e[n[o]])}return r}function __decorate(e,t,r,n){var o,a=arguments.length,i=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if(\"object\"===typeof Reflect&&\"function\"===typeof Reflect.decorate)i=Reflect.decorate(e,t,r,n);else for(var c=e.length-1;c>=0;c--)(o=e[c])&&(i=(a<3?o(i):a>3?o(t,r,i):o(t,r))||i);return a>3&&i&&Object.defineProperty(t,r,i),i}function __param(e,t){return function(r,n){t(r,n,e)}}function __metadata(e,t){if(\"object\"===typeof Reflect&&\"function\"===typeof Reflect.metadata)return Reflect.metadata(e,t)}function __awaiter(e,t,r,n){function adopt(e){return e instanceof r?e:new r((function(t){t(e)}))}return new(r||(r=Promise))((function(r,o){function fulfilled(e){try{step(n.next(e))}catch(e){o(e)}}function rejected(e){try{step(n.throw(e))}catch(e){o(e)}}function step(e){e.done?r(e.value):adopt(e.value).then(fulfilled,rejected)}step((n=n.apply(e,t||[])).next())}))}function __generator(e,t){var r,n,o,a,i={label:0,sent:function(){if(1&o[0])throw o[1];return o[1]},trys:[],ops:[]};return a={next:verb(0),throw:verb(1),return:verb(2)},\"function\"===typeof Symbol&&(a[Symbol.iterator]=function(){return this}),a;function verb(e){return function(t){return step([e,t])}}function step(a){if(r)throw new TypeError(\"Generator is already executing.\");while(i)try{if(r=1,n&&(o=2&a[0]?n.return:a[0]?n.throw||((o=n.return)&&o.call(n),0):n.next)&&!(o=o.call(n,a[1])).done)return o;(n=0,o)&&(a=[2&a[0],o.value]);switch(a[0]){case 0:case 1:o=a;break;case 4:i.label++;return{value:a[1],done:false};case 5:i.label++;n=a[1];a=[0];continue;case 7:a=i.ops.pop();i.trys.pop();continue;default:if(!(o=i.trys,o=o.length>0&&o[o.length-1])&&(6===a[0]||2===a[0])){i=0;continue}if(3===a[0]&&(!o||a[1]>o[0]&&a[1]<o[3])){i.label=a[1];break}if(6===a[0]&&i.label<o[1]){i.label=o[1];o=a;break}if(o&&i.label<o[2]){i.label=o[2];i.ops.push(a);break}o[2]&&i.ops.pop();i.trys.pop();continue}a=t.call(e,i)}catch(e){a=[6,e];n=0}finally{r=o=0}if(5&a[0])throw a[1];return{value:a[0]?a[1]:void 0,done:true}}}var e=Object.create?function(e,t,r,n){void 0===n&&(n=r);var o=Object.getOwnPropertyDescriptor(t,r);o&&!(\"get\"in o?!t.__esModule:o.writable||o.configurable)||(o={enumerable:true,get:function(){return t[r]}});Object.defineProperty(e,n,o)}:function(e,t,r,n){void 0===n&&(n=r);e[n]=t[r]};function __exportStar(t,r){for(var n in t)\"default\"===n||Object.prototype.hasOwnProperty.call(r,n)||e(r,t,n)}function __values(e){var t=\"function\"===typeof Symbol&&Symbol.iterator,r=t&&e[t],n=0;if(r)return r.call(e);if(e&&\"number\"===typeof e.length)return{next:function(){e&&n>=e.length&&(e=void 0);return{value:e&&e[n++],done:!e}}};throw new TypeError(t?\"Object is not iterable.\":\"Symbol.iterator is not defined.\")}function __read(e,t){var r=\"function\"===typeof Symbol&&e[Symbol.iterator];if(!r)return e;var n,o,a=r.call(e),i=[];try{while((void 0===t||t-- >0)&&!(n=a.next()).done)i.push(n.value)}catch(e){o={error:e}}finally{try{n&&!n.done&&(r=a.return)&&r.call(a)}finally{if(o)throw o.error}}return i}\n/** @deprecated */function __spread(){for(var e=[],t=0;t<arguments.length;t++)e=e.concat(__read(arguments[t]));return e}\n/** @deprecated */function __spreadArrays(){for(var e=0,t=0,r=arguments.length;t<r;t++)e+=arguments[t].length;var n=Array(e),o=0;for(t=0;t<r;t++)for(var a=arguments[t],i=0,c=a.length;i<c;i++,o++)n[o]=a[i];return n}function __spreadArray(e,t,r){if(r||2===arguments.length)for(var n,o=0,a=t.length;o<a;o++)if(n||!(o in t)){n||(n=Array.prototype.slice.call(t,0,o));n[o]=t[o]}return e.concat(n||Array.prototype.slice.call(t))}function __await(e){return this instanceof __await?(this.v=e,this):new __await(e)}function __asyncGenerator(e,t,r){if(!Symbol.asyncIterator)throw new TypeError(\"Symbol.asyncIterator is not defined.\");var n,o=r.apply(e,t||[]),a=[];return n={},verb(\"next\"),verb(\"throw\"),verb(\"return\"),n[Symbol.asyncIterator]=function(){return this},n;function verb(e){o[e]&&(n[e]=function(t){return new Promise((function(r,n){a.push([e,t,r,n])>1||resume(e,t)}))})}function resume(e,t){try{step(o[e](t))}catch(e){settle(a[0][3],e)}}function step(e){e.value instanceof __await?Promise.resolve(e.value.v).then(fulfill,reject):settle(a[0][2],e)}function fulfill(e){resume(\"next\",e)}function reject(e){resume(\"throw\",e)}function settle(e,t){(e(t),a.shift(),a.length)&&resume(a[0][0],a[0][1])}}function __asyncDelegator(e){var t,r;return t={},verb(\"next\"),verb(\"throw\",(function(e){throw e})),verb(\"return\"),t[Symbol.iterator]=function(){return this},t;function verb(n,o){t[n]=e[n]?function(t){return(r=!r)?{value:__await(e[n](t)),done:\"return\"===n}:o?o(t):t}:o}}function __asyncValues(e){if(!Symbol.asyncIterator)throw new TypeError(\"Symbol.asyncIterator is not defined.\");var t,r=e[Symbol.asyncIterator];return r?r.call(e):(e=\"function\"===typeof __values?__values(e):e[Symbol.iterator](),t={},verb(\"next\"),verb(\"throw\"),verb(\"return\"),t[Symbol.asyncIterator]=function(){return this},t);function verb(r){t[r]=e[r]&&function(t){return new Promise((function(n,o){t=e[r](t),settle(n,o,t.done,t.value)}))}}function settle(e,t,r,n){Promise.resolve(n).then((function(t){e({value:t,done:r})}),t)}}function __makeTemplateObject(e,t){Object.defineProperty?Object.defineProperty(e,\"raw\",{value:t}):e.raw=t;return e}var t=Object.create?function(e,t){Object.defineProperty(e,\"default\",{enumerable:true,value:t})}:function(e,t){e.default=t};function __importStar(r){if(r&&r.__esModule)return r;var n={};if(null!=r)for(var o in r)\"default\"!==o&&Object.prototype.hasOwnProperty.call(r,o)&&e(n,r,o);t(n,r);return n}function __importDefault(e){return e&&e.__esModule?e:{default:e}}function __classPrivateFieldGet(e,t,r,n){if(\"a\"===r&&!n)throw new TypeError(\"Private accessor was defined without a getter\");if(\"function\"===typeof t?e!==t||!n:!t.has(e))throw new TypeError(\"Cannot read private member from an object whose class did not declare it\");return\"m\"===r?n:\"a\"===r?n.call(e):n?n.value:t.get(e)}function __classPrivateFieldSet(e,t,r,n,o){if(\"m\"===n)throw new TypeError(\"Private method is not writable\");if(\"a\"===n&&!o)throw new TypeError(\"Private accessor was defined without a setter\");if(\"function\"===typeof t?e!==t||!o:!t.has(e))throw new TypeError(\"Cannot write private member to an object whose class did not declare it\");return\"a\"===n?o.call(e,r):o?o.value=r:t.set(e,r),r}function __classPrivateFieldIn(e,t){if(null===t||\"object\"!==typeof t&&\"function\"!==typeof t)throw new TypeError(\"Cannot use 'in' operator on non-object\");return\"function\"===typeof e?t===e:e.has(t)}export{__assign,__asyncDelegator,__asyncGenerator,__asyncValues,__await,__awaiter,__classPrivateFieldGet,__classPrivateFieldIn,__classPrivateFieldSet,e as __createBinding,__decorate,__exportStar,__extends,__generator,__importDefault,__importStar,__makeTemplateObject,__metadata,__param,__read,__rest,__spread,__spreadArray,__spreadArrays,__values};\n\n//# sourceMappingURL=tslib.es6.js.map", "var n={};Object.defineProperty(n,\"__esModule\",{value:true});n.warning=function(){};n.invariant=function(){};const e=n.__esModule,t=n.warning,r=n.invariant;export default n;export{e as __esModule,r as invariant,t as warning};\n\n//# sourceMappingURL=index.js.map", "import{velocityPerSecond as e,time as t}from\"@motionone/utils\";const s=5;function calcGeneratorVelocity(t,n,r){const a=Math.max(n-s,0);return e(r-t(a),n-a)}const n={stiffness:100,damping:10,mass:1};const calcDampingRatio=(e=n.stiffness,t=n.damping,s=n.mass)=>t/(2*Math.sqrt(e*s));function hasReachedTarget(e,t,s){return e<t&&s>=t||e>t&&s<=t}const spring=({stiffness:e=n.stiffness,damping:s=n.damping,mass:r=n.mass,from:a=0,to:o=1,velocity:c=0,restSpeed:i=2,restDistance:h=.5}={})=>{c=c?t.s(c):0;const u={done:false,hasReachedTarget:false,current:a,target:o};const d=o-a;const f=Math.sqrt(e/r)/1e3;const l=calcDampingRatio(e,s,r);let g;if(l<1){const e=f*Math.sqrt(1-l*l);g=t=>o-Math.exp(-l*f*t)*((l*f*d-c)/e*Math.sin(e*t)+d*Math.cos(e*t))}else g=e=>o-Math.exp(-f*e)*(d+(f*d-c)*e);return e=>{u.current=g(e);const t=0===e?c:calcGeneratorVelocity(g,e,u.current);const s=Math.abs(t)<=i;const n=Math.abs(o-u.current)<=h;u.done=s&&n;u.hasReachedTarget=hasReachedTarget(a,o,u.current);return u}};const glide=({from:e=0,velocity:s=0,power:n=.8,decay:r=.325,bounceDamping:a,bounceStiffness:o,changeTarget:c,min:i,max:h,restDistance:u=.5,restSpeed:d})=>{r=t.ms(r);const f={hasReachedTarget:false,done:false,current:e,target:e};const isOutOfBounds=e=>void 0!==i&&e<i||void 0!==h&&e>h;const nearestBoundary=e=>void 0===i?h:void 0===h||Math.abs(i-e)<Math.abs(h-e)?i:h;let l=n*s;const g=e+l;const m=void 0===c?g:c(g);f.target=m;m!==g&&(l=m-e);const calcDelta=e=>-l*Math.exp(-e/r);const calcLatest=e=>m+calcDelta(e);const applyFriction=e=>{const t=calcDelta(e);const s=calcLatest(e);f.done=Math.abs(t)<=u;f.current=f.done?m:s};let p;let M;const checkCatchBoundary=e=>{if(isOutOfBounds(f.current)){p=e;M=spring({from:f.current,to:nearestBoundary(f.current),velocity:calcGeneratorVelocity(calcLatest,e,f.current),damping:a,stiffness:o,restDistance:u,restSpeed:d})}};checkCatchBoundary(0);return e=>{let t=false;if(!M&&void 0===p){t=true;applyFriction(e);checkCatchBoundary(e)}if(void 0!==p&&e>p){f.hasReachedTarget=true;return M(e-p)}f.hasReachedTarget=false;!t&&applyFriction(e);return f}};const r=10;const a=1e4;function pregenerateKeyframes(e){let t;let s=r;let n=e(0);const o=[n.current];while(!n.done&&s<a){n=e(s);o.push(n.done?n.target:n.current);void 0===t&&n.hasReachedTarget&&(t=s);s+=r}const c=s-r;1===o.length&&o.push(n.current);return{keyframes:o,duration:c/1e3,overshootDuration:(null!==t&&void 0!==t?t:c)/1e3}}export{calcGeneratorVelocity,glide,pregenerateKeyframes,spring};\n\n//# sourceMappingURL=index.es.js.map", "import{MotionValue as e}from\"@motionone/types\";import{noopReturn as t,addUniqueItem as n,isCubicBezier as o,defaults as i,isEasingGenerator as s,isNumber as r,time as a,isEasingList as c,noop as l,removeItem as f,mix as u,getEasingForSegment as d,isString as g,defaultOffset as m,fillOffset as h,progress as p,velocityPerSecond as v,interpolate as y}from\"@motionone/utils\";import{Animation as w,getEasingFunction as E}from\"@motionone/animation\";import{__rest as b}from\"tslib\";import{invariant as S}from\"hey-listen\";import{pregenerateKeyframes as A,calcGeneratorVelocity as O,spring as x,glide as V}from\"@motionone/generators\";const z=new WeakMap;function getAnimationData(e){z.has(e)||z.set(e,{transforms:[],values:new Map});return z.get(e)}function getMotionValue(t,n){t.has(n)||t.set(n,new e);return t.get(n)}const W=[\"\",\"X\",\"Y\",\"Z\"];const L=[\"translate\",\"scale\",\"rotate\",\"skew\"];const T={x:\"translateX\",y:\"translateY\",z:\"translateZ\"};const D={syntax:\"<angle>\",initialValue:\"0deg\",toDefaultUnit:e=>e+\"deg\"};const M={translate:{syntax:\"<length-percentage>\",initialValue:\"0px\",toDefaultUnit:e=>e+\"px\"},rotate:D,scale:{syntax:\"<number>\",initialValue:1,toDefaultUnit:t},skew:D};const k=new Map;const asTransformCssVar=e=>`--motion-${e}`;const B=[\"x\",\"y\",\"z\"];L.forEach((e=>{W.forEach((t=>{B.push(e+t);k.set(asTransformCssVar(e+t),M[e])}))}));const compareTransformOrder=(e,t)=>B.indexOf(e)-B.indexOf(t);const j=new Set(B);const isTransform=e=>j.has(e);const addTransformToElement=(e,t)=>{T[t]&&(t=T[t]);const{transforms:o}=getAnimationData(e);n(o,t);e.style.transform=buildTransformTemplate(o)};const buildTransformTemplate=e=>e.sort(compareTransformOrder).reduce(transformListToString,\"\").trim();const transformListToString=(e,t)=>`${e} ${t}(var(${asTransformCssVar(t)}))`;const isCssVar=e=>e.startsWith(\"--\");const P=new Set;function registerCssVariable(e){if(!P.has(e)){P.add(e);try{const{syntax:t,initialValue:n}=k.has(e)?k.get(e):{};CSS.registerProperty({name:e,inherits:false,syntax:t,initialValue:n})}catch(e){}}}const convertEasing=e=>o(e)?cubicBezierAsString(e):e;const cubicBezierAsString=([e,t,n,o])=>`cubic-bezier(${e}, ${t}, ${n}, ${o})`;const testAnimation=e=>document.createElement(\"div\").animate(e,{duration:.001});const C={cssRegisterProperty:()=>\"undefined\"!==typeof CSS&&Object.hasOwnProperty.call(CSS,\"registerProperty\"),waapi:()=>Object.hasOwnProperty.call(Element.prototype,\"animate\"),partialKeyframes:()=>{try{testAnimation({opacity:[1]})}catch(e){return false}return true},finished:()=>Boolean(testAnimation({opacity:[0,1]}).finished)};const $={};const R={};for(const e in C)R[e]=()=>{void 0===$[e]&&($[e]=C[e]());return $[e]};function hydrateKeyframes(e,t){for(let n=0;n<e.length;n++)null===e[n]&&(e[n]=n?e[n-1]:t());return e}const keyframesList=e=>Array.isArray(e)?e:[e];function getStyleName(e){T[e]&&(e=T[e]);return isTransform(e)?asTransformCssVar(e):e}const H={get:(e,t)=>{t=getStyleName(t);let n=isCssVar(t)?e.style.getPropertyValue(t):getComputedStyle(e)[t];if(!n&&0!==n){const e=k.get(t);e&&(n=e.initialValue)}return n},set:(e,t,n)=>{t=getStyleName(t);isCssVar(t)?e.style.setProperty(t,n):e.style[t]=n}};function stopAnimation(e,t=true){if(e&&\"finished\"!==e.playState)try{if(e.stop)e.stop();else{t&&e.commitStyles();e.cancel()}}catch(e){}}function getDevToolsRecord(){return window.__MOTION_DEV_TOOLS_RECORD}function animateStyle(e,t,n,o={}){const f=getDevToolsRecord();const u=false!==o.record&&f;let d;let{duration:g=i.duration,delay:m=i.delay,endDelay:h=i.endDelay,repeat:p=i.repeat,easing:v=i.easing,direction:y,offset:E,allowWebkitAcceleration:b=false}=o;const S=getAnimationData(e);let A=R.waapi();const O=isTransform(t);O&&addTransformToElement(e,t);const x=getStyleName(t);const V=getMotionValue(S.values,x);const z=k.get(x);stopAnimation(V.animation,!(s(v)&&V.generator)&&false!==o.record);return()=>{const readInitialValue=()=>{var t,n;return null!==(n=null!==(t=H.get(e,x))&&void 0!==t?t:null===z||void 0===z?void 0:z.initialValue)&&void 0!==n?n:0};let i=hydrateKeyframes(keyframesList(n),readInitialValue);if(s(v)){const e=v.createAnimation(i,readInitialValue,O,x,V);v=e.easing;void 0!==e.keyframes&&(i=e.keyframes);void 0!==e.duration&&(g=e.duration)}isCssVar(x)&&(R.cssRegisterProperty()?registerCssVariable(x):A=false);if(A){z&&(i=i.map((e=>r(e)?z.toDefaultUnit(e):e)));1!==i.length||R.partialKeyframes()&&!u||i.unshift(readInitialValue());const t={delay:a.ms(m),duration:a.ms(g),endDelay:a.ms(h),easing:c(v)?void 0:convertEasing(v),direction:y,iterations:p+1,fill:\"both\"};d=e.animate({[x]:i,offset:E,easing:c(v)?v.map(convertEasing):void 0},t);d.finished||(d.finished=new Promise(((e,t)=>{d.onfinish=e;d.oncancel=t})));const n=i[i.length-1];d.finished.then((()=>{H.set(e,x,n);d.cancel()})).catch(l);b||(d.playbackRate=1.000001)}else if(O){i=i.map((e=>\"string\"===typeof e?parseFloat(e):e));1===i.length&&i.unshift(parseFloat(readInitialValue()));const render=t=>{z&&(t=z.toDefaultUnit(t));H.set(e,x,t)};d=new w(render,i,Object.assign(Object.assign({},o),{duration:g,easing:v}))}else{const t=i[i.length-1];H.set(e,x,z&&r(t)?z.toDefaultUnit(t):t)}u&&f(e,t,i,{duration:g,delay:m,easing:v,repeat:p,offset:E},\"motion-one\");V.setAnimation(d);return d}}const getOptions=(e,t)=>e[t]?Object.assign(Object.assign({},e),e[t]):Object.assign({},e);function resolveElements(e,t){var n;if(\"string\"===typeof e)if(t){null!==(n=t[e])&&void 0!==n?n:t[e]=document.querySelectorAll(e);e=t[e]}else e=document.querySelectorAll(e);else e instanceof Element&&(e=[e]);return Array.from(e||[])}const createAnimation=e=>e();const withControls=(e,t,n=i.duration)=>new Proxy({animations:e.map(createAnimation).filter(Boolean),duration:n,options:t},I);const getActiveAnimation=e=>e.animations[0];const I={get:(e,t)=>{const n=getActiveAnimation(e);switch(t){case\"duration\":return e.duration;case\"currentTime\":return a.s((null===n||void 0===n?void 0:n[t])||0);case\"playbackRate\":case\"playState\":return null===n||void 0===n?void 0:n[t];case\"finished\":e.finished||(e.finished=Promise.all(e.animations.map(selectFinished)).catch(l));return e.finished;case\"stop\":return()=>{e.animations.forEach((e=>stopAnimation(e)))};case\"forEachNative\":return t=>{e.animations.forEach((n=>t(n,e)))};default:return\"undefined\"===typeof(null===n||void 0===n?void 0:n[t])?void 0:()=>e.animations.forEach((e=>e[t]()))}},set:(e,t,n)=>{switch(t){case\"currentTime\":n=a.ms(n);case\"currentTime\":case\"playbackRate\":for(let o=0;o<e.animations.length;o++)e.animations[o][t]=n;return true}return false}};const selectFinished=e=>e.finished;function stagger(e=.1,{start:t=0,from:n=0,easing:o}={}){return(i,s)=>{const a=r(n)?n:getFromIndex(n,s);const c=Math.abs(a-i);let l=e*c;if(o){const t=s*e;const n=E(o);l=n(l/t)*t}return t+l}}function getFromIndex(e,t){if(\"first\"===e)return 0;{const n=t-1;return\"last\"===e?n:n/2}}function resolveOption(e,t,n){return\"function\"===typeof e?e(t,n):e}function animate(e,t,n={}){e=resolveElements(e);const o=e.length;const i=[];for(let s=0;s<o;s++){const r=e[s];for(const e in t){const a=getOptions(n,e);a.delay=resolveOption(a.delay,s,o);const c=animateStyle(r,e,t[e],a);i.push(c)}}return withControls(i,n,n.duration)}function calcNextTime(e,t,n,o){var i;return r(t)?t:t.startsWith(\"-\")||t.startsWith(\"+\")?Math.max(0,e+parseFloat(t)):\"<\"===t?n:null!==(i=o.get(t))&&void 0!==i?i:e}function eraseKeyframes(e,t,n){for(let o=0;o<e.length;o++){const i=e[o];if(i.at>t&&i.at<n){f(e,i);o--}}}function addKeyframes(e,t,n,o,i,s){eraseKeyframes(e,i,s);for(let r=0;r<t.length;r++)e.push({value:t[r],at:u(i,s,o[r]),easing:d(n,r)})}function compareByTime(e,t){return e.at===t.at?null===e.value?1:-1:e.at-t.at}function timeline(e,t={}){var n;const o=createAnimationsFromTimeline(e,t);const i=o.map((e=>animateStyle(...e))).filter(Boolean);return withControls(i,t,null===(n=o[0])||void 0===n?void 0:n[3].duration)}function createAnimationsFromTimeline(e,t={}){var{defaultOptions:n={}}=t,o=b(t,[\"defaultOptions\"]);const r=[];const a=new Map;const c={};const l=new Map;let f=0;let u=0;let d=0;for(let t=0;t<e.length;t++){const o=e[t];if(g(o)){l.set(o,u);continue}if(!Array.isArray(o)){l.set(o.name,calcNextTime(u,o.at,f,l));continue}const[r,p,v={}]=o;void 0!==v.at&&(u=calcNextTime(u,v.at,f,l));let y=0;const w=resolveElements(r,c);const E=w.length;for(let e=0;e<E;e++){const t=w[e];const o=getElementSequence(t,a);for(const t in p){const r=getValueSequence(t,o);let a=keyframesList(p[t]);const c=getOptions(v,t);let{duration:l=n.duration||i.duration,easing:f=n.easing||i.easing}=c;if(s(f)){const e=isTransform(t);S(2===a.length||!e,\"spring must be provided 2 keyframes within timeline\");const n=f.createAnimation(a,(()=>\"0\"),e);f=n.easing;void 0!==n.keyframes&&(a=n.keyframes);void 0!==n.duration&&(l=n.duration)}const g=resolveOption(v.delay,e,E)||0;const w=u+g;const b=w+l;let{offset:A=m(a.length)}=c;1===A.length&&0===A[0]&&(A[1]=1);const O=length-a.length;O>0&&h(A,O);1===a.length&&a.unshift(null);addKeyframes(r,a,f,A,w,b);y=Math.max(g+l,y);d=Math.max(b,d)}}f=u;u+=y}a.forEach(((e,t)=>{for(const s in e){const a=e[s];a.sort(compareByTime);const c=[];const l=[];const f=[];for(let e=0;e<a.length;e++){const{at:t,value:n,easing:o}=a[e];c.push(n);l.push(p(0,d,t));f.push(o||i.easing)}if(0!==l[0]){l.unshift(0);c.unshift(c[0]);f.unshift(\"linear\")}if(1!==l[l.length-1]){l.push(1);c.push(null)}r.push([t,s,c,Object.assign(Object.assign(Object.assign({},n),{duration:d,easing:f,offset:l}),o)])}}));return r}function getElementSequence(e,t){!t.has(e)&&t.set(e,{});return t.get(e)}function getValueSequence(e,t){t[e]||(t[e]=[]);return t[e]}function createGeneratorEasing(e){const t=new WeakMap;return(n={})=>{const o=new Map;const getGenerator=(t=0,i=100,s=0,r=false)=>{const a=`${t}-${i}-${s}-${r}`;o.has(a)||o.set(a,e(Object.assign({from:t,to:i,velocity:s,restSpeed:r?.05:2,restDistance:r?.01:.5},n)));return o.get(a)};const getKeyframes=e=>{t.has(e)||t.set(e,A(e));return t.get(e)};return{createAnimation:(e,t,n,o,i)=>{var s,r;let a;const c=e.length;let l=n&&c<=2&&e.every(isNumberOrNull);if(l){const n=e[c-1];const l=1===c?null:e[0];let f=0;let u=0;const d=null===i||void 0===i?void 0:i.generator;if(d){const{animation:t,generatorStartTime:n}=i;const o=(null===t||void 0===t?void 0:t.startTime)||n||0;const r=(null===t||void 0===t?void 0:t.currentTime)||performance.now()-o;const a=d(r).current;u=null!==(s=l)&&void 0!==s?s:a;(1===c||2===c&&null===e[0])&&(f=O((e=>d(e).current),r,a))}else u=null!==(r=l)&&void 0!==r?r:parseFloat(t());const g=getGenerator(u,n,f,null===o||void 0===o?void 0:o.includes(\"scale\"));const m=getKeyframes(g);a=Object.assign(Object.assign({},m),{easing:\"linear\"});if(i){i.generator=g;i.generatorStartTime=performance.now()}}else{const e=getKeyframes(getGenerator(0,100));a={easing:\"ease\",duration:e.overshootDuration}}return a}}}}const isNumberOrNull=e=>\"string\"!==typeof e;const N=createGeneratorEasing(x);const F=createGeneratorEasing(V);const U={any:0,all:1};function inView$1(e,t,{root:n,margin:o,amount:i=\"any\"}={}){if(\"undefined\"===typeof IntersectionObserver)return()=>{};const s=resolveElements(e);const r=new WeakMap;const onIntersectionChange=e=>{e.forEach((e=>{const n=r.get(e.target);if(e.isIntersecting!==Boolean(n))if(e.isIntersecting){const n=t(e);\"function\"===typeof n?r.set(e.target,n):a.unobserve(e.target)}else if(n){n(e);r.delete(e.target)}}))};const a=new IntersectionObserver(onIntersectionChange,{root:n,rootMargin:o,threshold:\"number\"===typeof i?i:U[i]});s.forEach((e=>a.observe(e)));return()=>a.disconnect()}const q=new WeakMap;let K;function getElementSize(e,t){if(t){const{inlineSize:e,blockSize:n}=t[0];return{width:e,height:n}}return e instanceof SVGElement&&\"getBBox\"in e?e.getBBox():{width:e.offsetWidth,height:e.offsetHeight}}function notifyTarget({target:e,contentRect:t,borderBoxSize:n}){var o;null===(o=q.get(e))||void 0===o?void 0:o.forEach((o=>{o({target:e,contentSize:t,get size(){return getElementSize(e,n)}})}))}function notifyAll(e){e.forEach(notifyTarget)}function createResizeObserver(){\"undefined\"!==typeof ResizeObserver&&(K=new ResizeObserver(notifyAll))}function resizeElement(e,t){K||createResizeObserver();const n=resolveElements(e);n.forEach((e=>{let n=q.get(e);if(!n){n=new Set;q.set(e,n)}n.add(t);null===K||void 0===K?void 0:K.observe(e)}));return()=>{n.forEach((e=>{const n=q.get(e);null===n||void 0===n?void 0:n.delete(t);(null===n||void 0===n?void 0:n.size)||(null===K||void 0===K?void 0:K.unobserve(e))}))}}const G=new Set;let _;function createWindowResizeHandler(){_=()=>{const e={width:window.innerWidth,height:window.innerHeight};const t={target:window,size:e,contentSize:e};G.forEach((e=>e(t)))};window.addEventListener(\"resize\",_)}function resizeWindow(e){G.add(e);_||createWindowResizeHandler();return()=>{G.delete(e);!G.size&&_&&(_=void 0)}}function resize(e,t){return\"function\"===typeof e?resizeWindow(e):resizeElement(e,t)}const Z=50;const createAxisInfo=()=>({current:0,offset:[],progress:0,scrollLength:0,targetOffset:0,targetLength:0,containerLength:0,velocity:0});const createScrollInfo=()=>({time:0,x:createAxisInfo(),y:createAxisInfo()});const X={x:{length:\"Width\",position:\"Left\"},y:{length:\"Height\",position:\"Top\"}};function updateAxisInfo(e,t,n,o){const i=n[t];const{length:s,position:r}=X[t];const a=i.current;const c=n.time;i.current=e[\"scroll\"+r];i.scrollLength=e[\"scroll\"+s]-e[\"client\"+s];i.offset.length=0;i.offset[0]=0;i.offset[1]=i.scrollLength;i.progress=p(0,i.scrollLength,i.current);const l=o-c;i.velocity=l>Z?0:v(i.current-a,l)}function updateScrollInfo(e,t,n){updateAxisInfo(e,\"x\",t,n);updateAxisInfo(e,\"y\",t,n);t.time=n}function calcInset(e,t){let n={x:0,y:0};let o=e;while(o&&o!==t)if(o instanceof HTMLElement){n.x+=o.offsetLeft;n.y+=o.offsetTop;o=o.offsetParent}else if(o instanceof SVGGraphicsElement&&\"getBBox\"in o){const{top:e,left:t}=o.getBBox();n.x+=t;n.y+=e;while(o&&\"svg\"!==o.tagName)o=o.parentNode}return n}const Y={Enter:[[0,1],[1,1]],Exit:[[0,0],[1,0]],Any:[[1,0],[0,1]],All:[[0,0],[1,1]]};const J={start:0,center:.5,end:1};function resolveEdge(e,t,n=0){let o=0;void 0!==J[e]&&(e=J[e]);if(g(e)){const t=parseFloat(e);e.endsWith(\"px\")?o=t:e.endsWith(\"%\")?e=t/100:e.endsWith(\"vw\")?o=t/100*document.documentElement.clientWidth:e.endsWith(\"vh\")?o=t/100*document.documentElement.clientHeight:e=t}r(e)&&(o=t*e);return n+o}const Q=[0,0];function resolveOffset(e,t,n,o){let i=Array.isArray(e)?e:Q;let s=0;let a=0;if(r(e))i=[e,e];else if(g(e)){e=e.trim();i=e.includes(\" \")?e.split(\" \"):[e,J[e]?e:\"0\"]}s=resolveEdge(i[0],n,o);a=resolveEdge(i[1],t);return s-a}const ee={x:0,y:0};function resolveOffsets(e,t,n){let{offset:o=Y.All}=n;const{target:i=e,axis:s=\"y\"}=n;const r=\"y\"===s?\"height\":\"width\";const a=i!==e?calcInset(i,e):ee;const c=i===e?{width:e.scrollWidth,height:e.scrollHeight}:{width:i.clientWidth,height:i.clientHeight};const l={width:e.clientWidth,height:e.clientHeight};t[s].offset.length=0;let f=!t[s].interpolate;const u=o.length;for(let e=0;e<u;e++){const n=resolveOffset(o[e],l[r],c[r],a[s]);f||n===t[s].interpolatorOffsets[e]||(f=true);t[s].offset[e]=n}if(f){t[s].interpolate=y(m(u),t[s].offset);t[s].interpolatorOffsets=[...t[s].offset]}t[s].progress=t[s].interpolate(t[s].current)}function measure(e,t=e,n){n.x.targetOffset=0;n.y.targetOffset=0;if(t!==e){let o=t;while(o&&o!=e){n.x.targetOffset+=o.offsetLeft;n.y.targetOffset+=o.offsetTop;o=o.offsetParent}}n.x.targetLength=t===e?t.scrollWidth:t.clientWidth;n.y.targetLength=t===e?t.scrollHeight:t.clientHeight;n.x.containerLength=e.clientWidth;n.y.containerLength=e.clientHeight}function createOnScrollHandler(e,t,n,o={}){const i=o.axis||\"y\";return{measure:()=>measure(e,o.target,n),update:t=>{updateScrollInfo(e,n,t);(o.offset||o.target)&&resolveOffsets(e,n,o)},notify:\"function\"===typeof t?()=>t(n):scrubAnimation(t,n[i])}}function scrubAnimation(e,n){e.pause();e.forEachNative(((e,{easing:n})=>{var o,i;if(e.updateDuration){n||(e.easing=t);e.updateDuration(1)}else{const t={duration:1e3};n||(t.easing=\"linear\");null===(i=null===(o=e.effect)||void 0===o?void 0:o.updateTiming)||void 0===i?void 0:i.call(o,t)}}));return()=>{e.currentTime=n.progress}}const te=new WeakMap;const ne=new WeakMap;const oe=new WeakMap;const getEventTarget=e=>e===document.documentElement?window:e;function scroll(e,t={}){var{container:n=document.documentElement}=t,o=b(t,[\"container\"]);let i=oe.get(n);if(!i){i=new Set;oe.set(n,i)}const s=createScrollInfo();const r=createOnScrollHandler(n,e,s,o);i.add(r);if(!te.has(n)){const listener=()=>{const e=performance.now();for(const e of i)e.measure();for(const t of i)t.update(e);for(const e of i)e.notify()};te.set(n,listener);const e=getEventTarget(n);window.addEventListener(\"resize\",listener,{passive:true});n!==document.documentElement&&ne.set(n,resize(n,listener));e.addEventListener(\"scroll\",listener,{passive:true})}const a=te.get(n);const c=requestAnimationFrame(a);return()=>{var t;\"function\"!==typeof e&&e.stop();cancelAnimationFrame(c);const o=oe.get(n);if(!o)return;o.delete(r);if(o.size)return;const i=te.get(n);te.delete(n);if(i){getEventTarget(n).removeEventListener(\"scroll\",i);null===(t=ne.get(n))||void 0===t?void 0:t();window.removeEventListener(\"resize\",i)}}}function hasChanged(e,t){return typeof e!==typeof t||(Array.isArray(e)&&Array.isArray(t)?!shallowCompare(e,t):e!==t)}function shallowCompare(e,t){const n=t.length;if(n!==e.length)return false;for(let o=0;o<n;o++)if(t[o]!==e[o])return false;return true}function isVariant(e){return\"object\"===typeof e}function resolveVariant(e,t){return isVariant(e)?e:e&&t?t[e]:void 0}let ie;function processScheduledAnimations(){if(!ie)return;const e=ie.sort(compareByDepth).map(fireAnimateUpdates);e.forEach(fireNext);e.forEach(fireNext);ie=void 0}function scheduleAnimation(e){if(ie)n(ie,e);else{ie=[e];requestAnimationFrame(processScheduledAnimations)}}function unscheduleAnimation(e){ie&&f(ie,e)}const compareByDepth=(e,t)=>e.getDepth()-t.getDepth();const fireAnimateUpdates=e=>e.animateUpdates();const fireNext=e=>e.next();const motionEvent=(e,t)=>new CustomEvent(e,{detail:{target:t}});function dispatchPointerEvent(e,t,n){e.dispatchEvent(new CustomEvent(t,{detail:{originalEvent:n}}))}function dispatchViewEvent(e,t,n){e.dispatchEvent(new CustomEvent(t,{detail:{originalEntry:n}}))}const se={isActive:e=>Boolean(e.inView),subscribe:(e,{enable:t,disable:n},{inViewOptions:o={}})=>{const{once:i}=o,s=b(o,[\"once\"]);return inView$1(e,(o=>{t();dispatchViewEvent(e,\"viewenter\",o);if(!i)return t=>{n();dispatchViewEvent(e,\"viewleave\",t)}}),s)}};const mouseEvent=(e,t,n)=>o=>{if(!o.pointerType||\"mouse\"===o.pointerType){n();dispatchPointerEvent(e,t,o)}};const re={isActive:e=>Boolean(e.hover),subscribe:(e,{enable:t,disable:n})=>{const o=mouseEvent(e,\"hoverstart\",t);const i=mouseEvent(e,\"hoverend\",n);e.addEventListener(\"pointerenter\",o);e.addEventListener(\"pointerleave\",i);return()=>{e.removeEventListener(\"pointerenter\",o);e.removeEventListener(\"pointerleave\",i)}}};const ae={isActive:e=>Boolean(e.press),subscribe:(e,{enable:t,disable:n})=>{const onPointerUp=t=>{n();dispatchPointerEvent(e,\"pressend\",t);window.removeEventListener(\"pointerup\",onPointerUp)};const onPointerDown=n=>{t();dispatchPointerEvent(e,\"pressstart\",n);window.addEventListener(\"pointerup\",onPointerUp)};e.addEventListener(\"pointerdown\",onPointerDown);return()=>{e.removeEventListener(\"pointerdown\",onPointerDown);window.removeEventListener(\"pointerup\",onPointerUp)}}};const ce={inView:se,hover:re,press:ae};const le=[\"initial\",\"animate\",...Object.keys(ce),\"exit\"];const fe=new WeakMap;function createMotionState(e={},t){let n;let o=t?t.getDepth()+1:0;const i={initial:true,animate:true};const s={};const r={};for(const n of le)r[n]=\"string\"===typeof e[n]?e[n]:null===t||void 0===t?void 0:t.getContext()[n];const a=false===e.initial?\"animate\":\"initial\";let c=resolveVariant(e[a]||r[a],e.variants)||{},f=b(c,[\"transition\"]);const u=Object.assign({},f);function*animateUpdates(){var t,o;const s=f;f={};const r={};for(const n of le){if(!i[n])continue;const s=resolveVariant(e[n]);if(s)for(const n in s)if(\"transition\"!==n){f[n]=s[n];r[n]=getOptions(null!==(o=null!==(t=s.transition)&&void 0!==t?t:e.transition)&&void 0!==o?o:{},n)}}const a=new Set([...Object.keys(f),...Object.keys(s)]);const c=[];a.forEach((e=>{var t;void 0===f[e]&&(f[e]=u[e]);if(hasChanged(s[e],f[e])){null!==(t=u[e])&&void 0!==t?t:u[e]=H.get(n,e);c.push(animateStyle(n,e,f[e],r[e]))}}));yield;const d=c.map((e=>e())).filter(Boolean);if(!d.length)return;const g=f;n.dispatchEvent(motionEvent(\"motionstart\",g));Promise.all(d.map((e=>e.finished))).then((()=>{n.dispatchEvent(motionEvent(\"motioncomplete\",g))})).catch(l)}const setGesture=(e,t)=>()=>{i[e]=t;scheduleAnimation(d)};const updateGestureSubscriptions=()=>{for(const t in ce){const o=ce[t].isActive(e);const i=s[t];if(o&&!i)s[t]=ce[t].subscribe(n,{enable:setGesture(t,true),disable:setGesture(t,false)},e);else if(!o&&i){i();delete s[t]}}};const d={update:t=>{if(n){e=t;updateGestureSubscriptions();scheduleAnimation(d)}},setActive:(e,t)=>{if(n){i[e]=t;scheduleAnimation(d)}},animateUpdates:animateUpdates,getDepth:()=>o,getTarget:()=>f,getOptions:()=>e,getContext:()=>r,mount:e=>{S(Boolean(e),\"Animation state must be mounted with valid Element\");n=e;fe.set(n,d);updateGestureSubscriptions();return()=>{fe.delete(n);unscheduleAnimation(d);for(const e in s)s[e]()}},isMounted:()=>Boolean(n)};return d}function createStyles(e){const t={};const n=[];for(let o in e){const i=e[o];if(isTransform(o)){T[o]&&(o=T[o]);n.push(o);o=asTransformCssVar(o)}let s=Array.isArray(i)?i[0]:i;const a=k.get(o);a&&(s=r(i)?a.toDefaultUnit(i):i);t[o]=s}n.length&&(t.transform=buildTransformTemplate(n));return t}const camelLetterToPipeLetter=e=>`-${e.toLowerCase()}`;const camelToPipeCase=e=>e.replace(/[A-Z]/g,camelLetterToPipeLetter);function createStyleString(e={}){const t=createStyles(e);let n=\"\";for(const e in t){n+=e.startsWith(\"--\")?e:camelToPipeCase(e);n+=`: ${t[e]}; `}return n}export{Y as ScrollOffset,animate,animateStyle,createMotionState,createStyleString,createStyles,getAnimationData,getStyleName,F as glide,inView$1 as inView,fe as mountedStates,resize,scroll,N as spring,stagger,H as style,timeline,withControls};\n\n//# sourceMappingURL=index.es.js.map", "import{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,memo,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;// 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\n// we abort here so that the promise isn't left around in case the ref is never set\ncontroller.abort();return;}refCallbackResolve?.(node);},configurable:true});// no need to create a promise if current already exists\nif(current)return current;const refCallbackPromise=new Promise((resolve,reject)=>{refCallbackResolve=resolve;controller.signal.addEventListener(\"abort\",reject);}).catch(()=>{});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 amountChildren=Children.count(filteredSlots);const hasChildren=amountChildren>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[{current:null},{current:null}];// when the slots change, generate new array\n},[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(()=>{if(!parentRef.current)return;const firstChild=childrenRef[0].current;const lastChild=childrenRef[1].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);setSize({parent:parentLength,children:childrenLength,item:itemSize,itemWidth,itemHeight,viewportLength});},[]);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,lastChild]=childrenRef;if(!isCanvas&&(!firstChild.current||!lastChild.current))try{await Promise.all([awaitRefCallback(firstChild,controller),amountChildren>1?awaitRefCallback(lastChild,controller):true]);}catch{controller.abort();}frame.read(measure,false,true);},[measure]);/**\n     * Add refs to all children\n     * Added itemAmount for resizing\n     */useLayoutEffect(()=>{scheduleMeasure();},[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);if(isCanvas){if(currentItem!==startFrom){setCurrentItem(startFrom);}}/* 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||amountChildren<=1)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(index===0){if(childIndex===0){ref=childrenRef[0];}else if(childIndex===filteredSlots.length-1){ref=childrenRef[1];}}return /*#__PURE__*/_jsx(Slide,{ref:ref,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__*/memo(/*#__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;const fallbackRef=useRef();/**\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=>{const node=ref?.current??fallbackRef.current;node?.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\"]);const key=slideKey+\"child\";return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",id:key,children:/*#__PURE__*/_jsx(\"li\",{style:{display:\"contents\"},\"aria-hidden\":index===0?false:true,children:/*#__PURE__*/cloneElement(child,{ref:ref??fallbackRef,key,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})})});}));const Dot=/*#__PURE__*/memo(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\":{\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicWidth\":\"400\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"200\",\"framerDisableUnlink\":\"*\",\"framerSupportedLayoutWidth\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./SlideShow.map", "// Generated by Framer (dc53115)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,Image,Link,RichText,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Slideshow from\"https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/vzgdvq3ezmf3RWurtT17/SlideShow.js\";const SlideshowFonts=getFonts(Slideshow);const cycleOrder=[\"GomfNJBgx\",\"N139hodEO\",\"IO7aG2at6\",\"rluD2avkz\"];const serializationHash=\"framer-21yeI\";const variantClassNames={GomfNJBgx:\"framer-v-inal09\",IO7aG2at6:\"framer-v-nzbdg9\",N139hodEO:\"framer-v-g6w1o6\",rluD2avkz:\"framer-v-xtaw5d\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Desktop 2\":\"rluD2avkz\",Desktop:\"GomfNJBgx\",mobile:\"IO7aG2at6\",Tablet:\"N139hodEO\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"GomfNJBgx\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"GomfNJBgx\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-inal09\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"GomfNJBgx\",ref:refBinding,style:{...style},...addPropertyOverrides({IO7aG2at6:{\"data-framer-name\":\"mobile\"},N139hodEO:{\"data-framer-name\":\"Tablet\"},rluD2avkz:{\"data-framer-name\":\"Desktop 2\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-5fgg1z-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"rIyZoqryN-container\",nodeId:\"rIyZoqryN\",rendersWithMotion:true,scopeId:\"Z7vfWkEiz\",children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowGap:10,arrowPadding:-80,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:48,showMouseControls:true},autoPlayControl:true,borderRadius:4,direction:\"left\",dragControl:true,effectsOptions:{effectsHover:true,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:.8,playOffscreen:false},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:0,height:\"100%\",id:\"rIyZoqryN\",intervalControl:1.75,itemAmount:1,layoutId:\"rIyZoqryN\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:48,dotsInset:-60,dotSize:8,dotsOpacity:.2,dotsPadding:10,dotsRadius:50,showProgressDots:true},slots:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"mlNgLEZu5\"},motionChild:true,nodeId:\"gr4uObJbK\",scopeId:\"Z7vfWkEiz\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",pixelHeight:669,pixelWidth:1098,sizes:\"981px\",src:\"https://framerusercontent.com/images/1zjoo8oc7CNQFKh31Bo7J9o0WU.png\",srcSet:\"https://framerusercontent.com/images/1zjoo8oc7CNQFKh31Bo7J9o0WU.png?scale-down-to=512 512w,https://framerusercontent.com/images/1zjoo8oc7CNQFKh31Bo7J9o0WU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/1zjoo8oc7CNQFKh31Bo7J9o0WU.png 1098w\"},className:\"framer-kvcy02 framer-1b2c8n2\",\"data-framer-name\":\"Nightmares Daydreams\",layoutDependency:layoutDependency,layoutId:\"gr4uObJbK\",style:{borderBottomLeftRadius:4,borderBottomRightRadius:4,borderTopLeftRadius:4,borderTopRightRadius:4},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-k9jruk\",layoutDependency:layoutDependency,layoutId:\"gr4uObJbKqBTcBRpJ_\",style:{background:\"linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 100%)\"},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U3BhY2UgR3JvdGVzay1ib2xk\",\"--framer-font-family\":'\"Space Grotesk\", \"Space Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"NETFLIX  Joko Anwar's Nightmares & Daydreams\"})}),className:\"framer-28wdxc\",fonts:[\"FS;Space Grotesk-bold\"],layoutDependency:layoutDependency,layoutId:\"gr4uObJbKxGZ3aDdFM\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})})})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"WW9_VBSPs\"},motionChild:true,nodeId:\"aPwRSxbhn\",scopeId:\"Z7vfWkEiz\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",pixelHeight:669,pixelWidth:1098,positionX:\"center\",positionY:\"bottom\",sizes:\"981px\",src:\"https://framerusercontent.com/images/lIhZTYCQki2NiImYp1rKIlVzQeE.png\",srcSet:\"https://framerusercontent.com/images/lIhZTYCQki2NiImYp1rKIlVzQeE.png?scale-down-to=512 512w,https://framerusercontent.com/images/lIhZTYCQki2NiImYp1rKIlVzQeE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/lIhZTYCQki2NiImYp1rKIlVzQeE.png 1098w\"},className:\"framer-1kaul3a framer-1b2c8n2\",\"data-framer-name\":\"Gopy\",layoutDependency:layoutDependency,layoutId:\"aPwRSxbhn\",style:{borderBottomLeftRadius:4,borderBottomRightRadius:4,borderTopLeftRadius:4,borderTopRightRadius:4},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-4mss5r\",layoutDependency:layoutDependency,layoutId:\"NAD5Owo84\",style:{background:\"linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 100%)\"},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U3BhY2UgR3JvdGVzay1ib2xk\",\"--framer-font-family\":'\"Space Grotesk\", \"Space Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Gopay Jaminan Saldo Kembali\"})}),className:\"framer-1105hsq\",fonts:[\"FS;Space Grotesk-bold\"],layoutDependency:layoutDependency,layoutId:\"FBo5Thyyh\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})})})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"sNTEGxKtz\"},motionChild:true,nodeId:\"NXSPfTamo\",openInNewTab:false,scopeId:\"Z7vfWkEiz\",children:/*#__PURE__*/_jsxs(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",pixelHeight:669,pixelWidth:1098,sizes:\"981px\",src:\"https://framerusercontent.com/images/2AWXGuiEcHMmU1kATGSpG0UqE.png\",srcSet:\"https://framerusercontent.com/images/2AWXGuiEcHMmU1kATGSpG0UqE.png?scale-down-to=512 512w,https://framerusercontent.com/images/2AWXGuiEcHMmU1kATGSpG0UqE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/2AWXGuiEcHMmU1kATGSpG0UqE.png 1098w\"},className:\"framer-1s709ww framer-1b2c8n2\",\"data-framer-name\":\"Pertamina\",layoutDependency:layoutDependency,layoutId:\"NXSPfTamo\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:819,pixelWidth:1747,sizes:\"981px\",src:\"https://framerusercontent.com/images/uidN267uCp6Jn8MU3BEZudh2PtM.png\",srcSet:\"https://framerusercontent.com/images/uidN267uCp6Jn8MU3BEZudh2PtM.png?scale-down-to=512 512w,https://framerusercontent.com/images/uidN267uCp6Jn8MU3BEZudh2PtM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/uidN267uCp6Jn8MU3BEZudh2PtM.png 1747w\"},className:\"framer-xqefjy\",\"data-framer-name\":\"image\",layoutDependency:layoutDependency,layoutId:\"Wz0yOLz8s\",style:{borderBottomLeftRadius:4,borderBottomRightRadius:4,borderTopLeftRadius:4,borderTopRightRadius:4}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-iafjsr\",layoutDependency:layoutDependency,layoutId:\"EtYp7AnkQ\",style:{background:\"linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 100%)\"},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U3BhY2UgR3JvdGVzay1ib2xk\",\"--framer-font-family\":'\"Space Grotesk\", \"Space Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"50th Anniversary The Sound That Moves You\"})}),className:\"framer-1ts1uyg\",fonts:[\"FS;Space Grotesk-bold\"],layoutDependency:layoutDependency,layoutId:\"XLLY3Li6W\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})})]})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"qIMeeVCO9\"},motionChild:true,nodeId:\"rzJV5fk61\",scopeId:\"Z7vfWkEiz\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",pixelHeight:669,pixelWidth:1098,positionX:\"center\",positionY:\"bottom\",sizes:\"981px\",src:\"https://framerusercontent.com/images/RkWKS0711LGBACHRu3Z81VivXEY.png\",srcSet:\"https://framerusercontent.com/images/RkWKS0711LGBACHRu3Z81VivXEY.png?scale-down-to=512 512w,https://framerusercontent.com/images/RkWKS0711LGBACHRu3Z81VivXEY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/RkWKS0711LGBACHRu3Z81VivXEY.png 1098w\"},className:\"framer-v3sups framer-1b2c8n2\",\"data-framer-name\":\"Veni fidi\",layoutDependency:layoutDependency,layoutId:\"rzJV5fk61\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1xfnth3\",layoutDependency:layoutDependency,layoutId:\"CiQJEynLz\",style:{background:\"linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 100%)\"},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U3BhY2UgR3JvdGVzay1ib2xk\",\"--framer-font-family\":'\"Space Grotesk\", \"Space Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:'Veni Vidi Fitri \"Meet Journey\"'})}),className:\"framer-1gfvp0l\",fonts:[\"FS;Space Grotesk-bold\"],layoutDependency:layoutDependency,layoutId:\"hYWUhJfy_\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})})})})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:40,delay:0,mass:1,stiffness:200,type:\"spring\"},width:\"100%\",...addPropertyOverrides({IO7aG2at6:{arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowGap:10,arrowPadding:20,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:48,showMouseControls:false},progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:48,dotsInset:-100,dotSize:8,dotsOpacity:.2,dotsPadding:10,dotsRadius:50,showProgressDots:true}},N139hodEO:{arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowGap:10,arrowPadding:20,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:48,showMouseControls:true}}},baseVariant,gestureVariant)})})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-21yeI.framer-1b2c8n2, .framer-21yeI .framer-1b2c8n2 { display: block; }\",\".framer-21yeI.framer-inal09 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; padding: 0px; position: relative; width: min-content; }\",\".framer-21yeI .framer-5fgg1z-container { flex: none; height: 669px; position: relative; width: 1098px; }\",\".framer-21yeI .framer-kvcy02 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 542px; justify-content: flex-end; padding: 0px; position: relative; text-decoration: none; width: 981px; }\",\".framer-21yeI .framer-k9jruk { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 212px; justify-content: flex-end; overflow: visible; padding: 40px; position: relative; width: 100%; }\",\".framer-21yeI .framer-28wdxc, .framer-21yeI .framer-1105hsq, .framer-21yeI .framer-1ts1uyg, .framer-21yeI .framer-1gfvp0l { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; z-index: 2; }\",\".framer-21yeI .framer-1kaul3a, .framer-21yeI .framer-1s709ww, .framer-21yeI .framer-v3sups { height: 542px; position: relative; text-decoration: none; width: 981px; }\",\".framer-21yeI .framer-4mss5r, .framer-21yeI .framer-iafjsr, .framer-21yeI .framer-1xfnth3 { align-content: center; align-items: center; bottom: 0px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 212px; justify-content: flex-end; left: 0px; overflow: visible; padding: 40px; position: absolute; right: 0px; }\",\".framer-21yeI .framer-xqefjy { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-21yeI.framer-v-g6w1o6 .framer-5fgg1z-container { aspect-ratio: 1.6416861826697893 / 1; height: var(--framer-aspect-ratio-supported, 463px); width: 760px; }\",\".framer-21yeI.framer-v-nzbdg9.framer-inal09 { width: 350px; }\",\".framer-21yeI.framer-v-nzbdg9 .framer-5fgg1z-container { height: 273px; width: 100%; }\",\".framer-21yeI.framer-v-xtaw5d .framer-5fgg1z-container { aspect-ratio: 1.609375 / 1; height: 512px; width: var(--framer-aspect-ratio-supported, 824px); }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 669\n * @framerIntrinsicWidth 1098\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"N139hodEO\":{\"layout\":[\"auto\",\"auto\"]},\"IO7aG2at6\":{\"layout\":[\"fixed\",\"auto\"]},\"rluD2avkz\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerZ7vfWkEiz=withCSS(Component,css,\"framer-21yeI\");export default FramerZ7vfWkEiz;FramerZ7vfWkEiz.displayName=\"Carousel\";FramerZ7vfWkEiz.defaultProps={height:669,width:1098};addPropertyControls(FramerZ7vfWkEiz,{variant:{options:[\"GomfNJBgx\",\"N139hodEO\",\"IO7aG2at6\",\"rluD2avkz\"],optionTitles:[\"Desktop\",\"Tablet\",\"mobile\",\"Desktop 2\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerZ7vfWkEiz,[{explicitInter:true,fonts:[{family:\"Space Grotesk\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/GFEQC7SZ2XMFHB2INR6RE24JKHO5JNTS/R2HDHPNP7PMXFG5AIIV7PF3KFELSLGKJ/COAKOVM7H37QQIPEFBZNVR5EL4GEPLQU.woff2\",weight:\"700\"}]},...SlideshowFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerZ7vfWkEiz\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"N139hodEO\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"IO7aG2at6\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"rluD2avkz\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"669\",\"framerAutoSizeImages\":\"true\",\"framerContractVersion\":\"1\",\"framerColorSyntax\":\"true\",\"framerIntrinsicWidth\":\"1098\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Z7vfWkEiz.map", "// Generated by Framer (1bcc82d)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getLoadingLazyAtYPosition,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{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/7qT0r3So12155VV5Jq5x/Video.js\";import Footer from\"#framer/local/canvasComponent/HjSAoTqKD/HjSAoTqKD.js\";import Navigation from\"#framer/local/canvasComponent/s2rmvAS_A/s2rmvAS_A.js\";import Carousel from\"#framer/local/canvasComponent/Z7vfWkEiz/Z7vfWkEiz.js\";import metadataProvider from\"#framer/local/webPageMetadata/L19Tvfnan/L19Tvfnan.js\";const NavigationFonts=getFonts(Navigation);const VideoFonts=getFonts(Video);const RichTextWithFX=withFX(RichText);const CarouselFonts=getFonts(Carousel);const ContainerWithFX=withFX(Container);const MotionDivWithFX=withFX(motion.div);const ImageWithFX=withFX(Image);const MotionAWithFX=withFX(motion.a);const FooterFonts=getFonts(Footer);const breakpoints={eqeunS4q0:\"(max-width: 809px)\",EszxHZDpT:\"(min-width: 810px) and (max-width: 1199px)\",H7_WF9cnz:\"(min-width: 1200px) and (max-width: 1919px)\",nH5glZis6:\"(min-width: 1920px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-V0hsJ\";const variantClassNames={eqeunS4q0:\"framer-v-1wyrj5b\",EszxHZDpT:\"framer-v-1c4cr81\",H7_WF9cnz:\"framer-v-1jcley0\",nH5glZis6:\"framer-v-1sc40i8\"};const animation={filter:\"blur(1px)\",opacity:.001,rotate:0,scale:1,skewX:0,skewY:0,x:0,y:16};const transition1={delay:.05,duration:.5,ease:[.44,0,.24,1],type:\"tween\"};const textEffect={effect:animation,repeat:false,startDelay:0,threshold:1,tokenization:\"line\",transition:transition1,trigger:\"onInView\",type:\"appear\"};const animation1={opacity:.001,rotate:0,scale:1,skewX:0,skewY:0,x:0,y:16};const textEffect1={effect:animation1,repeat:false,startDelay:0,threshold:1,tokenization:\"line\",transition:transition1,trigger:\"onInView\",type:\"appear\"};const animation2={filter:\"blur(1px)\",opacity:.001,rotate:0,scale:1,skewX:0,skewY:0,x:0,y:10};const transition2={bounce:0,delay:.05,duration:.5,type:\"spring\"};const textEffect2={effect:animation2,tokenization:\"line\",transition:transition2,trigger:\"onInView\",type:\"appear\"};const textEffect3={effect:animation1,tokenization:\"line\",transition:transition2,trigger:\"onInView\",type:\"appear\"};const animation3={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transition3={delay:.5,duration:1,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:0,y:0};const transition4={bounce:.1,delay:.3,duration:.8,type:\"spring\"};const animation5={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition4,x:0,y:0};const transition5={delay:.4,duration:.8,ease:[.44,0,.56,1],type:\"tween\"};const animation6={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition5,x:0,y:0};const animation7={opacity:.001,rotate:0,scale:1,skewX:0,skewY:0,x:0,y:10};const textEffect4={effect:animation7,tokenization:\"line\",transition:transition2,trigger:\"onInView\",type:\"appear\"};const transition6={delay:.05,duration:.3,ease:[.44,0,.24,1],type:\"tween\"};const textEffect5={effect:animation,repeat:false,startDelay:0,threshold:1,tokenization:\"line\",transition:transition6,trigger:\"onInView\",type:\"appear\"};const textEffect6={effect:animation1,repeat:false,startDelay:0,threshold:1,tokenization:\"line\",transition:transition6,trigger:\"onInView\",type:\"appear\"};const animation8={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:59};const transition7={bounce:.2,delay:.5,duration:.6,type:\"spring\"};const transition8={bounce:.2,delay:0,duration:.4,type:\"spring\"};const animation9={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition8,x:0,y:0};const transition9={bounce:.2,delay:.2,duration:1,type:\"spring\"};const animation10={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition9,x:0,y:0};const animation11={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:39};const transition10={bounce:.2,delay:.6,duration:1,type:\"spring\"};const transition11={bounce:.2,delay:.3,duration:1,type:\"spring\"};const animation12={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition11,x:0,y:39};const transition12={bounce:.2,delay:.4,duration:1.2,type:\"spring\"};const animation13={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition12,x:0,y:0};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const transformTemplate2=(_,t)=>`translateY(-50%) ${t}`;const transition13={delay:.2,duration:.3,ease:[.44,0,.24,1],type:\"tween\"};const textEffect7={effect:animation,repeat:false,startDelay:0,threshold:1,tokenization:\"line\",transition:transition13,trigger:\"onInView\",type:\"appear\"};const transition14={delay:.1,duration:.2,ease:[.44,0,.24,1],type:\"tween\"};const textEffect8={effect:animation1,repeat:false,startDelay:0,threshold:1,tokenization:\"line\",transition:transition14,trigger:\"onInView\",type:\"appear\"};const transition15={bounce:.2,delay:0,duration:1,type:\"spring\"};const animation14={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition15,x:0,y:0};const transformTemplate3=(_,t)=>`translate(-50%, -50%) ${t}`;const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={\"Desktop 2\":\"H7_WF9cnz\",Desktop:\"nH5glZis6\",Phone:\"eqeunS4q0\",Tablet:\"EszxHZDpT\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"nH5glZis6\"};};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=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"EszxHZDpT\")return true;return false;};const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"H7_WF9cnz\")return true;return false;};const isDisplayed2=()=>{if(!isBrowser())return true;if([\"EszxHZDpT\",\"eqeunS4q0\",\"H7_WF9cnz\"].includes(baseVariant))return false;return true;};const isDisplayed3=()=>{if(!isBrowser())return true;if(baseVariant===\"eqeunS4q0\")return true;return false;};const isDisplayed4=()=>{if(!isBrowser())return true;if([\"EszxHZDpT\",\"eqeunS4q0\",\"H7_WF9cnz\"].includes(baseVariant))return true;return false;};const elementId=useRouteElementId(\"HAOVJ6H5g\");const ref1=React.useRef(null);const elementId1=useRouteElementId(\"GYlqRdtuR\");const ref2=React.useRef(null);const elementId2=useRouteElementId(\"V_3hOwjj6\");const ref3=React.useRef(null);const isDisplayed5=()=>{if(!isBrowser())return true;if([\"EszxHZDpT\",\"eqeunS4q0\"].includes(baseVariant))return false;return true;};const elementId3=useRouteElementId(\"L39_K0Eky\");const ref4=React.useRef(null);const isDisplayed6=()=>{if(!isBrowser())return true;if([\"EszxHZDpT\",\"eqeunS4q0\"].includes(baseVariant))return true;return false;};const isDisplayed7=()=>{if(!isBrowser())return true;if(baseVariant===\"EszxHZDpT\")return false;return true;};const elementId4=useRouteElementId(\"X2eHpbP5_\");const ref5=React.useRef(null);const isDisplayed8=()=>{if(!isBrowser())return true;if(baseVariant===\"eqeunS4q0\")return false;return true;};const elementId5=useRouteElementId(\"HXWy91hXg\");const ref6=React.useRef(null);useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"nH5glZis6\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: rgb(0, 0, 0); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-1sc40i8\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EszxHZDpT:{y:0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:67,width:componentViewport?.width||\"100vw\",y:-.5,children:/*#__PURE__*/_jsx(Container,{className:\"framer-14eieri-container\",layoutScroll:true,nodeId:\"AM__Jtipo\",scopeId:\"L19Tvfnan\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eqeunS4q0:{variant:\"zEvY9uZX2\"},EszxHZDpT:{variant:\"zEvY9uZX2\"},H7_WF9cnz:{style:{height:\"100%\",width:\"100%\"},variant:\"KWAx7Af4y\"}},children:/*#__PURE__*/_jsx(Navigation,{height:\"100%\",id:\"AM__Jtipo\",layoutId:\"AM__Jtipo\",style:{width:\"100%\"},variant:\"J35fNJbfp\",width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ks32ms\",\"data-framer-name\":\"Main\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1vd4r03\",\"data-framer-name\":\"Showreel\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1t2buzw-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"S83a8BpkM\",scopeId:\"L19Tvfnan\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eqeunS4q0:{srcFile:\"https://framerusercontent.com/assets/HZPGxP8U19VlxHSxznlXREJS8.mp4\"}},children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"S83a8BpkM\",isMixedBorderRadius:false,layoutId:\"S83a8BpkM\",loop:true,muted:true,objectFit:\"cover\",playing:true,poster:\"https://framerusercontent.com/images/n6H8Sv3RfDOv0CgpTX2XIsExUI.png\",posterEnabled:true,srcFile:\"https://framerusercontent.com/assets/TJ6HZNpGRVx9EeacLkK3LcnPjo.mp4\",srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})}),isDisplayed()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1dzg5x6 hidden-1sc40i8 hidden-1wyrj5b hidden-1jcley0\",\"data-framer-name\":\"White elements & header footer\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-l7m2en\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1he6943\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-dbjyse\",\"data-framer-name\":\"Group\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:35,intrinsicWidth:35,svg:'<svg width=\"35\" height=\"35\" viewBox=\"0 0 35 35\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M17.4707 0V34.93\" stroke=\"white\" stroke-width=\"0.5\" stroke-miterlimit=\"10\"/>\\n<path d=\"M0 17.46H34.94\" stroke=\"white\" stroke-width=\"0.5\" stroke-miterlimit=\"10\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-agcut8\",\"data-framer-name\":\"Group 49\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:36,intrinsicWidth:35,svg:'<svg width=\"35\" height=\"36\" viewBox=\"0 0 35 36\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path opacity=\"0.85\" d=\"M17.4711 30.2499C24.0157 30.2499 29.3211 24.9445 29.3211 18.3999C29.3211 11.8554 24.0157 6.54993 17.4711 6.54993C10.9265 6.54993 5.62109 11.8554 5.62109 18.3999C5.62109 24.9445 10.9265 30.2499 17.4711 30.2499Z\" stroke=\"white\" stroke-width=\"0.5\" stroke-miterlimit=\"10\"/>\\n<path d=\"M0 18.3999H34.94\" stroke=\"white\" stroke-width=\"0.5\" stroke-miterlimit=\"10\"/>\\n<path d=\"M17.4707 0.929932V35.8699\" stroke=\"white\" stroke-width=\"0.5\" stroke-miterlimit=\"10\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1moyu25\",\"data-framer-name\":\"Group\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:35,intrinsicWidth:35,svg:'<svg width=\"35\" height=\"35\" viewBox=\"0 0 35 35\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M17.4707 0V34.93\" stroke=\"white\" stroke-width=\"0.5\" stroke-miterlimit=\"10\"/>\\n<path d=\"M0 17.46H34.94\" stroke=\"white\" stroke-width=\"0.5\" stroke-miterlimit=\"10\"/>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-qrt9gf\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1k3ohzv\",\"data-framer-name\":\"Group\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:35,intrinsicWidth:35,svg:'<svg width=\"35\" height=\"35\" viewBox=\"0 0 35 35\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M17.4707 0V34.93\" stroke=\"white\" stroke-width=\"0.5\" stroke-miterlimit=\"10\"/>\\n<path d=\"M0 17.46H34.94\" stroke=\"white\" stroke-width=\"0.5\" stroke-miterlimit=\"10\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-djhqyf\",\"data-framer-name\":\"Group 49\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:36,intrinsicWidth:35,svg:'<svg width=\"35\" height=\"36\" viewBox=\"0 0 35 36\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path opacity=\"0.85\" d=\"M17.4711 30.2499C24.0157 30.2499 29.3211 24.9445 29.3211 18.3999C29.3211 11.8554 24.0157 6.54993 17.4711 6.54993C10.9265 6.54993 5.62109 11.8554 5.62109 18.3999C5.62109 24.9445 10.9265 30.2499 17.4711 30.2499Z\" stroke=\"white\" stroke-width=\"0.5\" stroke-miterlimit=\"10\"/>\\n<path d=\"M0 18.3999H34.94\" stroke=\"white\" stroke-width=\"0.5\" stroke-miterlimit=\"10\"/>\\n<path d=\"M17.4707 0.929932V35.8699\" stroke=\"white\" stroke-width=\"0.5\" stroke-miterlimit=\"10\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-mpvecb\",\"data-framer-name\":\"Group\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:35,intrinsicWidth:35,svg:'<svg width=\"35\" height=\"35\" viewBox=\"0 0 35 35\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M17.4707 0V34.93\" stroke=\"white\" stroke-width=\"0.5\" stroke-miterlimit=\"10\"/>\\n<path d=\"M0 17.46H34.94\" stroke=\"white\" stroke-width=\"0.5\" stroke-miterlimit=\"10\"/>\\n</svg>\\n',withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1nkdau8\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16bv34z\",\"data-framer-name\":\"Frame 105\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1dbibto\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-ryfzws\",\"data-framer-name\":\"Layer_1\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 44 44\"><g><path d=\"M 0 43.232 L 0 0 L 43.317 0 L 43.317 43.232 Z\" fill=\"transparent\"></path><path d=\"M 0 18.826 L 0.215 17.46 L 6.394 18.424 L 6.179 19.781 Z\" fill=\"rgb(255, 255, 255)\"></path><path d=\"M 1.273 13.294 L 2.274 11.487 C 2.518 11.047 2.799 10.663 3.117 10.326 C 3.435 9.989 3.782 9.727 4.165 9.558 C 4.549 9.39 4.961 9.315 5.401 9.334 C 5.841 9.352 6.319 9.502 6.815 9.783 C 7.255 10.026 7.601 10.326 7.845 10.682 C 8.088 11.037 8.247 11.421 8.322 11.833 C 8.397 12.245 8.387 12.666 8.294 13.106 C 8.21 13.546 8.05 13.968 7.826 14.37 L 6.73 16.336 Z M 6.29 14.511 L 6.637 13.883 C 6.796 13.603 6.908 13.331 6.983 13.06 C 7.058 12.788 7.077 12.535 7.049 12.283 C 7.011 12.039 6.918 11.805 6.759 11.58 C 6.599 11.365 6.365 11.169 6.056 10.991 C 5.785 10.841 5.532 10.766 5.27 10.757 C 5.017 10.747 4.774 10.794 4.559 10.888 C 4.334 10.991 4.128 11.131 3.931 11.328 C 3.744 11.524 3.576 11.749 3.435 11.992 L 3.042 12.704 L 6.281 14.511 Z\" fill=\"rgb(255, 255, 255)\"></path><path d=\"M 7.153 5.093 L 10.589 2.593 L 11.338 3.623 L 9.016 5.308 L 9.699 6.254 L 11.89 4.662 L 12.639 5.692 L 10.448 7.283 L 11.197 8.313 L 13.65 6.534 L 14.399 7.564 L 10.832 10.157 L 7.153 5.102 Z\" fill=\"rgb(255, 255, 255)\"></path><path d=\"M 16.898 0.215 L 18.012 0 L 21.878 5.617 L 20.353 5.917 L 19.566 4.718 L 17.179 5.186 L 16.926 6.591 L 15.438 6.881 Z M 17.769 1.9 L 17.394 3.951 L 18.892 3.66 Z\" fill=\"rgb(255, 255, 255)\"></path><path d=\"M 27.336 2.003 C 27.261 1.844 27.13 1.704 26.962 1.601 C 26.793 1.489 26.615 1.423 26.456 1.386 C 26.362 1.367 26.259 1.348 26.147 1.348 C 26.035 1.348 25.932 1.357 25.829 1.386 C 25.726 1.414 25.632 1.46 25.557 1.526 C 25.482 1.592 25.426 1.685 25.407 1.797 C 25.37 1.985 25.407 2.134 25.52 2.266 C 25.632 2.397 25.791 2.518 25.979 2.631 C 26.175 2.743 26.381 2.865 26.606 2.996 C 26.83 3.117 27.036 3.267 27.214 3.445 C 27.392 3.623 27.533 3.829 27.617 4.072 C 27.71 4.316 27.71 4.615 27.626 4.971 C 27.551 5.308 27.42 5.589 27.233 5.814 C 27.046 6.038 26.83 6.207 26.578 6.329 C 26.325 6.441 26.044 6.516 25.744 6.525 C 25.445 6.544 25.136 6.516 24.818 6.441 C 24.424 6.347 24.069 6.207 23.76 6.01 C 23.451 5.814 23.179 5.542 22.945 5.205 L 24.144 4.372 C 24.237 4.587 24.378 4.765 24.565 4.915 C 24.752 5.065 24.958 5.158 25.183 5.214 C 25.295 5.243 25.407 5.252 25.52 5.252 C 25.632 5.252 25.744 5.233 25.847 5.205 C 25.95 5.177 26.035 5.121 26.11 5.055 C 26.184 4.99 26.231 4.896 26.259 4.793 C 26.297 4.606 26.259 4.447 26.147 4.306 C 26.025 4.166 25.876 4.035 25.679 3.913 C 25.482 3.792 25.267 3.66 25.042 3.529 C 24.818 3.398 24.602 3.249 24.424 3.071 C 24.237 2.893 24.097 2.687 24.013 2.453 C 23.919 2.219 23.91 1.929 23.984 1.592 C 24.059 1.264 24.19 0.992 24.378 0.777 C 24.565 0.562 24.78 0.393 25.033 0.272 C 25.286 0.15 25.567 0.084 25.866 0.066 C 26.166 0.047 26.465 0.066 26.765 0.14 C 27.111 0.215 27.43 0.346 27.729 0.515 C 28.029 0.683 28.282 0.917 28.487 1.208 Z\" fill=\"rgb(255, 255, 255)\"></path><path d=\"M 36.398 7.115 L 35.191 5.795 L 36.09 4.971 L 39.422 8.622 L 38.524 9.446 L 37.325 8.126 L 33.609 11.524 L 32.682 10.504 L 36.398 7.106 Z\" fill=\"rgb(255, 255, 255)\"></path><path d=\"M 41.537 12.133 L 41.968 13.443 L 39.749 14.174 L 40.582 16.72 L 42.801 15.99 L 43.232 17.3 L 37.296 19.248 L 36.866 17.937 L 39.431 17.094 L 38.598 14.548 L 36.033 15.391 L 35.602 14.08 Z\" fill=\"rgb(255, 255, 255)\"></path><path d=\"M 43.317 24.191 L 43.149 25.314 L 36.567 27.083 L 36.801 25.548 L 38.187 25.211 L 38.543 22.805 L 37.307 22.094 L 37.532 20.596 Z M 41.435 24.443 L 39.629 23.404 L 39.404 24.911 L 41.435 24.434 Z\" fill=\"rgb(255, 255, 255)\"></path><path d=\"M 39.862 31.174 L 40.751 29.63 L 41.809 30.238 L 39.347 34.526 L 38.289 33.917 L 39.178 32.373 L 34.816 29.864 L 35.499 28.666 Z\" fill=\"rgb(255, 255, 255)\"></path><path d=\"M 32.419 40.817 L 30.463 41.529 L 27.72 38.186 L 27.701 38.186 L 27.729 42.521 L 25.782 43.232 L 23.647 37.353 L 24.939 36.885 L 26.578 41.397 L 26.596 41.397 L 26.503 36.323 L 27.495 35.968 L 30.613 39.937 L 30.631 39.937 L 28.993 35.425 L 30.285 34.957 L 32.419 40.836 Z\" fill=\"rgb(255, 255, 255)\"></path><path d=\"M 21.42 40.499 C 21.327 40.995 21.158 41.416 20.915 41.791 C 20.671 42.156 20.381 42.455 20.026 42.68 C 19.679 42.905 19.286 43.054 18.855 43.12 C 18.425 43.195 17.966 43.186 17.489 43.092 C 17.011 42.998 16.58 42.839 16.206 42.614 C 15.831 42.39 15.523 42.1 15.279 41.763 C 15.036 41.426 14.877 41.042 14.783 40.611 C 14.699 40.18 14.699 39.722 14.792 39.226 C 14.886 38.729 15.054 38.308 15.298 37.934 C 15.541 37.559 15.831 37.269 16.187 37.044 C 16.534 36.82 16.927 36.67 17.357 36.604 C 17.788 36.529 18.247 36.539 18.724 36.632 C 19.202 36.726 19.632 36.885 20.007 37.11 C 20.381 37.334 20.69 37.615 20.934 37.962 C 21.177 38.299 21.336 38.683 21.43 39.113 C 21.514 39.544 21.514 40.003 21.42 40.499 Z M 20.016 40.227 C 20.072 39.937 20.082 39.666 20.035 39.403 C 19.988 39.141 19.904 38.917 19.773 38.701 C 19.642 38.495 19.464 38.317 19.249 38.177 C 19.033 38.037 18.78 37.934 18.49 37.877 C 18.2 37.821 17.929 37.821 17.676 37.877 C 17.423 37.934 17.198 38.027 16.992 38.177 C 16.796 38.317 16.627 38.505 16.487 38.729 C 16.356 38.954 16.253 39.207 16.197 39.497 C 16.14 39.778 16.14 40.049 16.178 40.311 C 16.215 40.574 16.309 40.808 16.44 41.014 C 16.571 41.22 16.749 41.397 16.964 41.538 C 17.18 41.678 17.432 41.781 17.723 41.837 C 18.013 41.894 18.284 41.894 18.537 41.837 C 18.79 41.781 19.014 41.688 19.22 41.538 C 19.426 41.397 19.595 41.21 19.726 40.986 C 19.857 40.761 19.96 40.508 20.016 40.218 Z\" fill=\"rgb(255, 255, 255)\"></path><path d=\"M 10.587 40.564 L 9.352 39.591 L 10.671 35.415 L 10.662 35.415 L 6.889 37.653 L 5.729 36.745 L 11.626 33.431 L 12.497 34.114 L 10.587 40.574 Z\" fill=\"rgb(255, 255, 255)\"></path><path d=\"M 3.286 33.459 L 1.32 29.695 L 2.444 29.106 L 3.773 31.652 L 4.803 31.109 L 3.548 28.703 L 4.681 28.113 L 5.935 30.519 L 7.059 29.929 L 5.655 27.243 L 6.778 26.653 L 8.819 30.557 L 3.277 33.449 Z\" fill=\"rgb(255, 255, 255)\"></path><path d=\"M 19.116 17.909 C 19.818 18.33 20.52 18.761 21.232 19.182 C 22.599 19.987 23.975 20.792 25.342 21.588 C 25.398 21.616 25.454 21.644 25.501 21.747 C 24.799 21.953 24.087 22.15 23.338 22.365 C 23.816 23.03 24.284 23.676 24.761 24.35 C 24.303 24.687 23.863 25.005 23.395 25.342 C 22.917 24.677 22.44 24.031 21.953 23.367 C 21.522 24.003 21.101 24.612 20.642 25.286 C 20.099 22.786 19.575 20.352 19.051 17.918 C 19.069 17.918 19.088 17.918 19.107 17.909 Z\" fill=\"rgb(255, 255, 255)\"></path></g></svg>',svgContentId:9764567889,withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3BhY2UgR3JvdGVzay1yZWd1bGFy\",\"--framer-font-family\":'\"Space Grotesk\", \"Space Grotesk Placeholder\", sans-serif',\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"\\xa92025 Cuatro.dia Group\"})}),className:\"framer-1wfw6qz\",\"data-framer-name\":\"\\xa92025 Cuatro.dia Group\",fonts:[\"GF;Space Grotesk-regular\"],verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(Link,{href:{hash:\":GYlqRdtuR\",webPageId:\"L19Tvfnan\"},motionChild:true,nodeId:\"KyBt6E8yk\",openInNewTab:false,scopeId:\"L19Tvfnan\",smoothScroll:true,children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-1u2vzar framer-v9haje\",\"data-framer-name\":\"Layer_1\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:96,intrinsicWidth:35,svg:'<svg width=\"35\" height=\"96\" viewBox=\"0 0 35 96\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_736_956)\">\\n<path d=\"M17.5 0V95.311\" stroke=\"white\" stroke-width=\"1.5\" stroke-miterlimit=\"10\"/>\\n<path d=\"M34.6483 78.2169L26.074 86.7705L17.4996 95.311L8.92525 86.7705L0.337891 78.2169\" stroke=\"white\" stroke-width=\"1.5\" stroke-miterlimit=\"10\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_736_956\">\\n<rect width=\"35\" height=\"96\" fill=\"white\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})})]})})]}),isDisplayed1()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-mwqqyv hidden-1sc40i8 hidden-1c4cr81 hidden-1wyrj5b\",\"data-framer-name\":\"White elements & header footer\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-j3bhkz\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-bpor7i\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1b1xvrw\",\"data-framer-name\":\"Group\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:35,intrinsicWidth:35,svg:'<svg width=\"35\" height=\"35\" viewBox=\"0 0 35 35\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M17.4707 0V34.93\" stroke=\"white\" stroke-width=\"0.5\" stroke-miterlimit=\"10\"/>\\n<path d=\"M0 17.46H34.94\" stroke=\"white\" stroke-width=\"0.5\" stroke-miterlimit=\"10\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-h9ze2t\",\"data-framer-name\":\"Group 49\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:36,intrinsicWidth:35,svg:'<svg width=\"35\" height=\"36\" viewBox=\"0 0 35 36\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path opacity=\"0.85\" d=\"M17.4711 30.2499C24.0157 30.2499 29.3211 24.9445 29.3211 18.3999C29.3211 11.8554 24.0157 6.54993 17.4711 6.54993C10.9265 6.54993 5.62109 11.8554 5.62109 18.3999C5.62109 24.9445 10.9265 30.2499 17.4711 30.2499Z\" stroke=\"white\" stroke-width=\"0.5\" stroke-miterlimit=\"10\"/>\\n<path d=\"M0 18.3999H34.94\" stroke=\"white\" stroke-width=\"0.5\" stroke-miterlimit=\"10\"/>\\n<path d=\"M17.4707 0.929932V35.8699\" stroke=\"white\" stroke-width=\"0.5\" stroke-miterlimit=\"10\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1eg2e6g\",\"data-framer-name\":\"Group\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:35,intrinsicWidth:35,svg:'<svg width=\"35\" height=\"35\" viewBox=\"0 0 35 35\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M17.4707 0V34.93\" stroke=\"white\" stroke-width=\"0.5\" stroke-miterlimit=\"10\"/>\\n<path d=\"M0 17.46H34.94\" stroke=\"white\" stroke-width=\"0.5\" stroke-miterlimit=\"10\"/>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-k0t8zq\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-6a1pgy\",\"data-framer-name\":\"Group\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:35,intrinsicWidth:35,svg:'<svg width=\"35\" height=\"35\" viewBox=\"0 0 35 35\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M17.4707 0V34.93\" stroke=\"white\" stroke-width=\"0.5\" stroke-miterlimit=\"10\"/>\\n<path d=\"M0 17.46H34.94\" stroke=\"white\" stroke-width=\"0.5\" stroke-miterlimit=\"10\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-za2dlf\",\"data-framer-name\":\"Group 49\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:36,intrinsicWidth:35,svg:'<svg width=\"35\" height=\"36\" viewBox=\"0 0 35 36\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path opacity=\"0.85\" d=\"M17.4711 30.2499C24.0157 30.2499 29.3211 24.9445 29.3211 18.3999C29.3211 11.8554 24.0157 6.54993 17.4711 6.54993C10.9265 6.54993 5.62109 11.8554 5.62109 18.3999C5.62109 24.9445 10.9265 30.2499 17.4711 30.2499Z\" stroke=\"white\" stroke-width=\"0.5\" stroke-miterlimit=\"10\"/>\\n<path d=\"M0 18.3999H34.94\" stroke=\"white\" stroke-width=\"0.5\" stroke-miterlimit=\"10\"/>\\n<path d=\"M17.4707 0.929932V35.8699\" stroke=\"white\" stroke-width=\"0.5\" stroke-miterlimit=\"10\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-lwjuml\",\"data-framer-name\":\"Group\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:35,intrinsicWidth:35,svg:'<svg width=\"35\" height=\"35\" viewBox=\"0 0 35 35\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M17.4707 0V34.93\" stroke=\"white\" stroke-width=\"0.5\" stroke-miterlimit=\"10\"/>\\n<path d=\"M0 17.46H34.94\" stroke=\"white\" stroke-width=\"0.5\" stroke-miterlimit=\"10\"/>\\n</svg>\\n',withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1nv8j3e\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1mygmvi\",\"data-framer-name\":\"Frame 105\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-nh5b4h\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3BhY2UgR3JvdGVzay1yZWd1bGFy\",\"--framer-font-family\":'\"Space Grotesk\", \"Space Grotesk Placeholder\", sans-serif',\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"\\xa92025 Cuatro.dia Group\"})}),className:\"framer-13e8yj7\",\"data-framer-name\":\"\\xa92025 Cuatro.dia Group\",fonts:[\"GF;Space Grotesk-regular\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1hzz761\",\"data-framer-name\":\"Layer_1\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 44 44\"><g><path d=\"M 0 43.232 L 0 0 L 43.317 0 L 43.317 43.232 Z\" fill=\"transparent\"></path><path d=\"M 0 18.826 L 0.215 17.46 L 6.394 18.424 L 6.179 19.781 Z\" fill=\"rgb(255, 255, 255)\"></path><path d=\"M 1.273 13.294 L 2.274 11.487 C 2.518 11.047 2.799 10.663 3.117 10.326 C 3.435 9.989 3.782 9.727 4.165 9.558 C 4.549 9.39 4.961 9.315 5.401 9.334 C 5.841 9.352 6.319 9.502 6.815 9.783 C 7.255 10.026 7.601 10.326 7.845 10.682 C 8.088 11.037 8.247 11.421 8.322 11.833 C 8.397 12.245 8.387 12.666 8.294 13.106 C 8.21 13.546 8.05 13.968 7.826 14.37 L 6.73 16.336 Z M 6.29 14.511 L 6.637 13.883 C 6.796 13.603 6.908 13.331 6.983 13.06 C 7.058 12.788 7.077 12.535 7.049 12.283 C 7.011 12.039 6.918 11.805 6.759 11.58 C 6.599 11.365 6.365 11.169 6.056 10.991 C 5.785 10.841 5.532 10.766 5.27 10.757 C 5.017 10.747 4.774 10.794 4.559 10.888 C 4.334 10.991 4.128 11.131 3.931 11.328 C 3.744 11.524 3.576 11.749 3.435 11.992 L 3.042 12.704 L 6.281 14.511 Z\" fill=\"rgb(255, 255, 255)\"></path><path d=\"M 7.153 5.093 L 10.589 2.593 L 11.338 3.623 L 9.016 5.308 L 9.699 6.254 L 11.89 4.662 L 12.639 5.692 L 10.448 7.283 L 11.197 8.313 L 13.65 6.534 L 14.399 7.564 L 10.832 10.157 L 7.153 5.102 Z\" fill=\"rgb(255, 255, 255)\"></path><path d=\"M 16.898 0.215 L 18.012 0 L 21.878 5.617 L 20.353 5.917 L 19.566 4.718 L 17.179 5.186 L 16.926 6.591 L 15.438 6.881 Z M 17.769 1.9 L 17.394 3.951 L 18.892 3.66 Z\" fill=\"rgb(255, 255, 255)\"></path><path d=\"M 27.336 2.003 C 27.261 1.844 27.13 1.704 26.962 1.601 C 26.793 1.489 26.615 1.423 26.456 1.386 C 26.362 1.367 26.259 1.348 26.147 1.348 C 26.035 1.348 25.932 1.357 25.829 1.386 C 25.726 1.414 25.632 1.46 25.557 1.526 C 25.482 1.592 25.426 1.685 25.407 1.797 C 25.37 1.985 25.407 2.134 25.52 2.266 C 25.632 2.397 25.791 2.518 25.979 2.631 C 26.175 2.743 26.381 2.865 26.606 2.996 C 26.83 3.117 27.036 3.267 27.214 3.445 C 27.392 3.623 27.533 3.829 27.617 4.072 C 27.71 4.316 27.71 4.615 27.626 4.971 C 27.551 5.308 27.42 5.589 27.233 5.814 C 27.046 6.038 26.83 6.207 26.578 6.329 C 26.325 6.441 26.044 6.516 25.744 6.525 C 25.445 6.544 25.136 6.516 24.818 6.441 C 24.424 6.347 24.069 6.207 23.76 6.01 C 23.451 5.814 23.179 5.542 22.945 5.205 L 24.144 4.372 C 24.237 4.587 24.378 4.765 24.565 4.915 C 24.752 5.065 24.958 5.158 25.183 5.214 C 25.295 5.243 25.407 5.252 25.52 5.252 C 25.632 5.252 25.744 5.233 25.847 5.205 C 25.95 5.177 26.035 5.121 26.11 5.055 C 26.184 4.99 26.231 4.896 26.259 4.793 C 26.297 4.606 26.259 4.447 26.147 4.306 C 26.025 4.166 25.876 4.035 25.679 3.913 C 25.482 3.792 25.267 3.66 25.042 3.529 C 24.818 3.398 24.602 3.249 24.424 3.071 C 24.237 2.893 24.097 2.687 24.013 2.453 C 23.919 2.219 23.91 1.929 23.984 1.592 C 24.059 1.264 24.19 0.992 24.378 0.777 C 24.565 0.562 24.78 0.393 25.033 0.272 C 25.286 0.15 25.567 0.084 25.866 0.066 C 26.166 0.047 26.465 0.066 26.765 0.14 C 27.111 0.215 27.43 0.346 27.729 0.515 C 28.029 0.683 28.282 0.917 28.487 1.208 Z\" fill=\"rgb(255, 255, 255)\"></path><path d=\"M 36.398 7.115 L 35.191 5.795 L 36.09 4.971 L 39.422 8.622 L 38.524 9.446 L 37.325 8.126 L 33.609 11.524 L 32.682 10.504 L 36.398 7.106 Z\" fill=\"rgb(255, 255, 255)\"></path><path d=\"M 41.537 12.133 L 41.968 13.443 L 39.749 14.174 L 40.582 16.72 L 42.801 15.99 L 43.232 17.3 L 37.296 19.248 L 36.866 17.937 L 39.431 17.094 L 38.598 14.548 L 36.033 15.391 L 35.602 14.08 Z\" fill=\"rgb(255, 255, 255)\"></path><path d=\"M 43.317 24.191 L 43.149 25.314 L 36.567 27.083 L 36.801 25.548 L 38.187 25.211 L 38.543 22.805 L 37.307 22.094 L 37.532 20.596 Z M 41.435 24.443 L 39.629 23.404 L 39.404 24.911 L 41.435 24.434 Z\" fill=\"rgb(255, 255, 255)\"></path><path d=\"M 39.862 31.174 L 40.751 29.63 L 41.809 30.238 L 39.347 34.526 L 38.289 33.917 L 39.178 32.373 L 34.816 29.864 L 35.499 28.666 Z\" fill=\"rgb(255, 255, 255)\"></path><path d=\"M 32.419 40.817 L 30.463 41.529 L 27.72 38.186 L 27.701 38.186 L 27.729 42.521 L 25.782 43.232 L 23.647 37.353 L 24.939 36.885 L 26.578 41.397 L 26.596 41.397 L 26.503 36.323 L 27.495 35.968 L 30.613 39.937 L 30.631 39.937 L 28.993 35.425 L 30.285 34.957 L 32.419 40.836 Z\" fill=\"rgb(255, 255, 255)\"></path><path d=\"M 21.42 40.499 C 21.327 40.995 21.158 41.416 20.915 41.791 C 20.671 42.156 20.381 42.455 20.026 42.68 C 19.679 42.905 19.286 43.054 18.855 43.12 C 18.425 43.195 17.966 43.186 17.489 43.092 C 17.011 42.998 16.58 42.839 16.206 42.614 C 15.831 42.39 15.523 42.1 15.279 41.763 C 15.036 41.426 14.877 41.042 14.783 40.611 C 14.699 40.18 14.699 39.722 14.792 39.226 C 14.886 38.729 15.054 38.308 15.298 37.934 C 15.541 37.559 15.831 37.269 16.187 37.044 C 16.534 36.82 16.927 36.67 17.357 36.604 C 17.788 36.529 18.247 36.539 18.724 36.632 C 19.202 36.726 19.632 36.885 20.007 37.11 C 20.381 37.334 20.69 37.615 20.934 37.962 C 21.177 38.299 21.336 38.683 21.43 39.113 C 21.514 39.544 21.514 40.003 21.42 40.499 Z M 20.016 40.227 C 20.072 39.937 20.082 39.666 20.035 39.403 C 19.988 39.141 19.904 38.917 19.773 38.701 C 19.642 38.495 19.464 38.317 19.249 38.177 C 19.033 38.037 18.78 37.934 18.49 37.877 C 18.2 37.821 17.929 37.821 17.676 37.877 C 17.423 37.934 17.198 38.027 16.992 38.177 C 16.796 38.317 16.627 38.505 16.487 38.729 C 16.356 38.954 16.253 39.207 16.197 39.497 C 16.14 39.778 16.14 40.049 16.178 40.311 C 16.215 40.574 16.309 40.808 16.44 41.014 C 16.571 41.22 16.749 41.397 16.964 41.538 C 17.18 41.678 17.432 41.781 17.723 41.837 C 18.013 41.894 18.284 41.894 18.537 41.837 C 18.79 41.781 19.014 41.688 19.22 41.538 C 19.426 41.397 19.595 41.21 19.726 40.986 C 19.857 40.761 19.96 40.508 20.016 40.218 Z\" fill=\"rgb(255, 255, 255)\"></path><path d=\"M 10.587 40.564 L 9.352 39.591 L 10.671 35.415 L 10.662 35.415 L 6.889 37.653 L 5.729 36.745 L 11.626 33.431 L 12.497 34.114 L 10.587 40.574 Z\" fill=\"rgb(255, 255, 255)\"></path><path d=\"M 3.286 33.459 L 1.32 29.695 L 2.444 29.106 L 3.773 31.652 L 4.803 31.109 L 3.548 28.703 L 4.681 28.113 L 5.935 30.519 L 7.059 29.929 L 5.655 27.243 L 6.778 26.653 L 8.819 30.557 L 3.277 33.449 Z\" fill=\"rgb(255, 255, 255)\"></path><path d=\"M 19.116 17.909 C 19.818 18.33 20.52 18.761 21.232 19.182 C 22.599 19.987 23.975 20.792 25.342 21.588 C 25.398 21.616 25.454 21.644 25.501 21.747 C 24.799 21.953 24.087 22.15 23.338 22.365 C 23.816 23.03 24.284 23.676 24.761 24.35 C 24.303 24.687 23.863 25.005 23.395 25.342 C 22.917 24.677 22.44 24.031 21.953 23.367 C 21.522 24.003 21.101 24.612 20.642 25.286 C 20.099 22.786 19.575 20.352 19.051 17.918 C 19.069 17.918 19.088 17.918 19.107 17.909 Z\" fill=\"rgb(255, 255, 255)\"></path></g></svg>',svgContentId:11019317477,withExternalLayout:true})]}),/*#__PURE__*/_jsx(Link,{href:{hash:\":GYlqRdtuR\",webPageId:\"L19Tvfnan\"},motionChild:true,nodeId:\"ANtmZiEC4\",openInNewTab:false,scopeId:\"L19Tvfnan\",smoothScroll:true,children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-39ugbt framer-v9haje\",\"data-framer-name\":\"Layer_1\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:96,intrinsicWidth:35,svg:'<svg width=\"35\" height=\"96\" viewBox=\"0 0 35 96\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_736_956)\">\\n<path d=\"M17.5 0V95.311\" stroke=\"white\" stroke-width=\"1.5\" stroke-miterlimit=\"10\"/>\\n<path d=\"M34.6483 78.2169L26.074 86.7705L17.4996 95.311L8.92525 86.7705L0.337891 78.2169\" stroke=\"white\" stroke-width=\"1.5\" stroke-miterlimit=\"10\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_736_956\">\\n<rect width=\"35\" height=\"96\" fill=\"white\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})})]})})]}),isDisplayed2()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-wv3uq5 hidden-1c4cr81 hidden-1wyrj5b hidden-1jcley0\",\"data-framer-name\":\"White elements & header footer\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-123b4yx\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-kp01by\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-11k8flg\",\"data-framer-name\":\"Group\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:35,intrinsicWidth:35,svg:'<svg width=\"35\" height=\"35\" viewBox=\"0 0 35 35\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M17.4707 0V34.93\" stroke=\"white\" stroke-width=\"0.5\" stroke-miterlimit=\"10\"/>\\n<path d=\"M0 17.46H34.94\" stroke=\"white\" stroke-width=\"0.5\" stroke-miterlimit=\"10\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-156w8uw\",\"data-framer-name\":\"Group 49\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:36,intrinsicWidth:35,svg:'<svg width=\"35\" height=\"36\" viewBox=\"0 0 35 36\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path opacity=\"0.85\" d=\"M17.4711 30.2499C24.0157 30.2499 29.3211 24.9445 29.3211 18.3999C29.3211 11.8554 24.0157 6.54993 17.4711 6.54993C10.9265 6.54993 5.62109 11.8554 5.62109 18.3999C5.62109 24.9445 10.9265 30.2499 17.4711 30.2499Z\" stroke=\"white\" stroke-width=\"0.5\" stroke-miterlimit=\"10\"/>\\n<path d=\"M0 18.3999H34.94\" stroke=\"white\" stroke-width=\"0.5\" stroke-miterlimit=\"10\"/>\\n<path d=\"M17.4707 0.929932V35.8699\" stroke=\"white\" stroke-width=\"0.5\" stroke-miterlimit=\"10\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-fxppeb\",\"data-framer-name\":\"Group\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:35,intrinsicWidth:35,svg:'<svg width=\"35\" height=\"35\" viewBox=\"0 0 35 35\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M17.4707 0V34.93\" stroke=\"white\" stroke-width=\"0.5\" stroke-miterlimit=\"10\"/>\\n<path d=\"M0 17.46H34.94\" stroke=\"white\" stroke-width=\"0.5\" stroke-miterlimit=\"10\"/>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-gwthhh\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1njmd0f\",\"data-framer-name\":\"Group\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:35,intrinsicWidth:35,svg:'<svg width=\"35\" height=\"35\" viewBox=\"0 0 35 35\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M17.4707 0V34.93\" stroke=\"white\" stroke-width=\"0.5\" stroke-miterlimit=\"10\"/>\\n<path d=\"M0 17.46H34.94\" stroke=\"white\" stroke-width=\"0.5\" stroke-miterlimit=\"10\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1yy77c6\",\"data-framer-name\":\"Group 49\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:36,intrinsicWidth:35,svg:'<svg width=\"35\" height=\"36\" viewBox=\"0 0 35 36\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path opacity=\"0.85\" d=\"M17.4711 30.2499C24.0157 30.2499 29.3211 24.9445 29.3211 18.3999C29.3211 11.8554 24.0157 6.54993 17.4711 6.54993C10.9265 6.54993 5.62109 11.8554 5.62109 18.3999C5.62109 24.9445 10.9265 30.2499 17.4711 30.2499Z\" stroke=\"white\" stroke-width=\"0.5\" stroke-miterlimit=\"10\"/>\\n<path d=\"M0 18.3999H34.94\" stroke=\"white\" stroke-width=\"0.5\" stroke-miterlimit=\"10\"/>\\n<path d=\"M17.4707 0.929932V35.8699\" stroke=\"white\" stroke-width=\"0.5\" stroke-miterlimit=\"10\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-mwaah4\",\"data-framer-name\":\"Group\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:35,intrinsicWidth:35,svg:'<svg width=\"35\" height=\"35\" viewBox=\"0 0 35 35\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M17.4707 0V34.93\" stroke=\"white\" stroke-width=\"0.5\" stroke-miterlimit=\"10\"/>\\n<path d=\"M0 17.46H34.94\" stroke=\"white\" stroke-width=\"0.5\" stroke-miterlimit=\"10\"/>\\n</svg>\\n',withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1kxujx9\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1m98eu8\",\"data-framer-name\":\"Frame 105\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1um3pkl\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-frnouh\",\"data-framer-name\":\"Layer_1\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 47 47\"><g><path d=\"M 0 46.18 L 0 0 L 46.27 0 L 46.27 46.18 Z\" fill=\"transparent\"></path><path d=\"M 0 20.11 L 0.23 18.65 L 6.83 19.68 L 6.6 21.13 Z\" fill=\"rgb(255, 255, 255)\"></path><path d=\"M 1.359 14.2 L 2.429 12.27 C 2.689 11.8 2.989 11.39 3.329 11.03 C 3.669 10.67 4.039 10.39 4.449 10.21 C 4.859 10.03 5.299 9.95 5.769 9.97 C 6.239 9.99 6.749 10.15 7.279 10.45 C 7.749 10.71 8.119 11.03 8.379 11.41 C 8.639 11.79 8.809 12.2 8.889 12.64 C 8.969 13.08 8.959 13.53 8.859 14 C 8.769 14.47 8.599 14.92 8.359 15.35 L 7.189 17.45 Z M 6.719 15.5 L 7.089 14.83 C 7.259 14.53 7.379 14.24 7.459 13.95 C 7.539 13.66 7.559 13.39 7.529 13.12 C 7.489 12.86 7.389 12.61 7.219 12.37 C 7.049 12.14 6.799 11.93 6.469 11.74 C 6.179 11.58 5.909 11.5 5.629 11.49 C 5.359 11.48 5.099 11.53 4.869 11.63 C 4.629 11.74 4.409 11.89 4.199 12.1 C 3.999 12.31 3.819 12.55 3.669 12.81 L 3.249 13.57 L 6.709 15.5 Z\" fill=\"rgb(255, 255, 255)\"></path><path d=\"M 7.641 5.44 L 11.311 2.77 L 12.111 3.87 L 9.631 5.67 L 10.361 6.68 L 12.701 4.98 L 13.501 6.08 L 11.161 7.78 L 11.961 8.88 L 14.581 6.98 L 15.381 8.08 L 11.571 10.85 L 7.641 5.45 Z\" fill=\"rgb(255, 255, 255)\"></path><path d=\"M 18.05 0.23 L 19.24 0 L 23.37 6 L 21.74 6.32 L 20.9 5.04 L 18.35 5.54 L 18.08 7.04 L 16.49 7.35 Z M 18.98 2.03 L 18.58 4.22 L 20.18 3.91 Z\" fill=\"rgb(255, 255, 255)\"></path><path d=\"M 29.2 2.14 C 29.12 1.97 28.98 1.82 28.8 1.71 C 28.62 1.59 28.43 1.52 28.26 1.48 C 28.16 1.46 28.05 1.44 27.93 1.44 C 27.81 1.44 27.7 1.45 27.59 1.48 C 27.48 1.51 27.38 1.56 27.3 1.63 C 27.22 1.7 27.16 1.8 27.14 1.92 C 27.1 2.12 27.14 2.28 27.26 2.42 C 27.38 2.56 27.55 2.69 27.75 2.81 C 27.96 2.93 28.18 3.06 28.42 3.2 C 28.66 3.33 28.88 3.49 29.07 3.68 C 29.26 3.87 29.41 4.09 29.5 4.35 C 29.6 4.61 29.6 4.93 29.51 5.31 C 29.43 5.67 29.29 5.97 29.09 6.21 C 28.89 6.45 28.66 6.63 28.39 6.76 C 28.12 6.88 27.82 6.96 27.5 6.97 C 27.18 6.99 26.85 6.96 26.51 6.88 C 26.09 6.78 25.71 6.63 25.38 6.42 C 25.05 6.21 24.76 5.92 24.51 5.56 L 25.79 4.67 C 25.89 4.9 26.04 5.09 26.24 5.25 C 26.44 5.41 26.66 5.51 26.9 5.57 C 27.02 5.6 27.14 5.61 27.26 5.61 C 27.38 5.61 27.5 5.59 27.61 5.56 C 27.72 5.53 27.81 5.47 27.89 5.4 C 27.97 5.33 28.02 5.23 28.05 5.12 C 28.09 4.92 28.05 4.75 27.93 4.6 C 27.8 4.45 27.64 4.31 27.43 4.18 C 27.22 4.05 26.99 3.91 26.75 3.77 C 26.51 3.63 26.28 3.47 26.09 3.28 C 25.89 3.09 25.74 2.87 25.65 2.62 C 25.55 2.37 25.54 2.06 25.62 1.7 C 25.7 1.35 25.84 1.06 26.04 0.83 C 26.24 0.6 26.47 0.42 26.74 0.29 C 27.01 0.16 27.31 0.09 27.63 0.07 C 27.95 0.05 28.27 0.07 28.59 0.15 C 28.96 0.23 29.3 0.37 29.62 0.55 C 29.94 0.73 30.21 0.98 30.43 1.29 Z\" fill=\"rgb(255, 255, 255)\"></path><path d=\"M 38.88 7.6 L 37.59 6.19 L 38.55 5.31 L 42.11 9.21 L 41.15 10.09 L 39.87 8.68 L 35.9 12.31 L 34.91 11.22 L 38.88 7.59 Z\" fill=\"rgb(255, 255, 255)\"></path><path d=\"M 44.369 12.96 L 44.829 14.36 L 42.459 15.14 L 43.349 17.86 L 45.719 17.08 L 46.179 18.48 L 39.839 20.56 L 39.379 19.16 L 42.119 18.26 L 41.229 15.54 L 38.489 16.44 L 38.029 15.04 Z\" fill=\"rgb(255, 255, 255)\"></path><path d=\"M 46.27 25.84 L 46.09 27.04 L 39.06 28.93 L 39.31 27.29 L 40.791 26.93 L 41.17 24.36 L 39.85 23.6 L 40.09 22 Z M 44.26 26.11 L 42.33 25 L 42.09 26.61 L 44.26 26.1 Z\" fill=\"rgb(255, 255, 255)\"></path><path d=\"M 42.58 33.3 L 43.529 31.65 L 44.66 32.3 L 42.029 36.88 L 40.9 36.23 L 41.849 34.58 L 37.19 31.9 L 37.919 30.62 Z\" fill=\"rgb(255, 255, 255)\"></path><path d=\"M 34.63 43.6 L 32.54 44.36 L 29.61 40.79 L 29.59 40.79 L 29.62 45.42 L 27.54 46.18 L 25.26 39.9 L 26.64 39.4 L 28.39 44.22 L 28.41 44.22 L 28.31 38.8 L 29.37 38.42 L 32.7 42.66 L 32.72 42.66 L 30.97 37.84 L 32.35 37.34 L 34.63 43.62 Z\" fill=\"rgb(255, 255, 255)\"></path><path d=\"M 22.881 43.26 C 22.781 43.79 22.601 44.24 22.341 44.64 C 22.081 45.03 21.771 45.35 21.391 45.59 C 21.021 45.83 20.601 45.99 20.141 46.06 C 19.681 46.14 19.191 46.13 18.681 46.03 C 18.171 45.93 17.711 45.76 17.311 45.52 C 16.911 45.28 16.581 44.97 16.321 44.61 C 16.061 44.25 15.891 43.84 15.791 43.38 C 15.701 42.92 15.701 42.43 15.801 41.9 C 15.901 41.37 16.081 40.92 16.341 40.52 C 16.601 40.12 16.911 39.81 17.291 39.57 C 17.661 39.33 18.081 39.17 18.541 39.1 C 19.001 39.02 19.491 39.03 20.001 39.13 C 20.511 39.23 20.971 39.4 21.371 39.64 C 21.771 39.88 22.101 40.18 22.361 40.55 C 22.621 40.91 22.791 41.32 22.891 41.78 C 22.981 42.24 22.981 42.73 22.881 43.26 Z M 21.381 42.97 C 21.441 42.66 21.451 42.37 21.401 42.09 C 21.351 41.81 21.261 41.57 21.121 41.34 C 20.981 41.12 20.791 40.93 20.561 40.78 C 20.331 40.63 20.061 40.52 19.751 40.46 C 19.441 40.4 19.151 40.4 18.881 40.46 C 18.611 40.52 18.371 40.62 18.151 40.78 C 17.941 40.93 17.761 41.13 17.611 41.37 C 17.471 41.61 17.361 41.88 17.301 42.19 C 17.241 42.49 17.241 42.78 17.281 43.06 C 17.321 43.34 17.421 43.59 17.561 43.81 C 17.701 44.03 17.891 44.22 18.121 44.37 C 18.351 44.52 18.621 44.63 18.931 44.69 C 19.241 44.75 19.531 44.75 19.801 44.69 C 20.071 44.63 20.311 44.53 20.531 44.37 C 20.751 44.22 20.931 44.02 21.071 43.78 C 21.211 43.54 21.321 43.27 21.381 42.96 Z\" fill=\"rgb(255, 255, 255)\"></path><path d=\"M 11.309 43.33 L 9.989 42.29 L 11.399 37.83 L 11.389 37.83 L 7.359 40.22 L 6.119 39.25 L 12.419 35.71 L 13.349 36.44 L 11.309 43.34 Z\" fill=\"rgb(255, 255, 255)\"></path><path d=\"M 3.51 35.74 L 1.41 31.72 L 2.61 31.09 L 4.03 33.81 L 5.13 33.23 L 3.79 30.66 L 5 30.03 L 6.34 32.6 L 7.54 31.97 L 6.04 29.1 L 7.24 28.47 L 9.42 32.64 L 3.5 35.73 Z\" fill=\"rgb(255, 255, 255)\"></path><path d=\"M 20.42 19.13 C 21.17 19.58 21.92 20.04 22.68 20.49 C 24.14 21.35 25.61 22.21 27.07 23.06 C 27.13 23.09 27.19 23.12 27.24 23.23 C 26.49 23.45 25.73 23.66 24.93 23.89 C 25.44 24.6 25.94 25.29 26.45 26.01 C 25.96 26.37 25.49 26.71 24.99 27.07 C 24.48 26.36 23.97 25.67 23.45 24.96 C 22.99 25.64 22.54 26.29 22.05 27.01 C 21.47 24.34 20.91 21.74 20.35 19.14 C 20.37 19.14 20.39 19.14 20.41 19.13 Z\" fill=\"rgb(255, 255, 255)\"></path></g></svg>',svgContentId:9681237378,withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3BhY2UgR3JvdGVzay1yZWd1bGFy\",\"--framer-font-family\":'\"Space Grotesk\", \"Space Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"\\xa92025 Cuatro.dia Group\"})}),className:\"framer-1n6blap\",\"data-framer-name\":\"\\xa92025 Cuatro.dia Group\",fonts:[\"GF;Space Grotesk-regular\"],verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(Link,{href:{hash:\":GYlqRdtuR\",webPageId:\"L19Tvfnan\"},motionChild:true,nodeId:\"x4xykvD5T\",openInNewTab:false,scopeId:\"L19Tvfnan\",smoothScroll:true,children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-i4elbw framer-v9haje\",\"data-framer-name\":\"Layer_1\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:96,intrinsicWidth:35,svg:'<svg width=\"35\" height=\"96\" viewBox=\"0 0 35 96\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_736_956)\">\\n<path d=\"M17.5 0V95.311\" stroke=\"white\" stroke-width=\"1.5\" stroke-miterlimit=\"10\"/>\\n<path d=\"M34.6483 78.2169L26.074 86.7705L17.4996 95.311L8.92525 86.7705L0.337891 78.2169\" stroke=\"white\" stroke-width=\"1.5\" stroke-miterlimit=\"10\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_736_956\">\\n<rect width=\"35\" height=\"96\" fill=\"white\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})})]})})]}),isDisplayed3()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-150b86k hidden-1sc40i8 hidden-1c4cr81 hidden-1jcley0\",\"data-framer-name\":\"White elements & header footer\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-zvmw0e\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1rnmxk2\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1rstats\",\"data-framer-name\":\"Group\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:35,intrinsicWidth:35,svg:'<svg width=\"35\" height=\"35\" viewBox=\"0 0 35 35\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M17.4707 0V34.93\" stroke=\"white\" stroke-width=\"0.5\" stroke-miterlimit=\"10\"/>\\n<path d=\"M0 17.46H34.94\" stroke=\"white\" stroke-width=\"0.5\" stroke-miterlimit=\"10\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-4nnbn8\",\"data-framer-name\":\"Group 49\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:36,intrinsicWidth:35,svg:'<svg width=\"35\" height=\"36\" viewBox=\"0 0 35 36\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path opacity=\"0.85\" d=\"M17.4711 30.2499C24.0157 30.2499 29.3211 24.9445 29.3211 18.3999C29.3211 11.8554 24.0157 6.54993 17.4711 6.54993C10.9265 6.54993 5.62109 11.8554 5.62109 18.3999C5.62109 24.9445 10.9265 30.2499 17.4711 30.2499Z\" stroke=\"white\" stroke-width=\"0.5\" stroke-miterlimit=\"10\"/>\\n<path d=\"M0 18.3999H34.94\" stroke=\"white\" stroke-width=\"0.5\" stroke-miterlimit=\"10\"/>\\n<path d=\"M17.4707 0.929932V35.8699\" stroke=\"white\" stroke-width=\"0.5\" stroke-miterlimit=\"10\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-uohjd6\",\"data-framer-name\":\"Group\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:35,intrinsicWidth:35,svg:'<svg width=\"35\" height=\"35\" viewBox=\"0 0 35 35\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M17.4707 0V34.93\" stroke=\"white\" stroke-width=\"0.5\" stroke-miterlimit=\"10\"/>\\n<path d=\"M0 17.46H34.94\" stroke=\"white\" stroke-width=\"0.5\" stroke-miterlimit=\"10\"/>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-p5oqvu\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-fkjz3a\",\"data-framer-name\":\"Group\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:35,intrinsicWidth:35,svg:'<svg width=\"35\" height=\"35\" viewBox=\"0 0 35 35\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M17.4707 0V34.93\" stroke=\"white\" stroke-width=\"0.5\" stroke-miterlimit=\"10\"/>\\n<path d=\"M0 17.46H34.94\" stroke=\"white\" stroke-width=\"0.5\" stroke-miterlimit=\"10\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-19s6hwj\",\"data-framer-name\":\"Group 49\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:36,intrinsicWidth:35,svg:'<svg width=\"35\" height=\"36\" viewBox=\"0 0 35 36\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path opacity=\"0.85\" d=\"M17.4711 30.2499C24.0157 30.2499 29.3211 24.9445 29.3211 18.3999C29.3211 11.8554 24.0157 6.54993 17.4711 6.54993C10.9265 6.54993 5.62109 11.8554 5.62109 18.3999C5.62109 24.9445 10.9265 30.2499 17.4711 30.2499Z\" stroke=\"white\" stroke-width=\"0.5\" stroke-miterlimit=\"10\"/>\\n<path d=\"M0 18.3999H34.94\" stroke=\"white\" stroke-width=\"0.5\" stroke-miterlimit=\"10\"/>\\n<path d=\"M17.4707 0.929932V35.8699\" stroke=\"white\" stroke-width=\"0.5\" stroke-miterlimit=\"10\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-i0dgpq\",\"data-framer-name\":\"Group\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:35,intrinsicWidth:35,svg:'<svg width=\"35\" height=\"35\" viewBox=\"0 0 35 35\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M17.4707 0V34.93\" stroke=\"white\" stroke-width=\"0.5\" stroke-miterlimit=\"10\"/>\\n<path d=\"M0 17.46H34.94\" stroke=\"white\" stroke-width=\"0.5\" stroke-miterlimit=\"10\"/>\\n</svg>\\n',withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-8fjen4\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1d0cn87\",\"data-framer-name\":\"Frame 105\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ik1ers\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1jgsna4\",\"data-framer-name\":\"Layer_1\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 39 39\"><g><path d=\"M 0 38.32 L 0 0 L 38.394 0 L 38.394 38.32 Z\" fill=\"transparent\"></path><path d=\"M 0 16.687 L 0.191 15.476 L 5.667 16.33 L 5.477 17.533 Z\" fill=\"rgb(255, 255, 255)\"></path><path d=\"M 1.186 12.207 L 2.074 10.606 C 2.289 10.216 2.538 9.875 2.821 9.577 C 3.103 9.278 3.41 9.046 3.75 8.896 C 4.09 8.747 4.455 8.68 4.845 8.697 C 5.235 8.714 5.658 8.846 6.098 9.095 C 6.488 9.311 6.795 9.577 7.011 9.892 C 7.227 10.207 7.368 10.548 7.434 10.913 C 7.501 11.278 7.492 11.651 7.409 12.041 C 7.335 12.431 7.193 12.805 6.994 13.161 L 6.023 14.904 Z M 5.633 13.286 L 5.941 12.73 C 6.082 12.481 6.181 12.24 6.248 12 C 6.314 11.759 6.331 11.535 6.306 11.311 C 6.272 11.095 6.189 10.888 6.048 10.689 C 5.907 10.498 5.7 10.323 5.426 10.166 C 5.185 10.033 4.961 9.967 4.729 9.958 C 4.505 9.95 4.289 9.992 4.098 10.075 C 3.899 10.166 3.717 10.29 3.542 10.465 C 3.376 10.639 3.227 10.838 3.103 11.054 L 2.754 11.684 L 5.625 13.286 Z\" fill=\"rgb(255, 255, 255)\"></path><path d=\"M 6.34 4.514 L 9.385 2.299 L 10.049 3.211 L 7.991 4.705 L 8.597 5.543 L 10.539 4.132 L 11.203 5.045 L 9.261 6.456 L 9.925 7.369 L 12.099 5.792 L 12.763 6.705 L 9.601 9.003 L 6.34 4.522 Z\" fill=\"rgb(255, 255, 255)\"></path><path d=\"M 15.68 0.191 L 16.667 0 L 20.094 4.979 L 18.741 5.244 L 18.044 4.182 L 15.928 4.597 L 15.704 5.842 L 14.385 6.099 Z M 16.451 1.684 L 16.119 3.502 L 17.447 3.244 Z\" fill=\"rgb(255, 255, 255)\"></path><path d=\"M 24.23 1.776 C 24.163 1.635 24.047 1.51 23.898 1.419 C 23.748 1.319 23.591 1.261 23.45 1.228 C 23.367 1.212 23.275 1.195 23.176 1.195 C 23.076 1.195 22.985 1.203 22.894 1.228 C 22.802 1.253 22.719 1.294 22.653 1.353 C 22.587 1.411 22.537 1.494 22.52 1.593 C 22.487 1.759 22.52 1.892 22.62 2.008 C 22.719 2.124 22.86 2.232 23.026 2.332 C 23.201 2.431 23.383 2.539 23.582 2.655 C 23.782 2.763 23.964 2.896 24.122 3.054 C 24.279 3.211 24.404 3.394 24.479 3.61 C 24.562 3.825 24.562 4.091 24.487 4.406 C 24.42 4.705 24.304 4.954 24.138 5.153 C 23.972 5.352 23.782 5.502 23.557 5.609 C 23.333 5.709 23.085 5.775 22.819 5.784 C 22.553 5.8 22.28 5.775 21.997 5.709 C 21.649 5.626 21.334 5.502 21.06 5.327 C 20.786 5.153 20.545 4.912 20.338 4.614 L 21.4 3.875 C 21.483 4.066 21.607 4.224 21.773 4.356 C 21.939 4.489 22.122 4.572 22.321 4.622 C 22.421 4.647 22.52 4.655 22.62 4.655 C 22.719 4.655 22.819 4.639 22.91 4.614 C 23.002 4.589 23.076 4.539 23.143 4.481 C 23.209 4.423 23.25 4.34 23.275 4.249 C 23.309 4.083 23.275 3.942 23.176 3.817 C 23.068 3.693 22.935 3.576 22.761 3.469 C 22.587 3.361 22.396 3.244 22.197 3.128 C 21.997 3.012 21.807 2.879 21.649 2.722 C 21.483 2.564 21.359 2.382 21.284 2.174 C 21.201 1.967 21.193 1.709 21.259 1.411 C 21.325 1.12 21.442 0.88 21.607 0.689 C 21.773 0.498 21.964 0.349 22.188 0.241 C 22.412 0.133 22.661 0.075 22.927 0.058 C 23.192 0.042 23.458 0.058 23.723 0.124 C 24.03 0.191 24.313 0.307 24.578 0.456 C 24.844 0.606 25.068 0.813 25.25 1.07 Z\" fill=\"rgb(255, 255, 255)\"></path><path d=\"M 32.262 6.306 L 31.192 5.136 L 31.988 4.406 L 34.943 7.642 L 34.146 8.373 L 33.084 7.203 L 29.79 10.215 L 28.968 9.31 L 32.262 6.298 Z\" fill=\"rgb(255, 255, 255)\"></path><path d=\"M 36.817 10.754 L 37.199 11.916 L 35.232 12.563 L 35.971 14.82 L 37.937 14.173 L 38.319 15.334 L 33.058 17.06 L 32.676 15.899 L 34.95 15.152 L 34.212 12.895 L 31.938 13.642 L 31.556 12.48 Z\" fill=\"rgb(255, 255, 255)\"></path><path d=\"M 40.057 22.378 L 39.907 23.374 L 34.074 24.942 L 34.282 23.581 L 35.51 23.282 L 35.825 21.15 L 34.73 20.519 L 34.929 19.191 Z M 38.389 22.602 L 36.787 21.681 L 36.588 23.017 L 38.389 22.594 Z\" fill=\"rgb(255, 255, 255)\"></path><path d=\"M 35.332 27.632 L 36.12 26.263 L 37.058 26.802 L 34.876 30.603 L 33.938 30.063 L 34.726 28.694 L 30.859 26.47 L 31.465 25.408 Z\" fill=\"rgb(255, 255, 255)\"></path><path d=\"M 28.735 36.179 L 27.001 36.809 L 24.57 33.847 L 24.553 33.847 L 24.578 37.689 L 22.852 38.32 L 20.96 33.109 L 22.105 32.694 L 23.557 36.693 L 23.574 36.693 L 23.491 32.196 L 24.371 31.88 L 27.134 35.399 L 27.15 35.399 L 25.698 31.399 L 26.843 30.984 L 28.735 36.195 Z\" fill=\"rgb(255, 255, 255)\"></path><path d=\"M 19.655 37.558 C 19.572 37.998 19.423 38.371 19.207 38.703 C 18.992 39.027 18.734 39.292 18.419 39.492 C 18.112 39.691 17.763 39.823 17.382 39.882 C 17 39.948 16.593 39.94 16.17 39.857 C 15.747 39.774 15.365 39.633 15.033 39.433 C 14.702 39.234 14.428 38.977 14.212 38.678 C 13.996 38.38 13.855 38.039 13.772 37.658 C 13.698 37.276 13.698 36.869 13.781 36.43 C 13.863 35.99 14.013 35.616 14.229 35.285 C 14.444 34.953 14.702 34.695 15.017 34.496 C 15.324 34.297 15.672 34.164 16.054 34.106 C 16.436 34.04 16.842 34.048 17.266 34.131 C 17.689 34.214 18.071 34.355 18.402 34.554 C 18.734 34.753 19.008 35.002 19.224 35.309 C 19.44 35.608 19.581 35.948 19.664 36.33 C 19.738 36.712 19.738 37.118 19.655 37.558 Z M 18.411 37.318 C 18.461 37.06 18.469 36.82 18.427 36.587 C 18.386 36.355 18.311 36.156 18.195 35.965 C 18.079 35.782 17.921 35.625 17.73 35.5 C 17.539 35.376 17.315 35.285 17.058 35.235 C 16.801 35.185 16.56 35.185 16.336 35.235 C 16.112 35.285 15.913 35.368 15.731 35.5 C 15.556 35.625 15.407 35.791 15.282 35.99 C 15.166 36.189 15.075 36.413 15.025 36.67 C 14.975 36.919 14.975 37.16 15.009 37.392 C 15.042 37.625 15.125 37.832 15.241 38.015 C 15.357 38.197 15.515 38.355 15.706 38.479 C 15.896 38.604 16.121 38.695 16.378 38.745 C 16.635 38.795 16.876 38.795 17.1 38.745 C 17.324 38.695 17.523 38.612 17.705 38.479 C 17.888 38.355 18.037 38.189 18.153 37.99 C 18.27 37.79 18.361 37.566 18.411 37.309 Z\" fill=\"rgb(255, 255, 255)\"></path><path d=\"M 9.384 35.955 L 8.289 35.092 L 9.459 31.391 L 9.451 31.391 L 6.107 33.374 L 5.078 32.569 L 10.305 29.632 L 11.077 30.237 L 9.384 35.963 Z\" fill=\"rgb(255, 255, 255)\"></path><path d=\"M 2.913 29.657 L 1.17 26.321 L 2.166 25.798 L 3.344 28.055 L 4.257 27.574 L 3.145 25.441 L 4.149 24.919 L 5.261 27.051 L 6.257 26.528 L 5.012 24.147 L 6.008 23.624 L 7.817 27.084 L 2.904 29.648 Z\" fill=\"rgb(255, 255, 255)\"></path><path d=\"M 16.944 15.874 C 17.566 16.247 18.189 16.629 18.819 17.002 C 20.031 17.716 21.251 18.43 22.462 19.135 C 22.512 19.16 22.562 19.185 22.603 19.276 C 21.981 19.459 21.35 19.633 20.686 19.824 C 21.109 20.413 21.524 20.985 21.948 21.583 C 21.541 21.881 21.151 22.164 20.736 22.462 C 20.313 21.873 19.89 21.301 19.458 20.711 C 19.076 21.276 18.703 21.815 18.296 22.413 C 17.815 20.197 17.351 18.04 16.886 15.882 C 16.902 15.882 16.919 15.882 16.936 15.874 Z\" fill=\"rgb(255, 255, 255)\"></path></g></svg>',svgContentId:8869691709,withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3BhY2UgR3JvdGVzay1yZWd1bGFy\",\"--framer-font-family\":'\"Space Grotesk\", \"Space Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"\\xa92025 Cuatro.dia Group\"})}),className:\"framer-ppel2t\",\"data-framer-name\":\"\\xa92025 Cuatro.dia Group\",fonts:[\"GF;Space Grotesk-regular\"],verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(Link,{href:{hash:\":GYlqRdtuR\",webPageId:\"L19Tvfnan\"},motionChild:true,nodeId:\"B174pBSf5\",openInNewTab:false,scopeId:\"L19Tvfnan\",smoothScroll:true,children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-17ehuyb framer-v9haje\",\"data-framer-name\":\"Layer_1\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:96,intrinsicWidth:35,svg:'<svg width=\"35\" height=\"96\" viewBox=\"0 0 35 96\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_736_956)\">\\n<path d=\"M17.5 0V95.311\" stroke=\"white\" stroke-width=\"1.5\" stroke-miterlimit=\"10\"/>\\n<path d=\"M34.6483 78.2169L26.074 86.7705L17.4996 95.311L8.92525 86.7705L0.337891 78.2169\" stroke=\"white\" stroke-width=\"1.5\" stroke-miterlimit=\"10\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_736_956\">\\n<rect width=\"35\" height=\"96\" fill=\"white\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})})]})})]}),isDisplayed1()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-8g0tmd hidden-1sc40i8 hidden-1c4cr81 hidden-1wyrj5b\",\"data-framer-name\":\"Overlay Filter\"}),isDisplayed4()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-lm2dk1 hidden-1sc40i8\",\"data-framer-name\":\"Overlay Filter\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1x4u55y\",\"data-framer-name\":\"Overlay Filter\"})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-l4nwlj\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1xgcejn\",\"data-framer-name\":\"Frame 144\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eqeunS4q0:{effect:textEffect1}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3BhY2UgR3JvdGVzay1yZWd1bGFy\",\"--framer-font-family\":'\"Space Grotesk\", \"Space Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Introduction\"})}),className:\"framer-1wrvvsf\",\"data-framer-name\":\"Introduction\",effect:textEffect,fonts:[\"GF;Space Grotesk-regular\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eqeunS4q0:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3BhY2UgR3JvdGVzay03MDA=\",\"--framer-font-family\":'\"Space Grotesk\", \"Space Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"We Are a \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3BhY2UgR3JvdGVzay03MDA=\",\"--framer-font-family\":'\"Space Grotesk\", \"Space Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Multidisciplinary Creative Powerhouse Who Transform Challenges Into Dynamic Visual Stories\"})]}),effect:textEffect3},EszxHZDpT:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3BhY2UgR3JvdGVzay03MDA=\",\"--framer-font-family\":'\"Space Grotesk\", \"Space Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"64px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"We Are a \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3BhY2UgR3JvdGVzay03MDA=\",\"--framer-font-family\":'\"Space Grotesk\", \"Space Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"64px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Multidisciplinary Creative Powerhouse Who Transform Challenges Into Dynamic Visual Stories\"})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3BhY2UgR3JvdGVzay03MDA=\",\"--framer-font-family\":'\"Space Grotesk\", \"Space Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"64px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"We Are a Multidisciplinary Creative Powerhouse Who Transform Challenges Into Dynamic Visual Stories\"})}),className:\"framer-9ru4wb\",\"data-framer-name\":\"We Are a Multidisciplinary Creative Powerhouse Who Transform Challenges Into Dynamic Visual Stories\",effect:textEffect2,fonts:[\"GF;Space Grotesk-700\"],verticalAlignment:\"center\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-95jmec\",\"data-framer-name\":\"Highlight\",id:elementId,ref:ref1,children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__spring:{bounce:0,damping:60,delay:0,duration:2,durationBasedSpring:true,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:207}},{ref:ref1,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:1,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3BhY2UgR3JvdGVzay1yZWd1bGFy\",\"--framer-font-family\":'\"Space Grotesk\", \"Space Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Highlighted Works\"})}),className:\"framer-1gdu7mc\",\"data-framer-name\":\"Introduction\",fonts:[\"GF;Space Grotesk-regular\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eqeunS4q0:{width:`calc(${componentViewport?.width||\"100vw\"} - 48px)`,y:(componentViewport?.y||0)+0+0+0+1e3+120+448+0+176},EszxHZDpT:{width:`calc(${componentViewport?.width||\"100vw\"} - 88px)`,y:(componentViewport?.y||0)+0+0+0+1e3+296+1168+0+176},H7_WF9cnz:{y:(componentViewport?.y||0)+0+0+0+1e3+180+868+0+176}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:669,y:(componentViewport?.y||0)+0+0+0+1e3+296+864+0+176,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:.8,skewX:0,skewY:0,x:0,y:240}},{ref:ref1,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-zi1zpo-container\",nodeId:\"TCu3ABOP7\",rendersWithMotion:true,scopeId:\"L19Tvfnan\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eqeunS4q0:{style:{width:\"100%\"},variant:\"IO7aG2at6\"},EszxHZDpT:{style:{width:\"100%\"},variant:\"N139hodEO\"},H7_WF9cnz:{variant:\"rluD2avkz\"}},children:/*#__PURE__*/_jsx(Carousel,{height:\"100%\",id:\"TCu3ABOP7\",layoutId:\"TCu3ABOP7\",variant:\"GomfNJBgx\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eqeunS4q0:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+1e3+1),pixelHeight:2016,pixelWidth:1920,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/hbYb86IYiSk93WlwNkXtUyNNEQ.png\",srcSet:\"https://framerusercontent.com/images/hbYb86IYiSk93WlwNkXtUyNNEQ.png?scale-down-to=1024 975w,https://framerusercontent.com/images/hbYb86IYiSk93WlwNkXtUyNNEQ.png 1920w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+1e3+0),pixelHeight:2016,pixelWidth:1920,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/hbYb86IYiSk93WlwNkXtUyNNEQ.png\",srcSet:\"https://framerusercontent.com/images/hbYb86IYiSk93WlwNkXtUyNNEQ.png?scale-down-to=1024 975w,https://framerusercontent.com/images/hbYb86IYiSk93WlwNkXtUyNNEQ.png 1920w\"},className:\"framer-13k0pjr\",\"data-framer-name\":\"BG Highlights 1\",id:elementId1,ref:ref2})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-15xtl7g\",\"data-framer-name\":\"BG offwhite\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-d6yogq\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1bq90hy\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-kk6e5x\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eqeunS4q0:{effect:textEffect1}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3BhY2UgR3JvdGVzay1yZWd1bGFy\",\"--framer-font-family\":'\"Space Grotesk\", \"Space Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"rgb(8, 0, 36)\"},children:\"Watch\"})}),className:\"framer-tocefr\",\"data-framer-name\":\"Watch\",effect:textEffect,fonts:[\"GF;Space Grotesk-regular\"],verticalAlignment:\"center\",withExternalLayout:true})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-g6ogje\",\"data-framer-name\":\"introducing our new\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eqeunS4q0:{__framer__animate:{transition:transition4},__framer__exit:animation5},H7_WF9cnz:{__framer__animate:{transition:transition5},__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-90zu0t\",\"data-border\":true,\"data-framer-name\":\"Ellipse 4\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eqeunS4q0:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7U3BhY2UgR3JvdGVzay1yZWd1bGFy\",\"--framer-font-family\":'\"Space Grotesk\", \"Space Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-text-color\":\"rgb(8, 0, 36)\"},children:[\"Introducing Our New\",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7U3BhY2UgR3JvdGVzay03MDA=\",\"--framer-font-weight\":\"700\"},children:\" Brand Architecture\"})]})}),effect:textEffect4}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7U3BhY2UgR3JvdGVzay1yZWd1bGFy\",\"--framer-font-family\":'\"Space Grotesk\", \"Space Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"84px\",\"--framer-text-color\":\"rgb(8, 0, 36)\"},children:[\"Introducing Our New\",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7U3BhY2UgR3JvdGVzay03MDA=\",\"--framer-font-weight\":\"700\"},children:\" Brand Architecture\"})]})}),className:\"framer-1p6qxn1\",\"data-framer-name\":\"Introducing Our New Brand Architecture\",effect:textEffect2,fonts:[\"GF;Space Grotesk-regular\",\"GF;Space Grotesk-700\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eqeunS4q0:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1110,intrinsicWidth:1984,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+2677+184+0+0+340),pixelHeight:1051,pixelWidth:1870,sizes:\"349px\",src:\"https://framerusercontent.com/images/8k3BhOm8OYPC8Uh5RPS5pBrpTlQ.png\",srcSet:\"https://framerusercontent.com/images/8k3BhOm8OYPC8Uh5RPS5pBrpTlQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/8k3BhOm8OYPC8Uh5RPS5pBrpTlQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/8k3BhOm8OYPC8Uh5RPS5pBrpTlQ.png 1870w\"}},EszxHZDpT:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1110,intrinsicWidth:1984,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+3609+184+0+0+690),pixelHeight:1051,pixelWidth:1870,sizes:\"756px\",src:\"https://framerusercontent.com/images/8k3BhOm8OYPC8Uh5RPS5pBrpTlQ.png\",srcSet:\"https://framerusercontent.com/images/8k3BhOm8OYPC8Uh5RPS5pBrpTlQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/8k3BhOm8OYPC8Uh5RPS5pBrpTlQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/8k3BhOm8OYPC8Uh5RPS5pBrpTlQ.png 1870w\"}},H7_WF9cnz:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1110,intrinsicWidth:1984,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+3253+184+133.5+0+405),pixelHeight:1051,pixelWidth:1870,sizes:\"1077px\",src:\"https://framerusercontent.com/images/8k3BhOm8OYPC8Uh5RPS5pBrpTlQ.png\",srcSet:\"https://framerusercontent.com/images/8k3BhOm8OYPC8Uh5RPS5pBrpTlQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/8k3BhOm8OYPC8Uh5RPS5pBrpTlQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/8k3BhOm8OYPC8Uh5RPS5pBrpTlQ.png 1870w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__spring:{bounce:.2,damping:80,delay:0,duration:.3,durationBasedSpring:true,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.1,skewX:0,skewY:0,x:0,y:0}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:.92,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:1110,intrinsicWidth:1984,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+3405+184+0+0+405),pixelHeight:1051,pixelWidth:1870,sizes:\"1393px\",src:\"https://framerusercontent.com/images/8k3BhOm8OYPC8Uh5RPS5pBrpTlQ.png\",srcSet:\"https://framerusercontent.com/images/8k3BhOm8OYPC8Uh5RPS5pBrpTlQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/8k3BhOm8OYPC8Uh5RPS5pBrpTlQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/8k3BhOm8OYPC8Uh5RPS5pBrpTlQ.png 1870w\"},className:\"framer-vzaxk4\",\"data-framer-name\":\"Video Introduction\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eqeunS4q0:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7U3BhY2UgR3JvdGVzay1yZWd1bGFy\",\"--framer-font-family\":'\"Space Grotesk\", \"Space Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-text-color\":\"rgb(8, 0, 36)\"},children:[\"The adventure we\u2019ve journeyed through over 11 years has manifested our courage and pushes us further. Envisioning our future and gives birth to our \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7U3BhY2UgR3JvdGVzay03MDA=\",\"--framer-font-weight\":\"700\"},children:\"new creative-branches.\"})]})}),effect:textEffect6}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7U3BhY2UgR3JvdGVzay1yZWd1bGFy\",\"--framer-font-family\":'\"Space Grotesk\", \"Space Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-text-color\":\"rgb(8, 0, 36)\"},children:[\"The adventure we\u2019ve journeyed through over 11 years has manifested our courage and pushes us further. Envisioning our future and gives birth to our \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7U3BhY2UgR3JvdGVzay03MDA=\",\"--framer-font-weight\":\"700\"},children:\"new creative-branches.\"})]})}),className:\"framer-d82d5c\",\"data-framer-name\":\"The adventure we\u2019ve journeyed through has manifested our courage and pushes us further. Envisioning our future and gives birth to our new creative-branches.\",effect:textEffect5,fonts:[\"GF;Space Grotesk-regular\",\"GF;Space Grotesk-700\"],id:elementId2,ref:ref3,verticalAlignment:\"top\",withExternalLayout:true})}),isDisplayed5()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-4ptd1v hidden-1c4cr81 hidden-1wyrj5b\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-18leg1b\",\"data-framer-name\":\"Houses stack\",children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:true,__framer__enter:animation8,__framer__exit:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-tkhuih\",\"data-framer-name\":\"Houses\",id:elementId3,ref:ref4,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-v6xqmc\",\"data-framer-name\":\"Group\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:186,intrinsicWidth:268,svg:'<svg width=\"268\" height=\"186\" viewBox=\"0 0 268 186\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M83.7181 183.858C83.0221 185.121 81.7737 185.832 79.7146 185.832C76.7442 185.832 75.1084 184.052 75.1084 180.773V179.812C75.1084 176.497 76.8232 174.675 79.7935 174.675C82.4768 174.675 84.0266 176.016 84.3136 178.729H82.2472C82.1109 177.251 81.3432 176.454 79.7935 176.454C78.0285 176.454 77.1245 177.631 77.1245 179.934V180.673C77.1245 182.768 78.0429 183.959 79.8078 183.959C81.4221 183.959 82.1253 183.112 82.2616 181.577H84.371C84.292 182.467 84.0696 183.22 83.7252 183.866L83.7181 183.858Z\" fill=\"#020200\"/>\\n<path d=\"M85.7842 176.943H87.3841L87.6424 178.973C87.9868 177.545 88.8765 176.864 90.5195 176.864H91.1078V178.865H90.2469C89.5581 178.865 89.0415 178.952 88.6828 179.138C87.9581 179.483 87.7357 180.236 87.7357 181.592V185.595H85.7914V176.935L85.7842 176.943Z\" fill=\"#020200\"/>\\n<path d=\"M96.0943 185.832C93.1742 185.832 91.7393 184.146 91.7393 181.462V181.254C91.7393 180.322 91.9186 179.554 92.2845 178.858C93.0092 177.502 94.3365 176.734 96.1589 176.734C97.6512 176.734 98.7059 177.244 99.3947 178.076C100.083 178.901 100.385 179.977 100.385 181.089V182.008H93.698C93.863 183.421 94.7383 184.203 96.1661 184.203C97.2207 184.203 97.8378 183.794 98.1391 183.041H100.263C99.7678 184.806 98.3687 185.825 96.0871 185.825L96.0943 185.832ZM93.7123 180.451H98.4117C98.2754 179.124 97.5508 178.298 96.1661 178.298C94.7813 178.298 93.9347 179.081 93.7123 180.451Z\" fill=\"#020200\"/>\\n<path d=\"M104.245 185.832C102.365 185.832 101.411 184.928 101.411 183.514C101.411 182.553 101.834 181.828 102.545 181.391C102.789 181.226 103.04 181.104 103.284 181.032C103.793 180.853 104.446 180.731 105.529 180.566C107.079 180.372 107.696 180.157 107.696 179.454C107.696 178.75 107.23 178.277 105.874 178.277C104.446 178.277 103.793 178.894 103.736 180.006H101.705C101.842 178.033 103.284 176.734 105.773 176.734C106.72 176.734 107.445 176.856 108.019 177.115C109.145 177.595 109.597 178.514 109.597 179.769V185.617H107.998L107.789 183.888C107.201 185.014 106.039 185.846 104.252 185.846L104.245 185.832ZM106.398 183.916C107.244 183.392 107.711 182.517 107.711 181.685V181.219C107.352 181.477 106.749 181.656 105.96 181.778C104.905 181.943 104.482 182.065 104.08 182.323C103.736 182.553 103.571 182.854 103.571 183.227C103.571 183.952 104.023 184.311 104.927 184.311C105.501 184.311 105.981 184.175 106.405 183.916H106.398Z\" fill=\"#020200\"/>\\n<path d=\"M115.194 185.602C114.383 185.602 113.744 185.48 113.328 185.286C112.453 184.848 112.18 183.901 112.18 182.136V178.685H110.494V177.014H111.262C111.549 177.014 111.743 176.985 111.879 176.92C112.166 176.784 112.252 176.454 112.302 175.744C112.317 175.371 112.331 174.854 112.331 174.596H114.017V176.927H116.306V178.678H114.017V181.799C114.017 182.373 114.06 182.796 114.139 183.083C114.275 183.657 114.727 183.758 115.689 183.758H116.306V185.595H115.194V185.602Z\" fill=\"#020200\"/>\\n<path d=\"M117.453 174.697C117.453 173.735 117.891 173.398 118.766 173.398C119.641 173.398 120.079 173.728 120.079 174.697C120.079 175.665 119.656 176.01 118.766 176.01C117.819 176.01 117.453 175.694 117.453 174.697ZM117.74 176.942H119.742V185.602H117.74V176.942Z\" fill=\"#020200\"/>\\n<path d=\"M120.74 176.942H122.806L125.052 183.148L127.383 176.942H129.464L125.905 185.602H124.14L120.732 176.942H120.74Z\" fill=\"#020200\"/>\\n<path d=\"M134.027 185.832C131.107 185.832 129.672 184.146 129.672 181.462V181.254C129.672 180.322 129.851 179.554 130.217 178.858C130.942 177.502 132.269 176.734 134.092 176.734C135.584 176.734 136.639 177.244 137.327 178.076C138.023 178.901 138.325 179.977 138.325 181.089V182.008H131.638C131.803 183.421 132.678 184.203 134.106 184.203C135.161 184.203 135.778 183.794 136.079 183.041H138.203C137.708 184.806 136.301 185.825 134.027 185.825V185.832ZM131.645 180.451H136.344C136.208 179.124 135.483 178.298 134.099 178.298C132.714 178.298 131.867 179.081 131.645 180.451Z\" fill=\"#020200\"/>\\n<path d=\"M145.916 180.737V185.601H144.954V174.933H145.916V179.811H152.107V174.933H153.054V185.601H152.107V180.737H145.916Z\" fill=\"#020200\"/>\\n<path d=\"M155.293 181.448V181.283C155.293 180.336 155.472 179.532 155.853 178.872C156.606 177.516 157.905 176.806 159.54 176.806C160.365 176.806 161.09 176.985 161.743 177.351C163.042 178.061 163.795 179.403 163.795 181.283V181.448C163.795 182.352 163.63 183.119 163.286 183.779C162.59 185.092 161.313 185.81 159.548 185.81C156.836 185.81 155.3 184.167 155.3 181.441L155.293 181.448ZM162.841 181.433V181.297C162.841 180.544 162.704 179.927 162.417 179.353C161.829 178.269 160.825 177.638 159.555 177.638C158.923 177.638 158.349 177.774 157.869 178.076C156.871 178.664 156.269 179.747 156.269 181.297V181.433C156.269 183.586 157.46 184.956 159.54 184.956C161.621 184.956 162.841 183.614 162.841 181.433Z\" fill=\"#020200\"/>\\n<path d=\"M169.119 185.796C166.923 185.796 165.818 184.332 165.818 182.137V177.042H166.765V181.95C166.765 183.715 167.533 184.935 169.37 184.935C169.958 184.935 170.468 184.784 170.905 184.497C171.795 183.894 172.29 182.84 172.29 181.484V177.042H173.237V185.602H172.426L172.34 183.464C171.917 184.877 170.79 185.796 169.119 185.796Z\" fill=\"#020200\"/>\\n<path d=\"M175.117 182.818H176.143C176.2 183.299 176.386 183.722 176.638 184.038C177.212 184.669 178.073 184.97 179.077 184.97C179.723 184.97 180.225 184.899 180.598 184.712C181.366 184.368 181.681 183.794 181.681 183.162C181.681 182.753 181.531 182.452 181.272 182.258C180.727 181.849 179.823 181.713 178.833 181.584C178.022 181.462 177.204 181.326 176.559 181.01C175.899 180.694 175.49 180.163 175.49 179.259C175.49 178.836 175.597 178.434 175.82 178.068C176.257 177.301 177.204 176.806 178.74 176.806C180.921 176.806 182.234 177.846 182.428 179.46H181.452C181.315 178.269 180.29 177.609 178.74 177.609C178.151 177.609 177.699 177.681 177.355 177.853C176.695 178.155 176.437 178.678 176.437 179.224C176.437 179.632 176.587 179.934 176.846 180.128C177.391 180.537 178.324 180.673 179.285 180.809C180.117 180.931 180.914 181.082 181.574 181.383C182.22 181.699 182.628 182.244 182.628 183.148C182.628 183.629 182.507 184.066 182.248 184.475C181.768 185.301 180.727 185.831 179.055 185.831C176.838 185.831 175.332 184.834 175.109 182.832L175.117 182.818Z\" fill=\"#020200\"/>\\n<path d=\"M188.512 185.81C185.714 185.81 184.25 184.139 184.25 181.455V181.305C184.25 180.401 184.415 179.633 184.774 178.937C185.484 177.581 186.776 176.799 188.54 176.799C189.43 176.799 190.169 176.993 190.772 177.373C191.977 178.14 192.594 179.482 192.594 181.125V181.592H185.197C185.24 183.687 186.402 184.978 188.526 184.978C190.018 184.978 191.088 184.347 191.461 183.048H192.472C192.006 184.87 190.514 185.803 188.512 185.803V185.81ZM185.211 180.81H191.661C191.554 178.851 190.456 177.588 188.54 177.588C186.625 177.588 185.376 178.836 185.211 180.81Z\" fill=\"#020200\"/>\\n<path d=\"M12.0334 20.3841C12.418 20.9251 12.6331 21.2119 12.8351 21.5118C17.6915 28.6692 22.5088 35.8527 27.4042 42.9906C31.2893 48.6618 34.9006 54.4894 37.5928 60.8255C38.6619 63.3482 39.5223 65.9557 40.5066 68.6153H54.476V3.05762H42.5144V47.5732C40.9043 43.4991 38.9552 39.627 36.5629 36.0157C31.0547 27.698 25.4421 19.4584 19.8557 11.1928C17.9979 8.44849 16.101 5.74328 14.2562 3.07717H0V68.6153H12.0268V20.3841H12.0334Z\" fill=\"#020200\"/>\\n<path d=\"M76.3263 68.3152C82.9427 70.8835 89.7025 70.877 96.3449 68.3348C103.079 65.7599 107.616 60.9427 110.067 54.1829C112.061 48.6681 112.244 43.023 110.96 37.3583C109.245 29.7707 104.956 24.0669 97.8507 20.7489C91.9318 17.985 85.7 17.7308 79.3835 19.1845C74.8335 20.234 70.9158 22.4698 67.7413 25.866C62.7676 31.2048 60.9489 37.7038 61.0206 45.6957C61.2227 47.0254 61.3856 49.2157 61.8941 51.3277C63.8236 59.3978 68.5105 65.2775 76.3263 68.3087V68.3152ZM76.9912 33.0626C82.2126 26.9416 93.8418 27.3588 97.6356 36.1459C100.171 42.0191 100.184 47.9576 96.9577 53.6288C94.8131 57.4096 91.3647 59.2283 87.0429 59.4303C83.8553 59.5803 80.9219 58.8437 78.4122 56.7773C75.8113 54.6392 74.4098 51.7971 73.784 48.5573C73.4972 47.0645 73.419 45.5392 73.243 44.0334C73.3342 39.9593 74.2925 36.2176 76.9847 33.0561L76.9912 33.0626Z\" fill=\"#020200\"/>\\n<path d=\"M182.41 68.4005C187.299 70.2453 192.338 70.6299 197.475 69.6456C206.438 67.9181 212.637 62.8401 215.851 54.3008C218.002 48.5839 218.08 42.7041 216.665 36.8048C215.407 31.5573 212.774 27.1051 208.498 23.748C201.549 18.2789 193.635 17.3533 185.246 19.185C180.513 20.2149 176.504 22.6138 173.265 26.2121C168.682 31.2901 166.928 37.411 166.844 43.6298C166.942 47.4041 167.313 50.6503 168.395 53.7858C170.833 60.7868 175.416 65.767 182.404 68.4005H182.41ZM181.902 34.256C184.757 30.1297 188.87 28.5457 193.74 29.0542C198.544 29.5561 201.927 32.2027 203.693 36.6679C205.884 42.1957 205.89 47.7365 203.107 53.0948C200.499 58.1141 195.539 60.0306 190.219 59.3201C183.975 58.4857 180.631 53.8249 179.575 48.3884C179.333 47.1629 179.275 45.8983 179.131 44.6467C179.053 40.905 179.757 37.3654 181.902 34.256Z\" fill=\"#020200\"/>\\n<path d=\"M235.002 67.2856C235.002 59.3981 234.963 51.5106 235.035 43.623C235.054 41.7522 235.276 39.8488 235.713 38.0301C237.03 32.5023 240.778 29.2821 246.077 28.9171C250.028 28.6498 252.922 30.3381 254.682 33.8647C255.953 36.4004 256.175 39.1317 256.188 41.8761C256.22 50.3959 256.201 58.9092 256.201 67.429V68.6024H267.941V67.4616C267.941 58.0813 267.96 48.701 267.928 39.3208C267.921 36.1723 267.693 33.0433 266.787 29.9991C265.477 25.5795 263.137 21.903 258.847 19.8562C251.462 16.3361 241.495 18.6046 237.069 26.8441C236.286 28.2978 235.7 29.8557 234.931 31.5767V19.8301H223.334V68.6024H235.002V67.2726V67.2856Z\" fill=\"#020200\"/>\\n<path d=\"M120.157 31.6739C120.157 38.1013 120.099 44.5286 120.183 50.956C120.216 53.3613 120.385 55.7928 120.822 58.159C121.676 62.8068 123.945 66.5746 128.436 68.6084C131.773 70.1142 135.333 70.401 138.937 70.0685C140.534 69.9186 142.112 69.5796 143.631 69.3384V58.9152C142.379 59.1955 141.212 59.5931 140.013 59.7039C137.595 59.9256 135.267 59.5996 133.657 57.5006C132.451 55.9297 132.002 54.0393 131.982 52.1032C131.917 45.011 131.923 37.9253 131.91 30.833C131.91 30.7026 131.943 30.5723 131.989 30.2659H143.657V19.7514H131.871V10.7622H120.131V19.81H113.658V30.3441H120.17V31.6739H120.157Z\" fill=\"#020200\"/>\\n<path d=\"M149.667 68.5959H161.172V19.8433H149.667V68.5959Z\" fill=\"#020200\"/>\\n<path d=\"M155.299 13.1031C160.28 13.1944 163.676 8.68999 161.994 4.22474C160.795 1.04366 157.066 -0.683766 153.442 0.254914C150.684 0.971961 148.69 3.12311 148.448 5.63929C148.051 9.85031 150.965 13.0184 155.299 13.1031Z\" fill=\"#020200\"/>\\n<path d=\"M54.463 116.742V80.0425H42.5209V124.832C42.3319 124.486 42.2536 124.382 42.2145 124.265C40.4023 119.206 37.7362 114.578 34.7768 110.139C28.9361 101.404 22.9585 92.7668 17.0331 84.0906C16.0879 82.7021 15.1232 81.3267 14.2432 80.049H0V145.581H11.9877V97.2842C12.3658 97.8318 12.5744 98.1186 12.77 98.4184C18.037 106.182 23.2845 113.959 28.5645 121.709C31.889 126.592 34.9006 131.663 37.2604 137.087C38.4533 139.838 39.418 142.693 40.5262 145.6H45.35C42.2145 124.265 54.4565 116.742 54.4565 116.742H54.463Z\" fill=\"#020200\"/>\\n<path d=\"M216.112 111.775C214.019 105.51 210.056 100.784 204.085 97.9097C198.029 94.9894 191.641 94.6113 185.174 96.2084C177.639 98.0597 172.202 102.577 169.165 109.708C166.01 117.127 166.147 124.675 168.976 132.165C170.749 136.871 173.8 140.672 178.095 143.24C185.742 147.823 193.87 148.312 202.195 145.32C207.207 143.52 211.066 140.189 213.817 135.659C216.496 131.246 217.618 126.383 217.709 121.24C217.513 119.363 217.389 117.479 217.096 115.614C216.894 114.317 216.529 113.026 216.112 111.775ZM203.094 130.157C200.461 135.164 195.467 137.021 190.161 136.291C184.158 135.463 180.742 130.966 179.679 125.673C179.379 124.154 179.295 122.589 179.112 121.051C179.19 117.009 180.129 113.294 182.769 110.139C187.991 103.887 199.731 104.298 203.531 113.189C205.949 118.854 206.014 124.61 203.094 130.157Z\" fill=\"#020200\"/>\\n<path d=\"M266.878 107.369C265.222 100.336 260.425 96.0464 253.333 95.388C246.638 94.7688 241.273 97.3045 237.61 102.995C236.547 104.644 235.85 106.535 235.002 108.288V96.8156H223.393V145.562H235.028V144.284C235.028 136.599 234.983 128.907 235.061 121.221C235.08 119.122 235.263 116.965 235.771 114.937C237.016 109.892 240.51 106.176 246.279 105.863C249.754 105.674 252.961 107.363 254.545 110.446C255.725 112.741 256.162 115.198 256.175 117.734C256.207 126.612 256.188 135.497 256.188 144.375C256.188 144.767 256.188 145.158 256.188 145.601H267.902C267.915 145.314 267.928 145.119 267.928 144.929C267.928 134.956 267.993 124.983 267.882 115.009C267.856 112.454 267.471 109.859 266.885 107.369H266.878Z\" fill=\"#020200\"/>\\n<path d=\"M137.771 136.649C135.939 136.441 134.466 135.658 133.43 134.061C132.1 132.008 131.943 129.707 131.93 127.393C131.891 121.063 131.917 114.734 131.917 108.398C131.917 108.052 131.943 107.7 131.969 107.263H143.735V96.7423H131.865V87.7532H120.164V96.7879H120.092C117.967 91.0125 113.854 86.808 108.522 83.6856C100.374 78.9074 91.4432 77.1995 82.0955 77.7666C77.1088 78.0665 72.3893 79.4745 68.3412 82.6165C61.9465 87.5837 60.3103 96.4751 64.7755 102.674C68.0414 107.211 72.7087 109.819 77.8649 111.65C79.4033 112.198 80.9743 112.661 82.7213 113.221C79.7292 113.084 76.9719 112.843 74.2145 112.843C68.5042 112.843 62.9112 113.482 57.7615 116.266C56.5425 116.924 55.4409 117.726 54.4631 118.638C48.2183 124.459 47.0189 134.831 52.5271 141.558C53.1138 142.281 53.7656 142.959 54.4631 143.585C60.3885 148.956 69.9318 151.062 77.9888 148.337C84.3509 146.192 89.1943 141.923 93.0924 136.564C94.8198 134.192 96.3452 131.669 97.9618 129.212L100.061 126.272C100.146 126.154 100.322 126.259 100.269 126.389L96.2995 136.382C95.6346 139.002 95.0415 141.349 95.0415 141.349C94.1223 144.987 94.9893 149.009 97.2578 151.981C99.2851 154.634 103.261 157.059 106.684 155.899C106.749 155.873 106.814 155.853 106.873 155.827C108.652 155.071 109.604 152.868 110.099 151.225C110.106 151.212 110.112 151.192 110.112 151.179C110.262 150.612 110.406 150.045 110.549 149.471C110.556 149.439 110.562 149.413 110.569 149.387C113.776 136.682 116.99 123.971 120.171 111.253C120.392 110.379 120.607 109.512 120.823 108.639C121.644 105.353 121.624 102.029 120.718 98.737C120.816 99.0173 124.74 105.829 120.334 126.702C120.158 127.523 120.171 127.836 120.184 128.677C120.184 128.677 120.184 128.684 120.184 128.69C120.197 131.513 120.451 134.309 121.292 137.027C122.289 140.261 124.036 142.94 126.957 144.765C129.349 146.264 132.015 146.831 134.785 147.059C137.817 147.314 140.796 147.001 143.742 146.186V135.658C141.799 136.61 139.818 136.877 137.771 136.636V136.649ZM80.8178 106.866C77.6563 103.672 77.4412 99.5453 79.6445 96.6902C79.7032 96.5924 82.2193 93.0006 87.3299 90.6279C87.4929 90.5496 87.6624 90.7322 87.5776 90.8886C87.2582 91.4688 85.433 93.3852 86.4564 93.307C90.2438 92.8181 93.8942 93.7242 97.4077 95.3604C100.093 96.6119 102.388 98.3394 103.535 101.221C105.087 105.099 103.45 109.036 99.611 110.705C96.104 112.231 92.5253 111.996 89.1291 111.194C85.9024 110.321 83.0733 109.141 80.8113 106.859L80.8178 106.866ZM104.252 114.369C102.994 115.314 101.456 116.526 100.015 117.797C98.9787 119.655 97.9487 121.5 96.8015 123.26C94.1028 127.406 90.6414 130.835 86.3 133.286C81.9977 135.711 77.4934 136.767 72.6696 134.974C69.7427 133.885 67.7024 131.936 67.3569 128.697C67.0049 125.444 68.3999 122.999 71.1507 121.278C74.1102 119.427 77.4738 118.945 80.8244 118.528C85.1462 117.986 89.5006 117.693 93.8029 117.035C95.7063 116.741 97.5576 116.161 99.611 115.562L103.92 113.834C104.265 113.678 104.552 114.147 104.246 114.375L104.252 114.369Z\" fill=\"#020200\"/>\\n<path d=\"M149.674 145.6H161.16V96.8345H149.674V145.6Z\" fill=\"#020200\"/>\\n<path d=\"M155.815 76.9978C151.76 76.8087 148.612 79.4618 148.416 83.223C148.227 86.8865 151.089 89.8525 155.026 90.0676C159.067 90.2892 162.255 87.571 162.444 83.7315C162.627 80.1332 159.713 77.1738 155.821 76.9913L155.815 76.9978Z\" fill=\"#020200\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1mgxxgm\",\"data-framer-name\":\"Group\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:154,intrinsicWidth:418,svg:'<svg width=\"418\" height=\"154\" viewBox=\"0 0 418 154\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M156.758 153.617H154.878V142.876H156.715L159.879 147.217L163.057 142.891H164.879V153.617H163V145.725L162.684 146.256L159.986 149.901H159.699L157.016 146.241L156.758 145.804V153.624V153.617Z\" fill=\"#020200\"/>\\n<path d=\"M166.465 149.463V149.233C166.465 148.272 166.659 147.44 167.039 146.779C167.792 145.452 169.134 144.749 170.834 144.749C171.71 144.749 172.449 144.914 173.094 145.273C174.422 145.983 175.204 147.325 175.204 149.233V149.463C175.204 150.41 175.024 151.199 174.658 151.845C173.905 153.158 172.592 153.847 170.834 153.847C168.036 153.847 166.465 152.297 166.465 149.463ZM173.195 149.434V149.24C173.195 147.461 172.276 146.442 170.841 146.442C169.406 146.442 168.474 147.404 168.474 149.24V149.434C168.474 151.149 169.349 152.117 170.827 152.117C172.305 152.117 173.195 151.156 173.195 149.434Z\" fill=\"#020200\"/>\\n<path d=\"M180.478 153.617C179.667 153.617 179.028 153.495 178.612 153.302C177.737 152.864 177.464 151.917 177.464 150.152V146.701H175.778V145.029H176.546C176.833 145.029 177.027 145.001 177.163 144.936C177.45 144.8 177.543 144.47 177.586 143.759C177.601 143.379 177.615 142.87 177.615 142.611H179.301V144.943H181.59V146.694H179.301V149.815C179.301 150.389 179.344 150.812 179.423 151.092C179.559 151.666 180.011 151.773 180.973 151.773H181.59V153.61H180.478V153.617Z\" fill=\"#020200\"/>\\n<path d=\"M182.737 142.711C182.737 141.75 183.175 141.413 184.05 141.413C184.926 141.413 185.363 141.743 185.363 142.711C185.363 143.68 184.94 144.024 184.05 144.024C183.103 144.024 182.737 143.709 182.737 142.711ZM183.024 144.957H185.026V153.617H183.024V144.957Z\" fill=\"#020200\"/>\\n<path d=\"M186.519 149.463V149.233C186.519 148.272 186.712 147.44 187.093 146.779C187.846 145.452 189.188 144.749 190.888 144.749C191.763 144.749 192.502 144.914 193.148 145.273C194.475 145.983 195.257 147.325 195.257 149.233V149.463C195.257 150.41 195.078 151.199 194.712 151.845C193.959 153.158 192.646 153.847 190.888 153.847C188.083 153.847 186.519 152.297 186.519 149.463ZM193.256 149.434V149.24C193.256 147.461 192.337 146.442 190.902 146.442C189.467 146.442 188.535 147.404 188.535 149.24V149.434C188.535 151.149 189.41 152.117 190.888 152.117C192.366 152.117 193.256 151.156 193.256 149.434Z\" fill=\"#020200\"/>\\n<path d=\"M196.764 153.617V144.957H198.435L198.615 146.693C199.081 145.502 200.064 144.749 201.549 144.749C203.644 144.749 204.756 146.134 204.756 148.286V153.617H202.769V148.767C202.769 147.353 202.317 146.464 200.903 146.464C199.49 146.464 198.751 147.49 198.751 149.097V153.617H196.764Z\" fill=\"#020200\"/>\\n<path d=\"M213.014 148.753V153.618H212.053V142.949H213.014V147.828H219.206V142.949H220.153V153.618H219.206V148.753H213.014Z\" fill=\"#020200\"/>\\n<path d=\"M222.392 149.462V149.297C222.392 148.35 222.571 147.547 222.951 146.887C223.705 145.531 225.003 144.82 226.639 144.82C227.464 144.82 228.189 145 228.842 145.366C230.14 146.076 230.894 147.418 230.894 149.297V149.462C230.894 150.366 230.729 151.134 230.384 151.794C229.688 153.107 228.411 153.825 226.646 153.825C223.934 153.825 222.399 152.182 222.399 149.455L222.392 149.462ZM229.939 149.448V149.312C229.939 148.558 229.803 147.941 229.516 147.367C228.928 146.284 227.923 145.653 226.653 145.653C226.022 145.653 225.448 145.789 224.967 146.09C223.97 146.679 223.367 147.762 223.367 149.312V149.448C223.367 151.6 224.558 152.971 226.639 152.971C228.72 152.971 229.939 151.629 229.939 149.448Z\" fill=\"#020200\"/>\\n<path d=\"M236.217 153.818C234.022 153.818 232.917 152.354 232.917 150.159V145.065H233.864V149.972C233.864 151.737 234.632 152.957 236.468 152.957C237.057 152.957 237.566 152.806 238.004 152.519C238.894 151.917 239.389 150.862 239.389 149.506V145.065H240.336V153.624H239.525L239.439 151.486C239.015 152.9 237.889 153.818 236.217 153.818Z\" fill=\"#020200\"/>\\n<path d=\"M242.216 150.833H243.242C243.3 151.314 243.486 151.737 243.737 152.053C244.311 152.684 245.172 152.985 246.177 152.985C246.822 152.985 247.325 152.907 247.698 152.727C248.465 152.383 248.781 151.809 248.781 151.177C248.781 150.768 248.63 150.467 248.372 150.273C247.827 149.864 246.923 149.728 245.933 149.592C245.122 149.47 244.304 149.334 243.658 149.018C242.998 148.702 242.589 148.171 242.589 147.267C242.589 146.844 242.697 146.435 242.919 146.076C243.357 145.309 244.304 144.813 245.839 144.813C248.021 144.813 249.333 145.854 249.527 147.468H248.551C248.415 146.277 247.389 145.617 245.839 145.617C245.251 145.617 244.799 145.696 244.455 145.861C243.795 146.162 243.536 146.693 243.536 147.231C243.536 147.64 243.687 147.942 243.945 148.135C244.491 148.544 245.423 148.681 246.385 148.81C247.217 148.932 248.013 149.082 248.673 149.384C249.319 149.699 249.728 150.245 249.728 151.149C249.728 151.629 249.606 152.067 249.348 152.476C248.867 153.308 247.827 153.832 246.155 153.832C243.938 153.832 242.431 152.835 242.209 150.833H242.216Z\" fill=\"#020200\"/>\\n<path d=\"M255.611 153.832C252.806 153.832 251.35 152.16 251.35 149.477V149.326C251.35 148.422 251.515 147.654 251.881 146.958C252.591 145.602 253.882 144.82 255.647 144.82C256.537 144.82 257.276 145.014 257.879 145.394C259.084 146.162 259.701 147.504 259.701 149.147V149.613H252.304C252.347 151.708 253.509 152.999 255.633 152.999C257.125 152.999 258.194 152.368 258.567 151.069H259.579C259.113 152.892 257.62 153.825 255.619 153.825L255.611 153.832ZM252.311 148.831H258.761C258.653 146.872 257.556 145.61 255.64 145.61C253.724 145.61 252.476 146.858 252.311 148.831Z\" fill=\"#020200\"/>\\n<path d=\"M133.649 4.25559C129.429 1.96443 124.763 0.818848 119.65 0.818848C114.537 0.818848 109.87 1.96443 105.65 4.25559C101.43 6.54674 98.1028 9.70551 95.6684 13.7319C93.2341 17.7583 92.0127 22.2563 92.0127 27.2261C92.0127 32.1959 93.2341 36.694 95.6684 40.7204C98.1028 44.7467 101.43 47.9055 105.65 50.1967C109.87 52.4878 114.537 53.6334 119.65 53.6334C124.763 53.6334 129.429 52.4878 133.649 50.1967C137.87 47.9055 141.197 44.7467 143.631 40.7204C146.066 36.694 147.287 32.1959 147.287 27.2261C147.287 22.2563 146.066 17.7583 143.631 13.7319C141.197 9.70551 137.87 6.54674 133.649 4.25559ZM131.586 34.1333C130.381 36.2307 128.73 37.8985 126.633 39.1284C124.535 40.3582 122.21 40.9731 119.65 40.9731C117.089 40.9731 114.764 40.3582 112.667 39.1284C110.569 37.8985 108.918 36.2307 107.714 34.1333C106.509 32.0359 105.903 29.7363 105.903 27.2261C105.903 24.716 106.509 22.4164 107.714 20.319C108.918 18.2215 110.569 16.5537 112.667 15.3239C114.764 14.0941 117.089 13.4792 119.65 13.4792C122.21 13.4792 124.535 14.0941 126.633 15.3239C128.73 16.5537 130.381 18.2215 131.586 20.319C132.79 22.4164 133.397 24.7244 133.397 27.2261C133.397 29.7279 132.79 32.0359 131.586 34.1333Z\" fill=\"#020200\"/>\\n<path d=\"M254.389 50.1967C258.61 52.4878 263.276 53.6334 268.389 53.6334C273.502 53.6334 278.169 52.4878 282.389 50.1967C286.609 47.9055 289.936 44.7467 292.37 40.7204C294.805 36.694 296.026 32.1959 296.026 27.2261C296.026 22.2563 294.805 17.7583 292.37 13.7319C289.936 9.70551 286.609 6.54674 282.389 4.25559C278.169 1.96443 273.502 0.818848 268.389 0.818848C263.276 0.818848 258.61 1.96443 254.389 4.25559C250.169 6.54674 246.842 9.70551 244.408 13.7319C241.973 17.7583 240.752 22.2563 240.752 27.2261C240.752 32.1959 241.973 36.694 244.408 40.7204C246.842 44.7467 250.169 47.9055 254.389 50.1967ZM256.453 20.319C257.658 18.2215 259.309 16.5537 261.406 15.3239C263.503 14.0941 265.828 13.4792 268.389 13.4792C270.95 13.4792 273.275 14.0941 275.372 15.3239C277.469 16.5537 279.12 18.2215 280.325 20.319C281.53 22.4164 282.136 24.7244 282.136 27.2261C282.136 29.7279 281.53 32.0359 280.325 34.1333C279.12 36.2307 277.469 37.8985 275.372 39.1284C273.275 40.3582 270.95 40.9731 268.389 40.9731C265.828 40.9731 263.503 40.3582 261.406 39.1284C259.309 37.8985 257.658 36.2307 256.453 34.1333C255.249 32.0359 254.642 29.7363 254.642 27.2261C254.642 24.716 255.249 22.4164 256.453 20.319Z\" fill=\"#020200\"/>\\n<path d=\"M152.711 34.6219V54.0715H166.643V34.6219H200.606V21.6499H166.643V2.19189H152.711V33.948V34.6219Z\" fill=\"#020200\"/>\\n<path d=\"M0.947266 1.90625V14.6424H7.67754V52.5476H21.1297V14.6424L7.67754 1.90625H0.947266Z\" fill=\"#020200\"/>\\n<path d=\"M21.1299 1.90625V14.6424H39.754V52.5476H53.2061H53.2145V14.6424H71.8302V52.5476H85.2907V14.3391L72.8578 1.90625H21.1299Z\" fill=\"#020200\"/>\\n<path d=\"M316.209 14.6424H338.927V52.5476H352.387V14.3391C347.536 9.48728 344.806 6.75811 339.954 1.90625H302.757V52.5476H316.217V14.6424H316.209Z\" fill=\"#020200\"/>\\n<path d=\"M0.947266 63.1016V75.8377H7.67754V113.743H21.1297V75.8377L7.67754 63.1016H0.947266Z\" fill=\"#020200\"/>\\n<path d=\"M21.1299 63.1016V75.8377H39.754V113.743H53.2061H53.2145V75.8377H71.8302V113.743H85.2907V75.5345L72.8578 63.1016H21.1299Z\" fill=\"#020200\"/>\\n<path d=\"M171.807 76.5207C173.853 75.2909 176.161 74.676 178.714 74.676C180.592 74.676 182.302 74.9876 183.852 75.6194C185.393 76.2427 186.724 77.1272 187.828 78.2559C188.94 79.393 189.833 80.7239 190.506 82.2738H204.616C203.891 78.3654 202.324 74.8865 199.915 71.8204C197.506 68.7543 194.457 66.3621 190.768 64.6184C187.078 62.8832 183.018 62.0156 178.579 62.0156C173.466 62.0156 168.833 63.1612 164.689 65.4524C160.545 67.7435 157.285 70.9023 154.926 74.9287C152.559 78.955 151.38 83.4531 151.38 88.4229C151.38 93.3927 152.559 97.8908 154.926 101.917C157.285 105.944 160.545 109.102 164.689 111.393C168.833 113.685 173.466 114.83 178.579 114.83C183.069 114.83 187.162 113.946 190.877 112.194C194.592 110.433 197.649 107.99 200.067 104.848C202.476 101.715 204.001 98.1688 204.624 94.2098H190.658C189.689 96.6189 188.173 98.5478 186.101 99.9966C184.029 101.445 181.569 102.17 178.722 102.17C174.729 102.17 171.352 100.671 168.597 97.6718C166.373 94.9847 165.262 91.9018 165.262 88.4229C165.262 85.9127 165.843 83.6132 166.997 81.5157C168.151 79.4183 169.76 77.7505 171.807 76.5207Z\" fill=\"#020200\"/>\\n<path d=\"M132.133 65.3426C128.107 62.9757 123.609 61.7964 118.639 61.7964C113.669 61.7964 109.171 62.9757 105.144 65.3426C101.118 67.7012 97.9593 70.961 95.6682 75.1053C93.377 79.2496 92.2314 83.8825 92.2314 88.9955C92.2314 93.4346 93.0991 97.4947 94.8343 101.184C96.5695 104.874 98.9701 107.923 102.036 110.332C105.102 112.741 108.581 114.308 112.49 115.032H117.165L117.316 114.662L132.007 99.9711C131.72 107.106 131.366 115.032 131.366 115.032L145.038 114.813V88.9871C145.038 83.8741 143.892 79.2412 141.601 75.0969C139.31 70.9526 136.151 67.6928 132.125 65.3342L132.133 65.3426ZM104.892 89.1471C104.892 86.5864 105.507 84.2868 106.736 82.2399C107.966 80.193 109.634 78.5842 111.732 77.4302C113.829 76.2762 116.137 75.695 118.639 75.695C122.118 75.695 125.192 76.8068 127.888 79.0306C129.143 80.1846 130.12 81.4481 130.844 82.8211L112.717 100.948H112.49C110.948 100.274 109.609 99.3815 108.472 98.2696C107.343 97.1577 106.459 95.8353 105.835 94.2938C105.212 92.7523 104.892 91.0424 104.892 89.1555V89.1471Z\" fill=\"#020200\"/>\\n<path d=\"M244.484 81.7678H224.512V63.1016H211.06V113.743H224.512V94.4281H244.484V113.743H257.936V63.1016H244.484V81.7678Z\" fill=\"#020200\"/>\\n<path d=\"M264.666 75.0375H279.205V101.807H264.666V113.743H307.128V101.807H292.59V75.0375H307.128V63.1016H264.666V75.0375Z\" fill=\"#020200\"/>\\n<path d=\"M351.056 63.1016H313.858V113.743H327.319V75.8377H350.037V113.743H363.497V75.5345C358.645 70.6826 355.916 67.9534 351.064 63.1016H351.056Z\" fill=\"#020200\"/>\\n<path d=\"M417.147 63.1016H370.271V75.8377H417.147V63.1016Z\" fill=\"#020200\"/>\\n<path d=\"M417.147 82.0542H370.271V94.7904H417.147V82.0542Z\" fill=\"#020200\"/>\\n<path d=\"M417.147 101.016H370.271V113.752H417.147V101.016Z\" fill=\"#020200\"/>\\n<path d=\"M238.309 44.2251L228.344 34.2602C224.461 30.377 224.461 24.0763 228.344 20.1932L238.309 10.2283V1.75439H204.742V10.2283L214.707 20.1932C218.59 24.0763 218.59 30.377 214.707 34.2602L204.742 44.2251V52.699H238.309V44.2251Z\" fill=\"#020200\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1sktho9\",\"data-framer-name\":\"Group\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:186,intrinsicWidth:265,svg:'<svg width=\"265\" height=\"186\" viewBox=\"0 0 265 186\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M67.7107 171.166C68.586 171.166 69.3681 171.346 70.0927 171.69C71.542 172.415 72.4604 173.828 72.4604 176.088V176.992C72.4604 178.104 72.2667 179.008 71.8577 179.733C71.0326 181.182 69.5833 181.9 67.7897 181.9H63.9512V171.159H67.7179L67.7107 171.166ZM65.9027 180.171H67.6964C69.3538 180.171 70.4658 179.087 70.4658 176.813V176.239C70.4658 173.964 69.3178 172.867 67.6174 172.867H65.9027V180.171Z\" fill=\"#020200\"/>\\n<path d=\"M78.1353 182.13C75.2152 182.13 73.7803 180.444 73.7803 177.76V177.552C73.7803 176.62 73.9596 175.852 74.3256 175.156C75.0502 173.8 76.3775 173.032 78.1999 173.032C79.6922 173.032 80.7469 173.542 81.4357 174.374C82.1316 175.206 82.433 176.275 82.433 177.387V178.306H75.7461C75.9112 179.719 76.7865 180.508 78.2142 180.508C79.2689 180.508 79.8859 180.099 80.1873 179.346H82.311C81.816 181.111 80.4097 182.13 78.1353 182.13ZM75.7533 176.749H80.4527C80.3164 175.421 79.5918 174.596 78.2071 174.596C76.8223 174.596 75.9757 175.378 75.7533 176.749Z\" fill=\"#020200\"/>\\n<path d=\"M83.2871 179.045H85.4252C85.6045 180.071 86.3148 180.472 87.5489 180.472C88.7829 180.472 89.3139 180.049 89.3139 179.36C89.3139 179.102 89.2062 178.894 88.9838 178.758C88.5462 178.499 87.7928 178.399 86.9677 178.277C86.1857 178.155 85.3821 178.019 84.7364 177.674C84.0907 177.33 83.6817 176.742 83.6817 175.773C83.6817 174.18 84.8727 173.032 87.2547 173.032C89.6367 173.032 90.8708 174.101 91.1147 175.83H89.0986C88.9623 174.984 88.3883 174.611 87.2476 174.611C86.0135 174.611 85.6333 175.048 85.6333 175.651C85.6333 175.909 85.7408 176.117 85.9633 176.254C86.4009 176.512 87.1686 176.612 88.0009 176.734C88.7829 176.856 89.5793 176.993 90.2322 177.337C90.878 177.681 91.2869 178.27 91.2869 179.238C91.2869 180.91 90.0816 182.13 87.5202 182.13C84.9588 182.13 83.5598 181.061 83.3015 179.045H83.2871Z\" fill=\"#020200\"/>\\n<path d=\"M92.3916 171.002C92.3916 170.041 92.8293 169.704 93.7046 169.704C94.5799 169.704 95.0175 170.034 95.0175 171.002C95.0175 171.971 94.5943 172.315 93.7046 172.315C92.7575 172.315 92.3916 172 92.3916 171.002ZM92.6786 173.248H94.6803V181.908H92.6786V173.248Z\" fill=\"#020200\"/>\\n<path d=\"M97.5432 185.567C96.3666 185.222 96.0078 184.584 96.0078 183.773C96.0078 182.84 96.5818 182.159 97.9522 181.843C96.7755 181.678 96.2661 181.09 96.2661 180.214C96.2661 179.339 96.9262 178.736 98.1315 178.478C96.9405 178.105 96.3522 177.287 96.3522 176.024C96.3522 174.295 97.6437 173.355 99.71 173.219L100.148 173.19C100.657 173.147 101.023 173.097 101.274 172.997C101.755 172.817 101.877 172.408 101.877 171.583V171.447H104.165V171.734C104.165 173.118 103.47 173.499 101.618 173.513C103.233 173.736 104.101 174.718 104.101 176.031V176.089C104.101 177.926 102.637 179.045 100.184 179.045H100.047C99.4445 179.045 99.0068 179.059 98.7055 179.124C98.1028 179.231 97.9665 179.396 97.9665 179.683C97.9665 180.092 98.3253 180.257 99.3513 180.257H101.102C103.527 180.257 104.582 181.255 104.582 182.804C104.582 184.698 103.154 185.846 100.14 185.846H100.033C98.9495 185.846 98.1172 185.76 97.536 185.574L97.5432 185.567ZM102.752 182.898C102.752 182.295 102.3 181.9 101.037 181.9H99.4876C98.4185 182.008 97.9522 182.474 97.9522 183.077V183.106C97.9522 183.651 98.4975 184.203 99.8535 184.203H100.169C101.963 184.203 102.759 183.723 102.759 182.89L102.752 182.898ZM102.135 176.103V176.06C102.135 174.855 101.288 174.446 100.219 174.446C99.1503 174.446 98.3253 174.955 98.3253 176.074V176.118C98.3253 177.129 99.014 177.639 100.191 177.639C101.504 177.639 102.135 177.129 102.135 176.103Z\" fill=\"#020200\"/>\\n<path d=\"M105.571 181.907V173.247H107.243L107.422 174.983C107.889 173.792 108.872 173.039 110.357 173.039C112.452 173.039 113.564 174.424 113.564 176.576V181.907H111.577V177.057C111.577 175.643 111.125 174.754 109.711 174.754C108.298 174.754 107.559 175.78 107.559 177.387V181.907H105.571Z\" fill=\"#020200\"/>\\n<path d=\"M121.83 177.043V181.908H120.868V171.239H121.83V176.118H128.021V171.239H128.968V181.908H128.021V177.043H121.83Z\" fill=\"#020200\"/>\\n<path d=\"M131.199 177.746V177.581C131.199 176.634 131.379 175.83 131.759 175.17C132.512 173.814 133.811 173.104 135.447 173.104C136.279 173.104 136.996 173.283 137.649 173.649C138.941 174.36 139.701 175.701 139.701 177.581V177.746C139.701 178.65 139.536 179.418 139.192 180.078C138.503 181.391 137.219 182.108 135.454 182.108C132.742 182.108 131.206 180.465 131.206 177.739L131.199 177.746ZM138.747 177.732V177.595C138.747 176.842 138.611 176.225 138.324 175.651C137.735 174.568 136.724 173.936 135.461 173.936C134.83 173.936 134.256 174.073 133.775 174.374C132.785 174.962 132.182 176.046 132.182 177.595V177.732C132.182 179.884 133.373 181.254 135.447 181.254C137.52 181.254 138.747 179.913 138.747 177.732Z\" fill=\"#020200\"/>\\n<path d=\"M145.033 182.101C142.83 182.101 141.732 180.638 141.732 178.442V173.348H142.679V178.256C142.679 180.021 143.447 181.24 145.284 181.24C145.872 181.24 146.382 181.09 146.819 180.803C147.709 180.2 148.204 179.145 148.204 177.789V173.348H149.151V181.908H148.34L148.247 179.77C147.824 181.183 146.697 182.101 145.026 182.101H145.033Z\" fill=\"#020200\"/>\\n<path d=\"M151.031 179.124H152.057C152.114 179.604 152.301 180.028 152.552 180.343C153.126 180.975 153.979 181.276 154.991 181.276C155.637 181.276 156.139 181.197 156.512 181.018C157.28 180.673 157.595 180.099 157.595 179.468C157.595 179.059 157.445 178.758 157.187 178.564C156.641 178.155 155.737 178.019 154.747 177.882C153.936 177.76 153.118 177.624 152.473 177.308C151.813 176.993 151.404 176.462 151.404 175.558C151.404 175.134 151.511 174.725 151.734 174.367C152.171 173.599 153.118 173.104 154.654 173.104C156.835 173.104 158.148 174.144 158.342 175.759H157.359C157.222 174.568 156.196 173.908 154.647 173.908C154.058 173.908 153.606 173.986 153.262 174.152C152.602 174.453 152.344 174.984 152.344 175.522C152.344 175.931 152.494 176.232 152.753 176.426C153.298 176.835 154.231 176.971 155.192 177.1C156.017 177.222 156.821 177.373 157.481 177.674C158.126 177.99 158.535 178.535 158.535 179.439C158.535 179.92 158.413 180.358 158.162 180.767C157.682 181.599 156.641 182.123 154.97 182.123C152.753 182.123 151.246 181.125 151.023 179.124H151.031Z\" fill=\"#020200\"/>\\n<path d=\"M164.426 182.115C161.628 182.115 160.164 180.444 160.164 177.76V177.61C160.164 176.706 160.329 175.938 160.688 175.242C161.398 173.886 162.69 173.104 164.455 173.104C165.344 173.104 166.083 173.298 166.686 173.678C167.891 174.446 168.508 175.787 168.508 177.43V177.897H161.111C161.154 179.992 162.316 181.283 164.44 181.283C165.933 181.283 167.002 180.652 167.375 179.353H168.386C167.92 181.176 166.428 182.108 164.426 182.108V182.115ZM161.125 177.115H167.576C167.468 175.156 166.37 173.893 164.455 173.893C162.539 173.893 161.29 175.142 161.125 177.115Z\" fill=\"#020200\"/>\\n<path d=\"M176.788 67.35C176.659 67.6082 176.659 67.8307 176.788 68.0244C176.853 68.2181 177.047 68.3114 177.369 68.3114H204.483C204.734 68.3114 204.935 68.2181 205.057 68.0244C205.179 67.8307 205.186 67.6082 205.057 67.35L201.864 60.0174V34.9346C201.864 32.6387 202.675 30.68 204.282 29.0513C205.846 27.4514 208.027 26.5402 210.265 26.5402C212.504 26.5402 214.556 27.3581 216.192 29.0011C217.835 30.6441 218.653 32.6172 218.653 34.9346V60.0174L215.467 67.35C215.338 67.6082 215.338 67.8307 215.467 68.0244C215.532 68.2181 215.725 68.3114 216.048 68.3114H243.154C243.413 68.3114 243.606 68.2181 243.736 68.0244C243.865 67.8307 243.865 67.6082 243.736 67.35L240.543 60.0174V36.183C240.543 34.4539 240.306 32.775 239.825 31.1679C239.337 29.5607 238.555 28.0469 237.458 26.6335C236.432 25.2774 235.226 24.0936 233.842 23.0676C232.464 22.0416 230.979 21.152 229.408 20.413C227.829 19.674 226.193 19.1 224.486 18.6839C222.778 18.2677 221.121 17.9592 219.521 17.7655C217.849 17.5718 216.206 17.4785 214.599 17.4785C211.062 17.4785 207.668 17.9592 204.425 18.9206C201.182 19.882 198.312 21.6829 195.808 24.3017C195.808 24.3017 195.794 24.316 195.787 24.3232C194.682 25.6936 193.455 27.3294 192.479 28.9724C192.178 29.4746 191.647 29.7545 191.102 29.7545C190.822 29.7545 190.535 29.6827 190.284 29.532C189.523 29.0729 189.279 28.0899 189.731 27.3294C190.858 25.4424 192.257 23.577 193.491 22.0703L191.066 19.6955C190.93 19.5735 190.779 19.5018 190.585 19.5018H181.509C180.447 19.5018 179.586 20.3628 179.586 21.4246V27.7958L179.974 60.0246L176.781 67.3571L176.788 67.35Z\" fill=\"#020200\"/>\\n<path d=\"M127.297 121.928C127.297 119.417 126.845 116.913 125.948 114.409C124.907 111.511 123.415 108.935 121.456 106.689C119.483 104.436 117.216 102.506 114.64 100.892C111.742 99.0911 108.664 97.7638 105.406 96.8885C102.156 96.0275 98.8273 95.5898 95.4121 95.5898C91.997 95.5898 88.6607 96.0275 85.4106 96.8885C82.1604 97.7638 79.0753 99.0911 76.191 100.892C73.6081 102.499 71.3409 104.436 69.3751 106.689C67.402 108.935 65.9097 111.511 64.8765 114.409C63.9797 116.92 63.5205 119.424 63.5205 121.928C63.5205 124.432 63.9797 126.943 64.8765 129.462C65.9097 132.346 67.402 134.922 69.3751 137.174C71.3409 139.42 73.601 141.35 76.191 142.964C79.0753 144.758 82.1604 146.093 85.4106 146.961C88.6607 147.836 91.997 148.267 95.4121 148.267C98.8273 148.267 102.156 147.829 105.406 146.961C108.664 146.093 111.742 144.758 114.64 142.964C117.216 141.357 119.476 139.42 121.456 137.174C123.415 134.922 124.907 132.346 125.948 129.462C126.845 126.943 127.297 124.439 127.297 121.928ZM105.206 137.21C99.7958 141.006 90.4543 137.002 84.3415 128.278C78.2358 119.561 77.669 109.416 83.0859 105.62C88.5028 101.825 97.8371 105.835 103.95 114.553C110.056 123.27 110.622 133.415 105.206 137.21Z\" fill=\"#020200\"/>\\n<path d=\"M150.457 107.069C151.096 106.617 151.77 106.552 152.48 106.875C154.798 107.837 157.129 108.791 159.483 109.716C161.822 110.656 164.161 111.567 166.478 112.471C166.672 112.601 166.894 112.601 167.153 112.471C167.346 112.407 167.44 112.213 167.44 111.897V96.4575C167.44 96.07 167.246 95.8189 166.866 95.6898C165 95.3023 163.006 95.1588 160.882 95.2521C158.758 95.3454 156.649 95.6898 154.561 96.2637C152.466 96.8377 150.471 97.6485 148.577 98.6745C146.784 99.643 145.248 100.748 143.942 102.011H143.928C142.787 103.424 141.496 105.132 140.484 106.839C140.183 107.342 139.652 107.621 139.107 107.621C138.827 107.621 138.54 107.542 138.289 107.392C137.528 106.94 137.284 105.957 137.729 105.196C138.841 103.345 140.211 101.501 141.424 100.009L138.977 97.6126C138.841 97.4835 138.69 97.4189 138.497 97.4189H124.987C124.657 97.4189 124.47 97.5122 124.413 97.7059C124.276 97.9713 124.276 98.1938 124.413 98.3875L127.598 105.713V138.128L124.413 145.454C124.276 145.719 124.276 145.941 124.413 146.135C124.47 146.329 124.664 146.422 124.987 146.422H152.093C152.351 146.422 152.545 146.329 152.674 146.135C152.803 145.941 152.803 145.719 152.674 145.454L149.488 138.128V108.891C149.488 108.124 149.804 107.514 150.45 107.062L150.457 107.069Z\" fill=\"#020200\"/>\\n<path d=\"M101.002 121.325L96.8764 119.696C96.7113 119.632 96.575 119.495 96.5104 119.33L94.8818 115.205C94.6665 114.66 93.8917 114.66 93.6764 115.205L92.0478 119.33C91.9832 119.495 91.8469 119.632 91.6819 119.696L87.5564 121.325C87.0111 121.54 87.0111 122.315 87.5564 122.53L91.6819 124.159C91.8469 124.223 91.9832 124.36 92.0478 124.525L93.6764 128.65C93.8917 129.196 94.6665 129.196 94.8818 128.65L96.5104 124.525C96.575 124.36 96.7113 124.223 96.8764 124.159L101.002 122.53C101.547 122.315 101.547 121.54 101.002 121.325Z\" fill=\"#020200\"/>\\n<path d=\"M264.198 145.562L261.012 138.229V114.402C261.012 111.123 260.445 108.296 259.326 105.914C258.2 103.532 256.671 101.574 254.741 100.024C252.811 98.4813 250.523 97.362 247.89 96.6517C245.249 95.9486 242.394 95.5898 239.301 95.5898C236.023 95.5898 232.837 95.9916 229.752 96.7952C226.724 97.5844 224.005 99.0696 221.594 101.251C220.324 102.765 218.724 104.809 217.512 106.84C217.21 107.342 216.68 107.622 216.134 107.622C215.862 107.622 215.575 107.543 215.316 107.392C214.556 106.94 214.312 105.957 214.764 105.197C216.055 103.037 217.706 100.906 219.04 99.3064C217.426 98.1584 215.618 97.3261 213.645 96.7952C210.624 95.9916 207.596 95.5898 204.576 95.5898C201.031 95.5898 197.645 96.0706 194.402 97.032C191.216 97.979 188.404 99.7153 185.936 102.262C185.936 102.262 185.936 102.262 185.922 102.277C184.838 103.633 183.64 105.233 182.679 106.84C182.377 107.342 181.846 107.622 181.301 107.622C181.021 107.622 180.734 107.543 180.483 107.392C179.723 106.94 179.479 105.957 179.931 105.197C180.993 103.417 182.298 101.66 183.475 100.203L183.382 100.11L181.036 97.8068C181 97.771 180.964 97.7423 180.921 97.7136L179.55 96.3791C179.192 96.0347 178.711 95.841 178.209 95.841H170.812C170.173 95.841 169.656 96.3575 169.656 96.9889V138.322L166.471 145.655C166.342 145.913 166.342 146.136 166.471 146.329C166.535 146.523 166.729 146.616 167.045 146.616H194.158C194.416 146.616 194.61 146.523 194.732 146.329C194.861 146.136 194.861 145.913 194.732 145.655L192.128 138.028V111.403C192.128 110.176 192.372 109.085 192.852 108.117C193.333 107.155 194.122 106.416 195.213 105.9C196.117 105.448 197.179 105.218 198.406 105.218C199.432 105.218 200.457 105.484 201.491 105.993C203.607 107.084 204.676 108.92 204.676 111.489V138.114L201.491 145.447C201.362 145.705 201.362 145.928 201.491 146.121C201.555 146.315 201.749 146.408 202.072 146.408H229.185C229.443 146.408 229.637 146.315 229.759 146.121C229.881 145.928 229.888 145.705 229.759 145.447L226.573 138.114V111.489C226.573 110.262 226.81 109.172 227.291 108.203C227.779 107.242 228.561 106.503 229.659 105.986C230.555 105.534 231.617 105.304 232.844 105.304C233.87 105.304 234.903 105.57 235.929 106.079C238.053 107.17 239.115 109.007 239.115 111.575V138.2L235.929 145.533C235.8 145.791 235.8 146.014 235.929 146.207C235.994 146.401 236.188 146.494 236.503 146.494H263.617C263.875 146.494 264.069 146.401 264.19 146.207C264.32 146.014 264.32 145.791 264.19 145.533L264.198 145.562Z\" fill=\"#020200\"/>\\n<path d=\"M124.786 59.0481C122.992 59.7512 121.285 60.6265 119.678 61.6525C118.063 62.6857 116.65 63.9413 115.423 65.4121C114.203 66.9618 113.357 68.612 112.876 70.377C112.395 72.1491 112.28 73.8854 112.539 75.5858C112.79 77.3006 113.393 78.9221 114.332 80.4646C115.258 82.0144 116.499 83.3991 118.035 84.6188C120.029 86.0896 122.26 87.1586 124.693 87.8044C127.139 88.4429 129.586 88.7586 132.025 88.7586C136.782 88.7586 140.951 87.8761 144.516 86.1111C148.089 84.3461 151.088 81.4404 153.542 77.3867C153.994 76.6118 154.504 76.1096 155.085 75.8943C155.659 75.6719 156.182 75.6289 156.634 75.8011C157.086 75.9589 157.409 76.3033 157.589 76.8127C157.79 77.3293 157.725 77.9033 157.409 78.5418C156.764 79.8261 155.967 81.0386 155.042 82.1579C154.102 83.2843 153.126 84.3892 152.093 85.4941C151.835 85.7452 151.763 86.0107 151.899 86.312C152.028 86.5918 152.258 86.7497 152.574 86.7497L174.959 86.6564C175.145 86.6564 175.303 86.556 175.439 86.3622C176.523 85.1425 177.169 83.4493 177.362 81.2897C177.563 79.1373 177.362 76.9634 176.788 74.7822C176.214 72.594 175.296 70.5635 174.04 68.6981C172.792 66.8398 171.278 65.5484 169.549 64.8381L169.649 64.9314C169.133 64.7377 168.681 64.6946 168.293 64.7879C167.913 64.8811 167.483 64.9959 167.045 65.1251C161.836 66.6605 156.656 67.7367 151.512 68.3537C146.375 68.9636 141.058 68.7196 135.591 67.6291C134.766 67.4999 134.02 67.2919 133.374 66.9977C132.736 66.7179 132.305 66.3089 132.126 65.7995C131.796 64.8955 132.004 64.1924 132.743 63.6758C133.489 63.1592 134.3 63.0372 135.204 63.2884C140.283 64.7735 145.535 65.2184 150.974 64.6444C156.412 64.056 161.413 62.3556 165.983 59.5216C169.714 57.2114 172.555 54.4706 174.521 51.3209C176.487 48.1784 177.506 44.9211 177.606 41.5777C177.699 38.2271 176.846 34.9339 175.052 31.6909C174.342 30.4138 173.488 29.2013 172.476 28.0533C169.549 31.1528 166.772 32.2434 166.65 32.2864C166.464 32.3653 166.263 32.394 166.076 32.394C165.431 32.394 164.821 31.9994 164.577 31.3681C164.261 30.543 164.67 29.6103 165.502 29.2946C165.517 29.2946 167.899 28.3188 170.396 25.5852C170.539 25.4346 170.704 25.3126 170.883 25.2265C173.545 22.0625 176.178 17.0043 176.63 9.18385C176.673 8.44485 176.085 7.81348 175.346 7.81348H161.937C161.269 7.81348 160.717 8.32288 160.66 8.98295L159.712 19.4796C155.86 18.1307 152.882 17.9083 152.882 17.9083C148.735 17.2124 144.481 17.155 140.118 17.7505C134.845 18.4536 130.067 20.1253 125.747 22.7656C122.016 25.0902 119.197 27.8022 117.267 30.9232C115.344 34.0442 114.304 37.2729 114.175 40.6163C114.045 43.9525 114.87 47.2313 116.635 50.4528C118.4 53.6742 121.127 56.5298 124.786 59.0409V59.0481ZM134.752 39.9418L141.044 37.4594C141.302 37.3589 141.503 37.1581 141.603 36.8998L144.086 30.6004C144.423 29.7681 145.6 29.7681 145.93 30.6004L148.412 36.8998C148.513 37.1581 148.721 37.3589 148.972 37.4594L155.271 39.9418C156.104 40.2719 156.104 41.4557 155.271 41.7857L148.972 44.2682C148.721 44.3686 148.52 44.5695 148.412 44.8278L145.93 51.12C145.6 51.9595 144.423 51.9595 144.086 51.12L141.603 44.8278C141.503 44.5695 141.302 44.3686 141.044 44.2682L134.752 41.7857C133.912 41.4557 133.912 40.2719 134.752 39.9418Z\" fill=\"#020200\"/>\\n<path d=\"M4.48718 58.3739C6.94093 62.112 10.1839 64.9962 14.2304 67.0553C16.4259 68.1459 18.7003 68.9566 21.0895 69.466C23.4643 69.9826 25.8679 70.2337 28.3288 70.2337C31.543 70.2337 34.5564 69.6669 37.3402 68.5333C40.1455 67.4069 42.6567 65.6778 44.9167 63.3675C47.7005 59.9667 48.9489 56.078 48.9561 56.0422C49.2287 55.1955 50.1256 54.7292 50.9722 54.9875C51.8116 55.2529 52.2851 56.157 52.0268 57.0036C51.9623 57.1901 50.5416 61.6671 47.2556 65.5989C47.2556 65.5989 47.2413 65.6204 47.2269 65.6276L49.6448 67.9952C49.7668 68.1316 49.9246 68.1961 50.1255 68.1961H63.5781C63.6857 68.275 63.8364 68.3181 64.023 68.3181H75.3016C77.4971 68.9566 79.7714 69.4445 82.1606 69.7674H82.6342C84.0548 69.9539 85.461 70.0831 86.8744 70.1477C88.295 70.2122 89.7084 70.2409 91.129 70.2409C93.5038 70.2409 96.0652 69.9683 98.7916 69.423C101.525 68.8777 104.065 67.9881 106.418 66.7684C108.757 65.5415 110.723 63.9415 112.302 61.947C113.873 59.9524 114.669 57.5058 114.669 54.6144C114.669 52.8135 114.275 51.1347 113.5 49.5993C112.739 48.0495 111.735 46.6576 110.508 45.4021C109.288 44.1537 107.939 43.0057 106.461 41.9797C104.976 40.9466 103.534 40.0425 102.121 39.2749C101.023 38.6363 99.918 38.0193 98.7916 37.4381C97.6652 36.857 96.5603 36.2758 95.4697 35.7018C94.5083 35.1853 93.5397 34.6902 92.5855 34.2095C91.6097 33.7288 90.6698 33.2266 89.7802 32.7172C89.3856 32.4589 88.9622 32.1504 88.4744 31.806C87.9937 31.4472 87.5632 31.0455 87.1757 30.5934C86.7811 30.1414 86.4798 29.6679 86.2574 29.1442C86.035 28.6276 86.0206 28.1253 86.2072 27.6088C86.4009 27.0348 86.7524 26.5397 87.269 26.1595C87.7856 25.7649 88.295 25.4779 88.8116 25.2842C89.5793 24.9685 90.39 24.8035 91.2295 24.8035C92.0689 24.8035 92.8653 24.8967 93.633 25.0976C95.4984 25.5496 97.0482 26.6402 98.2679 28.3693C99.093 29.6033 99.6741 30.9307 99.997 32.38C100.32 33.8292 100.514 35.257 100.571 36.6704C100.571 37.1224 100.801 37.3449 101.253 37.3449H112.345C112.789 37.3449 113.019 37.1224 113.019 36.6704V19.9749C113.019 19.5229 112.789 19.2933 112.345 19.2933H101.052C98.6123 18.5328 96.1513 18.009 93.6689 17.7579C91.2008 17.4924 88.7111 17.3633 86.1928 17.3633C83.9471 17.3633 81.6871 17.5857 79.4486 18.0377C77.1886 18.4969 75.0433 19.2718 72.977 20.3623C71.3053 21.252 69.7627 22.3641 68.3421 23.6842C66.9287 24.9972 65.874 26.5613 65.1565 28.3621C64.5826 29.8473 64.2884 31.3611 64.2884 32.9037C64.2884 34.8194 64.6328 36.5772 65.3431 38.1556C66.0534 39.734 67.0004 41.1618 68.1986 42.4461C69.3824 43.7304 70.7385 44.8855 72.238 45.9115C73.759 46.9446 75.2801 47.8845 76.8298 48.7096C77.9132 49.2836 78.9751 49.836 80.0154 50.3598C81.0342 50.8764 82.1104 51.3858 83.201 51.8952C84.0978 52.3544 85.0162 52.7992 85.9489 53.2512C86.8888 53.7032 87.7999 54.1911 88.704 54.7005C89.3999 55.1525 90.1963 55.7767 91.0573 56.5731C91.9326 57.3838 92.2411 58.295 91.9756 59.3354C91.7891 60.1031 91.2438 60.7846 90.3398 61.3658C89.8232 61.6815 89.2779 61.9398 88.704 62.1263C88.1228 62.32 87.5417 62.4851 86.9677 62.6142C85.4825 62.8007 84.0548 62.7075 82.67 62.32C81.2925 61.9398 80.0871 61.2295 79.054 60.1963C77.8343 58.9766 76.9948 57.5489 76.55 55.913C76.098 54.27 75.8397 52.6127 75.7751 50.9481C75.7751 50.4961 75.5599 50.2737 75.1007 50.2737H64.0158C63.5566 50.2737 63.3414 50.4889 63.3414 50.9481V65.2114L61.1244 59.9954V17.1696C61.1244 12.5203 62.1073 6.98864 64.0086 2.74121L64.4032 1.84437C64.5395 1.65783 64.5395 1.43541 64.4032 1.16995C64.3386 0.983408 64.1521 0.890137 63.8292 0.890137H59.302C59.302 0.890137 59.2302 0.890137 59.2015 0.890137H36.429C36.099 0.890137 35.9124 0.983408 35.855 1.16995C35.7187 1.43541 35.7187 1.65783 35.855 1.84437L36.2496 2.74121C38.1509 6.98147 39.1339 11.5805 39.1339 16.2297C40.5617 16.9184 41.7742 17.7651 42.6495 18.4467C43.5248 19.1426 44.0486 19.6664 44.106 19.7238C44.7302 20.3551 44.7302 21.3739 44.0916 21.9981C43.7831 22.3067 43.3741 22.4573 42.9652 22.4573C42.5562 22.4573 42.1401 22.3067 41.8244 21.9838C41.7957 21.9551 40.698 20.8645 39.0837 19.8601C35.8192 18.2099 32.2175 17.3776 28.3288 17.3776C25.8679 17.3776 23.4643 17.6431 21.0895 18.1453C18.7003 18.6619 16.4259 19.4655 14.2304 20.5632C10.1911 22.6152 6.94093 25.5138 4.48718 29.2374C1.60294 33.614 0.146484 38.4713 0.146484 43.8093C0.146484 46.4496 0.490857 48.9894 1.20833 51.436C1.91145 53.8754 3.00201 56.2 4.48718 58.3811V58.3739ZM16.7201 27.0563C22.137 23.2609 31.4713 27.2644 37.5841 35.9888C43.6898 44.7061 44.2566 54.8512 38.8397 58.6466C33.43 62.4348 24.0885 58.4313 17.9756 49.7141C11.8699 40.9896 11.3103 30.8446 16.7201 27.0563Z\" fill=\"#020200\"/>\\n<path d=\"M63.3414 143.244L61.1244 138.028V95.2018C61.1244 90.5526 62.1073 85.0209 64.0086 80.7734L64.4032 79.8766C64.5395 79.6901 64.5395 79.4676 64.4032 79.2022C64.3386 79.0156 64.1521 78.9224 63.8292 78.9224H59.302C59.302 78.9224 59.2302 78.9224 59.2015 78.9224H36.429C36.099 78.9224 35.9124 79.0156 35.855 79.2022C35.7187 79.4676 35.7187 79.6901 35.855 79.8766L36.2496 80.7734C38.1509 85.0137 39.1339 89.6127 39.1339 94.2619C40.5617 94.9507 41.7742 95.7973 42.6495 96.4789C43.5248 97.1748 44.0486 97.6986 44.106 97.756C44.7302 98.3874 44.7302 99.4062 44.0916 100.03C43.7831 100.339 43.3741 100.49 42.9652 100.49C42.5562 100.49 42.1401 100.339 41.8244 100.016C41.7957 99.9873 40.698 98.8968 39.0837 97.8923C35.8192 96.2421 32.2175 95.4099 28.3288 95.4099C25.8679 95.4099 23.4643 95.6753 21.0895 96.1776C18.7003 96.6941 16.4259 97.4977 14.2304 98.5954C10.1911 100.647 6.94093 103.546 4.48718 107.27C1.60294 111.646 0.146484 116.504 0.146484 121.842C0.146484 124.482 0.490857 127.022 1.20833 129.468C1.91145 131.908 3.00201 134.232 4.48718 136.413C6.94093 140.151 10.1839 143.036 14.2304 145.095C16.4259 146.185 18.7003 146.996 21.0895 147.505C23.4643 148.022 25.8679 148.273 28.3288 148.273C31.543 148.273 34.5564 147.706 37.3402 146.573C40.1455 145.446 42.6567 143.717 44.9167 141.407C47.7005 138.006 48.9489 134.117 48.9561 134.082C49.2287 133.235 50.1256 132.769 50.9722 133.027C51.8116 133.292 52.2851 134.196 52.0268 135.043C51.9623 135.23 50.5416 139.707 47.2556 143.638C47.2556 143.638 47.2413 143.66 47.2269 143.667L49.6448 146.035C49.7668 146.171 49.9246 146.236 50.1255 146.236H63.5781C63.4274 146.128 63.3485 145.941 63.3485 145.676V143.258L63.3414 143.244ZM38.8325 136.672C33.4228 140.46 24.0813 136.456 17.9685 127.739C11.8628 119.015 11.3032 108.87 16.7129 105.081C22.1298 101.286 31.4641 105.289 37.577 114.014C43.6826 122.731 44.2494 132.876 38.8325 136.672Z\" fill=\"#020200\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-jzavnr\",\"data-framer-name\":\"Group\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:175,intrinsicWidth:231,svg:'<svg width=\"231\" height=\"175\" viewBox=\"0 0 231 175\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M79.7976 64.9983C79.7976 55.0604 79.8238 45.1159 79.7844 35.178C79.7713 31.5505 80.283 28.0214 81.3981 24.5841C83.2545 18.8706 86.4163 13.9837 90.7982 9.87731C94.4125 6.48595 98.5517 3.96048 103.262 2.39927C105.682 1.59243 108.142 0.923346 110.713 0.824951C112.616 0.752794 114.525 0.529758 116.407 0.674071C120.395 0.975816 124.305 1.7433 128.011 3.36354C130.878 4.60988 133.58 6.13829 136.007 8.09964C139.707 11.0974 142.731 14.6724 144.988 18.8969C146.746 22.1833 147.907 25.6796 148.569 29.3202C148.937 31.3603 149.081 33.4594 149.081 35.5388C149.12 55.1982 149.12 74.851 149.081 94.5103C149.074 98.761 148.359 102.913 146.87 106.934C145.414 110.87 143.328 114.412 140.593 117.561C138.067 120.467 135.135 122.907 131.79 124.842C128.89 126.515 125.814 127.722 122.586 128.555C119.188 129.428 115.725 129.513 112.242 129.428C109.244 129.349 106.318 128.85 103.537 127.742C101.261 126.836 98.9387 125.964 96.8199 124.757C93.9206 123.104 91.3688 120.939 89.0795 118.486C85.9112 115.095 83.5038 111.238 81.8835 106.895C80.9324 104.35 80.2371 101.733 80.014 99.0168C79.8894 97.4294 79.8041 95.8354 79.8041 94.2414C79.7844 84.5003 79.7976 74.7526 79.7976 65.0115V64.9983ZM120.599 97.9804C120.638 97.8623 120.677 97.7508 120.71 97.6327C120.717 97.5737 120.73 97.5212 120.73 97.4622C120.73 75.9268 120.756 54.3979 120.71 32.8624C120.71 30.4419 119.261 29.0972 116.781 28.9463C115.24 28.8479 113.685 28.861 112.143 28.9594C111.376 29.0053 110.549 29.2087 109.88 29.5826C108.437 30.396 108.129 31.8129 108.129 33.3741C108.142 54.4569 108.135 75.5397 108.142 96.6226C108.142 97.1539 108.188 97.6918 108.253 98.2166C108.398 99.3645 109.841 100.965 111.068 100.998C113.088 101.057 115.121 101.214 117.135 101.07C118.913 100.945 120.277 99.9352 120.599 97.9739V97.9804Z\" fill=\"black\"/>\\n<path d=\"M189.528 65.0367C189.528 75.9323 189.508 86.828 189.547 97.7302C189.547 99.2061 190.905 100.912 192.591 101.01C194.526 101.122 196.474 101.161 198.409 101.102C200.561 101.043 202.162 99.2127 202.162 96.9496C202.162 89.6027 202.234 82.2493 202.122 74.9025C202.083 72.3704 203.729 71.2684 205.73 71.2881C212.821 71.3537 219.919 71.3143 227.016 71.3143C229.306 71.3143 230.519 72.541 230.519 74.85C230.519 81.3834 230.572 87.9169 230.493 94.4503C230.467 96.4642 230.086 98.4714 229.903 100.492C229.607 103.647 228.532 106.579 227.259 109.433C226.045 112.155 224.432 114.667 222.503 116.957C220.338 119.521 217.944 121.863 215.078 123.615C212.874 124.959 210.551 126.173 208.164 127.15C206.084 128.003 203.861 128.561 201.65 129.02C200.089 129.348 198.455 129.295 196.855 129.4C195.858 129.466 194.854 129.591 193.857 129.545C192.729 129.492 191.601 129.348 190.492 129.131C188.859 128.817 187.225 128.489 185.631 128.023C184.332 127.642 183.086 127.078 181.833 126.56C179.537 125.609 177.373 124.395 175.451 122.834C173.686 121.404 171.902 119.948 170.386 118.269C168.76 116.465 167.349 114.444 166.005 112.417C164.024 109.426 162.804 106.087 162.01 102.604C161.459 100.183 161.144 97.7367 161.15 95.2309C161.19 74.9025 161.177 54.574 161.183 34.239C161.183 30.3294 162.036 26.597 163.414 22.9432C164.942 18.8828 167.225 15.3209 170.052 12.0607C172.722 8.98422 175.923 6.58338 179.432 4.62204C182.135 3.11331 185.061 2.03751 188.091 1.36842C191.253 0.673091 194.487 0.423832 197.708 0.659981C201.735 0.961726 205.671 1.72264 209.417 3.37568C213.346 5.10744 216.862 7.38365 219.951 10.3683C222.595 12.92 224.76 15.8129 226.485 19.0337C228.105 22.0642 229.306 25.2916 229.843 28.6764C230.296 31.5233 230.454 34.4358 230.499 37.322C230.591 43.2914 230.526 49.2607 230.526 55.23C230.526 57.48 229.292 58.7197 227.062 58.7197C219.827 58.7197 212.591 58.6804 205.356 58.7525C203.69 58.7722 202.109 57.316 202.135 55.5514C202.221 48.1455 202.155 40.7396 202.181 33.3338C202.194 30.6115 200.495 28.906 197.727 28.9125C196.317 28.9125 194.913 28.8732 193.503 28.9191C191.082 29.0044 190.361 30.0408 189.56 31.7594C189.488 31.9234 189.528 32.1399 189.528 32.3301C189.528 43.2258 189.528 54.1214 189.528 65.0236V65.0367Z\" fill=\"black\"/>\\n<path d=\"M41.384 46.2635C41.3644 42.6884 41.3775 39.1134 41.3119 35.5384C41.2528 32.2126 39.5605 29.7134 36.1035 29.0771C32.6728 28.4408 29.7668 30.2447 28.8616 33.7214C28.2187 36.1812 28.9469 38.5099 29.9833 40.7205C31.597 44.1644 34.1815 46.8735 36.9628 49.3531C39.6851 51.7867 42.6172 53.9842 45.4641 56.2801C47.5567 57.966 49.6755 59.6255 51.7549 61.3311C53.3489 62.6364 54.9691 63.9221 56.4516 65.3456C59.7708 68.5205 62.9326 71.8331 65.2941 75.828C66.8684 78.4912 68.1213 81.2922 68.8297 84.2768C69.8071 88.4029 69.8531 92.6142 69.5775 96.8386C69.3545 100.164 68.7248 103.418 67.6031 106.547C66.4551 109.742 64.8939 112.739 62.8407 115.462C60.4071 118.689 57.5733 121.523 54.1557 123.668C52.0107 125.019 49.7214 126.187 47.373 127.138C45.287 127.984 43.0568 128.496 40.8527 129.02C39.7376 129.289 38.5502 129.289 37.3957 129.375C36.2281 129.46 35.054 129.598 33.8929 129.545C30.4294 129.388 27.0511 128.797 23.7582 127.643C21.1605 126.731 18.681 125.57 16.4048 124.074C12.4296 121.457 9.04479 118.184 6.36844 114.228C4.066 110.83 2.36049 107.144 1.37653 103.162C0.930476 101.358 0.556563 99.4953 0.504086 97.6455C0.346653 91.7811 0.39912 85.9036 0.287605 80.0393C0.254807 78.3338 1.85537 76.9562 3.40345 76.9693C9.34653 77.0087 15.2831 76.9825 21.2261 76.9825C22.6627 76.9825 24.0992 76.9759 25.5358 76.9825C27.4316 76.9956 28.6648 78.2288 28.6648 80.1377C28.6714 84.9787 28.7107 89.8263 28.6517 94.6674C28.6123 97.6914 30.6392 100.171 32.9548 100.794C36.5495 101.765 40.4394 100.164 41.1413 95.9203C41.7317 92.3321 41.4037 88.7571 39.8425 85.4248C38.6224 82.8009 36.9497 80.4591 34.8834 78.419C33.1516 76.7135 31.4527 74.9686 29.6488 73.3418C27.8317 71.7019 25.9097 70.1866 24.0271 68.6254C22.2757 67.1757 20.5111 65.7457 18.7663 64.2895C17.1657 62.9513 15.5258 61.6394 14.0105 60.2028C12.2787 58.5629 10.5666 56.8836 9.02511 55.0666C7.27367 53.0003 5.55505 50.8749 4.11848 48.5856C2.51136 46.0208 1.38307 43.2001 0.779581 40.1958C0.261366 37.6309 0.281057 35.053 0.340094 32.4619C0.41225 29.5363 0.996056 26.7156 1.97345 23.954C3.19355 20.497 4.95812 17.3418 7.19497 14.449C10.055 10.7493 13.5054 7.67286 17.533 5.31137C20.7866 3.40906 24.2829 2.084 27.9957 1.28372C30.9935 0.640868 34.0044 0.522804 37.0284 0.680237C38.8848 0.778632 40.7281 1.15909 42.5648 1.49363C45.556 2.03808 48.357 3.14012 51.0268 4.55701C53.8278 6.04606 56.386 7.86309 58.6754 10.0868C61.0368 12.3761 63.09 14.8819 64.7628 17.7157C66.1928 20.1428 67.3866 22.688 68.1147 25.3905C68.6986 27.5487 69.1971 29.779 69.3283 32.0027C69.5907 36.4239 69.6169 40.8583 69.6497 45.2926C69.6628 47.0834 68.3771 48.2904 66.6388 48.297C59.1805 48.3298 51.7155 48.3035 44.2572 48.3167C42.8862 48.3167 42.0531 47.5951 41.5021 46.434C41.4627 46.375 41.4234 46.316 41.384 46.2569V46.2635Z\" fill=\"black\"/>\\n<path d=\"M63.2204 172.206L62.4096 174.617H60.3936L64.2966 163.876H66.3486L70.3377 174.617H68.336L67.4894 172.206H63.2276H63.2204ZM66.8938 170.534L65.4159 166.315L65.3083 165.727L65.2006 166.315L63.7729 170.534H66.8938Z\" fill=\"#020200\"/>\\n<path d=\"M71.2344 165.95H72.8344L73.0926 167.98C73.437 166.545 74.3267 165.871 75.9697 165.871H76.558V167.872H75.6971C75.0011 167.872 74.4917 167.966 74.133 168.145C73.4083 168.489 73.1859 169.243 73.1859 170.599V174.602H71.2416V165.942L71.2344 165.95Z\" fill=\"#020200\"/>\\n<path d=\"M82.176 174.616C81.3652 174.616 80.7267 174.494 80.3106 174.3C79.4353 173.863 79.1626 172.915 79.1626 171.15V167.699H77.4766V166.028H78.2443C78.5313 166.028 78.725 165.999 78.8613 165.934C79.1483 165.798 79.2416 165.468 79.2846 164.758C79.299 164.378 79.3133 163.868 79.3133 163.61H80.9994V165.942H83.2881V167.692H80.9994V170.813C80.9994 171.387 81.0424 171.811 81.1213 172.09C81.2576 172.664 81.7096 172.772 82.671 172.772H83.2881V174.609H82.176V174.616Z\" fill=\"#020200\"/>\\n<path d=\"M84.4365 163.703C84.4365 162.742 84.8742 162.404 85.7495 162.404C86.6248 162.404 87.0624 162.734 87.0624 163.703C87.0624 164.672 86.6392 165.016 85.7495 165.016C84.8024 165.016 84.4365 164.7 84.4365 163.703ZM84.7235 165.949H86.7253V174.608H84.7235V165.949Z\" fill=\"#020200\"/>\\n<path d=\"M87.9443 171.754H90.0824C90.2618 172.78 90.9721 173.181 92.2061 173.181C93.4402 173.181 93.9711 172.758 93.9711 172.069C93.9711 171.811 93.8635 171.603 93.6411 171.467C93.2034 171.208 92.4501 171.108 91.625 170.986C90.8429 170.864 90.0465 170.728 89.3936 170.383C88.7479 170.039 88.3389 169.45 88.3389 168.482C88.3389 166.889 89.5299 165.741 91.9119 165.741C94.2939 165.741 95.528 166.81 95.7719 168.539H93.7558C93.6195 167.693 93.0455 167.32 91.9047 167.32C90.6707 167.32 90.2904 167.757 90.2904 168.36C90.2904 168.618 90.3981 168.826 90.6205 168.963C91.0581 169.221 91.8259 169.321 92.6509 169.443C93.433 169.565 94.2365 169.702 94.8823 170.046C95.528 170.39 95.9369 170.979 95.9369 171.947C95.9369 173.619 94.7316 174.839 92.1702 174.839C89.6088 174.839 88.2098 173.77 87.9515 171.754H87.9443Z\" fill=\"#020200\"/>\\n<path d=\"M99.8614 174.839C97.9816 174.839 97.0273 173.935 97.0273 172.522C97.0273 171.561 97.4507 170.836 98.1538 170.398C98.3977 170.233 98.6489 170.111 98.8928 170.04C99.4022 169.86 100.055 169.738 101.138 169.573C102.688 169.379 103.305 169.164 103.305 168.461C103.305 167.758 102.839 167.284 101.483 167.284C100.048 167.284 99.4022 167.901 99.3448 169.021H97.3143C97.4507 167.048 98.8999 165.749 101.382 165.749C102.329 165.749 103.054 165.871 103.628 166.122C104.755 166.603 105.207 167.521 105.207 168.777V174.624H103.607L103.398 172.888C102.81 174.021 101.648 174.847 99.8614 174.847V174.839ZM102.014 172.924C102.86 172.393 103.327 171.525 103.327 170.692V170.226C102.968 170.484 102.365 170.664 101.576 170.786C100.521 170.951 100.098 171.073 99.6964 171.331C99.352 171.553 99.1869 171.855 99.1869 172.235C99.1869 172.96 99.639 173.318 100.543 173.318C101.117 173.318 101.598 173.182 102.021 172.924H102.014Z\" fill=\"#020200\"/>\\n<path d=\"M107.036 174.617V165.957H108.708L108.887 167.693C109.354 166.502 110.336 165.749 111.822 165.749C113.917 165.749 115.029 167.134 115.029 169.286V174.617H113.041V169.767C113.041 168.353 112.589 167.464 111.176 167.464C109.763 167.464 109.024 168.49 109.024 170.097V174.617H107.036Z\" fill=\"#020200\"/>\\n<path d=\"M122.979 169.744V174.609H122.018V163.94H122.979V168.819H129.171V163.94H130.118V174.609H129.171V169.744H122.979Z\" fill=\"#020200\"/>\\n<path d=\"M132.349 170.455V170.29C132.349 169.343 132.528 168.539 132.908 167.879C133.662 166.523 134.96 165.813 136.596 165.813C137.428 165.813 138.146 165.992 138.799 166.358C140.097 167.069 140.851 168.41 140.851 170.29V170.455C140.851 171.359 140.686 172.127 140.341 172.787C139.645 174.1 138.368 174.817 136.603 174.817C133.891 174.817 132.356 173.174 132.356 170.448L132.349 170.455ZM139.896 170.441V170.304C139.896 169.551 139.76 168.934 139.473 168.36C138.885 167.277 137.873 166.645 136.61 166.645C135.979 166.645 135.405 166.782 134.924 167.083C133.927 167.671 133.324 168.755 133.324 170.304V170.441C133.324 172.593 134.515 173.963 136.596 173.963C138.677 173.963 139.896 172.622 139.896 170.441Z\" fill=\"#020200\"/>\\n<path d=\"M146.181 174.81C143.979 174.81 142.881 173.346 142.881 171.151V166.057H143.828V170.964C143.828 172.729 144.596 173.949 146.432 173.949C147.021 173.949 147.53 173.798 147.968 173.511C148.857 172.908 149.352 171.854 149.352 170.498V166.057H150.299V174.616H149.489L149.395 172.478C148.972 173.891 147.846 174.81 146.174 174.81H146.181Z\" fill=\"#020200\"/>\\n<path d=\"M152.18 171.826H153.206C153.263 172.306 153.45 172.73 153.701 173.045C154.275 173.677 155.136 173.978 156.14 173.978C156.786 173.978 157.288 173.899 157.662 173.72C158.429 173.375 158.745 172.801 158.745 172.17C158.745 171.761 158.594 171.46 158.336 171.266C157.791 170.857 156.887 170.721 155.897 170.585C155.086 170.463 154.268 170.326 153.622 170.011C152.962 169.695 152.553 169.164 152.553 168.26C152.553 167.837 152.661 167.428 152.883 167.069C153.321 166.301 154.268 165.806 155.803 165.806C157.984 165.806 159.297 166.846 159.491 168.461H158.508C158.372 167.27 157.346 166.61 155.796 166.61C155.208 166.61 154.756 166.689 154.411 166.854C153.751 167.155 153.493 167.686 153.493 168.224C153.493 168.633 153.644 168.934 153.902 169.128C154.447 169.537 155.38 169.673 156.341 169.802C157.174 169.924 157.97 170.075 158.63 170.376C159.276 170.692 159.685 171.237 159.685 172.141C159.685 172.622 159.563 173.06 159.312 173.469C158.831 174.301 157.791 174.825 156.119 174.825C153.902 174.825 152.395 173.827 152.173 171.826H152.18Z\" fill=\"#020200\"/>\\n<path d=\"M165.567 174.824C162.762 174.824 161.306 173.153 161.306 170.469V170.319C161.306 169.415 161.471 168.647 161.837 167.951C162.547 166.595 163.838 165.813 165.603 165.813C166.493 165.813 167.232 166.007 167.835 166.387C169.04 167.155 169.657 168.496 169.657 170.139V170.606H162.26C162.303 172.701 163.465 173.992 165.589 173.992C167.081 173.992 168.15 173.361 168.523 172.062H169.535C169.069 173.885 167.576 174.817 165.575 174.817L165.567 174.824ZM162.267 169.824H168.717C168.609 167.865 167.512 166.602 165.596 166.602C163.68 166.602 162.432 167.851 162.267 169.824Z\" fill=\"#020200\"/>\\n</svg>\\n',withExternalLayout:true})]})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"pEH6Ib3cN\"},motionChild:true,nodeId:\"XRpyYnbSW\",scopeId:\"L19Tvfnan\",children:/*#__PURE__*/_jsxs(MotionAWithFX,{__framer__animate:{transition:transition9},__framer__animateOnce:true,__framer__enter:animation3,__framer__exit:animation10,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1lyiqhw framer-v9haje\",\"data-framer-name\":\"Button\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1xijmwz\",\"data-framer-name\":\"Frame 47\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3BhY2UgR3JvdGVzay1yZWd1bGFy\",\"--framer-font-family\":'\"Space Grotesk\", \"Space Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Discover More\"})}),className:\"framer-1r8l5tx\",\"data-framer-name\":\"Discover More\",fonts:[\"GF;Space Grotesk-regular\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(SVG,{className:\"framer-obmis\",\"data-framer-name\":\"Group 10\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:75,intrinsicWidth:74,svg:'<svg width=\"74\" height=\"75\" viewBox=\"0 0 74 75\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<circle cx=\"37\" cy=\"37.2822\" r=\"37\" fill=\"black\"/>\\n<g clip-path=\"url(#clip0_688_1485)\">\\n<rect width=\"28.8494\" height=\"22.1179\" transform=\"translate(21.8545 26.5176)\" fill=\"black\"/>\\n<path d=\"M50.7039 37.5765L38.0859 48.6355L36.1358 46.6346L44.9398 38.9285H21.8545V36.2246H44.9398L36.1358 28.4914L38.0859 26.5176L50.7039 37.5765Z\" fill=\"white\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_688_1485\">\\n<rect width=\"28.8494\" height=\"22.1179\" fill=\"white\" transform=\"translate(21.8545 26.5176)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})]})})]})]}),isDisplayed6()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-hec7ae hidden-1sc40i8 hidden-1jcley0\",children:isDisplayed6()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-64v0dg hidden-1sc40i8\",children:[isDisplayed6()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eqeunS4q0:{__framer__animate:{transition:transition7},__framer__animateOnce:true,__framer__enter:animation8,__framer__exit:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1},EszxHZDpT:{__framer__animate:{transition:transition7},__framer__animateOnce:true,__framer__enter:animation8,__framer__exit:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{className:\"framer-d4jyvd hidden-1sc40i8\",\"data-framer-name\":\"Houses mobile\",children:[isDisplayed6()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ijy1e7 hidden-1sc40i8\",children:[isDisplayed6()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-182sej7 hidden-1sc40i8\",\"data-framer-name\":\"Group\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:196,intrinsicWidth:281,svg:'<svg width=\"281\" height=\"196\" viewBox=\"0 0 281 196\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M87.7407 193.649C87.0113 194.972 85.7029 195.717 83.5449 195.717C80.4318 195.717 78.7174 193.852 78.7174 190.415V189.408C78.7174 185.934 80.5145 184.024 83.6276 184.024C86.4398 184.024 88.064 185.43 88.3648 188.272H86.1992C86.0563 186.723 85.2518 185.889 83.6276 185.889C81.7778 185.889 80.8303 187.122 80.8303 189.536V190.31C80.8303 192.506 81.7928 193.754 83.6426 193.754C85.3345 193.754 86.0714 192.867 86.2143 191.258H88.425C88.3423 192.19 88.1092 192.98 87.7482 193.656L87.7407 193.649Z\" fill=\"#020200\"/>\\n<path d=\"M89.9062 186.401H91.5831L91.8538 188.529C92.2147 187.033 93.1471 186.318 94.869 186.318H95.4856V188.416H94.5833C93.8615 188.416 93.32 188.506 92.9441 188.702C92.1846 189.063 91.9515 189.852 91.9515 191.274V195.469H89.9138V186.394L89.9062 186.401Z\" fill=\"#020200\"/>\\n<path d=\"M100.712 195.717C97.6513 195.717 96.1474 193.95 96.1474 191.138V190.92C96.1474 189.942 96.3354 189.138 96.7189 188.408C97.4783 186.987 98.8694 186.183 100.779 186.183C102.343 186.183 103.449 186.716 104.171 187.589C104.892 188.453 105.208 189.581 105.208 190.747V191.709H98.2002C98.3731 193.191 99.2905 194.01 100.787 194.01C101.892 194.01 102.539 193.582 102.855 192.792H105.08C104.562 194.642 103.095 195.71 100.704 195.71L100.712 195.717ZM98.2152 190.078H103.14C102.998 188.687 102.238 187.822 100.787 187.822C99.3356 187.822 98.4483 188.641 98.2152 190.078Z\" fill=\"#020200\"/>\\n<path d=\"M109.254 195.717C107.284 195.717 106.284 194.77 106.284 193.288C106.284 192.281 106.727 191.521 107.472 191.063C107.727 190.89 107.99 190.762 108.246 190.687C108.78 190.499 109.464 190.371 110.6 190.198C112.224 189.995 112.871 189.769 112.871 189.032C112.871 188.296 112.382 187.799 110.961 187.799C109.464 187.799 108.78 188.446 108.72 189.611H106.592C106.735 187.544 108.246 186.183 110.855 186.183C111.848 186.183 112.607 186.31 113.209 186.581C114.389 187.085 114.863 188.047 114.863 189.363V195.492H113.186L112.968 193.679C112.352 194.86 111.134 195.732 109.261 195.732L109.254 195.717ZM111.51 193.71C112.397 193.161 112.886 192.243 112.886 191.371V190.882C112.51 191.153 111.878 191.341 111.051 191.469C109.945 191.642 109.502 191.77 109.081 192.04C108.72 192.281 108.547 192.597 108.547 192.988C108.547 193.747 109.021 194.123 109.968 194.123C110.57 194.123 111.073 193.98 111.517 193.71H111.51Z\" fill=\"#020200\"/>\\n<path d=\"M120.728 195.476C119.879 195.476 119.209 195.348 118.773 195.145C117.856 194.686 117.57 193.694 117.57 191.844V188.227H115.803V186.475H116.608C116.908 186.475 117.112 186.445 117.254 186.377C117.555 186.234 117.645 185.888 117.698 185.144C117.713 184.753 117.728 184.212 117.728 183.941H119.495V186.385H121.894V188.219H119.495V191.49C119.495 192.092 119.54 192.536 119.623 192.836C119.766 193.438 120.24 193.543 121.247 193.543H121.894V195.468H120.728V195.476Z\" fill=\"#020200\"/>\\n<path d=\"M123.097 184.047C123.097 183.039 123.556 182.686 124.473 182.686C125.39 182.686 125.849 183.032 125.849 184.047C125.849 185.062 125.405 185.423 124.473 185.423C123.481 185.423 123.097 185.092 123.097 184.047ZM123.398 186.401H125.496V195.477H123.398V186.401Z\" fill=\"#020200\"/>\\n<path d=\"M126.541 186.4H128.706L131.06 192.905L133.504 186.4H135.684L131.955 195.476H130.105L126.533 186.4H126.541Z\" fill=\"#020200\"/>\\n<path d=\"M140.467 195.717C137.406 195.717 135.902 193.95 135.902 191.138V190.92C135.902 189.942 136.09 189.138 136.474 188.408C137.233 186.987 138.625 186.183 140.534 186.183C142.099 186.183 143.204 186.716 143.926 187.589C144.655 188.453 144.971 189.581 144.971 190.747V191.709H137.963C138.136 193.191 139.053 194.01 140.549 194.01C141.655 194.01 142.302 193.582 142.617 192.792H144.843C144.324 194.642 142.85 195.71 140.467 195.71V195.717ZM137.97 190.078H142.896C142.753 188.687 141.993 187.822 140.542 187.822C139.091 187.822 138.203 188.641 137.97 190.078Z\" fill=\"#020200\"/>\\n<path d=\"M152.926 190.377V195.475H151.919V184.294H152.926V189.407H159.416V184.294H160.408V195.475H159.416V190.377H152.926Z\" fill=\"#020200\"/>\\n<path d=\"M162.754 191.122V190.949C162.754 189.957 162.942 189.115 163.341 188.423C164.13 187.002 165.491 186.257 167.206 186.257C168.071 186.257 168.83 186.445 169.514 186.829C170.875 187.573 171.665 188.979 171.665 190.949V191.122C171.665 192.07 171.492 192.874 171.131 193.566C170.402 194.942 169.063 195.694 167.213 195.694C164.371 195.694 162.762 193.972 162.762 191.115L162.754 191.122ZM170.665 191.107V190.964C170.665 190.175 170.522 189.528 170.221 188.927C169.605 187.791 168.552 187.13 167.221 187.13C166.559 187.13 165.958 187.272 165.454 187.588C164.409 188.205 163.777 189.34 163.777 190.964V191.107C163.777 193.363 165.025 194.799 167.206 194.799C169.387 194.799 170.665 193.393 170.665 191.107Z\" fill=\"#020200\"/>\\n<path d=\"M177.244 195.679C174.943 195.679 173.785 194.145 173.785 191.844V186.505H174.778V191.649C174.778 193.498 175.583 194.777 177.507 194.777C178.124 194.777 178.658 194.619 179.117 194.318C180.049 193.686 180.568 192.581 180.568 191.16V186.505H181.56V195.476H180.711L180.621 193.235C180.177 194.717 178.996 195.679 177.244 195.679Z\" fill=\"#020200\"/>\\n<path d=\"M183.531 192.559H184.606C184.666 193.062 184.861 193.506 185.125 193.837C185.726 194.499 186.629 194.814 187.681 194.814C188.358 194.814 188.884 194.739 189.275 194.544C190.08 194.183 190.411 193.581 190.411 192.92C190.411 192.491 190.253 192.175 189.982 191.972C189.411 191.543 188.463 191.401 187.426 191.265C186.576 191.137 185.719 190.995 185.042 190.664C184.35 190.333 183.922 189.776 183.922 188.829C183.922 188.385 184.034 187.964 184.267 187.581C184.726 186.776 185.719 186.257 187.328 186.257C189.614 186.257 190.99 187.348 191.193 189.04H190.17C190.027 187.791 188.952 187.099 187.328 187.099C186.711 187.099 186.238 187.175 185.877 187.355C185.185 187.671 184.914 188.22 184.914 188.791C184.914 189.22 185.072 189.536 185.343 189.739C185.914 190.167 186.892 190.31 187.899 190.453C188.772 190.581 189.606 190.739 190.298 191.055C190.975 191.386 191.403 191.957 191.403 192.904C191.403 193.408 191.276 193.867 191.005 194.296C190.501 195.16 189.411 195.717 187.659 195.717C185.335 195.717 183.756 194.672 183.523 192.574L183.531 192.559Z\" fill=\"#020200\"/>\\n<path d=\"M197.569 195.694C194.637 195.694 193.103 193.942 193.103 191.13V190.972C193.103 190.025 193.276 189.22 193.652 188.491C194.396 187.07 195.75 186.25 197.599 186.25C198.532 186.25 199.306 186.453 199.938 186.852C201.201 187.656 201.848 189.062 201.848 190.784V191.273H194.095C194.14 193.469 195.359 194.822 197.584 194.822C199.148 194.822 200.269 194.16 200.66 192.799H201.72C201.231 194.709 199.667 195.687 197.569 195.687V195.694ZM194.11 190.453H200.87C200.758 188.401 199.607 187.077 197.599 187.077C195.592 187.077 194.283 188.386 194.11 190.453Z\" fill=\"#020200\"/>\\n<path d=\"M12.6115 22.32C13.0146 22.8871 13.24 23.1877 13.4518 23.5019C18.5415 31.0033 23.5902 38.5319 28.7209 46.0127C32.7926 51.9564 36.5774 58.064 39.399 64.7045C40.5194 67.3484 41.4212 70.0811 42.4528 72.8685H57.0933V4.16113H44.557V50.8154C42.8695 46.5456 40.8268 42.4875 38.3195 38.7027C32.5467 29.9853 26.6645 21.3499 20.8096 12.6872C18.8626 9.81101 16.8745 6.97583 14.9411 4.18163H0V72.8685H12.6047V22.32H12.6115Z\" fill=\"#020200\"/>\\n<path d=\"M79.9935 72.5541C86.9278 75.2458 94.0123 75.239 100.974 72.5746C108.031 69.876 112.786 64.8273 115.355 57.7428C117.445 51.9631 117.637 46.0467 116.291 40.1099C114.494 32.1577 109.999 26.1799 102.552 22.7025C96.3488 19.8058 89.8176 19.5394 83.1976 21.0629C78.429 22.1628 74.3231 24.5061 70.996 28.0655C65.7834 33.6607 63.8773 40.472 63.9524 48.8478C64.1642 50.2415 64.335 52.5369 64.8679 54.7504C66.8901 63.2082 71.8022 69.3705 79.9935 72.5473V72.5541ZM80.6903 35.6078C86.1626 29.1927 98.3505 29.6299 102.327 38.8392C104.984 44.9946 104.998 51.2184 101.616 57.1621C99.3685 61.1245 95.7545 63.0306 91.225 63.2424C87.8842 63.3995 84.8099 62.6275 82.1797 60.4618C79.4538 58.221 77.9849 55.2423 77.3291 51.8469C77.0285 50.2825 76.9465 48.6838 76.7621 47.1057C76.8577 42.8358 77.862 38.9143 80.6835 35.6009L80.6903 35.6078Z\" fill=\"#020200\"/>\\n<path d=\"M191.174 72.6436C196.298 74.577 201.579 74.9801 206.962 73.9485C216.356 72.138 222.853 66.8161 226.221 57.8664C228.476 51.8749 228.558 45.7126 227.075 39.5299C225.757 34.0303 222.997 29.3642 218.515 25.8458C211.232 20.1139 202.938 19.1438 194.146 21.0635C189.186 22.143 184.984 24.6571 181.589 28.4282C176.786 33.7502 174.949 40.1652 174.86 46.6828C174.962 50.6384 175.352 54.0406 176.486 57.3267C179.041 64.664 183.844 69.8835 191.167 72.6436H191.174ZM190.641 36.8586C193.634 32.5341 197.944 30.874 203.048 31.4069C208.083 31.9329 211.628 34.7066 213.48 39.3864C215.775 45.1798 215.782 50.9868 212.865 56.6025C210.132 61.863 204.933 63.8716 199.359 63.1269C192.814 62.2524 189.309 57.3677 188.202 51.67C187.949 50.3856 187.888 49.0602 187.738 47.7485C187.656 43.8271 188.394 40.1174 190.641 36.8586Z\" fill=\"#020200\"/>\\n<path d=\"M246.293 71.4752C246.293 63.2087 246.252 54.9423 246.327 46.6758C246.348 44.7151 246.58 42.7202 247.038 40.8141C248.418 35.0208 252.346 31.6458 257.9 31.2633C262.04 30.9832 265.074 32.7526 266.918 36.4486C268.25 39.1062 268.483 41.9687 268.496 44.8449C268.53 53.774 268.51 62.6964 268.51 71.6255V72.8552H280.814V71.6597C280.814 61.8287 280.835 51.9978 280.8 42.1668C280.794 38.867 280.554 35.5878 279.605 32.3973C278.232 27.7654 275.779 23.9122 271.284 21.7671C263.543 18.0779 253.097 20.4554 248.459 29.0908C247.639 30.6142 247.024 32.247 246.218 34.0506V21.7397H234.064V72.8552H246.293V71.4615V71.4752Z\" fill=\"#020200\"/>\\n<path d=\"M125.93 34.1527C125.93 40.8889 125.869 47.625 125.958 54.3612C125.992 56.8821 126.17 59.4304 126.627 61.9103C127.522 66.7814 129.9 70.7302 134.607 72.8617C138.105 74.4398 141.835 74.7404 145.613 74.392C147.287 74.2349 148.94 73.8796 150.532 73.6269V62.7028C149.22 62.9966 147.997 63.4133 146.74 63.5295C144.205 63.7617 141.767 63.4201 140.079 61.2203C138.815 59.5738 138.344 57.5926 138.323 55.5636C138.255 48.1306 138.262 40.7044 138.248 33.2714C138.248 33.1348 138.282 32.9982 138.33 32.6771H150.559V21.6574H138.207V12.2363H125.903V21.7189H119.119V32.759H125.944V34.1527H125.93Z\" fill=\"#020200\"/>\\n<path d=\"M156.858 72.8484H168.916V21.7534H156.858V72.8484Z\" fill=\"#020200\"/>\\n<path d=\"M162.761 14.6897C167.98 14.7853 171.54 10.0645 169.777 5.38475C168.52 2.05084 164.612 0.240414 160.814 1.22419C157.924 1.97569 155.833 4.23019 155.58 6.86726C155.164 11.2806 158.218 14.6009 162.761 14.6897Z\" fill=\"#020200\"/>\\n<path d=\"M57.0796 123.308V84.8452H44.5638V131.786C44.3657 131.424 44.2837 131.315 44.2427 131.192C42.3435 125.891 39.5493 121.04 36.4476 116.388C30.3263 107.233 24.0616 98.1809 17.8515 89.0878C16.8609 87.6326 15.8498 86.1911 14.9275 84.8521H0V153.532H12.5637V102.915C12.9599 103.489 13.1785 103.79 13.3835 104.104C18.9036 112.241 24.4032 120.391 29.9369 128.514C33.4211 133.631 36.5774 138.946 39.0505 144.63C40.3008 147.513 41.3119 150.506 42.4733 153.553H47.5288C44.2427 131.192 57.0728 123.308 57.0728 123.308H57.0796Z\" fill=\"#020200\"/>\\n<path d=\"M226.494 118.102C224.301 111.537 220.148 106.584 213.89 103.571C207.543 100.51 200.848 100.114 194.071 101.788C186.173 103.728 180.475 108.463 177.292 115.937C173.985 123.711 174.129 131.622 177.094 139.472C178.952 144.405 182.149 148.388 186.651 151.079C194.665 155.882 203.184 156.394 211.908 153.259C217.162 151.373 221.207 147.882 224.09 143.134C226.897 138.509 228.073 133.412 228.168 128.022C227.963 126.054 227.833 124.08 227.526 122.126C227.314 120.767 226.932 119.414 226.494 118.102ZM212.851 137.368C210.091 142.615 204.858 144.562 199.297 143.797C193.005 142.929 189.425 138.215 188.311 132.668C187.997 131.076 187.908 129.436 187.717 127.824C187.799 123.588 188.783 119.694 191.55 116.387C197.022 109.836 209.326 110.266 213.309 119.585C215.844 125.522 215.912 131.554 212.851 137.368Z\" fill=\"#020200\"/>\\n<path d=\"M279.701 113.485C277.965 106.113 272.937 101.618 265.504 100.928C258.488 100.279 252.865 102.937 249.026 108.901C247.912 110.629 247.181 112.61 246.293 114.448V102.424H234.126V153.512H246.32V152.173C246.32 144.119 246.273 136.057 246.355 128.002C246.375 125.803 246.566 123.541 247.099 121.417C248.404 116.129 252.066 112.235 258.112 111.907C261.753 111.709 265.115 113.478 266.775 116.71C268.011 119.114 268.469 121.69 268.483 124.347C268.517 133.652 268.496 142.964 268.496 152.269C268.496 152.679 268.496 153.089 268.496 153.553H280.773C280.787 153.253 280.8 153.048 280.8 152.85C280.8 142.397 280.869 131.944 280.753 121.492C280.725 118.814 280.322 116.095 279.707 113.485H279.701Z\" fill=\"#020200\"/>\\n<path d=\"M144.39 144.172C142.47 143.953 140.926 143.133 139.84 141.46C138.446 139.308 138.282 136.896 138.269 134.471C138.228 127.837 138.255 121.203 138.255 114.563C138.255 114.201 138.282 113.832 138.31 113.374H150.641V102.348H138.2V92.9265H125.937V102.395H125.862C123.635 96.3423 119.324 91.9359 113.736 88.6634C105.196 83.6557 95.8363 81.8658 86.0395 82.4601C80.8132 82.7744 75.867 84.2501 71.6244 87.543C64.9224 92.7488 63.2077 102.067 67.8874 108.564C71.3102 113.319 76.2017 116.052 81.6057 117.972C83.218 118.546 84.8644 119.031 86.6954 119.618C83.5596 119.475 80.6697 119.222 77.7799 119.222C71.7952 119.222 65.9335 119.892 60.5364 122.809C59.2589 123.499 58.1043 124.339 57.0795 125.295C50.5347 131.396 49.2776 142.266 55.0505 149.316C55.6654 150.074 56.3485 150.785 57.0795 151.441C63.2896 157.07 73.2914 159.277 81.7355 156.421C88.4033 154.173 93.4793 149.699 97.5648 144.083C99.3752 141.596 100.974 138.952 102.668 136.377L104.868 133.296C104.957 133.173 105.141 133.282 105.087 133.419L100.926 143.892C100.229 146.638 99.6075 149.097 99.6075 149.097C98.6442 152.91 99.5528 157.125 101.93 160.24C104.055 163.021 108.222 165.562 111.809 164.346C111.877 164.319 111.946 164.298 112.007 164.271C113.872 163.478 114.87 161.169 115.389 159.448C115.396 159.434 115.403 159.414 115.403 159.4C115.56 158.805 115.71 158.211 115.86 157.61C115.867 157.576 115.874 157.548 115.881 157.521C119.242 144.206 122.61 130.884 125.944 117.555C126.176 116.64 126.402 115.731 126.627 114.816C127.488 111.372 127.468 107.888 126.518 104.438C126.62 104.732 130.733 111.871 126.115 133.746C125.93 134.607 125.944 134.935 125.958 135.816C125.958 135.816 125.958 135.823 125.958 135.83C125.971 138.788 126.238 141.719 127.119 144.568C128.164 147.957 129.995 150.764 133.056 152.677C135.563 154.249 138.357 154.843 141.261 155.082C144.438 155.349 147.56 155.021 150.648 154.167V143.133C148.612 144.131 146.535 144.411 144.39 144.158V144.172ZM84.7005 112.957C81.3871 109.61 81.1616 105.285 83.4708 102.293C83.5322 102.19 86.1693 98.4261 91.5255 95.9393C91.6962 95.8573 91.8739 96.0486 91.785 96.2126C91.4503 96.8206 89.5374 98.8291 90.61 98.7471C94.5793 98.2348 98.4051 99.1844 102.087 100.899C104.902 102.211 107.307 104.021 108.509 107.041C110.135 111.106 108.42 115.232 104.397 116.981C100.721 118.58 96.9704 118.334 93.411 117.494C90.0293 116.578 87.0643 115.342 84.6937 112.95L84.7005 112.957ZM109.261 120.821C107.942 121.811 106.33 123.082 104.82 124.414C103.734 126.361 102.654 128.295 101.452 130.139C98.6237 134.484 94.996 138.078 90.446 140.647C85.937 143.188 81.2163 144.295 76.1607 142.416C73.0933 141.275 70.9549 139.232 70.5928 135.837C70.2239 132.428 71.6859 129.866 74.5689 128.062C77.6706 126.122 81.1958 125.617 84.7073 125.179C89.2368 124.612 93.8004 124.305 98.3094 123.615C100.304 123.307 102.245 122.699 104.397 122.071L108.912 120.26C109.274 120.097 109.575 120.588 109.254 120.828L109.261 120.821Z\" fill=\"#020200\"/>\\n<path d=\"M156.865 153.553H168.902V102.444H156.865V153.553Z\" fill=\"#020200\"/>\\n<path d=\"M163.3 81.654C159.051 81.4559 155.751 84.2364 155.546 88.1784C155.348 92.0178 158.347 95.1263 162.474 95.3517C166.709 95.584 170.05 92.7352 170.248 88.7112C170.44 84.9401 167.386 81.8384 163.307 81.6472L163.3 81.654Z\" fill=\"#020200\"/>\\n</svg>\\n',withExternalLayout:true}),isDisplayed()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-18omkd7 hidden-1sc40i8 hidden-1wyrj5b\",\"data-framer-name\":\"Group\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:195,intrinsicWidth:277,svg:'<svg width=\"277\" height=\"195\" viewBox=\"0 0 277 195\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M70.8049 179.19C71.7223 179.19 72.5419 179.378 73.3014 179.739C74.8203 180.499 75.7828 181.98 75.7828 184.348V185.296C75.7828 186.461 75.5798 187.409 75.1512 188.168C74.2865 189.687 72.7675 190.439 70.8877 190.439H66.8648V179.183H70.8125L70.8049 179.19ZM68.9101 188.627H70.7899C72.5269 188.627 73.6924 187.492 73.6924 185.108V184.506C73.6924 182.123 72.4893 180.972 70.7072 180.972H68.9101V188.627Z\" fill=\"#020200\"/>\\n<path d=\"M81.7307 190.68C78.6703 190.68 77.1664 188.913 77.1664 186.101V185.883C77.1664 184.905 77.3544 184.101 77.7379 183.371C78.4974 181.95 79.8884 181.146 81.7984 181.146C83.3624 181.146 84.4678 181.679 85.1896 182.552C85.919 183.424 86.2348 184.544 86.2348 185.71V186.672H79.2267C79.3997 188.154 80.3171 188.981 81.8134 188.981C82.9188 188.981 83.5654 188.552 83.8813 187.763H86.107C85.5882 189.612 84.1144 190.68 81.7307 190.68ZM79.2343 185.041H84.1595C84.0166 183.649 83.2571 182.785 81.8059 182.785C80.3546 182.785 79.4674 183.604 79.2343 185.041Z\" fill=\"#020200\"/>\\n<path d=\"M87.1296 187.447H89.3703C89.5583 188.522 90.3028 188.943 91.5961 188.943C92.8894 188.943 93.4459 188.5 93.4459 187.778C93.4459 187.507 93.3331 187.289 93.1 187.146C92.6413 186.875 91.8518 186.77 90.987 186.642C90.1674 186.514 89.3252 186.372 88.6485 186.011C87.9718 185.65 87.5431 185.033 87.5431 184.018C87.5431 182.349 88.7913 181.146 91.2878 181.146C93.7842 181.146 95.0776 182.266 95.3332 184.078H93.2203C93.0774 183.191 92.4759 182.8 91.2803 182.8C89.987 182.8 89.5884 183.258 89.5884 183.89C89.5884 184.161 89.7012 184.379 89.9343 184.522C90.393 184.792 91.1976 184.898 92.0698 185.026C92.8894 185.153 93.7241 185.296 94.4084 185.657C95.0851 186.018 95.5137 186.635 95.5137 187.65C95.5137 189.402 94.2505 190.68 91.566 190.68C88.8816 190.68 87.4153 189.56 87.1446 187.447H87.1296Z\" fill=\"#020200\"/>\\n<path d=\"M96.6717 179.018C96.6717 178.011 97.1304 177.657 98.0478 177.657C98.9651 177.657 99.4238 178.003 99.4238 179.018C99.4238 180.033 98.9802 180.394 98.0478 180.394C97.0552 180.394 96.6717 180.063 96.6717 179.018ZM96.9725 181.372H99.0704V190.448H96.9725V181.372Z\" fill=\"#020200\"/>\\n<path d=\"M102.071 194.283C100.837 193.922 100.462 193.252 100.462 192.403C100.462 191.425 101.063 190.711 102.499 190.38C101.266 190.207 100.732 189.59 100.732 188.673C100.732 187.756 101.424 187.124 102.687 186.853C101.439 186.462 100.822 185.605 100.822 184.282C100.822 182.47 102.176 181.485 104.342 181.342L104.8 181.312C105.334 181.266 105.718 181.214 105.981 181.109C106.485 180.921 106.612 180.492 106.612 179.627V179.484H109.011V179.785C109.011 181.236 108.282 181.635 106.342 181.65C108.034 181.883 108.943 182.913 108.943 184.289V184.349C108.943 186.274 107.409 187.447 104.838 187.447H104.695C104.063 187.447 103.605 187.462 103.289 187.53C102.657 187.643 102.514 187.816 102.514 188.117C102.514 188.545 102.89 188.718 103.966 188.718H105.8C108.342 188.718 109.447 189.763 109.447 191.388C109.447 193.373 107.951 194.576 104.793 194.576H104.68C103.544 194.576 102.672 194.486 102.063 194.29L102.071 194.283ZM107.53 191.485C107.53 190.854 107.056 190.44 105.733 190.44H104.108C102.988 190.553 102.499 191.042 102.499 191.673V191.703C102.499 192.275 103.071 192.854 104.492 192.854H104.823C106.703 192.854 107.537 192.35 107.537 191.478L107.53 191.485ZM106.883 184.364V184.319C106.883 183.056 105.996 182.627 104.875 182.627C103.755 182.627 102.89 183.161 102.89 184.334V184.38C102.89 185.44 103.612 185.974 104.845 185.974C106.221 185.974 106.883 185.44 106.883 184.364Z\" fill=\"#020200\"/>\\n<path d=\"M110.485 190.447V181.371H112.237L112.425 183.191C112.914 181.943 113.944 181.153 115.5 181.153C117.696 181.153 118.862 182.605 118.862 184.86V190.447H116.779V185.364C116.779 183.883 116.305 182.95 114.824 182.95C113.342 182.95 112.568 184.026 112.568 185.71V190.447H110.485Z\" fill=\"#020200\"/>\\n<path d=\"M127.524 185.35V190.448H126.516V179.267H127.524V184.38H134.013V179.267H135.006V190.448H134.013V185.35H127.524Z\" fill=\"#020200\"/>\\n<path d=\"M137.344 186.086V185.913C137.344 184.92 137.532 184.078 137.931 183.386C138.72 181.965 140.081 181.221 141.796 181.221C142.668 181.221 143.42 181.409 144.104 181.792C145.458 182.537 146.255 183.943 146.255 185.913V186.086C146.255 187.033 146.082 187.838 145.721 188.53C144.999 189.906 143.653 190.658 141.803 190.658C138.961 190.658 137.352 188.936 137.352 186.078L137.344 186.086ZM145.255 186.071V185.928C145.255 185.138 145.112 184.492 144.811 183.89C144.194 182.755 143.134 182.093 141.811 182.093C141.149 182.093 140.548 182.236 140.044 182.552C139.006 183.168 138.374 184.304 138.374 185.928V186.071C138.374 188.327 139.623 189.763 141.796 189.763C143.969 189.763 145.255 188.357 145.255 186.071Z\" fill=\"#020200\"/>\\n<path d=\"M151.842 190.65C149.533 190.65 148.383 189.116 148.383 186.815V181.477H149.375V186.62C149.375 188.47 150.18 189.748 152.105 189.748C152.721 189.748 153.255 189.59 153.714 189.289C154.646 188.658 155.165 187.552 155.165 186.131V181.477H156.158V190.447H155.308L155.21 188.206C154.767 189.688 153.586 190.65 151.834 190.65H151.842Z\" fill=\"#020200\"/>\\n<path d=\"M158.128 187.529H159.203C159.263 188.033 159.459 188.477 159.722 188.808C160.324 189.47 161.218 189.785 162.279 189.785C162.955 189.785 163.482 189.703 163.873 189.515C164.677 189.154 165.008 188.552 165.008 187.89C165.008 187.462 164.85 187.146 164.58 186.943C164.008 186.514 163.061 186.372 162.023 186.229C161.173 186.101 160.316 185.958 159.639 185.627C158.948 185.296 158.519 184.74 158.519 183.792C158.519 183.349 158.632 182.92 158.865 182.544C159.324 181.74 160.316 181.221 161.925 181.221C164.211 181.221 165.587 182.311 165.79 184.003H164.76C164.617 182.755 163.542 182.063 161.918 182.063C161.301 182.063 160.827 182.146 160.466 182.319C159.775 182.634 159.504 183.191 159.504 183.755C159.504 184.183 159.662 184.499 159.933 184.702C160.504 185.131 161.482 185.274 162.489 185.409C163.354 185.537 164.196 185.695 164.888 186.011C165.565 186.341 165.993 186.913 165.993 187.86C165.993 188.364 165.865 188.823 165.602 189.251C165.098 190.124 164.008 190.673 162.256 190.673C159.933 190.673 158.353 189.627 158.12 187.529H158.128Z\" fill=\"#020200\"/>\\n<path d=\"M172.167 190.665C169.234 190.665 167.7 188.913 167.7 186.101V185.943C167.7 184.995 167.873 184.191 168.249 183.461C168.994 182.04 170.347 181.221 172.197 181.221C173.129 181.221 173.904 181.424 174.535 181.822C175.799 182.627 176.445 184.033 176.445 185.755V186.244H168.693C168.738 188.439 169.956 189.793 172.182 189.793C173.746 189.793 174.866 189.131 175.257 187.77H176.318C175.829 189.68 174.265 190.658 172.167 190.658V190.665ZM168.708 185.424H175.468C175.355 183.371 174.205 182.048 172.197 182.048C170.189 182.048 168.881 183.356 168.708 185.424Z\" fill=\"#020200\"/>\\n<path d=\"M185.123 70.3847C184.987 70.6554 184.987 70.8885 185.123 71.0915C185.19 71.2945 185.393 71.3923 185.732 71.3923H214.148C214.411 71.3923 214.621 71.2945 214.749 71.0915C214.877 70.8885 214.885 70.6554 214.749 70.3847L211.403 62.6998V36.4119C211.403 34.0057 212.253 31.9529 213.937 30.246C215.576 28.5692 217.862 27.6142 220.208 27.6142C222.554 27.6142 224.705 28.4714 226.419 30.1934C228.141 31.9153 228.998 33.9832 228.998 36.4119V62.6998L225.66 70.3847C225.525 70.6554 225.525 70.8885 225.66 71.0915C225.728 71.2945 225.931 71.3923 226.269 71.3923H254.677C254.948 71.3923 255.151 71.2945 255.286 71.0915C255.422 70.8885 255.422 70.6554 255.286 70.3847L251.94 62.6998V37.7203C251.94 35.9081 251.692 34.1486 251.188 32.4642C250.677 30.7799 249.857 29.1933 248.707 27.712C247.632 26.2908 246.368 25.0501 244.917 23.9748C243.473 22.8995 241.917 21.9671 240.27 21.1926C238.616 20.4181 236.901 19.8166 235.112 19.3805C233.322 18.9443 231.585 18.621 229.908 18.418C228.156 18.2149 226.434 18.1172 224.75 18.1172C221.043 18.1172 217.486 18.621 214.088 19.6286C210.689 20.6362 207.681 22.5236 205.057 25.2682C205.057 25.2682 205.042 25.2832 205.034 25.2907C203.876 26.7269 202.59 28.4414 201.568 30.1633C201.252 30.6897 200.695 30.9829 200.124 30.9829C199.831 30.9829 199.53 30.9077 199.267 30.7498C198.47 30.2686 198.214 29.2384 198.688 28.4414C199.868 26.4637 201.335 24.5087 202.628 22.9296L200.086 20.4407C199.943 20.3129 199.786 20.2377 199.583 20.2377H190.07C188.958 20.2377 188.055 21.14 188.055 22.2529V28.9301L188.461 62.7074L185.115 70.3922L185.123 70.3847Z\" fill=\"#020200\"/>\\n<path d=\"M133.254 127.584C133.254 124.952 132.78 122.328 131.84 119.704C130.75 116.666 129.186 113.967 127.133 111.613C125.065 109.252 122.689 107.229 119.99 105.537C116.952 103.65 113.726 102.259 110.312 101.341C106.906 100.439 103.417 99.9805 99.8375 99.9805C96.2583 99.9805 92.7617 100.439 89.3554 101.341C85.9491 102.259 82.7157 103.65 79.6929 105.537C76.986 107.222 74.6098 109.252 72.5495 111.613C70.4817 113.967 68.9176 116.666 67.8348 119.704C66.8949 122.336 66.4137 124.96 66.4137 127.584C66.4137 130.209 66.8949 132.84 67.8348 135.48C68.9176 138.502 70.4817 141.202 72.5495 143.563C74.6098 145.917 76.9784 147.939 79.6929 149.631C82.7157 151.511 85.9491 152.91 89.3554 153.82C92.7617 154.737 96.2583 155.188 99.8375 155.188C103.417 155.188 106.906 154.729 110.312 153.82C113.726 152.91 116.952 151.511 119.99 149.631C122.689 147.947 125.058 145.917 127.133 143.563C129.186 141.202 130.75 138.502 131.84 135.48C132.78 132.84 133.254 130.216 133.254 127.584ZM110.101 143.601C104.432 147.578 94.6415 143.383 88.235 134.239C81.836 125.103 81.2419 114.47 86.9191 110.493C92.5963 106.515 102.379 110.718 108.786 119.854C115.185 128.99 115.779 139.623 110.101 143.601Z\" fill=\"#020200\"/>\\n<path d=\"M157.526 112.012C158.196 111.538 158.903 111.471 159.647 111.809C162.076 112.817 164.52 113.817 166.986 114.787C169.437 115.772 171.889 116.727 174.317 117.674C174.52 117.809 174.753 117.809 175.024 117.674C175.227 117.606 175.325 117.403 175.325 117.073V100.891C175.325 100.485 175.122 100.221 174.723 100.086C172.768 99.6801 170.678 99.5297 168.452 99.6275C166.226 99.7252 164.016 100.086 161.828 100.688C159.632 101.289 157.542 102.139 155.556 103.214C153.677 104.229 152.067 105.387 150.699 106.711H150.684C149.488 108.192 148.135 109.982 147.074 111.771C146.759 112.298 146.202 112.591 145.631 112.591C145.337 112.591 145.037 112.508 144.774 112.35C143.976 111.877 143.721 110.846 144.187 110.049C145.353 108.109 146.789 106.177 148.06 104.613L145.495 102.101C145.353 101.966 145.195 101.898 144.992 101.898H130.833C130.487 101.898 130.291 101.996 130.231 102.199C130.088 102.477 130.088 102.71 130.231 102.913L133.57 110.591V144.564L130.231 152.241C130.088 152.519 130.088 152.752 130.231 152.955C130.291 153.158 130.494 153.256 130.833 153.256H159.241C159.512 153.256 159.715 153.158 159.85 152.955C159.985 152.752 159.985 152.519 159.85 152.241L156.511 144.564V113.922C156.511 113.117 156.842 112.478 157.519 112.004L157.526 112.012Z\" fill=\"#020200\"/>\\n<path d=\"M105.695 126.953L101.371 125.246C101.199 125.178 101.056 125.036 100.988 124.863L99.281 120.539C99.0555 119.967 98.2434 119.967 98.0178 120.539L96.3109 124.863C96.2432 125.036 96.1004 125.178 95.9274 125.246L91.6037 126.953C91.0323 127.179 91.0323 127.991 91.6037 128.216L95.9274 129.923C96.1004 129.991 96.2432 130.134 96.3109 130.307L98.0178 134.63C98.2434 135.202 99.0555 135.202 99.281 134.63L100.988 130.307C101.056 130.134 101.199 129.991 101.371 129.923L105.695 128.216C106.267 127.991 106.267 127.179 105.695 126.953Z\" fill=\"#020200\"/>\\n<path d=\"M276.732 152.353L273.393 144.668V119.696C273.393 116.26 272.799 113.297 271.626 110.801C270.446 108.304 268.844 106.252 266.821 104.627C264.799 103.011 262.4 101.838 259.64 101.093C256.873 100.356 253.88 99.9805 250.639 99.9805C247.203 99.9805 243.864 100.402 240.631 101.244C237.458 102.071 234.608 103.627 232.082 105.913C230.751 107.5 229.074 109.643 227.803 111.771C227.487 112.297 226.931 112.591 226.359 112.591C226.073 112.591 225.773 112.508 225.502 112.35C224.705 111.876 224.449 110.846 224.923 110.049C226.277 107.786 228.006 105.552 229.405 103.876C227.713 102.672 225.818 101.8 223.75 101.244C220.584 100.402 217.411 99.9805 214.245 99.9805C210.531 99.9805 206.982 100.484 203.583 101.492C200.244 102.484 197.297 104.304 194.71 106.974C194.71 106.974 194.71 106.974 194.695 106.989C193.56 108.41 192.304 110.087 191.296 111.771C190.98 112.297 190.424 112.591 189.852 112.591C189.559 112.591 189.258 112.508 188.995 112.35C188.198 111.876 187.943 110.846 188.416 110.049C189.529 108.184 190.898 106.342 192.131 104.815L192.033 104.718L189.574 102.304C189.537 102.266 189.499 102.236 189.454 102.206L188.018 100.808C187.642 100.447 187.138 100.244 186.612 100.244H178.859C178.19 100.244 177.648 100.785 177.648 101.447V144.766L174.31 152.451C174.174 152.722 174.174 152.955 174.31 153.158C174.377 153.361 174.581 153.459 174.911 153.459H203.327C203.598 153.459 203.801 153.361 203.929 153.158C204.064 152.955 204.064 152.722 203.929 152.451L201.199 144.458V116.553C201.199 115.267 201.455 114.125 201.959 113.109C202.463 112.102 203.29 111.327 204.433 110.786C205.38 110.312 206.493 110.072 207.779 110.072C208.854 110.072 209.929 110.35 211.012 110.884C213.23 112.027 214.351 113.952 214.351 116.644V144.548L211.012 152.233C210.877 152.504 210.877 152.737 211.012 152.94C211.08 153.143 211.283 153.241 211.621 153.241H240.037C240.308 153.241 240.511 153.143 240.639 152.94C240.766 152.737 240.774 152.504 240.639 152.233L237.3 144.548V116.644C237.3 115.358 237.548 114.215 238.052 113.2C238.563 112.192 239.383 111.418 240.533 110.876C241.473 110.402 242.586 110.162 243.872 110.162C244.947 110.162 246.03 110.44 247.105 110.974C249.331 112.117 250.444 114.042 250.444 116.734V144.638L247.105 152.323C246.97 152.594 246.97 152.827 247.105 153.03C247.173 153.233 247.376 153.331 247.707 153.331H276.123C276.394 153.331 276.597 153.233 276.724 153.03C276.86 152.827 276.86 152.594 276.724 152.323L276.732 152.353Z\" fill=\"#020200\"/>\\n<path d=\"M130.622 61.6845C128.742 62.4214 126.952 63.3387 125.268 64.414C123.576 65.4968 122.095 66.8127 120.809 68.3542C119.531 69.9784 118.644 71.7079 118.14 73.5576C117.636 75.4149 117.516 77.2346 117.786 79.0167C118.05 80.8139 118.681 82.5133 119.666 84.1299C120.636 85.7541 121.937 87.2054 123.546 88.4837C125.637 90.0252 127.975 91.1456 130.524 91.8223C133.088 92.4915 135.652 92.8224 138.209 92.8224C143.194 92.8224 147.563 91.8975 151.3 90.0477C155.045 88.198 158.188 85.1526 160.76 80.9041C161.234 80.092 161.767 79.5657 162.376 79.3401C162.978 79.107 163.527 79.0619 164.001 79.2423C164.474 79.4077 164.813 79.7687 165.001 80.3026C165.211 80.8439 165.144 81.4455 164.813 82.1147C164.136 83.4607 163.301 84.7315 162.331 85.9045C161.346 87.0851 160.324 88.2431 159.241 89.4011C158.97 89.6642 158.895 89.9425 159.038 90.2583C159.173 90.5515 159.414 90.717 159.745 90.717L183.205 90.6192C183.401 90.6192 183.566 90.5139 183.709 90.3109C184.845 89.0326 185.521 87.258 185.724 84.9947C185.935 82.7388 185.724 80.4605 185.123 78.1746C184.521 75.8811 183.559 73.7531 182.243 71.7981C180.934 69.8506 179.348 68.4971 177.536 67.7526L177.641 67.8504C177.1 67.6474 176.626 67.6023 176.22 67.7C175.821 67.7978 175.37 67.9181 174.911 68.0534C169.452 69.6626 164.023 70.7905 158.632 71.4372C153.248 72.0763 147.676 71.8206 141.946 70.6777C141.082 70.5423 140.299 70.3243 139.623 70.016C138.953 69.7227 138.502 69.2941 138.314 68.7602C137.968 67.8128 138.187 67.0759 138.961 66.5345C139.743 65.9931 140.593 65.8653 141.54 66.1284C146.864 67.685 152.368 68.1512 158.068 67.5496C163.768 66.933 169.009 65.1509 173.798 62.1807C177.709 59.7595 180.686 56.8871 182.747 53.586C184.807 50.2925 185.875 46.8787 185.98 43.3747C186.078 39.8631 185.183 36.4117 183.303 33.0129C182.559 31.6745 181.664 30.4037 180.604 29.2006C177.536 32.449 174.626 33.5919 174.498 33.637C174.302 33.7197 174.092 33.7498 173.896 33.7498C173.22 33.7498 172.58 33.3363 172.325 32.6745C171.994 31.8098 172.422 30.8323 173.295 30.5014C173.31 30.5014 175.806 29.4788 178.423 26.6139C178.573 26.456 178.746 26.3281 178.934 26.2379C181.724 22.9219 184.484 17.6207 184.957 9.42449C185.002 8.64999 184.386 7.98828 183.611 7.98828H169.558C168.858 7.98828 168.279 8.52216 168.219 9.21395L167.227 20.2149C163.189 18.8012 160.068 18.5681 160.068 18.5681C155.722 17.8387 151.263 17.7786 146.691 18.4027C141.164 19.1396 136.156 20.8916 131.63 23.6588C127.719 26.095 124.764 28.9374 122.742 32.2083C120.726 35.4793 119.636 38.863 119.501 42.3671C119.365 45.8636 120.23 49.3 122.08 52.6762C123.93 56.0524 126.787 59.0452 130.622 61.6769V61.6845ZM141.066 41.6602L147.661 39.0585C147.932 38.9533 148.142 38.7427 148.247 38.472L150.849 31.87C151.203 30.9977 152.436 30.9977 152.782 31.87L155.383 38.472C155.489 38.7427 155.707 38.9533 155.97 39.0585L162.572 41.6602C163.444 42.0061 163.444 43.2468 162.572 43.5927L155.97 46.1945C155.707 46.2997 155.496 46.5103 155.383 46.781L152.782 53.3755C152.436 54.2553 151.203 54.2553 150.849 53.3755L148.247 46.781C148.142 46.5103 147.932 46.2997 147.661 46.1945L141.066 43.5927C140.187 43.2468 140.187 42.0061 141.066 41.6602Z\" fill=\"#020200\"/>\\n<path d=\"M4.54381 60.978C7.11545 64.8956 10.5142 67.9184 14.7552 70.0765C17.0561 71.2195 19.4398 72.0692 21.9438 72.6031C24.4327 73.1444 26.9517 73.4076 29.5309 73.4076C32.8996 73.4076 36.0577 72.8136 38.9753 71.6255C41.9154 70.445 44.5471 68.6328 46.9158 66.2115C49.8333 62.6473 51.1417 58.5718 51.1492 58.5342C51.4349 57.6469 52.3749 57.1582 53.2622 57.4289C54.1419 57.7071 54.6382 58.6545 54.3675 59.5418C54.2998 59.7373 52.811 64.4294 49.3671 68.5501C49.3671 68.5501 49.352 68.5726 49.337 68.5802L51.871 71.0616C51.9989 71.2044 52.1643 71.2721 52.3748 71.2721H66.4737C66.5865 71.3548 66.7445 71.3999 66.94 71.3999H78.7605C81.0614 72.0692 83.4451 72.5805 85.9491 72.9189H86.4454C87.9342 73.1144 89.408 73.2497 90.8893 73.3174C92.3782 73.3851 93.8595 73.4151 95.3483 73.4151C97.8373 73.4151 100.522 73.1294 103.379 72.5579C106.244 71.9865 108.906 71.054 111.372 69.7757C113.824 68.4899 115.884 66.8131 117.538 64.7227C119.185 62.6323 120.02 60.0682 120.02 57.0378C120.02 55.1505 119.606 53.3909 118.794 51.7818C117.997 50.1576 116.944 48.6988 115.658 47.3829C114.38 46.0745 112.966 44.8714 111.417 43.7961C109.861 42.7133 108.349 41.7659 106.868 40.9613C105.718 40.2921 104.56 39.6454 103.379 39.0364C102.199 38.4273 101.041 37.8182 99.8976 37.2167C98.89 36.6753 97.8749 36.1564 96.8748 35.6526C95.8521 35.1488 94.8671 34.6225 93.9347 34.0886C93.5211 33.8179 93.0775 33.4945 92.5661 33.1336C92.0623 32.7576 91.6112 32.3365 91.2051 31.8628C90.7915 31.3891 90.4758 30.8928 90.2427 30.3439C90.0096 29.8025 89.9945 29.2761 90.19 28.7347C90.393 28.1332 90.7615 27.6144 91.3029 27.2158C91.8443 26.8023 92.3782 26.5015 92.9196 26.2985C93.7242 25.9676 94.5738 25.7947 95.4536 25.7947C96.3334 25.7947 97.168 25.8924 97.9726 26.1029C99.9277 26.5767 101.552 27.7196 102.83 29.5318C103.695 30.8251 104.304 32.2162 104.642 33.7352C104.981 35.2541 105.184 36.7504 105.244 38.2318C105.244 38.7055 105.484 38.9386 105.958 38.9386H117.583C118.049 38.9386 118.29 38.7055 118.29 38.2318V20.7341C118.29 20.2604 118.049 20.0197 117.583 20.0197H105.748C103.191 19.2227 100.612 18.6738 98.0102 18.4106C95.4235 18.1324 92.8143 17.997 90.175 17.997C87.8214 17.997 85.4528 18.2301 83.1067 18.7038C80.7381 19.1851 78.4898 19.9972 76.3242 21.1401C74.5722 22.0725 72.9555 23.238 71.4666 24.6216C69.9853 25.9977 68.88 27.6369 68.128 29.5243C67.5265 31.0808 67.2182 32.6674 67.2182 34.2841C67.2182 36.2918 67.5791 38.134 68.3235 39.7883C69.068 41.4426 70.0605 42.9389 71.3162 44.2849C72.557 45.6309 73.9781 46.8415 75.5497 47.9168C77.1438 48.9996 78.7379 49.9846 80.3621 50.8494C81.4976 51.4509 82.6104 52.0299 83.7008 52.5788C84.7685 53.1202 85.8964 53.6541 87.0394 54.188C87.9793 54.6692 88.9418 55.1354 89.9193 55.6092C90.9044 56.0829 91.8593 56.5942 92.8068 57.1281C93.5361 57.6018 94.3708 58.256 95.2732 59.0906C96.1905 59.9403 96.5138 60.8953 96.2356 61.9856C96.0401 62.7902 95.4687 63.5045 94.5212 64.1136C93.9798 64.4445 93.4083 64.7152 92.8068 64.9107C92.1977 65.1137 91.5886 65.2867 90.9871 65.422C89.4306 65.6175 87.9342 65.5198 86.4829 65.1137C85.0392 64.7152 83.7759 63.9708 82.6931 62.888C81.4148 61.6097 80.5351 60.1133 80.0689 58.3989C79.5951 56.6769 79.3244 54.9399 79.2568 53.1954C79.2568 52.7217 79.0312 52.4886 78.55 52.4886H66.9325C66.4512 52.4886 66.2256 52.7142 66.2256 53.1954V68.144L63.9021 62.6774V17.794C63.9021 12.9214 64.9323 7.12393 66.9249 2.67243L67.3385 1.7325C67.4814 1.537 67.4814 1.3039 67.3385 1.02568C67.2708 0.830174 67.0753 0.732422 66.7369 0.732422H61.9922C61.9922 0.732422 61.917 0.732422 61.8869 0.732422H38.0203C37.6744 0.732422 37.4789 0.830174 37.4187 1.02568C37.2759 1.3039 37.2759 1.537 37.4187 1.7325L37.8323 2.67243C39.8249 7.11641 40.8551 11.9364 40.8551 16.8089C42.3515 17.5308 43.6222 18.4181 44.5396 19.1324C45.457 19.8618 46.0059 20.4107 46.0661 20.4709C46.7203 21.1326 46.7202 22.2004 46.051 22.8546C45.7277 23.1779 45.2991 23.3358 44.8705 23.3358C44.4419 23.3358 44.0058 23.1779 43.6749 22.8395C43.6448 22.8094 42.4943 21.6665 40.8025 20.6138C37.3811 18.8843 33.6064 18.0121 29.5309 18.0121C26.9517 18.0121 24.4327 18.2903 21.9438 18.8166C19.4398 19.358 17.0561 20.2002 14.7552 21.3507C10.5218 23.5012 7.11545 26.5391 4.54381 30.4417C1.521 35.0285 -0.00543213 40.1191 -0.00543213 45.7136C-0.00543213 48.4807 0.355485 51.1426 1.10743 53.7067C1.84433 56.2633 2.98729 58.6996 4.54381 60.9855V60.978ZM17.3644 28.1558C23.0416 24.178 32.8243 28.3738 39.2309 37.5174C45.6299 46.6535 46.224 57.286 40.5468 61.2638C34.8772 65.234 25.0869 61.0382 18.6803 51.9021C12.2813 42.7585 11.6948 32.126 17.3644 28.1558Z\" fill=\"#020200\"/>\\n<path d=\"M66.2256 149.925L63.9021 144.459V99.5752C63.9021 94.7027 64.9323 88.9052 66.9249 84.4537L67.3385 83.5138C67.4814 83.3183 67.4814 83.0851 67.3385 82.8069C67.2708 82.6114 67.0753 82.5137 66.737 82.5137H61.9922C61.9922 82.5137 61.917 82.5137 61.8869 82.5137H38.0203C37.6744 82.5137 37.4789 82.6114 37.4187 82.8069C37.2759 83.0851 37.2759 83.3183 37.4187 83.5138L37.8323 84.4537C39.825 88.8977 40.8551 93.7176 40.8551 98.5902C42.3515 99.3121 43.6222 100.199 44.5396 100.914C45.457 101.643 46.0059 102.192 46.0661 102.252C46.7203 102.914 46.7203 103.982 46.051 104.636C45.7277 104.959 45.2991 105.117 44.8705 105.117C44.4419 105.117 44.0058 104.959 43.6749 104.621C43.6448 104.591 42.4944 103.448 40.8025 102.395C37.3811 100.666 33.6064 99.7933 29.5309 99.7933C26.9517 99.7933 24.4327 100.072 21.9438 100.598C19.4398 101.139 17.0561 101.981 14.7552 103.132C10.5218 105.282 7.11546 108.32 4.54382 112.223C1.52101 116.81 -0.0054245 121.9 -0.0054245 127.495C-0.0054245 130.262 0.355493 132.924 1.10743 135.488C1.84434 138.045 2.9873 140.481 4.54382 142.767C7.11546 146.684 10.5142 149.707 14.7552 151.865C17.0561 153.008 19.4398 153.858 21.9438 154.392C24.4327 154.933 26.9517 155.196 29.5309 155.196C32.8996 155.196 36.0577 154.602 38.9753 153.414C41.9154 152.234 44.5472 150.422 46.9158 148C49.8333 144.436 51.1417 140.361 51.1492 140.323C51.435 139.436 52.3749 138.947 53.2622 139.218C54.1419 139.496 54.6382 140.443 54.3675 141.331C54.2998 141.526 52.811 146.218 49.3671 150.339C49.3671 150.339 49.352 150.361 49.337 150.369L51.871 152.85C51.9989 152.993 52.1643 153.061 52.3748 153.061H66.4737C66.3158 152.948 66.2332 152.753 66.2332 152.474V149.94L66.2256 149.925ZM40.5393 143.037C34.8696 147.008 25.0794 142.812 18.6728 133.676C12.2738 124.532 11.6873 113.9 17.3569 109.929C23.0341 105.952 32.8168 110.148 39.2234 119.291C45.6224 128.427 46.2164 139.06 40.5393 143.037Z\" fill=\"#020200\"/>\\n</svg>\\n',withExternalLayout:true}),isDisplayed7()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-yw2i62 hidden-1c4cr81\",\"data-framer-name\":\"Group\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:156,intrinsicWidth:392,svg:'<svg width=\"392\" height=\"156\" viewBox=\"0 0 392 156\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M141.117 155.455H139.146V144.198H141.071L144.387 148.747L147.719 144.213H149.628V155.455H147.658V147.183L147.328 147.74L144.5 151.56H144.199L141.387 147.725L141.117 147.266V155.462V155.455Z\" fill=\"#020200\"/>\\n<path d=\"M151.29 151.101V150.86C151.29 149.853 151.493 148.98 151.892 148.289C152.681 146.898 154.087 146.161 155.87 146.161C156.787 146.161 157.561 146.334 158.238 146.71C159.629 147.454 160.449 148.86 160.449 150.86V151.101C160.449 152.093 160.261 152.921 159.877 153.597C159.088 154.973 157.712 155.695 155.87 155.695C152.937 155.695 151.29 154.071 151.29 151.101ZM158.343 151.071V150.868C158.343 149.003 157.381 147.935 155.877 147.935C154.373 147.935 153.396 148.943 153.396 150.868V151.071C153.396 152.868 154.313 153.883 155.862 153.883C157.411 153.883 158.343 152.875 158.343 151.071Z\" fill=\"#020200\"/>\\n<path d=\"M165.976 155.455C165.126 155.455 164.457 155.327 164.021 155.124C163.103 154.665 162.818 153.673 162.818 151.823V148.206H161.05V146.454H161.855C162.156 146.454 162.359 146.424 162.502 146.356C162.803 146.213 162.9 145.867 162.945 145.123C162.96 144.725 162.975 144.191 162.975 143.92H164.743V146.364H167.141V148.198H164.743V151.469C164.743 152.071 164.788 152.515 164.87 152.808C165.013 153.409 165.487 153.522 166.495 153.522H167.141V155.447H165.976V155.455Z\" fill=\"#020200\"/>\\n<path d=\"M168.344 144.025C168.344 143.017 168.803 142.664 169.72 142.664C170.638 142.664 171.096 143.01 171.096 144.025C171.096 145.04 170.653 145.401 169.72 145.401C168.728 145.401 168.344 145.07 168.344 144.025ZM168.645 146.379H170.743V155.455H168.645V146.379Z\" fill=\"#020200\"/>\\n<path d=\"M172.307 151.101V150.86C172.307 149.853 172.51 148.98 172.909 148.289C173.698 146.898 175.104 146.161 176.886 146.161C177.804 146.161 178.578 146.334 179.255 146.71C180.646 147.454 181.466 148.86 181.466 150.86V151.101C181.466 152.093 181.278 152.921 180.894 153.597C180.105 154.973 178.729 155.695 176.886 155.695C173.946 155.695 172.307 154.071 172.307 151.101ZM179.368 151.071V150.868C179.368 149.003 178.405 147.935 176.901 147.935C175.398 147.935 174.42 148.943 174.42 150.868V151.071C174.42 152.868 175.337 153.883 176.886 153.883C178.435 153.883 179.368 152.875 179.368 151.071Z\" fill=\"#020200\"/>\\n<path d=\"M183.045 155.455V146.379H184.797L184.985 148.198C185.474 146.95 186.504 146.161 188.06 146.161C190.256 146.161 191.421 147.612 191.421 149.868V155.455H189.339V150.372C189.339 148.89 188.865 147.958 187.383 147.958C185.902 147.958 185.128 149.033 185.128 150.717V155.455H183.045Z\" fill=\"#020200\"/>\\n<path d=\"M200.076 150.357V155.455H199.069V144.274H200.076V149.387H206.565V144.274H207.558V155.455H206.565V150.357H200.076Z\" fill=\"#020200\"/>\\n<path d=\"M209.904 151.1V150.927C209.904 149.935 210.092 149.093 210.491 148.401C211.28 146.98 212.641 146.235 214.356 146.235C215.22 146.235 215.98 146.423 216.664 146.807C218.025 147.551 218.815 148.957 218.815 150.927V151.1C218.815 152.048 218.642 152.852 218.281 153.544C217.551 154.92 216.213 155.672 214.363 155.672C211.521 155.672 209.912 153.95 209.912 151.093L209.904 151.1ZM217.815 151.085V150.943C217.815 150.153 217.672 149.506 217.371 148.905C216.754 147.769 215.702 147.108 214.371 147.108C213.709 147.108 213.107 147.25 212.604 147.566C211.558 148.183 210.927 149.318 210.927 150.943V151.085C210.927 153.341 212.175 154.777 214.356 154.777C216.536 154.777 217.815 153.371 217.815 151.085Z\" fill=\"#020200\"/>\\n<path d=\"M224.394 155.665C222.093 155.665 220.935 154.131 220.935 151.83V146.492H221.928V151.635C221.928 153.485 222.732 154.763 224.657 154.763C225.274 154.763 225.808 154.605 226.266 154.304C227.199 153.673 227.718 152.567 227.718 151.146V146.492H228.71V155.462H227.86L227.77 153.222C227.327 154.703 226.146 155.665 224.394 155.665Z\" fill=\"#020200\"/>\\n<path d=\"M230.68 152.537H231.756C231.816 153.041 232.011 153.485 232.274 153.816C232.876 154.477 233.778 154.793 234.831 154.793C235.508 154.793 236.034 154.71 236.425 154.522C237.23 154.162 237.561 153.56 237.561 152.898C237.561 152.47 237.403 152.154 237.132 151.951C236.56 151.522 235.613 151.379 234.575 151.236C233.726 151.109 232.868 150.966 232.192 150.635C231.5 150.304 231.071 149.748 231.071 148.8C231.071 148.357 231.184 147.928 231.417 147.552C231.876 146.747 232.868 146.229 234.478 146.229C236.764 146.229 238.14 147.319 238.343 149.011H237.32C237.177 147.762 236.102 147.071 234.478 147.071C233.861 147.071 233.387 147.153 233.026 147.326C232.335 147.642 232.064 148.199 232.064 148.763C232.064 149.191 232.222 149.507 232.493 149.71C233.064 150.139 234.041 150.281 235.049 150.417C235.921 150.545 236.756 150.703 237.448 151.018C238.125 151.349 238.553 151.921 238.553 152.868C238.553 153.372 238.425 153.831 238.155 154.259C237.651 155.132 236.56 155.68 234.808 155.68C232.485 155.68 230.906 154.635 230.673 152.537H230.68Z\" fill=\"#020200\"/>\\n<path d=\"M244.719 155.68C241.779 155.68 240.253 153.928 240.253 151.115V150.958C240.253 150.01 240.426 149.206 240.809 148.476C241.553 147.055 242.907 146.235 244.757 146.235C245.689 146.235 246.464 146.438 247.095 146.837C248.358 147.641 249.005 149.048 249.005 150.77V151.258H241.253C241.298 153.454 242.516 154.807 244.742 154.807C246.306 154.807 247.426 154.146 247.817 152.785H248.877C248.389 154.695 246.825 155.672 244.727 155.672L244.719 155.68ZM241.26 150.439H248.02C247.907 148.386 246.757 147.062 244.749 147.062C242.741 147.062 241.433 148.371 241.26 150.439Z\" fill=\"#020200\"/>\\n<path d=\"M124.934 3.42746C120.961 1.27042 116.567 0.191895 111.754 0.191895C106.94 0.191895 102.547 1.27042 98.5736 3.42746C94.6005 5.5845 91.468 8.55836 89.1762 12.349C86.8843 16.1397 85.7344 20.3745 85.7344 25.0534C85.7344 29.7322 86.8843 33.967 89.1762 37.7577C91.468 41.5484 94.6005 44.5222 98.5736 46.6793C102.547 48.8363 106.94 49.9149 111.754 49.9149C116.567 49.9149 120.961 48.8363 124.934 46.6793C128.907 44.5222 132.039 41.5484 134.331 37.7577C136.623 33.967 137.773 29.7322 137.773 25.0534C137.773 20.3745 136.623 16.1397 134.331 12.349C132.039 8.55836 128.907 5.5845 124.934 3.42746ZM122.991 31.5562C121.857 33.5309 120.303 35.1011 118.328 36.2589C116.353 37.4167 114.165 37.9956 111.754 37.9956C109.343 37.9956 107.154 37.4167 105.18 36.2589C103.205 35.1011 101.651 33.5309 100.517 31.5562C99.3825 29.5816 98.8115 27.4166 98.8115 25.0534C98.8115 22.6901 99.3825 20.5252 100.517 18.5505C101.651 16.5759 103.205 15.0057 105.18 13.8479C107.154 12.69 109.343 12.1111 111.754 12.1111C114.165 12.1111 116.353 12.69 118.328 13.8479C120.303 15.0057 121.857 16.5759 122.991 18.5505C124.125 20.5252 124.696 22.6981 124.696 25.0534C124.696 27.4087 124.125 29.5816 122.991 31.5562Z\" fill=\"#020200\"/>\\n<path d=\"M238.607 46.6793C242.58 48.8363 246.973 49.9149 251.787 49.9149C256.601 49.9149 260.994 48.8363 264.967 46.6793C268.94 44.5222 272.073 41.5484 274.364 37.7577C276.656 33.967 277.806 29.7322 277.806 25.0534C277.806 20.3745 276.656 16.1397 274.364 12.349C272.073 8.55836 268.94 5.5845 264.967 3.42746C260.994 1.27042 256.601 0.191895 251.787 0.191895C246.973 0.191895 242.58 1.27042 238.607 3.42746C234.634 5.5845 231.501 8.55836 229.209 12.349C226.917 16.1397 225.768 20.3745 225.768 25.0534C225.768 29.7322 226.917 33.967 229.209 37.7577C231.501 41.5484 234.634 44.5222 238.607 46.6793ZM240.55 18.5505C241.684 16.5759 243.238 15.0057 245.213 13.8479C247.187 12.69 249.376 12.1111 251.787 12.1111C254.198 12.1111 256.386 12.69 258.361 13.8479C260.336 15.0057 261.89 16.5759 263.024 18.5505C264.158 20.5252 264.729 22.6981 264.729 25.0534C264.729 27.4087 264.158 29.5816 263.024 31.5562C261.89 33.5309 260.336 35.1011 258.361 36.2589C256.386 37.4167 254.198 37.9956 251.787 37.9956C249.376 37.9956 247.187 37.4167 245.213 36.2589C243.238 35.1011 241.684 33.5309 240.55 31.5562C239.416 29.5816 238.845 27.4166 238.845 25.0534C238.845 22.6901 239.416 20.5252 240.55 18.5505Z\" fill=\"#020200\"/>\\n<path d=\"M142.88 32.016V50.3271H155.997V32.016H187.972V19.8034H155.997V1.48438H142.88V31.3816V32.016Z\" fill=\"#020200\"/>\\n<path d=\"M6.10352e-05 1.21582V13.2064H6.33637V48.8928H19.0011V13.2064L6.33637 1.21582H6.10352e-05Z\" fill=\"#020200\"/>\\n<path d=\"M19.0009 1.21582V13.2064H36.5348V48.8928H49.1995H49.2074V13.2064H66.7334V48.8928H79.406V12.9209L67.7009 1.21582H19.0009Z\" fill=\"#020200\"/>\\n<path d=\"M296.807 13.2064H318.195V48.8928H330.868V12.9209C326.3 8.35308 323.731 5.78367 319.163 1.21582H284.143V48.8928H296.815V13.2064H296.807Z\" fill=\"#020200\"/>\\n<path d=\"M0 58.8286V70.8192H6.33631V106.506H19.001V70.8192L6.33631 58.8286H0Z\" fill=\"#020200\"/>\\n<path d=\"M19.0009 58.8286V70.8192H36.5347V106.506H49.1994H49.2074V70.8192H66.7333V106.506H79.4059V70.5337L67.7008 58.8286H19.0009Z\" fill=\"#020200\"/>\\n<path d=\"M160.858 71.4621C162.785 70.3043 164.958 69.7254 167.361 69.7254C169.129 69.7254 170.739 70.0188 172.198 70.6136C173.65 71.2004 174.903 72.0331 175.942 73.0958C176.988 74.1664 177.829 75.4193 178.463 76.8785H191.747C191.065 73.1989 189.59 69.9236 187.322 67.037C185.054 64.1504 182.183 61.8982 178.709 60.2566C175.236 58.623 171.413 57.8062 167.234 57.8062C162.42 57.8062 158.059 58.8847 154.157 61.0417C150.255 63.1988 147.186 66.1726 144.966 69.9633C142.737 73.754 141.627 77.9888 141.627 82.6676C141.627 87.3465 142.737 91.5813 144.966 95.372C147.186 99.1626 150.255 102.137 154.157 104.294C158.059 106.451 162.42 107.529 167.234 107.529C171.461 107.529 175.315 106.696 178.812 105.047C182.31 103.389 185.188 101.09 187.464 98.1317C189.732 95.1816 191.168 91.843 191.755 88.1157H178.606C177.694 90.3838 176.267 92.1998 174.316 93.5639C172.365 94.9279 170.049 95.6099 167.369 95.6099C163.61 95.6099 160.43 94.1983 157.837 91.3751C155.743 88.8453 154.696 85.9428 154.696 82.6676C154.696 80.3044 155.244 78.1394 156.33 76.1648C157.416 74.1901 158.931 72.6199 160.858 71.4621Z\" fill=\"#020200\"/>\\n<path d=\"M123.506 60.9388C119.716 58.7103 115.481 57.6001 110.802 57.6001C106.123 57.6001 101.888 58.7103 98.0977 60.9388C94.307 63.1592 91.3331 66.2283 89.1761 70.13C87.0191 74.0317 85.9406 78.3933 85.9406 83.207C85.9406 87.3863 86.7574 91.2087 88.391 94.6822C90.0247 98.1556 92.2848 101.026 95.1714 103.294C98.058 105.563 101.333 107.038 105.013 107.72H109.414L109.557 107.371L123.387 93.5402C123.118 100.257 122.785 107.72 122.785 107.72L135.656 107.513V83.1991C135.656 78.3854 134.577 74.0238 132.42 70.122C130.263 66.2203 127.289 63.1513 123.498 60.9308L123.506 60.9388ZM97.8598 83.3498C97.8598 80.939 98.4387 78.774 99.5965 76.8469C100.754 74.9199 102.325 73.4052 104.299 72.3187C106.274 71.2323 108.447 70.6851 110.802 70.6851C114.077 70.6851 116.972 71.7319 119.509 73.8255C120.691 74.9119 121.611 76.1015 122.293 77.3941L105.227 94.4601H105.013C103.562 93.8257 102.301 92.9851 101.23 91.9383C100.168 90.8915 99.3348 89.6464 98.748 88.1952C98.1611 86.7439 97.8598 85.1341 97.8598 83.3577V83.3498Z\" fill=\"#020200\"/>\\n<path d=\"M229.281 76.4022H210.478V58.8286H197.813V106.506H210.478V88.3214H229.281V106.506H241.945V58.8286H229.281V76.4022Z\" fill=\"#020200\"/>\\n<path d=\"M248.282 70.0658H261.969V95.2683H248.282V106.506H288.258V95.2683H274.571V70.0658H288.258V58.8286H248.282V70.0658Z\" fill=\"#020200\"/>\\n<path d=\"M329.615 58.8286H294.595V106.506H307.267V70.8192H328.655V106.506H341.328V70.5337C336.76 65.9659 334.191 63.3965 329.623 58.8286H329.615Z\" fill=\"#020200\"/>\\n<path d=\"M391.836 58.8286H347.704V70.8192H391.836V58.8286Z\" fill=\"#020200\"/>\\n<path d=\"M391.836 76.6714H347.704V88.662H391.836V76.6714Z\" fill=\"#020200\"/>\\n<path d=\"M391.836 94.5229H347.704V106.514H391.836V94.5229Z\" fill=\"#020200\"/>\\n<path d=\"M223.468 41.0573L214.086 31.6758C210.43 28.0199 210.43 22.088 214.086 18.4322L223.468 9.05063V1.07275H191.866V9.05063L201.247 18.4322C204.903 22.088 204.903 28.0199 201.247 31.6758L191.866 41.0573V49.0352H223.468V41.0573Z\" fill=\"#020200\"/>\\n</svg>\\n',withExternalLayout:true})]}),isDisplayed6()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1wik6ie hidden-1sc40i8\",children:[isDisplayed()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-17squco hidden-1sc40i8 hidden-1wyrj5b\",\"data-framer-name\":\"Group\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:156,intrinsicWidth:392,svg:'<svg width=\"392\" height=\"156\" viewBox=\"0 0 392 156\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M141.117 155.455H139.146V144.198H141.071L144.387 148.747L147.719 144.213H149.628V155.455H147.658V147.183L147.328 147.74L144.5 151.56H144.199L141.387 147.725L141.117 147.266V155.462V155.455Z\" fill=\"#020200\"/>\\n<path d=\"M151.29 151.101V150.86C151.29 149.853 151.493 148.98 151.892 148.289C152.681 146.898 154.087 146.161 155.87 146.161C156.787 146.161 157.561 146.334 158.238 146.71C159.629 147.454 160.449 148.86 160.449 150.86V151.101C160.449 152.093 160.261 152.921 159.877 153.597C159.088 154.973 157.712 155.695 155.87 155.695C152.937 155.695 151.29 154.071 151.29 151.101ZM158.343 151.071V150.868C158.343 149.003 157.381 147.935 155.877 147.935C154.373 147.935 153.396 148.943 153.396 150.868V151.071C153.396 152.868 154.313 153.883 155.862 153.883C157.411 153.883 158.343 152.875 158.343 151.071Z\" fill=\"#020200\"/>\\n<path d=\"M165.976 155.455C165.126 155.455 164.457 155.327 164.021 155.124C163.103 154.665 162.818 153.673 162.818 151.823V148.206H161.05V146.454H161.855C162.156 146.454 162.359 146.424 162.502 146.356C162.803 146.213 162.9 145.867 162.945 145.123C162.96 144.725 162.975 144.191 162.975 143.92H164.743V146.364H167.141V148.198H164.743V151.469C164.743 152.071 164.788 152.515 164.87 152.808C165.013 153.409 165.487 153.522 166.495 153.522H167.141V155.447H165.976V155.455Z\" fill=\"#020200\"/>\\n<path d=\"M168.344 144.025C168.344 143.017 168.803 142.664 169.72 142.664C170.638 142.664 171.096 143.01 171.096 144.025C171.096 145.04 170.653 145.401 169.72 145.401C168.728 145.401 168.344 145.07 168.344 144.025ZM168.645 146.379H170.743V155.455H168.645V146.379Z\" fill=\"#020200\"/>\\n<path d=\"M172.307 151.101V150.86C172.307 149.853 172.51 148.98 172.909 148.289C173.698 146.898 175.104 146.161 176.886 146.161C177.804 146.161 178.578 146.334 179.255 146.71C180.646 147.454 181.466 148.86 181.466 150.86V151.101C181.466 152.093 181.278 152.921 180.894 153.597C180.105 154.973 178.729 155.695 176.886 155.695C173.946 155.695 172.307 154.071 172.307 151.101ZM179.368 151.071V150.868C179.368 149.003 178.405 147.935 176.901 147.935C175.398 147.935 174.42 148.943 174.42 150.868V151.071C174.42 152.868 175.337 153.883 176.886 153.883C178.435 153.883 179.368 152.875 179.368 151.071Z\" fill=\"#020200\"/>\\n<path d=\"M183.045 155.455V146.379H184.797L184.985 148.198C185.474 146.95 186.504 146.161 188.06 146.161C190.256 146.161 191.421 147.612 191.421 149.868V155.455H189.339V150.372C189.339 148.89 188.865 147.958 187.383 147.958C185.902 147.958 185.128 149.033 185.128 150.717V155.455H183.045Z\" fill=\"#020200\"/>\\n<path d=\"M200.076 150.357V155.455H199.069V144.274H200.076V149.387H206.565V144.274H207.558V155.455H206.565V150.357H200.076Z\" fill=\"#020200\"/>\\n<path d=\"M209.904 151.1V150.927C209.904 149.935 210.092 149.093 210.491 148.401C211.28 146.98 212.641 146.235 214.356 146.235C215.22 146.235 215.98 146.423 216.664 146.807C218.025 147.551 218.815 148.957 218.815 150.927V151.1C218.815 152.048 218.642 152.852 218.281 153.544C217.551 154.92 216.213 155.672 214.363 155.672C211.521 155.672 209.912 153.95 209.912 151.093L209.904 151.1ZM217.815 151.085V150.943C217.815 150.153 217.672 149.506 217.371 148.905C216.754 147.769 215.702 147.108 214.371 147.108C213.709 147.108 213.107 147.25 212.604 147.566C211.558 148.183 210.927 149.318 210.927 150.943V151.085C210.927 153.341 212.175 154.777 214.356 154.777C216.536 154.777 217.815 153.371 217.815 151.085Z\" fill=\"#020200\"/>\\n<path d=\"M224.394 155.665C222.093 155.665 220.935 154.131 220.935 151.83V146.492H221.928V151.635C221.928 153.485 222.732 154.763 224.657 154.763C225.274 154.763 225.808 154.605 226.266 154.304C227.199 153.673 227.718 152.567 227.718 151.146V146.492H228.71V155.462H227.86L227.77 153.222C227.327 154.703 226.146 155.665 224.394 155.665Z\" fill=\"#020200\"/>\\n<path d=\"M230.68 152.537H231.756C231.816 153.041 232.011 153.485 232.274 153.816C232.876 154.477 233.778 154.793 234.831 154.793C235.508 154.793 236.034 154.71 236.425 154.522C237.23 154.162 237.561 153.56 237.561 152.898C237.561 152.47 237.403 152.154 237.132 151.951C236.56 151.522 235.613 151.379 234.575 151.236C233.726 151.109 232.868 150.966 232.192 150.635C231.5 150.304 231.071 149.748 231.071 148.8C231.071 148.357 231.184 147.928 231.417 147.552C231.876 146.747 232.868 146.229 234.478 146.229C236.764 146.229 238.14 147.319 238.343 149.011H237.32C237.177 147.762 236.102 147.071 234.478 147.071C233.861 147.071 233.387 147.153 233.026 147.326C232.335 147.642 232.064 148.199 232.064 148.763C232.064 149.191 232.222 149.507 232.493 149.71C233.064 150.139 234.041 150.281 235.049 150.417C235.921 150.545 236.756 150.703 237.448 151.018C238.125 151.349 238.553 151.921 238.553 152.868C238.553 153.372 238.425 153.831 238.155 154.259C237.651 155.132 236.56 155.68 234.808 155.68C232.485 155.68 230.906 154.635 230.673 152.537H230.68Z\" fill=\"#020200\"/>\\n<path d=\"M244.719 155.68C241.779 155.68 240.253 153.928 240.253 151.115V150.958C240.253 150.01 240.426 149.206 240.809 148.476C241.553 147.055 242.907 146.235 244.757 146.235C245.689 146.235 246.464 146.438 247.095 146.837C248.358 147.641 249.005 149.048 249.005 150.77V151.258H241.253C241.298 153.454 242.516 154.807 244.742 154.807C246.306 154.807 247.426 154.146 247.817 152.785H248.877C248.389 154.695 246.825 155.672 244.727 155.672L244.719 155.68ZM241.26 150.439H248.02C247.907 148.386 246.757 147.062 244.749 147.062C242.741 147.062 241.433 148.371 241.26 150.439Z\" fill=\"#020200\"/>\\n<path d=\"M124.934 3.42746C120.961 1.27042 116.567 0.191895 111.754 0.191895C106.94 0.191895 102.547 1.27042 98.5736 3.42746C94.6005 5.5845 91.468 8.55836 89.1762 12.349C86.8843 16.1397 85.7344 20.3745 85.7344 25.0534C85.7344 29.7322 86.8843 33.967 89.1762 37.7577C91.468 41.5484 94.6005 44.5222 98.5736 46.6793C102.547 48.8363 106.94 49.9149 111.754 49.9149C116.567 49.9149 120.961 48.8363 124.934 46.6793C128.907 44.5222 132.039 41.5484 134.331 37.7577C136.623 33.967 137.773 29.7322 137.773 25.0534C137.773 20.3745 136.623 16.1397 134.331 12.349C132.039 8.55836 128.907 5.5845 124.934 3.42746ZM122.991 31.5562C121.857 33.5309 120.303 35.1011 118.328 36.2589C116.353 37.4167 114.165 37.9956 111.754 37.9956C109.343 37.9956 107.154 37.4167 105.18 36.2589C103.205 35.1011 101.651 33.5309 100.517 31.5562C99.3825 29.5816 98.8115 27.4166 98.8115 25.0534C98.8115 22.6901 99.3825 20.5252 100.517 18.5505C101.651 16.5759 103.205 15.0057 105.18 13.8479C107.154 12.69 109.343 12.1111 111.754 12.1111C114.165 12.1111 116.353 12.69 118.328 13.8479C120.303 15.0057 121.857 16.5759 122.991 18.5505C124.125 20.5252 124.696 22.6981 124.696 25.0534C124.696 27.4087 124.125 29.5816 122.991 31.5562Z\" fill=\"#020200\"/>\\n<path d=\"M238.607 46.6793C242.58 48.8363 246.973 49.9149 251.787 49.9149C256.601 49.9149 260.994 48.8363 264.967 46.6793C268.94 44.5222 272.073 41.5484 274.364 37.7577C276.656 33.967 277.806 29.7322 277.806 25.0534C277.806 20.3745 276.656 16.1397 274.364 12.349C272.073 8.55836 268.94 5.5845 264.967 3.42746C260.994 1.27042 256.601 0.191895 251.787 0.191895C246.973 0.191895 242.58 1.27042 238.607 3.42746C234.634 5.5845 231.501 8.55836 229.209 12.349C226.917 16.1397 225.768 20.3745 225.768 25.0534C225.768 29.7322 226.917 33.967 229.209 37.7577C231.501 41.5484 234.634 44.5222 238.607 46.6793ZM240.55 18.5505C241.684 16.5759 243.238 15.0057 245.213 13.8479C247.187 12.69 249.376 12.1111 251.787 12.1111C254.198 12.1111 256.386 12.69 258.361 13.8479C260.336 15.0057 261.89 16.5759 263.024 18.5505C264.158 20.5252 264.729 22.6981 264.729 25.0534C264.729 27.4087 264.158 29.5816 263.024 31.5562C261.89 33.5309 260.336 35.1011 258.361 36.2589C256.386 37.4167 254.198 37.9956 251.787 37.9956C249.376 37.9956 247.187 37.4167 245.213 36.2589C243.238 35.1011 241.684 33.5309 240.55 31.5562C239.416 29.5816 238.845 27.4166 238.845 25.0534C238.845 22.6901 239.416 20.5252 240.55 18.5505Z\" fill=\"#020200\"/>\\n<path d=\"M142.88 32.016V50.3271H155.997V32.016H187.972V19.8034H155.997V1.48438H142.88V31.3816V32.016Z\" fill=\"#020200\"/>\\n<path d=\"M6.10352e-05 1.21582V13.2064H6.33637V48.8928H19.0011V13.2064L6.33637 1.21582H6.10352e-05Z\" fill=\"#020200\"/>\\n<path d=\"M19.0009 1.21582V13.2064H36.5348V48.8928H49.1995H49.2074V13.2064H66.7334V48.8928H79.406V12.9209L67.7009 1.21582H19.0009Z\" fill=\"#020200\"/>\\n<path d=\"M296.807 13.2064H318.195V48.8928H330.868V12.9209C326.3 8.35308 323.731 5.78367 319.163 1.21582H284.143V48.8928H296.815V13.2064H296.807Z\" fill=\"#020200\"/>\\n<path d=\"M0 58.8286V70.8192H6.33631V106.506H19.001V70.8192L6.33631 58.8286H0Z\" fill=\"#020200\"/>\\n<path d=\"M19.0009 58.8286V70.8192H36.5347V106.506H49.1994H49.2074V70.8192H66.7333V106.506H79.4059V70.5337L67.7008 58.8286H19.0009Z\" fill=\"#020200\"/>\\n<path d=\"M160.858 71.4621C162.785 70.3043 164.958 69.7254 167.361 69.7254C169.129 69.7254 170.739 70.0188 172.198 70.6136C173.65 71.2004 174.903 72.0331 175.942 73.0958C176.988 74.1664 177.829 75.4193 178.463 76.8785H191.747C191.065 73.1989 189.59 69.9236 187.322 67.037C185.054 64.1504 182.183 61.8982 178.709 60.2566C175.236 58.623 171.413 57.8062 167.234 57.8062C162.42 57.8062 158.059 58.8847 154.157 61.0417C150.255 63.1988 147.186 66.1726 144.966 69.9633C142.737 73.754 141.627 77.9888 141.627 82.6676C141.627 87.3465 142.737 91.5813 144.966 95.372C147.186 99.1626 150.255 102.137 154.157 104.294C158.059 106.451 162.42 107.529 167.234 107.529C171.461 107.529 175.315 106.696 178.812 105.047C182.31 103.389 185.188 101.09 187.464 98.1317C189.732 95.1816 191.168 91.843 191.755 88.1157H178.606C177.694 90.3838 176.267 92.1998 174.316 93.5639C172.365 94.9279 170.049 95.6099 167.369 95.6099C163.61 95.6099 160.43 94.1983 157.837 91.3751C155.743 88.8453 154.696 85.9428 154.696 82.6676C154.696 80.3044 155.244 78.1394 156.33 76.1648C157.416 74.1901 158.931 72.6199 160.858 71.4621Z\" fill=\"#020200\"/>\\n<path d=\"M123.506 60.9388C119.716 58.7103 115.481 57.6001 110.802 57.6001C106.123 57.6001 101.888 58.7103 98.0977 60.9388C94.307 63.1592 91.3331 66.2283 89.1761 70.13C87.0191 74.0317 85.9406 78.3933 85.9406 83.207C85.9406 87.3863 86.7574 91.2087 88.391 94.6822C90.0247 98.1556 92.2848 101.026 95.1714 103.294C98.058 105.563 101.333 107.038 105.013 107.72H109.414L109.557 107.371L123.387 93.5402C123.118 100.257 122.785 107.72 122.785 107.72L135.656 107.513V83.1991C135.656 78.3854 134.577 74.0238 132.42 70.122C130.263 66.2203 127.289 63.1513 123.498 60.9308L123.506 60.9388ZM97.8598 83.3498C97.8598 80.939 98.4387 78.774 99.5965 76.8469C100.754 74.9199 102.325 73.4052 104.299 72.3187C106.274 71.2323 108.447 70.6851 110.802 70.6851C114.077 70.6851 116.972 71.7319 119.509 73.8255C120.691 74.9119 121.611 76.1015 122.293 77.3941L105.227 94.4601H105.013C103.562 93.8257 102.301 92.9851 101.23 91.9383C100.168 90.8915 99.3348 89.6464 98.748 88.1952C98.1611 86.7439 97.8598 85.1341 97.8598 83.3577V83.3498Z\" fill=\"#020200\"/>\\n<path d=\"M229.281 76.4022H210.478V58.8286H197.813V106.506H210.478V88.3214H229.281V106.506H241.945V58.8286H229.281V76.4022Z\" fill=\"#020200\"/>\\n<path d=\"M248.282 70.0658H261.969V95.2683H248.282V106.506H288.258V95.2683H274.571V70.0658H288.258V58.8286H248.282V70.0658Z\" fill=\"#020200\"/>\\n<path d=\"M329.615 58.8286H294.595V106.506H307.267V70.8192H328.655V106.506H341.328V70.5337C336.76 65.9659 334.191 63.3965 329.623 58.8286H329.615Z\" fill=\"#020200\"/>\\n<path d=\"M391.836 58.8286H347.704V70.8192H391.836V58.8286Z\" fill=\"#020200\"/>\\n<path d=\"M391.836 76.6714H347.704V88.662H391.836V76.6714Z\" fill=\"#020200\"/>\\n<path d=\"M391.836 94.5229H347.704V106.514H391.836V94.5229Z\" fill=\"#020200\"/>\\n<path d=\"M223.468 41.0573L214.086 31.6758C210.43 28.0199 210.43 22.088 214.086 18.4322L223.468 9.05063V1.07275H191.866V9.05063L201.247 18.4322C204.903 22.088 204.903 28.0199 201.247 31.6758L191.866 41.0573V49.0352H223.468V41.0573Z\" fill=\"#020200\"/>\\n</svg>\\n',withExternalLayout:true}),isDisplayed6()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-f4zcxx hidden-1sc40i8\",\"data-framer-name\":\"Group\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:184,intrinsicWidth:242,svg:'<svg width=\"242\" height=\"184\" viewBox=\"0 0 242 184\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M83.5863 68.2165C83.5863 57.8012 83.6138 47.3789 83.5725 36.9635C83.5588 33.1617 84.095 29.4631 85.2637 25.8607C87.2093 19.8727 90.523 14.7509 95.1154 10.4472C98.9034 6.89295 103.241 4.24615 108.178 2.60993C110.714 1.76433 113.292 1.0631 115.987 0.959975C117.981 0.884352 119.982 0.6506 121.955 0.801846C126.135 1.11809 130.232 1.92245 134.116 3.62054C137.121 4.92675 139.953 6.52859 142.497 8.58417C146.374 11.726 149.544 15.4728 151.908 19.9002C153.751 23.3444 154.968 27.0088 155.662 30.8243C156.047 32.9624 156.198 35.1623 156.198 37.3416C156.24 57.9455 156.24 78.5426 156.198 99.1465C156.191 103.601 155.442 107.953 153.882 112.167C152.355 116.292 150.169 120.005 147.302 123.305C144.655 126.35 141.582 128.908 138.076 130.936C135.038 132.689 131.813 133.954 128.431 134.827C124.87 135.741 121.24 135.831 117.589 135.741C114.447 135.659 111.381 135.136 108.466 133.974C106.081 133.026 103.647 132.111 101.427 130.846C98.3878 129.114 95.7135 126.845 93.3142 124.274C89.9936 120.72 87.4706 116.677 85.7725 112.126C84.7756 109.459 84.0469 106.716 83.8132 103.869C83.6825 102.206 83.5932 100.535 83.5932 98.8646C83.5725 88.6555 83.5863 78.4394 83.5863 68.2303V68.2165ZM126.348 102.783C126.389 102.659 126.43 102.543 126.465 102.419C126.472 102.357 126.485 102.302 126.485 102.24C126.485 79.67 126.513 57.1068 126.465 34.5367C126.465 31.9999 124.945 30.5905 122.347 30.4324C120.731 30.3293 119.102 30.343 117.486 30.4462C116.682 30.4943 115.816 30.7074 115.114 31.0993C113.602 31.9518 113.279 33.4367 113.279 35.0729C113.292 57.1687 113.286 79.2644 113.292 101.36C113.292 101.917 113.341 102.481 113.409 103.031C113.561 104.234 115.073 105.911 116.359 105.946C118.476 106.008 120.607 106.173 122.718 106.021C124.581 105.891 126.011 104.832 126.348 102.776V102.783Z\" fill=\"black\"/>\\n<path d=\"M198.589 68.2559C198.589 79.675 198.568 91.0942 198.609 102.52C198.609 104.067 200.032 105.854 201.799 105.958C203.827 106.074 205.869 106.116 207.897 106.054C210.152 105.992 211.83 104.074 211.83 101.702C211.83 94.0022 211.905 86.2955 211.788 78.5957C211.747 75.942 213.473 74.787 215.57 74.8076C223.001 74.8764 230.44 74.8351 237.878 74.8351C240.278 74.8351 241.55 76.1207 241.55 78.5407C241.55 85.388 241.605 92.2354 241.522 99.0827C241.495 101.193 241.096 103.297 240.903 105.414C240.594 108.721 239.466 111.794 238.133 114.785C236.861 117.638 235.17 120.271 233.149 122.67C230.88 125.358 228.37 127.813 225.366 129.648C223.056 131.058 220.623 132.329 218.12 133.354C215.941 134.248 213.61 134.832 211.293 135.313C209.657 135.657 207.945 135.602 206.268 135.712C205.223 135.781 204.171 135.911 203.126 135.863C201.944 135.808 200.761 135.657 199.599 135.43C197.887 135.1 196.176 134.756 194.505 134.268C193.144 133.869 191.838 133.278 190.524 132.735C188.118 131.738 185.85 130.466 183.835 128.83C181.986 127.331 180.116 125.805 178.528 124.045C176.823 122.155 175.345 120.037 173.935 117.913C171.859 114.778 170.581 111.279 169.749 107.628C169.171 105.091 168.841 102.527 168.848 99.9008C168.889 78.5957 168.876 57.2905 168.882 35.9785C168.882 31.8811 169.776 27.9693 171.22 24.1401C172.822 19.8845 175.214 16.1515 178.177 12.7347C180.975 9.5104 184.33 6.99421 188.008 4.93863C190.841 3.35742 193.907 2.22993 197.083 1.52869C200.397 0.799959 203.786 0.538724 207.162 0.786218C211.383 1.10246 215.508 1.89993 219.433 3.63239C223.551 5.44735 227.236 7.83292 230.474 10.961C233.245 13.6353 235.513 16.6671 237.322 20.0427C239.02 23.2188 240.278 26.6012 240.841 30.1487C241.316 33.1323 241.481 36.1848 241.529 39.2097C241.625 45.4658 241.556 51.7219 241.556 57.978C241.556 60.3361 240.264 61.6355 237.927 61.6355C230.344 61.6355 222.761 61.5942 215.178 61.6698C213.431 61.6904 211.775 60.1642 211.802 58.3149C211.891 50.5532 211.823 42.7915 211.85 35.0298C211.864 32.1767 210.083 30.3893 207.182 30.3962C205.704 30.3962 204.233 30.3549 202.755 30.403C200.218 30.4924 199.462 31.5786 198.623 33.3798C198.547 33.5517 198.589 33.7786 198.589 33.978C198.589 45.3971 198.589 56.8162 198.589 68.2422V68.2559Z\" fill=\"black\"/>\\n<path d=\"M43.3272 48.5805C43.3066 44.8337 43.3204 41.087 43.2516 37.3402C43.1897 33.8546 41.416 31.2353 37.793 30.5685C34.1974 29.9016 31.1519 31.7922 30.2031 35.4358C29.5294 38.0139 30.2925 40.4545 31.3787 42.7713C33.07 46.3806 35.7786 49.2199 38.6936 51.8186C41.5466 54.3692 44.6197 56.6722 47.6033 59.0784C49.7964 60.8453 52.017 62.5846 54.1963 64.372C55.8669 65.7401 57.565 67.0876 59.1187 68.5794C62.5974 71.9069 65.9111 75.3787 68.386 79.5655C70.036 82.3566 71.349 85.2922 72.0915 88.4202C73.1159 92.7445 73.164 97.1582 72.8753 101.586C72.6415 105.071 71.9815 108.481 70.8059 111.76C69.6028 115.108 67.9666 118.25 65.8148 121.103C63.2642 124.486 60.2943 127.456 56.7125 129.704C54.4644 131.12 52.0651 132.344 49.604 133.34C47.4178 134.227 45.0803 134.764 42.7704 135.314C41.6016 135.595 40.3573 135.595 39.1473 135.685C37.9236 135.774 36.693 135.919 35.4762 135.864C31.8462 135.699 28.3057 135.08 24.8545 133.87C22.1321 132.914 19.5334 131.697 17.1478 130.13C12.9817 127.387 9.43424 123.956 6.62931 119.811C4.21624 116.25 2.42879 112.386 1.39757 108.213C0.930076 106.322 0.538198 104.37 0.483199 102.431C0.318203 96.2851 0.37319 90.1252 0.256318 83.9791C0.221944 82.1917 1.89941 80.7479 3.52187 80.7617C9.75047 80.8029 15.9722 80.7754 22.2008 80.7754C23.7064 80.7754 25.212 80.7686 26.7176 80.7754C28.7044 80.7892 29.9969 82.0816 29.9969 84.0822C30.0038 89.1559 30.045 94.2364 29.9831 99.31C29.9419 102.479 32.0662 105.078 34.493 105.731C38.2604 106.749 42.3372 105.071 43.0728 100.623C43.6916 96.8625 43.3478 93.1158 41.7116 89.6233C40.4329 86.8734 38.6798 84.4191 36.5142 82.281C34.6993 80.4936 32.9187 78.6648 31.0281 76.9599C29.1238 75.2412 27.1094 73.6531 25.1364 72.0169C23.3008 70.4975 21.4515 68.9988 19.6228 67.4726C17.9453 66.0701 16.2266 64.6952 14.6385 63.1896C12.8236 61.4709 11.0292 59.7109 9.41361 57.8066C7.57803 55.641 5.77683 53.4136 4.27124 51.0142C2.58691 48.3262 1.40442 45.37 0.771931 42.2213C0.228818 39.5332 0.249455 36.8314 0.311328 34.1159C0.386952 31.0497 0.998806 28.0935 2.02316 25.1992C3.30188 21.5762 5.15122 18.2694 7.49555 15.2376C10.493 11.3601 14.1091 8.13585 18.3303 5.6609C21.7402 3.6672 25.4045 2.27847 29.2956 1.43974C32.4374 0.766005 35.593 0.64227 38.7623 0.807266C40.7079 0.910389 42.6397 1.30912 44.5647 1.65974C47.6996 2.23035 50.6352 3.38533 53.4332 4.8703C56.3688 6.43089 59.05 8.33522 61.4493 10.6658C63.9242 13.0651 66.0761 15.6913 67.8292 18.6612C69.3279 21.2049 70.5791 23.8723 71.3422 26.7048C71.9541 28.9666 72.4765 31.3041 72.614 33.6346C72.889 38.2683 72.9165 42.9157 72.9509 47.5631C72.9646 49.4399 71.6172 50.7049 69.7954 50.7117C61.9787 50.7461 54.1551 50.7186 46.3384 50.7324C44.9016 50.7324 44.0284 49.9761 43.451 48.7593C43.4097 48.6974 43.3685 48.6355 43.3272 48.5737V48.5805Z\" fill=\"black\"/>\\n<path d=\"M66.2128 180.574L65.3631 183.1H63.2501L67.3407 171.844H69.4912L73.672 183.1H71.5741L70.6868 180.574H66.2203H66.2128ZM70.0627 178.822L68.5137 174.4L68.401 173.784L68.2881 174.4L66.7918 178.822H70.0627Z\" fill=\"#020200\"/>\\n<path d=\"M74.6119 174.015H76.2888L76.5595 176.143C76.9204 174.639 77.8528 173.933 79.5748 173.933H80.1914V176.031H79.289C78.5597 176.031 78.0258 176.128 77.6498 176.316C76.8904 176.677 76.6572 177.467 76.6572 178.888V183.084H74.6195V174.008L74.6119 174.015Z\" fill=\"#020200\"/>\\n<path d=\"M86.0792 183.099C85.2295 183.099 84.5603 182.971 84.1242 182.768C83.2068 182.31 82.9211 181.317 82.9211 179.467V175.851H81.154V174.098H81.9586C82.2594 174.098 82.4624 174.068 82.6052 174.001C82.906 173.858 83.0038 173.512 83.0489 172.768C83.0639 172.369 83.079 171.835 83.079 171.564H84.8461V174.008H87.2448V175.843H84.8461V179.114C84.8461 179.715 84.8912 180.159 84.9739 180.452C85.1167 181.054 85.5904 181.167 86.598 181.167H87.2448V183.092H86.0792V183.099Z\" fill=\"#020200\"/>\\n<path d=\"M88.4478 171.662C88.4478 170.654 88.9065 170.301 89.8239 170.301C90.7413 170.301 91.1999 170.647 91.1999 171.662C91.1999 172.677 90.7563 173.038 89.8239 173.038C88.8313 173.038 88.4478 172.707 88.4478 171.662ZM88.7486 174.015H90.8465V183.091H88.7486V174.015Z\" fill=\"#020200\"/>\\n<path d=\"M92.1248 180.1H94.3656C94.5536 181.175 95.298 181.596 96.5914 181.596C97.8847 181.596 98.4411 181.153 98.4411 180.431C98.4411 180.16 98.3283 179.942 98.0952 179.799C97.6366 179.529 96.847 179.423 95.9823 179.296C95.1627 179.168 94.328 179.025 93.6437 178.664C92.967 178.303 92.5384 177.686 92.5384 176.671C92.5384 175.002 93.7866 173.799 96.283 173.799C98.7795 173.799 100.073 174.919 100.328 176.731H98.2155C98.0727 175.844 97.4711 175.453 96.2755 175.453C94.9822 175.453 94.5836 175.912 94.5836 176.543C94.5836 176.814 94.6964 177.032 94.9295 177.175C95.3882 177.446 96.1928 177.551 97.0576 177.679C97.8772 177.807 98.7193 177.95 99.3961 178.31C100.073 178.671 100.501 179.288 100.501 180.303C100.501 182.055 99.2382 183.333 96.5537 183.333C93.8693 183.333 92.403 182.213 92.1323 180.1H92.1248Z\" fill=\"#020200\"/>\\n<path d=\"M104.615 183.334C102.644 183.334 101.644 182.386 101.644 180.905C101.644 179.897 102.088 179.138 102.825 178.679C103.081 178.506 103.344 178.378 103.599 178.303C104.133 178.115 104.818 177.987 105.953 177.815C107.577 177.611 108.224 177.386 108.224 176.649C108.224 175.912 107.735 175.416 106.314 175.416C104.81 175.416 104.133 176.062 104.073 177.235H101.945C102.088 175.168 103.607 173.807 106.209 173.807C107.201 173.807 107.961 173.934 108.562 174.198C109.743 174.701 110.217 175.664 110.217 176.98V183.108H108.54L108.322 181.288C107.705 182.477 106.487 183.341 104.615 183.341V183.334ZM106.87 181.326C107.758 180.77 108.246 179.86 108.246 178.988V178.499C107.87 178.769 107.239 178.957 106.412 179.085C105.306 179.258 104.863 179.386 104.442 179.657C104.081 179.89 103.908 180.206 103.908 180.604C103.908 181.364 104.381 181.74 105.329 181.74C105.93 181.74 106.434 181.597 106.878 181.326H106.87Z\" fill=\"#020200\"/>\\n<path d=\"M112.134 183.101V174.025H113.886L114.074 175.844C114.563 174.596 115.593 173.807 117.149 173.807C119.345 173.807 120.511 175.258 120.511 177.514V183.101H118.428V178.018C118.428 176.536 117.954 175.604 116.473 175.604C114.991 175.604 114.217 176.679 114.217 178.363V183.101H112.134Z\" fill=\"#020200\"/>\\n<path d=\"M128.842 177.994V183.093H127.835V171.911H128.842V177.024H135.331V171.911H136.324V183.093H135.331V177.994H128.842Z\" fill=\"#020200\"/>\\n<path d=\"M138.662 178.739V178.566C138.662 177.574 138.85 176.731 139.249 176.04C140.039 174.618 141.4 173.874 143.114 173.874C143.986 173.874 144.738 174.062 145.422 174.446C146.783 175.19 147.573 176.596 147.573 178.566V178.739C147.573 179.687 147.4 180.491 147.039 181.183C146.31 182.559 144.971 183.311 143.122 183.311C140.279 183.311 138.67 181.589 138.67 178.732L138.662 178.739ZM146.573 178.724V178.581C146.573 177.792 146.43 177.145 146.129 176.543C145.513 175.408 144.452 174.746 143.129 174.746C142.467 174.746 141.866 174.889 141.362 175.205C140.317 175.822 139.685 176.957 139.685 178.581V178.724C139.685 180.98 140.933 182.416 143.114 182.416C145.295 182.416 146.573 181.01 146.573 178.724Z\" fill=\"#020200\"/>\\n<path d=\"M153.16 183.303C150.851 183.303 149.701 181.769 149.701 179.468V174.129H150.693V179.272C150.693 181.122 151.498 182.4 153.423 182.4C154.04 182.4 154.573 182.242 155.032 181.942C155.965 181.31 156.483 180.205 156.483 178.783V174.129H157.476V183.1H156.626L156.528 180.859C156.085 182.34 154.904 183.303 153.152 183.303H153.16Z\" fill=\"#020200\"/>\\n<path d=\"M159.446 180.174H160.521C160.582 180.678 160.777 181.121 161.04 181.452C161.642 182.114 162.544 182.43 163.597 182.43C164.274 182.43 164.8 182.347 165.191 182.159C165.996 181.798 166.326 181.197 166.326 180.535C166.326 180.106 166.168 179.791 165.898 179.588C165.326 179.159 164.379 179.016 163.341 178.873C162.491 178.745 161.634 178.602 160.958 178.272C160.266 177.941 159.837 177.384 159.837 176.437C159.837 175.993 159.95 175.565 160.183 175.189C160.642 174.384 161.634 173.865 163.243 173.865C165.529 173.865 166.905 174.956 167.108 176.647H166.078C165.935 175.399 164.86 174.707 163.236 174.707C162.619 174.707 162.146 174.79 161.785 174.963C161.093 175.279 160.822 175.835 160.822 176.399C160.822 176.828 160.98 177.144 161.251 177.347C161.822 177.775 162.8 177.918 163.807 178.054C164.68 178.181 165.514 178.339 166.206 178.655C166.883 178.986 167.311 179.557 167.311 180.505C167.311 181.009 167.184 181.467 166.92 181.896C166.417 182.768 165.326 183.317 163.574 183.317C161.251 183.317 159.672 182.272 159.439 180.174H159.446Z\" fill=\"#020200\"/>\\n<path d=\"M173.477 183.318C170.537 183.318 169.011 181.566 169.011 178.754V178.596C169.011 177.649 169.184 176.844 169.567 176.115C170.312 174.694 171.665 173.874 173.515 173.874C174.447 173.874 175.222 174.077 175.853 174.476C177.117 175.28 177.763 176.686 177.763 178.408V178.897H170.011C170.056 181.093 171.274 182.446 173.5 182.446C175.064 182.446 176.184 181.784 176.575 180.423H177.636C177.147 182.333 175.583 183.311 173.485 183.311L173.477 183.318ZM170.018 178.077H176.778C176.666 176.025 175.515 174.701 173.507 174.701C171.5 174.701 170.191 176.01 170.018 178.077Z\" fill=\"#020200\"/>\\n</svg>\\n',withExternalLayout:true}),isDisplayed7()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1c2bjp6 hidden-1c4cr81\",\"data-framer-name\":\"Group\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:195,intrinsicWidth:277,svg:'<svg width=\"277\" height=\"195\" viewBox=\"0 0 277 195\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M70.8049 179.19C71.7223 179.19 72.5419 179.378 73.3014 179.739C74.8203 180.499 75.7828 181.98 75.7828 184.348V185.296C75.7828 186.461 75.5798 187.409 75.1512 188.168C74.2865 189.687 72.7675 190.439 70.8877 190.439H66.8648V179.183H70.8125L70.8049 179.19ZM68.9101 188.627H70.7899C72.5269 188.627 73.6924 187.492 73.6924 185.108V184.506C73.6924 182.123 72.4893 180.972 70.7072 180.972H68.9101V188.627Z\" fill=\"#020200\"/>\\n<path d=\"M81.7307 190.68C78.6703 190.68 77.1664 188.913 77.1664 186.101V185.883C77.1664 184.905 77.3544 184.101 77.7379 183.371C78.4974 181.95 79.8884 181.146 81.7984 181.146C83.3624 181.146 84.4678 181.679 85.1896 182.552C85.919 183.424 86.2348 184.544 86.2348 185.71V186.672H79.2267C79.3997 188.154 80.3171 188.981 81.8134 188.981C82.9188 188.981 83.5654 188.552 83.8813 187.763H86.107C85.5882 189.612 84.1144 190.68 81.7307 190.68ZM79.2343 185.041H84.1595C84.0166 183.649 83.2571 182.785 81.8059 182.785C80.3546 182.785 79.4674 183.604 79.2343 185.041Z\" fill=\"#020200\"/>\\n<path d=\"M87.1296 187.447H89.3703C89.5583 188.522 90.3028 188.943 91.5961 188.943C92.8894 188.943 93.4459 188.5 93.4459 187.778C93.4459 187.507 93.3331 187.289 93.1 187.146C92.6413 186.875 91.8518 186.77 90.987 186.642C90.1674 186.514 89.3252 186.372 88.6485 186.011C87.9718 185.65 87.5431 185.033 87.5431 184.018C87.5431 182.349 88.7913 181.146 91.2878 181.146C93.7842 181.146 95.0776 182.266 95.3332 184.078H93.2203C93.0774 183.191 92.4759 182.8 91.2803 182.8C89.987 182.8 89.5884 183.258 89.5884 183.89C89.5884 184.161 89.7012 184.379 89.9343 184.522C90.393 184.792 91.1976 184.898 92.0698 185.026C92.8894 185.153 93.7241 185.296 94.4084 185.657C95.0851 186.018 95.5137 186.635 95.5137 187.65C95.5137 189.402 94.2505 190.68 91.566 190.68C88.8816 190.68 87.4153 189.56 87.1446 187.447H87.1296Z\" fill=\"#020200\"/>\\n<path d=\"M96.6717 179.018C96.6717 178.011 97.1304 177.657 98.0478 177.657C98.9651 177.657 99.4238 178.003 99.4238 179.018C99.4238 180.033 98.9802 180.394 98.0478 180.394C97.0552 180.394 96.6717 180.063 96.6717 179.018ZM96.9725 181.372H99.0704V190.448H96.9725V181.372Z\" fill=\"#020200\"/>\\n<path d=\"M102.071 194.283C100.837 193.922 100.462 193.252 100.462 192.403C100.462 191.425 101.063 190.711 102.499 190.38C101.266 190.207 100.732 189.59 100.732 188.673C100.732 187.756 101.424 187.124 102.687 186.853C101.439 186.462 100.822 185.605 100.822 184.282C100.822 182.47 102.176 181.485 104.342 181.342L104.8 181.312C105.334 181.266 105.718 181.214 105.981 181.109C106.485 180.921 106.612 180.492 106.612 179.627V179.484H109.011V179.785C109.011 181.236 108.282 181.635 106.342 181.65C108.034 181.883 108.943 182.913 108.943 184.289V184.349C108.943 186.274 107.409 187.447 104.838 187.447H104.695C104.063 187.447 103.605 187.462 103.289 187.53C102.657 187.643 102.514 187.816 102.514 188.117C102.514 188.545 102.89 188.718 103.966 188.718H105.8C108.342 188.718 109.447 189.763 109.447 191.388C109.447 193.373 107.951 194.576 104.793 194.576H104.68C103.544 194.576 102.672 194.486 102.063 194.29L102.071 194.283ZM107.53 191.485C107.53 190.854 107.056 190.44 105.733 190.44H104.108C102.988 190.553 102.499 191.042 102.499 191.673V191.703C102.499 192.275 103.071 192.854 104.492 192.854H104.823C106.703 192.854 107.537 192.35 107.537 191.478L107.53 191.485ZM106.883 184.364V184.319C106.883 183.056 105.996 182.627 104.875 182.627C103.755 182.627 102.89 183.161 102.89 184.334V184.38C102.89 185.44 103.612 185.974 104.845 185.974C106.221 185.974 106.883 185.44 106.883 184.364Z\" fill=\"#020200\"/>\\n<path d=\"M110.485 190.447V181.371H112.237L112.425 183.191C112.914 181.943 113.944 181.153 115.5 181.153C117.696 181.153 118.862 182.605 118.862 184.86V190.447H116.779V185.364C116.779 183.883 116.305 182.95 114.824 182.95C113.342 182.95 112.568 184.026 112.568 185.71V190.447H110.485Z\" fill=\"#020200\"/>\\n<path d=\"M127.524 185.35V190.448H126.516V179.267H127.524V184.38H134.013V179.267H135.006V190.448H134.013V185.35H127.524Z\" fill=\"#020200\"/>\\n<path d=\"M137.344 186.086V185.913C137.344 184.92 137.532 184.078 137.931 183.386C138.72 181.965 140.081 181.221 141.796 181.221C142.668 181.221 143.42 181.409 144.104 181.792C145.458 182.537 146.255 183.943 146.255 185.913V186.086C146.255 187.033 146.082 187.838 145.721 188.53C144.999 189.906 143.653 190.658 141.803 190.658C138.961 190.658 137.352 188.936 137.352 186.078L137.344 186.086ZM145.255 186.071V185.928C145.255 185.138 145.112 184.492 144.811 183.89C144.194 182.755 143.134 182.093 141.811 182.093C141.149 182.093 140.548 182.236 140.044 182.552C139.006 183.168 138.374 184.304 138.374 185.928V186.071C138.374 188.327 139.623 189.763 141.796 189.763C143.969 189.763 145.255 188.357 145.255 186.071Z\" fill=\"#020200\"/>\\n<path d=\"M151.842 190.65C149.533 190.65 148.383 189.116 148.383 186.815V181.477H149.375V186.62C149.375 188.47 150.18 189.748 152.105 189.748C152.721 189.748 153.255 189.59 153.714 189.289C154.646 188.658 155.165 187.552 155.165 186.131V181.477H156.158V190.447H155.308L155.21 188.206C154.767 189.688 153.586 190.65 151.834 190.65H151.842Z\" fill=\"#020200\"/>\\n<path d=\"M158.128 187.529H159.203C159.263 188.033 159.459 188.477 159.722 188.808C160.324 189.47 161.218 189.785 162.279 189.785C162.955 189.785 163.482 189.703 163.873 189.515C164.677 189.154 165.008 188.552 165.008 187.89C165.008 187.462 164.85 187.146 164.58 186.943C164.008 186.514 163.061 186.372 162.023 186.229C161.173 186.101 160.316 185.958 159.639 185.627C158.948 185.296 158.519 184.74 158.519 183.792C158.519 183.349 158.632 182.92 158.865 182.544C159.324 181.74 160.316 181.221 161.925 181.221C164.211 181.221 165.587 182.311 165.79 184.003H164.76C164.617 182.755 163.542 182.063 161.918 182.063C161.301 182.063 160.827 182.146 160.466 182.319C159.775 182.634 159.504 183.191 159.504 183.755C159.504 184.183 159.662 184.499 159.933 184.702C160.504 185.131 161.482 185.274 162.489 185.409C163.354 185.537 164.196 185.695 164.888 186.011C165.565 186.341 165.993 186.913 165.993 187.86C165.993 188.364 165.865 188.823 165.602 189.251C165.098 190.124 164.008 190.673 162.256 190.673C159.933 190.673 158.353 189.627 158.12 187.529H158.128Z\" fill=\"#020200\"/>\\n<path d=\"M172.167 190.665C169.234 190.665 167.7 188.913 167.7 186.101V185.943C167.7 184.995 167.873 184.191 168.249 183.461C168.994 182.04 170.347 181.221 172.197 181.221C173.129 181.221 173.904 181.424 174.535 181.822C175.799 182.627 176.445 184.033 176.445 185.755V186.244H168.693C168.738 188.439 169.956 189.793 172.182 189.793C173.746 189.793 174.866 189.131 175.257 187.77H176.318C175.829 189.68 174.265 190.658 172.167 190.658V190.665ZM168.708 185.424H175.468C175.355 183.371 174.205 182.048 172.197 182.048C170.189 182.048 168.881 183.356 168.708 185.424Z\" fill=\"#020200\"/>\\n<path d=\"M185.123 70.3847C184.987 70.6554 184.987 70.8885 185.123 71.0915C185.19 71.2945 185.393 71.3923 185.732 71.3923H214.148C214.411 71.3923 214.621 71.2945 214.749 71.0915C214.877 70.8885 214.885 70.6554 214.749 70.3847L211.403 62.6998V36.4119C211.403 34.0057 212.253 31.9529 213.937 30.246C215.576 28.5692 217.862 27.6142 220.208 27.6142C222.554 27.6142 224.705 28.4714 226.419 30.1934C228.141 31.9153 228.998 33.9832 228.998 36.4119V62.6998L225.66 70.3847C225.525 70.6554 225.525 70.8885 225.66 71.0915C225.728 71.2945 225.931 71.3923 226.269 71.3923H254.677C254.948 71.3923 255.151 71.2945 255.286 71.0915C255.422 70.8885 255.422 70.6554 255.286 70.3847L251.94 62.6998V37.7203C251.94 35.9081 251.692 34.1486 251.188 32.4642C250.677 30.7799 249.857 29.1933 248.707 27.712C247.632 26.2908 246.368 25.0501 244.917 23.9748C243.473 22.8995 241.917 21.9671 240.27 21.1926C238.616 20.4181 236.901 19.8166 235.112 19.3805C233.322 18.9443 231.585 18.621 229.908 18.418C228.156 18.2149 226.434 18.1172 224.75 18.1172C221.043 18.1172 217.486 18.621 214.088 19.6286C210.689 20.6362 207.681 22.5236 205.057 25.2682C205.057 25.2682 205.042 25.2832 205.034 25.2907C203.876 26.7269 202.59 28.4414 201.568 30.1633C201.252 30.6897 200.695 30.9829 200.124 30.9829C199.831 30.9829 199.53 30.9077 199.267 30.7498C198.47 30.2686 198.214 29.2384 198.688 28.4414C199.868 26.4637 201.335 24.5087 202.628 22.9296L200.086 20.4407C199.943 20.3129 199.786 20.2377 199.583 20.2377H190.07C188.958 20.2377 188.055 21.14 188.055 22.2529V28.9301L188.461 62.7074L185.115 70.3922L185.123 70.3847Z\" fill=\"#020200\"/>\\n<path d=\"M133.254 127.584C133.254 124.952 132.78 122.328 131.84 119.704C130.75 116.666 129.186 113.967 127.133 111.613C125.065 109.252 122.689 107.229 119.99 105.537C116.952 103.65 113.726 102.259 110.312 101.341C106.906 100.439 103.417 99.9805 99.8375 99.9805C96.2583 99.9805 92.7617 100.439 89.3554 101.341C85.9491 102.259 82.7157 103.65 79.6929 105.537C76.986 107.222 74.6098 109.252 72.5495 111.613C70.4817 113.967 68.9176 116.666 67.8348 119.704C66.8949 122.336 66.4137 124.96 66.4137 127.584C66.4137 130.209 66.8949 132.84 67.8348 135.48C68.9176 138.502 70.4817 141.202 72.5495 143.563C74.6098 145.917 76.9784 147.939 79.6929 149.631C82.7157 151.511 85.9491 152.91 89.3554 153.82C92.7617 154.737 96.2583 155.188 99.8375 155.188C103.417 155.188 106.906 154.729 110.312 153.82C113.726 152.91 116.952 151.511 119.99 149.631C122.689 147.947 125.058 145.917 127.133 143.563C129.186 141.202 130.75 138.502 131.84 135.48C132.78 132.84 133.254 130.216 133.254 127.584ZM110.101 143.601C104.432 147.578 94.6415 143.383 88.235 134.239C81.836 125.103 81.2419 114.47 86.9191 110.493C92.5963 106.515 102.379 110.718 108.786 119.854C115.185 128.99 115.779 139.623 110.101 143.601Z\" fill=\"#020200\"/>\\n<path d=\"M157.526 112.012C158.196 111.538 158.903 111.471 159.647 111.809C162.076 112.817 164.52 113.817 166.986 114.787C169.437 115.772 171.889 116.727 174.317 117.674C174.52 117.809 174.753 117.809 175.024 117.674C175.227 117.606 175.325 117.403 175.325 117.073V100.891C175.325 100.485 175.122 100.221 174.723 100.086C172.768 99.6801 170.678 99.5297 168.452 99.6275C166.226 99.7252 164.016 100.086 161.828 100.688C159.632 101.289 157.542 102.139 155.556 103.214C153.677 104.229 152.067 105.387 150.699 106.711H150.684C149.488 108.192 148.135 109.982 147.074 111.771C146.759 112.298 146.202 112.591 145.631 112.591C145.337 112.591 145.037 112.508 144.774 112.35C143.976 111.877 143.721 110.846 144.187 110.049C145.353 108.109 146.789 106.177 148.06 104.613L145.495 102.101C145.353 101.966 145.195 101.898 144.992 101.898H130.833C130.487 101.898 130.291 101.996 130.231 102.199C130.088 102.477 130.088 102.71 130.231 102.913L133.57 110.591V144.564L130.231 152.241C130.088 152.519 130.088 152.752 130.231 152.955C130.291 153.158 130.494 153.256 130.833 153.256H159.241C159.512 153.256 159.715 153.158 159.85 152.955C159.985 152.752 159.985 152.519 159.85 152.241L156.511 144.564V113.922C156.511 113.117 156.842 112.478 157.519 112.004L157.526 112.012Z\" fill=\"#020200\"/>\\n<path d=\"M105.695 126.953L101.371 125.246C101.199 125.178 101.056 125.036 100.988 124.863L99.281 120.539C99.0555 119.967 98.2434 119.967 98.0178 120.539L96.3109 124.863C96.2432 125.036 96.1004 125.178 95.9274 125.246L91.6037 126.953C91.0323 127.179 91.0323 127.991 91.6037 128.216L95.9274 129.923C96.1004 129.991 96.2432 130.134 96.3109 130.307L98.0178 134.63C98.2434 135.202 99.0555 135.202 99.281 134.63L100.988 130.307C101.056 130.134 101.199 129.991 101.371 129.923L105.695 128.216C106.267 127.991 106.267 127.179 105.695 126.953Z\" fill=\"#020200\"/>\\n<path d=\"M276.732 152.353L273.393 144.668V119.696C273.393 116.26 272.799 113.297 271.626 110.801C270.446 108.304 268.844 106.252 266.821 104.627C264.799 103.011 262.4 101.838 259.64 101.093C256.873 100.356 253.88 99.9805 250.639 99.9805C247.203 99.9805 243.864 100.402 240.631 101.244C237.458 102.071 234.608 103.627 232.082 105.913C230.751 107.5 229.074 109.643 227.803 111.771C227.487 112.297 226.931 112.591 226.359 112.591C226.073 112.591 225.773 112.508 225.502 112.35C224.705 111.876 224.449 110.846 224.923 110.049C226.277 107.786 228.006 105.552 229.405 103.876C227.713 102.672 225.818 101.8 223.75 101.244C220.584 100.402 217.411 99.9805 214.245 99.9805C210.531 99.9805 206.982 100.484 203.583 101.492C200.244 102.484 197.297 104.304 194.71 106.974C194.71 106.974 194.71 106.974 194.695 106.989C193.56 108.41 192.304 110.087 191.296 111.771C190.98 112.297 190.424 112.591 189.852 112.591C189.559 112.591 189.258 112.508 188.995 112.35C188.198 111.876 187.943 110.846 188.416 110.049C189.529 108.184 190.898 106.342 192.131 104.815L192.033 104.718L189.574 102.304C189.537 102.266 189.499 102.236 189.454 102.206L188.018 100.808C187.642 100.447 187.138 100.244 186.612 100.244H178.859C178.19 100.244 177.648 100.785 177.648 101.447V144.766L174.31 152.451C174.174 152.722 174.174 152.955 174.31 153.158C174.377 153.361 174.581 153.459 174.911 153.459H203.327C203.598 153.459 203.801 153.361 203.929 153.158C204.064 152.955 204.064 152.722 203.929 152.451L201.199 144.458V116.553C201.199 115.267 201.455 114.125 201.959 113.109C202.463 112.102 203.29 111.327 204.433 110.786C205.38 110.312 206.493 110.072 207.779 110.072C208.854 110.072 209.929 110.35 211.012 110.884C213.23 112.027 214.351 113.952 214.351 116.644V144.548L211.012 152.233C210.877 152.504 210.877 152.737 211.012 152.94C211.08 153.143 211.283 153.241 211.621 153.241H240.037C240.308 153.241 240.511 153.143 240.639 152.94C240.766 152.737 240.774 152.504 240.639 152.233L237.3 144.548V116.644C237.3 115.358 237.548 114.215 238.052 113.2C238.563 112.192 239.383 111.418 240.533 110.876C241.473 110.402 242.586 110.162 243.872 110.162C244.947 110.162 246.03 110.44 247.105 110.974C249.331 112.117 250.444 114.042 250.444 116.734V144.638L247.105 152.323C246.97 152.594 246.97 152.827 247.105 153.03C247.173 153.233 247.376 153.331 247.707 153.331H276.123C276.394 153.331 276.597 153.233 276.724 153.03C276.86 152.827 276.86 152.594 276.724 152.323L276.732 152.353Z\" fill=\"#020200\"/>\\n<path d=\"M130.622 61.6845C128.742 62.4214 126.952 63.3387 125.268 64.414C123.576 65.4968 122.095 66.8127 120.809 68.3542C119.531 69.9784 118.644 71.7079 118.14 73.5576C117.636 75.4149 117.516 77.2346 117.786 79.0167C118.05 80.8139 118.681 82.5133 119.666 84.1299C120.636 85.7541 121.937 87.2054 123.546 88.4837C125.637 90.0252 127.975 91.1456 130.524 91.8223C133.088 92.4915 135.652 92.8224 138.209 92.8224C143.194 92.8224 147.563 91.8975 151.3 90.0477C155.045 88.198 158.188 85.1526 160.76 80.9041C161.234 80.092 161.767 79.5657 162.376 79.3401C162.978 79.107 163.527 79.0619 164.001 79.2423C164.474 79.4077 164.813 79.7687 165.001 80.3026C165.211 80.8439 165.144 81.4455 164.813 82.1147C164.136 83.4607 163.301 84.7315 162.331 85.9045C161.346 87.0851 160.324 88.2431 159.241 89.4011C158.97 89.6642 158.895 89.9425 159.038 90.2583C159.173 90.5515 159.414 90.717 159.745 90.717L183.205 90.6192C183.401 90.6192 183.566 90.5139 183.709 90.3109C184.845 89.0326 185.521 87.258 185.724 84.9947C185.935 82.7388 185.724 80.4605 185.123 78.1746C184.521 75.8811 183.559 73.7531 182.243 71.7981C180.934 69.8506 179.348 68.4971 177.536 67.7526L177.641 67.8504C177.1 67.6474 176.626 67.6023 176.22 67.7C175.821 67.7978 175.37 67.9181 174.911 68.0534C169.452 69.6626 164.023 70.7905 158.632 71.4372C153.248 72.0763 147.676 71.8206 141.946 70.6777C141.082 70.5423 140.299 70.3243 139.623 70.016C138.953 69.7227 138.502 69.2941 138.314 68.7602C137.968 67.8128 138.187 67.0759 138.961 66.5345C139.743 65.9931 140.593 65.8653 141.54 66.1284C146.864 67.685 152.368 68.1512 158.068 67.5496C163.768 66.933 169.009 65.1509 173.798 62.1807C177.709 59.7595 180.686 56.8871 182.747 53.586C184.807 50.2925 185.875 46.8787 185.98 43.3747C186.078 39.8631 185.183 36.4117 183.303 33.0129C182.559 31.6745 181.664 30.4037 180.604 29.2006C177.536 32.449 174.626 33.5919 174.498 33.637C174.302 33.7197 174.092 33.7498 173.896 33.7498C173.22 33.7498 172.58 33.3363 172.325 32.6745C171.994 31.8098 172.422 30.8323 173.295 30.5014C173.31 30.5014 175.806 29.4788 178.423 26.6139C178.573 26.456 178.746 26.3281 178.934 26.2379C181.724 22.9219 184.484 17.6207 184.957 9.42449C185.002 8.64999 184.386 7.98828 183.611 7.98828H169.558C168.858 7.98828 168.279 8.52216 168.219 9.21395L167.227 20.2149C163.189 18.8012 160.068 18.5681 160.068 18.5681C155.722 17.8387 151.263 17.7786 146.691 18.4027C141.164 19.1396 136.156 20.8916 131.63 23.6588C127.719 26.095 124.764 28.9374 122.742 32.2083C120.726 35.4793 119.636 38.863 119.501 42.3671C119.365 45.8636 120.23 49.3 122.08 52.6762C123.93 56.0524 126.787 59.0452 130.622 61.6769V61.6845ZM141.066 41.6602L147.661 39.0585C147.932 38.9533 148.142 38.7427 148.247 38.472L150.849 31.87C151.203 30.9977 152.436 30.9977 152.782 31.87L155.383 38.472C155.489 38.7427 155.707 38.9533 155.97 39.0585L162.572 41.6602C163.444 42.0061 163.444 43.2468 162.572 43.5927L155.97 46.1945C155.707 46.2997 155.496 46.5103 155.383 46.781L152.782 53.3755C152.436 54.2553 151.203 54.2553 150.849 53.3755L148.247 46.781C148.142 46.5103 147.932 46.2997 147.661 46.1945L141.066 43.5927C140.187 43.2468 140.187 42.0061 141.066 41.6602Z\" fill=\"#020200\"/>\\n<path d=\"M4.54381 60.978C7.11545 64.8956 10.5142 67.9184 14.7552 70.0765C17.0561 71.2195 19.4398 72.0692 21.9438 72.6031C24.4327 73.1444 26.9517 73.4076 29.5309 73.4076C32.8996 73.4076 36.0577 72.8136 38.9753 71.6255C41.9154 70.445 44.5471 68.6328 46.9158 66.2115C49.8333 62.6473 51.1417 58.5718 51.1492 58.5342C51.4349 57.6469 52.3749 57.1582 53.2622 57.4289C54.1419 57.7071 54.6382 58.6545 54.3675 59.5418C54.2998 59.7373 52.811 64.4294 49.3671 68.5501C49.3671 68.5501 49.352 68.5726 49.337 68.5802L51.871 71.0616C51.9989 71.2044 52.1643 71.2721 52.3748 71.2721H66.4737C66.5865 71.3548 66.7445 71.3999 66.94 71.3999H78.7605C81.0614 72.0692 83.4451 72.5805 85.9491 72.9189H86.4454C87.9342 73.1144 89.408 73.2497 90.8893 73.3174C92.3782 73.3851 93.8595 73.4151 95.3483 73.4151C97.8373 73.4151 100.522 73.1294 103.379 72.5579C106.244 71.9865 108.906 71.054 111.372 69.7757C113.824 68.4899 115.884 66.8131 117.538 64.7227C119.185 62.6323 120.02 60.0682 120.02 57.0378C120.02 55.1505 119.606 53.3909 118.794 51.7818C117.997 50.1576 116.944 48.6988 115.658 47.3829C114.38 46.0745 112.966 44.8714 111.417 43.7961C109.861 42.7133 108.349 41.7659 106.868 40.9613C105.718 40.2921 104.56 39.6454 103.379 39.0364C102.199 38.4273 101.041 37.8182 99.8976 37.2167C98.89 36.6753 97.8749 36.1564 96.8748 35.6526C95.8521 35.1488 94.8671 34.6225 93.9347 34.0886C93.5211 33.8179 93.0775 33.4945 92.5661 33.1336C92.0623 32.7576 91.6112 32.3365 91.2051 31.8628C90.7915 31.3891 90.4758 30.8928 90.2427 30.3439C90.0096 29.8025 89.9945 29.2761 90.19 28.7347C90.393 28.1332 90.7615 27.6144 91.3029 27.2158C91.8443 26.8023 92.3782 26.5015 92.9196 26.2985C93.7242 25.9676 94.5738 25.7947 95.4536 25.7947C96.3334 25.7947 97.168 25.8924 97.9726 26.1029C99.9277 26.5767 101.552 27.7196 102.83 29.5318C103.695 30.8251 104.304 32.2162 104.642 33.7352C104.981 35.2541 105.184 36.7504 105.244 38.2318C105.244 38.7055 105.484 38.9386 105.958 38.9386H117.583C118.049 38.9386 118.29 38.7055 118.29 38.2318V20.7341C118.29 20.2604 118.049 20.0197 117.583 20.0197H105.748C103.191 19.2227 100.612 18.6738 98.0102 18.4106C95.4235 18.1324 92.8143 17.997 90.175 17.997C87.8214 17.997 85.4528 18.2301 83.1067 18.7038C80.7381 19.1851 78.4898 19.9972 76.3242 21.1401C74.5722 22.0725 72.9555 23.238 71.4666 24.6216C69.9853 25.9977 68.88 27.6369 68.128 29.5243C67.5265 31.0808 67.2182 32.6674 67.2182 34.2841C67.2182 36.2918 67.5791 38.134 68.3235 39.7883C69.068 41.4426 70.0605 42.9389 71.3162 44.2849C72.557 45.6309 73.9781 46.8415 75.5497 47.9168C77.1438 48.9996 78.7379 49.9846 80.3621 50.8494C81.4976 51.4509 82.6104 52.0299 83.7008 52.5788C84.7685 53.1202 85.8964 53.6541 87.0394 54.188C87.9793 54.6692 88.9418 55.1354 89.9193 55.6092C90.9044 56.0829 91.8593 56.5942 92.8068 57.1281C93.5361 57.6018 94.3708 58.256 95.2732 59.0906C96.1905 59.9403 96.5138 60.8953 96.2356 61.9856C96.0401 62.7902 95.4687 63.5045 94.5212 64.1136C93.9798 64.4445 93.4083 64.7152 92.8068 64.9107C92.1977 65.1137 91.5886 65.2867 90.9871 65.422C89.4306 65.6175 87.9342 65.5198 86.4829 65.1137C85.0392 64.7152 83.7759 63.9708 82.6931 62.888C81.4148 61.6097 80.5351 60.1133 80.0689 58.3989C79.5951 56.6769 79.3244 54.9399 79.2568 53.1954C79.2568 52.7217 79.0312 52.4886 78.55 52.4886H66.9325C66.4512 52.4886 66.2256 52.7142 66.2256 53.1954V68.144L63.9021 62.6774V17.794C63.9021 12.9214 64.9323 7.12393 66.9249 2.67243L67.3385 1.7325C67.4814 1.537 67.4814 1.3039 67.3385 1.02568C67.2708 0.830174 67.0753 0.732422 66.7369 0.732422H61.9922C61.9922 0.732422 61.917 0.732422 61.8869 0.732422H38.0203C37.6744 0.732422 37.4789 0.830174 37.4187 1.02568C37.2759 1.3039 37.2759 1.537 37.4187 1.7325L37.8323 2.67243C39.8249 7.11641 40.8551 11.9364 40.8551 16.8089C42.3515 17.5308 43.6222 18.4181 44.5396 19.1324C45.457 19.8618 46.0059 20.4107 46.0661 20.4709C46.7203 21.1326 46.7202 22.2004 46.051 22.8546C45.7277 23.1779 45.2991 23.3358 44.8705 23.3358C44.4419 23.3358 44.0058 23.1779 43.6749 22.8395C43.6448 22.8094 42.4943 21.6665 40.8025 20.6138C37.3811 18.8843 33.6064 18.0121 29.5309 18.0121C26.9517 18.0121 24.4327 18.2903 21.9438 18.8166C19.4398 19.358 17.0561 20.2002 14.7552 21.3507C10.5218 23.5012 7.11545 26.5391 4.54381 30.4417C1.521 35.0285 -0.00543213 40.1191 -0.00543213 45.7136C-0.00543213 48.4807 0.355485 51.1426 1.10743 53.7067C1.84433 56.2633 2.98729 58.6996 4.54381 60.9855V60.978ZM17.3644 28.1558C23.0416 24.178 32.8243 28.3738 39.2309 37.5174C45.6299 46.6535 46.224 57.286 40.5468 61.2638C34.8772 65.234 25.0869 61.0382 18.6803 51.9021C12.2813 42.7585 11.6948 32.126 17.3644 28.1558Z\" fill=\"#020200\"/>\\n<path d=\"M66.2256 149.925L63.9021 144.459V99.5752C63.9021 94.7027 64.9323 88.9052 66.9249 84.4537L67.3385 83.5138C67.4814 83.3183 67.4814 83.0851 67.3385 82.8069C67.2708 82.6114 67.0753 82.5137 66.737 82.5137H61.9922C61.9922 82.5137 61.917 82.5137 61.8869 82.5137H38.0203C37.6744 82.5137 37.4789 82.6114 37.4187 82.8069C37.2759 83.0851 37.2759 83.3183 37.4187 83.5138L37.8323 84.4537C39.825 88.8977 40.8551 93.7176 40.8551 98.5902C42.3515 99.3121 43.6222 100.199 44.5396 100.914C45.457 101.643 46.0059 102.192 46.0661 102.252C46.7203 102.914 46.7203 103.982 46.051 104.636C45.7277 104.959 45.2991 105.117 44.8705 105.117C44.4419 105.117 44.0058 104.959 43.6749 104.621C43.6448 104.591 42.4944 103.448 40.8025 102.395C37.3811 100.666 33.6064 99.7933 29.5309 99.7933C26.9517 99.7933 24.4327 100.072 21.9438 100.598C19.4398 101.139 17.0561 101.981 14.7552 103.132C10.5218 105.282 7.11546 108.32 4.54382 112.223C1.52101 116.81 -0.0054245 121.9 -0.0054245 127.495C-0.0054245 130.262 0.355493 132.924 1.10743 135.488C1.84434 138.045 2.9873 140.481 4.54382 142.767C7.11546 146.684 10.5142 149.707 14.7552 151.865C17.0561 153.008 19.4398 153.858 21.9438 154.392C24.4327 154.933 26.9517 155.196 29.5309 155.196C32.8996 155.196 36.0577 154.602 38.9753 153.414C41.9154 152.234 44.5472 150.422 46.9158 148C49.8333 144.436 51.1417 140.361 51.1492 140.323C51.435 139.436 52.3749 138.947 53.2622 139.218C54.1419 139.496 54.6382 140.443 54.3675 141.331C54.2998 141.526 52.811 146.218 49.3671 150.339C49.3671 150.339 49.352 150.361 49.337 150.369L51.871 152.85C51.9989 152.993 52.1643 153.061 52.3748 153.061H66.4737C66.3158 152.948 66.2332 152.753 66.2332 152.474V149.94L66.2256 149.925ZM40.5393 143.037C34.8696 147.008 25.0794 142.812 18.6728 133.676C12.2738 124.532 11.6873 113.9 17.3569 109.929C23.0341 105.952 32.8168 110.148 39.2234 119.291C45.6224 128.427 46.2164 139.06 40.5393 143.037Z\" fill=\"#020200\"/>\\n</svg>\\n',withExternalLayout:true})]})]})}),isDisplayed6()&&/*#__PURE__*/_jsx(Link,{href:{webPageId:\"pEH6Ib3cN\"},motionChild:true,nodeId:\"PkneTtj2N\",scopeId:\"L19Tvfnan\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eqeunS4q0:{__framer__animate:{transition:transition9},__framer__enter:animation3,__framer__exit:animation10},EszxHZDpT:{__framer__animate:{transition:transition9},__framer__enter:animation3,__framer__exit:animation10}},children:/*#__PURE__*/_jsxs(MotionAWithFX,{__framer__animate:{transition:transition10},__framer__animateOnce:true,__framer__enter:animation11,__framer__exit:animation12,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1lgj2a hidden-1sc40i8 framer-v9haje\",\"data-framer-name\":\"Button\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-tushyj\",\"data-framer-name\":\"Frame 47\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3BhY2UgR3JvdGVzay1yZWd1bGFy\",\"--framer-font-family\":'\"Space Grotesk\", \"Space Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Discover More\"})}),className:\"framer-1baqe4r\",\"data-framer-name\":\"Discover More\",fonts:[\"GF;Space Grotesk-regular\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1ovigls\",\"data-framer-name\":\"Group 10\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:75,intrinsicWidth:74,svg:'<svg width=\"74\" height=\"75\" viewBox=\"0 0 74 75\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<circle cx=\"37\" cy=\"37.2822\" r=\"37\" fill=\"black\"/>\\n<g clip-path=\"url(#clip0_688_1485)\">\\n<rect width=\"28.8494\" height=\"22.1179\" transform=\"translate(21.8545 26.5176)\" fill=\"black\"/>\\n<path d=\"M50.7039 37.5765L38.0859 48.6355L36.1358 46.6346L44.9398 38.9285H21.8545V36.2246H44.9398L36.1358 28.4914L38.0859 26.5176L50.7039 37.5765Z\" fill=\"white\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_688_1485\">\\n<rect width=\"28.8494\" height=\"22.1179\" fill=\"white\" transform=\"translate(21.8545 26.5176)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})]})})})]})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eqeunS4q0:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+4243),pixelHeight:1748,pixelWidth:1920,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/WWIWtIevGB5WUM6it6N21KNA.png\",srcSet:\"https://framerusercontent.com/images/WWIWtIevGB5WUM6it6N21KNA.png?scale-down-to=512 512w,https://framerusercontent.com/images/WWIWtIevGB5WUM6it6N21KNA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/WWIWtIevGB5WUM6it6N21KNA.png 1920w\"}},EszxHZDpT:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+5749),pixelHeight:1748,pixelWidth:1920,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/WWIWtIevGB5WUM6it6N21KNA.png\",srcSet:\"https://framerusercontent.com/images/WWIWtIevGB5WUM6it6N21KNA.png?scale-down-to=512 512w,https://framerusercontent.com/images/WWIWtIevGB5WUM6it6N21KNA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/WWIWtIevGB5WUM6it6N21KNA.png 1920w\"}},H7_WF9cnz:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+5699),pixelHeight:1748,pixelWidth:1920,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/WWIWtIevGB5WUM6it6N21KNA.png\",srcSet:\"https://framerusercontent.com/images/WWIWtIevGB5WUM6it6N21KNA.png?scale-down-to=512 512w,https://framerusercontent.com/images/WWIWtIevGB5WUM6it6N21KNA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/WWIWtIevGB5WUM6it6N21KNA.png 1920w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+5809),pixelHeight:1748,pixelWidth:1920,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/WWIWtIevGB5WUM6it6N21KNA.png\",srcSet:\"https://framerusercontent.com/images/WWIWtIevGB5WUM6it6N21KNA.png?scale-down-to=512 512w,https://framerusercontent.com/images/WWIWtIevGB5WUM6it6N21KNA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/WWIWtIevGB5WUM6it6N21KNA.png 1920w\"},className:\"framer-108yg49\",\"data-framer-name\":\"BG Awards 1\",id:elementId4,ref:ref5,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1xqv0v5\",\"data-framer-name\":\"Awards\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eqeunS4q0:{transformTemplate:transformTemplate1},EszxHZDpT:{transformTemplate:transformTemplate1}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition12},__framer__animateOnce:true,__framer__enter:animation3,__framer__exit:animation13,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3BhY2UgR3JvdGVzay1yZWd1bGFy\",\"--framer-font-family\":'\"Space Grotesk\", \"Space Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Other Awards\"})}),className:\"framer-11yo9z0\",\"data-framer-name\":\"Other Awards\",fonts:[\"GF;Space Grotesk-regular\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eqeunS4q0:{transformTemplate:transformTemplate1},EszxHZDpT:{transformTemplate:undefined},H7_WF9cnz:{transformTemplate:undefined}},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition12},__framer__animateOnce:true,__framer__enter:animation3,__framer__exit:animation13,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-y11dsw\",\"data-framer-name\":\"3\",transformTemplate:transformTemplate2,children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1kuuwvs\",\"data-framer-name\":\"Line 71\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:3,intrinsicWidth:1065,svg:'<svg width=\"1065\" height=\"3\" viewBox=\"-1 -1 1065 3\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<line opacity=\"0.5\" y1=\"0.5\" x2=\"1063\" y2=\"0.5\" stroke=\"white\"/>\\n</svg>\\n',withExternalLayout:true})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eqeunS4q0:{transformTemplate:transformTemplate1},EszxHZDpT:{transformTemplate:undefined},H7_WF9cnz:{transformTemplate:undefined}},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition12},__framer__animateOnce:true,__framer__enter:animation3,__framer__exit:animation13,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-16hp5tt\",\"data-framer-name\":\"2\",transformTemplate:transformTemplate2,children:/*#__PURE__*/_jsx(SVG,{className:\"framer-d4zsrc\",\"data-framer-name\":\"Line 70\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:3,intrinsicWidth:1065,svg:'<svg width=\"1065\" height=\"3\" viewBox=\"-1 -1 1065 3\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<line opacity=\"0.5\" y1=\"0.5\" x2=\"1063\" y2=\"0.5\" stroke=\"white\"/>\\n</svg>\\n',withExternalLayout:true})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eqeunS4q0:{transformTemplate:transformTemplate1},EszxHZDpT:{transformTemplate:undefined}},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition12},__framer__animateOnce:true,__framer__enter:animation3,__framer__exit:animation13,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-bnf4i8\",\"data-framer-name\":\"1\",transformTemplate:transformTemplate2,children:/*#__PURE__*/_jsx(SVG,{className:\"framer-gt9wvw\",\"data-framer-name\":\"Line 69\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:3,intrinsicWidth:1065,svg:'<svg width=\"1065\" height=\"3\" viewBox=\"-1 -1 1065 3\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<line opacity=\"0.5\" y1=\"0.5\" x2=\"1063\" y2=\"0.5\" stroke=\"white\"/>\\n</svg>\\n',withExternalLayout:true})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eqeunS4q0:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3BhY2UgR3JvdGVzay1yZWd1bGFy\",\"--framer-font-family\":'\"Space Grotesk\", \"Space Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"One of the best Craft House of the Year \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3BhY2UgR3JvdGVzay1yZWd1bGFy\",\"--framer-font-family\":'\"Space Grotesk\", \"Space Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"6 Nominations on Citra Pariwara Awards \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3BhY2UgR3JvdGVzay1yZWd1bGFy\",\"--framer-font-family\":'\"Space Grotesk\", \"Space Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"2 Best Film Craft Animation - Bronze \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3BhY2UgR3JvdGVzay1yZWd1bGFy\",\"--framer-font-family\":'\"Space Grotesk\", \"Space Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"1 Best Film Craft Use of Audio - Silver\"})]}),transformTemplate:transformTemplate1},EszxHZDpT:{transformTemplate:transformTemplate1},H7_WF9cnz:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3BhY2UgR3JvdGVzay1yZWd1bGFy\",\"--framer-font-family\":'\"Space Grotesk\", \"Space Grotesk Placeholder\", sans-serif',\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"One of the best Craft House of the Year \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3BhY2UgR3JvdGVzay1yZWd1bGFy\",\"--framer-font-family\":'\"Space Grotesk\", \"Space Grotesk Placeholder\", sans-serif',\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"6 Nominations on Citra Pariwara Awards \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3BhY2UgR3JvdGVzay1yZWd1bGFy\",\"--framer-font-family\":'\"Space Grotesk\", \"Space Grotesk Placeholder\", sans-serif',\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"2 Best Film Craft Animation - Bronze \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3BhY2UgR3JvdGVzay1yZWd1bGFy\",\"--framer-font-family\":'\"Space Grotesk\", \"Space Grotesk Placeholder\", sans-serif',\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"1 Best Film Craft Use of Audio - Silver\"})]})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition12},__framer__animateOnce:true,__framer__enter:animation3,__framer__exit:animation13,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3BhY2UgR3JvdGVzay1yZWd1bGFy\",\"--framer-font-family\":'\"Space Grotesk\", \"Space Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"One of the best Craft House of the Year \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3BhY2UgR3JvdGVzay1yZWd1bGFy\",\"--framer-font-family\":'\"Space Grotesk\", \"Space Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"6 Nominations on Citra Pariwara Awards \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3BhY2UgR3JvdGVzay1yZWd1bGFy\",\"--framer-font-family\":'\"Space Grotesk\", \"Space Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"2 Best Film Craft Animation - Bronze \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3BhY2UgR3JvdGVzay1yZWd1bGFy\",\"--framer-font-family\":'\"Space Grotesk\", \"Space Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"1 Best Film Craft Use of Audio - Silver\"})]}),className:\"framer-184fvkg\",\"data-framer-name\":\"One of the best Craft House of the Year 6 Nominations on Citra Pariwara Awards 2 Best Film Craft Animation - Bronze 1 Best Film Craft Use of Audio - Silver\",fonts:[\"GF;Space Grotesk-regular\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eqeunS4q0:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3BhY2UgR3JvdGVzay1yZWd1bGFy\",\"--framer-font-family\":'\"Space Grotesk\", \"Space Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Design Packaging Award - Gold\"})}),transformTemplate:transformTemplate1},EszxHZDpT:{transformTemplate:transformTemplate1},H7_WF9cnz:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3BhY2UgR3JvdGVzay1yZWd1bGFy\",\"--framer-font-family\":'\"Space Grotesk\", \"Space Grotesk Placeholder\", sans-serif',\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Design Packaging Award - Gold\"})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition12},__framer__animateOnce:true,__framer__enter:animation3,__framer__exit:animation13,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3BhY2UgR3JvdGVzay1yZWd1bGFy\",\"--framer-font-family\":'\"Space Grotesk\", \"Space Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Design Packaging Award - Gold\"})}),className:\"framer-1urcpfg\",\"data-framer-name\":\"Design Packaging Award - Gold\",fonts:[\"GF;Space Grotesk-regular\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eqeunS4q0:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3BhY2UgR3JvdGVzay1yZWd1bGFy\",\"--framer-font-family\":'\"Space Grotesk\", \"Space Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Citra Pariwara 2016\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3BhY2UgR3JvdGVzay1yZWd1bGFy\",\"--framer-font-family\":'\"Space Grotesk\", \"Space Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Festival Film Indonesia 2017\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3BhY2UgR3JvdGVzay1yZWd1bGFy\",\"--framer-font-family\":'\"Space Grotesk\", \"Space Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Indonesia Film Center 2017\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3BhY2UgR3JvdGVzay1yZWd1bGFy\",\"--framer-font-family\":'\"Space Grotesk\", \"Space Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Exim Bank Film Festival 2017 \"})]}),transformTemplate:transformTemplate1},EszxHZDpT:{transformTemplate:transformTemplate1},H7_WF9cnz:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3BhY2UgR3JvdGVzay1yZWd1bGFy\",\"--framer-font-family\":'\"Space Grotesk\", \"Space Grotesk Placeholder\", sans-serif',\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Citra Pariwara 2016\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3BhY2UgR3JvdGVzay1yZWd1bGFy\",\"--framer-font-family\":'\"Space Grotesk\", \"Space Grotesk Placeholder\", sans-serif',\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Festival Film Indonesia 2017\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3BhY2UgR3JvdGVzay1yZWd1bGFy\",\"--framer-font-family\":'\"Space Grotesk\", \"Space Grotesk Placeholder\", sans-serif',\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Indonesia Film Center 2017\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3BhY2UgR3JvdGVzay1yZWd1bGFy\",\"--framer-font-family\":'\"Space Grotesk\", \"Space Grotesk Placeholder\", sans-serif',\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Exim Bank Film Festival 2017 \"})]})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition12},__framer__animateOnce:true,__framer__enter:animation3,__framer__exit:animation13,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3BhY2UgR3JvdGVzay1yZWd1bGFy\",\"--framer-font-family\":'\"Space Grotesk\", \"Space Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Citra Pariwara 2016\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3BhY2UgR3JvdGVzay1yZWd1bGFy\",\"--framer-font-family\":'\"Space Grotesk\", \"Space Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Festival Film Indonesia 2017\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3BhY2UgR3JvdGVzay1yZWd1bGFy\",\"--framer-font-family\":'\"Space Grotesk\", \"Space Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Indonesia Film Center 2017\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3BhY2UgR3JvdGVzay1yZWd1bGFy\",\"--framer-font-family\":'\"Space Grotesk\", \"Space Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Exim Bank Film Festival 2017 \"})]}),className:\"framer-6xijvu\",\"data-framer-name\":\"Citra Pariwara 2016 Festival Film Indonesia 2017 Indonesia Film Center 2017 Exim Bank Film Festival 2017\",fonts:[\"GF;Space Grotesk-regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eqeunS4q0:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3BhY2UgR3JvdGVzay1yZWd1bGFy\",\"--framer-font-family\":'\"Space Grotesk\", \"Space Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"One of the best Craft House of the Year \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3BhY2UgR3JvdGVzay1yZWd1bGFy\",\"--framer-font-family\":'\"Space Grotesk\", \"Space Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"4 Nominations on Citra Pariwara Awards \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3BhY2UgR3JvdGVzay1yZWd1bGFy\",\"--framer-font-family\":'\"Space Grotesk\", \"Space Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"1 Best Film Craft Directing - Bronze \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3BhY2UgR3JvdGVzay1yZWd1bGFy\",\"--framer-font-family\":'\"Space Grotesk\", \"Space Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"1 Best Film Craft Use of Audio - Bronze \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3BhY2UgR3JvdGVzay1yZWd1bGFy\",\"--framer-font-family\":'\"Space Grotesk\", \"Space Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"1 Best Animation - Silver\"})]}),transformTemplate:transformTemplate1},EszxHZDpT:{transformTemplate:transformTemplate1},H7_WF9cnz:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3BhY2UgR3JvdGVzay1yZWd1bGFy\",\"--framer-font-family\":'\"Space Grotesk\", \"Space Grotesk Placeholder\", sans-serif',\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"One of the best Craft House of the Year \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3BhY2UgR3JvdGVzay1yZWd1bGFy\",\"--framer-font-family\":'\"Space Grotesk\", \"Space Grotesk Placeholder\", sans-serif',\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"4 Nominations on Citra Pariwara Awards \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3BhY2UgR3JvdGVzay1yZWd1bGFy\",\"--framer-font-family\":'\"Space Grotesk\", \"Space Grotesk Placeholder\", sans-serif',\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"1 Best Film Craft Directing - Bronze \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3BhY2UgR3JvdGVzay1yZWd1bGFy\",\"--framer-font-family\":'\"Space Grotesk\", \"Space Grotesk Placeholder\", sans-serif',\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"1 Best Film Craft Use of Audio - Bronze \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3BhY2UgR3JvdGVzay1yZWd1bGFy\",\"--framer-font-family\":'\"Space Grotesk\", \"Space Grotesk Placeholder\", sans-serif',\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"1 Best Animation - Silver\"})]})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition12},__framer__animateOnce:true,__framer__enter:animation3,__framer__exit:animation13,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3BhY2UgR3JvdGVzay1yZWd1bGFy\",\"--framer-font-family\":'\"Space Grotesk\", \"Space Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"One of the best Craft House of the Year \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3BhY2UgR3JvdGVzay1yZWd1bGFy\",\"--framer-font-family\":'\"Space Grotesk\", \"Space Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"4 Nominations on Citra Pariwara Awards \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3BhY2UgR3JvdGVzay1yZWd1bGFy\",\"--framer-font-family\":'\"Space Grotesk\", \"Space Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"1 Best Film Craft Directing - Bronze \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3BhY2UgR3JvdGVzay1yZWd1bGFy\",\"--framer-font-family\":'\"Space Grotesk\", \"Space Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"1 Best Film Craft Use of Audio - Bronze \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3BhY2UgR3JvdGVzay1yZWd1bGFy\",\"--framer-font-family\":'\"Space Grotesk\", \"Space Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"1 Best Animation - Silver\"})]}),className:\"framer-11iyju4\",\"data-framer-name\":\"One of the best Craft House of the Year 4 Nominations on Citra Pariwara Awards 1 Best Film Craft Directing - Bronze 1 Best Film Craft Use of Audio - Bronze 1 Best Animation - Silver\",fonts:[\"GF;Space Grotesk-regular\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eqeunS4q0:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+4243+0+960),pixelHeight:498,pixelWidth:498,src:\"https://framerusercontent.com/images/s2AUnMr0ajgyWFlsEEIwFBnSQ8.png\"},transformTemplate:transformTemplate1},EszxHZDpT:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+5749+-1.5144+1511),pixelHeight:372,pixelWidth:772,positionX:\"center\",positionY:\"center\",sizes:\"193px\",src:\"https://framerusercontent.com/images/xFSwbXj3kWR3F0PQGM7dcA8WaXU.png\",srcSet:\"https://framerusercontent.com/images/xFSwbXj3kWR3F0PQGM7dcA8WaXU.png?scale-down-to=512 512w,https://framerusercontent.com/images/xFSwbXj3kWR3F0PQGM7dcA8WaXU.png 772w\"}},H7_WF9cnz:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+5699+0+913),pixelHeight:372,pixelWidth:772,positionX:\"center\",positionY:\"center\",sizes:\"193px\",src:\"https://framerusercontent.com/images/xFSwbXj3kWR3F0PQGM7dcA8WaXU.png\",srcSet:\"https://framerusercontent.com/images/xFSwbXj3kWR3F0PQGM7dcA8WaXU.png?scale-down-to=512 512w,https://framerusercontent.com/images/xFSwbXj3kWR3F0PQGM7dcA8WaXU.png 772w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition12},__framer__animateOnce:true,__framer__enter:animation3,__framer__exit:animation13,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+5809+0+915),pixelHeight:372,pixelWidth:772,positionX:\"center\",positionY:\"center\",sizes:\"193px\",src:\"https://framerusercontent.com/images/xFSwbXj3kWR3F0PQGM7dcA8WaXU.png\",srcSet:\"https://framerusercontent.com/images/xFSwbXj3kWR3F0PQGM7dcA8WaXU.png?scale-down-to=512 512w,https://framerusercontent.com/images/xFSwbXj3kWR3F0PQGM7dcA8WaXU.png 772w\"},className:\"framer-tljdzq\",\"data-framer-name\":\"Citra pariwaraAsset 11@300x 1\"})}),isDisplayed8()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EszxHZDpT:{transformTemplate:transformTemplate1},H7_WF9cnz:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3BhY2UgR3JvdGVzay1yZWd1bGFy\",\"--framer-font-family\":'\"Space Grotesk\", \"Space Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"2021\"})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition12},__framer__animateOnce:true,__framer__enter:animation3,__framer__exit:animation13,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3BhY2UgR3JvdGVzay1yZWd1bGFy\",\"--framer-font-family\":'\"Space Grotesk\", \"Space Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"2021\"})}),className:\"framer-1wfdcvi hidden-1wyrj5b\",\"data-framer-name\":\"2021\",fonts:[\"GF;Space Grotesk-regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eqeunS4q0:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+4243+0+1196),pixelHeight:395,pixelWidth:724,sizes:\"154px\",src:\"https://framerusercontent.com/images/GQGUNrRmx4wmxWAVX9vWFAsRFrY.png\",srcSet:\"https://framerusercontent.com/images/GQGUNrRmx4wmxWAVX9vWFAsRFrY.png?scale-down-to=512 512w,https://framerusercontent.com/images/GQGUNrRmx4wmxWAVX9vWFAsRFrY.png 724w\"},transformTemplate:transformTemplate1},EszxHZDpT:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+5749+-1.5144+1867),pixelHeight:395,pixelWidth:724,sizes:\"207px\",src:\"https://framerusercontent.com/images/GQGUNrRmx4wmxWAVX9vWFAsRFrY.png\",srcSet:\"https://framerusercontent.com/images/GQGUNrRmx4wmxWAVX9vWFAsRFrY.png?scale-down-to=512 512w,https://framerusercontent.com/images/GQGUNrRmx4wmxWAVX9vWFAsRFrY.png 724w\"}},H7_WF9cnz:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+5699+0+1076),pixelHeight:395,pixelWidth:724,sizes:\"207px\",src:\"https://framerusercontent.com/images/GQGUNrRmx4wmxWAVX9vWFAsRFrY.png\",srcSet:\"https://framerusercontent.com/images/GQGUNrRmx4wmxWAVX9vWFAsRFrY.png?scale-down-to=512 512w,https://framerusercontent.com/images/GQGUNrRmx4wmxWAVX9vWFAsRFrY.png 724w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition12},__framer__animateOnce:true,__framer__enter:animation3,__framer__exit:animation13,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+5809+0+1078),pixelHeight:395,pixelWidth:724,sizes:\"207px\",src:\"https://framerusercontent.com/images/GQGUNrRmx4wmxWAVX9vWFAsRFrY.png\",srcSet:\"https://framerusercontent.com/images/GQGUNrRmx4wmxWAVX9vWFAsRFrY.png?scale-down-to=512 512w,https://framerusercontent.com/images/GQGUNrRmx4wmxWAVX9vWFAsRFrY.png 724w\"},className:\"framer-yklb6p\",\"data-framer-name\":\"MarcomAsset 12@300x 1\"})}),isDisplayed8()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EszxHZDpT:{transformTemplate:transformTemplate1},H7_WF9cnz:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3BhY2UgR3JvdGVzay1yZWd1bGFy\",\"--framer-font-family\":'\"Space Grotesk\", \"Space Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"2019\"})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition12},__framer__animateOnce:true,__framer__enter:animation3,__framer__exit:animation13,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3BhY2UgR3JvdGVzay1yZWd1bGFy\",\"--framer-font-family\":'\"Space Grotesk\", \"Space Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"2019\"})}),className:\"framer-877v3v hidden-1wyrj5b\",\"data-framer-name\":\"2019\",fonts:[\"GF;Space Grotesk-regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eqeunS4q0:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+4243+0+739),pixelHeight:498,pixelWidth:498,src:\"https://framerusercontent.com/images/s2AUnMr0ajgyWFlsEEIwFBnSQ8.png\"},transformTemplate:transformTemplate1},EszxHZDpT:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+5749+-1.5144+1179),pixelHeight:372,pixelWidth:772,positionX:\"center\",positionY:\"center\",sizes:\"193px\",src:\"https://framerusercontent.com/images/xFSwbXj3kWR3F0PQGM7dcA8WaXU.png\",srcSet:\"https://framerusercontent.com/images/xFSwbXj3kWR3F0PQGM7dcA8WaXU.png?scale-down-to=512 512w,https://framerusercontent.com/images/xFSwbXj3kWR3F0PQGM7dcA8WaXU.png 772w\"}},H7_WF9cnz:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+5699+0+725),pixelHeight:372,pixelWidth:772,positionX:\"center\",positionY:\"center\",sizes:\"193px\",src:\"https://framerusercontent.com/images/xFSwbXj3kWR3F0PQGM7dcA8WaXU.png\",srcSet:\"https://framerusercontent.com/images/xFSwbXj3kWR3F0PQGM7dcA8WaXU.png?scale-down-to=512 512w,https://framerusercontent.com/images/xFSwbXj3kWR3F0PQGM7dcA8WaXU.png 772w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition12},__framer__animateOnce:true,__framer__enter:animation3,__framer__exit:animation13,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+5809+0+724),pixelHeight:372,pixelWidth:772,positionX:\"center\",positionY:\"center\",sizes:\"193px\",src:\"https://framerusercontent.com/images/xFSwbXj3kWR3F0PQGM7dcA8WaXU.png\",srcSet:\"https://framerusercontent.com/images/xFSwbXj3kWR3F0PQGM7dcA8WaXU.png?scale-down-to=512 512w,https://framerusercontent.com/images/xFSwbXj3kWR3F0PQGM7dcA8WaXU.png 772w\"},className:\"framer-y4gjd9\",\"data-framer-name\":\"Citra pariwaraAsset 11@300x 1\"})}),isDisplayed8()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EszxHZDpT:{transformTemplate:transformTemplate1},H7_WF9cnz:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3BhY2UgR3JvdGVzay1yZWd1bGFy\",\"--framer-font-family\":'\"Space Grotesk\", \"Space Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"2022\"})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition12},__framer__animateOnce:true,__framer__enter:animation3,__framer__exit:animation13,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3BhY2UgR3JvdGVzay1yZWd1bGFy\",\"--framer-font-family\":'\"Space Grotesk\", \"Space Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"2022\"})}),className:\"framer-13xcta5 hidden-1wyrj5b\",\"data-framer-name\":\"2022\",fonts:[\"GF;Space Grotesk-regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eqeunS4q0:{effect:textEffect1,transformTemplate:undefined},EszxHZDpT:{transformTemplate:undefined},H7_WF9cnz:{transformTemplate:undefined}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3BhY2UgR3JvdGVzay1yZWd1bGFy\",\"--framer-font-family\":'\"Space Grotesk\", \"Space Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Awards & Achievements\"})}),className:\"framer-pux2fw\",\"data-framer-name\":\"Awards & Achievements\",effect:textEffect,fonts:[\"GF;Space Grotesk-regular\"],transformTemplate:transformTemplate1,verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eqeunS4q0:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7U3BhY2UgR3JvdGVzay1yZWd1bGFy\",\"--framer-font-family\":'\"Space Grotesk\", \"Space Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[\"No Mountain High Enough to Climb with \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7U3BhY2UgR3JvdGVzay03MDA=\",\"--framer-font-weight\":\"700\"},children:\"Your Trusty Partner\"}),\" by Your Side.\"]})}),effect:textEffect4,transformTemplate:undefined},EszxHZDpT:{transformTemplate:undefined},H7_WF9cnz:{transformTemplate:undefined}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7U3BhY2UgR3JvdGVzay1yZWd1bGFy\",\"--framer-font-family\":'\"Space Grotesk\", \"Space Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"64px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[\"No Mountain High Enough to Climb with \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7U3BhY2UgR3JvdGVzay03MDA=\",\"--framer-font-weight\":\"700\"},children:\"Your Trusty Partner\"}),\" by Your Side.\"]})}),className:\"framer-muysq0\",\"data-framer-name\":\"No Mountain High Enough to Climb with Your Trusty Partner by Your Side.\",effect:textEffect2,fonts:[\"GF;Space Grotesk-regular\",\"GF;Space Grotesk-700\"],transformTemplate:transformTemplate1,verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eqeunS4q0:{__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.2,skewX:0,skewY:0,x:0,y:228}},{ref:ref5,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-221}}],background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+4243+0+360),pixelHeight:2830,pixelWidth:1132,positionX:\"center\",positionY:\"center\",sizes:\"157px\",src:\"https://framerusercontent.com/images/1IX6LoFLMlh2VY4UFgHk7EgKRA.png\",srcSet:\"https://framerusercontent.com/images/1IX6LoFLMlh2VY4UFgHk7EgKRA.png?scale-down-to=2048 819w,https://framerusercontent.com/images/1IX6LoFLMlh2VY4UFgHk7EgKRA.png 1132w\"}},EszxHZDpT:{__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.2,skewX:0,skewY:0,x:0,y:290}},{ref:ref5,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-205}}],background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+5749+-1.5144+583),pixelHeight:2830,pixelWidth:1100,positionX:\"center\",positionY:\"center\",sizes:\"244px\",src:\"https://framerusercontent.com/images/ipox4gn1zR12JUSq7GgstxopC1M.png\",srcSet:\"https://framerusercontent.com/images/ipox4gn1zR12JUSq7GgstxopC1M.png?scale-down-to=2048 796w,https://framerusercontent.com/images/ipox4gn1zR12JUSq7GgstxopC1M.png 1100w\"}},H7_WF9cnz:{__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:147}},{ref:ref5,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.2,skewX:0,skewY:0,x:0,y:-71}}],background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+5699+0+733),pixelHeight:2830,pixelWidth:1100,positionX:\"center\",positionY:\"center\",sizes:\"227px\",src:\"https://framerusercontent.com/images/ipox4gn1zR12JUSq7GgstxopC1M.png\",srcSet:\"https://framerusercontent.com/images/ipox4gn1zR12JUSq7GgstxopC1M.png?scale-down-to=2048 796w,https://framerusercontent.com/images/ipox4gn1zR12JUSq7GgstxopC1M.png 1100w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:200}},{ref:ref5,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.24,skewX:0,skewY:0,x:0,y:-211}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:1,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+5809+0+682),pixelHeight:2830,pixelWidth:1100,positionX:\"center\",positionY:\"center\",sizes:\"293px\",src:\"https://framerusercontent.com/images/ipox4gn1zR12JUSq7GgstxopC1M.png\",srcSet:\"https://framerusercontent.com/images/ipox4gn1zR12JUSq7GgstxopC1M.png?scale-down-to=2048 796w,https://framerusercontent.com/images/ipox4gn1zR12JUSq7GgstxopC1M.png 1100w\"},className:\"framer-1n8mzp0\",\"data-framer-name\":\"AwardsAsset 10@300x 1\"})}),isDisplayed3()&&/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition12},__framer__animateOnce:true,__framer__enter:animation3,__framer__exit:animation13,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3BhY2UgR3JvdGVzay1yZWd1bGFy\",\"--framer-font-family\":'\"Space Grotesk\", \"Space Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"2021\"})}),className:\"framer-1wazm9p hidden-1sc40i8 hidden-1c4cr81 hidden-1jcley0\",\"data-framer-name\":\"2021\",fonts:[\"GF;Space Grotesk-regular\"],transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed3()&&/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition12},__framer__animateOnce:true,__framer__enter:animation3,__framer__exit:animation13,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3BhY2UgR3JvdGVzay1yZWd1bGFy\",\"--framer-font-family\":'\"Space Grotesk\", \"Space Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"2019\"})}),className:\"framer-1wgba8v hidden-1sc40i8 hidden-1c4cr81 hidden-1jcley0\",\"data-framer-name\":\"2019\",fonts:[\"GF;Space Grotesk-regular\"],transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed3()&&/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition12},__framer__animateOnce:true,__framer__enter:animation3,__framer__exit:animation13,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3BhY2UgR3JvdGVzay1yZWd1bGFy\",\"--framer-font-family\":'\"Space Grotesk\", \"Space Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"2022\"})}),className:\"framer-14e7n7 hidden-1sc40i8 hidden-1c4cr81 hidden-1jcley0\",\"data-framer-name\":\"2022\",fonts:[\"GF;Space Grotesk-regular\"],transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})]})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-s9dlnf\",\"data-framer-name\":\"Service CTA\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eqeunS4q0:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+5969+0),pixelHeight:1080,pixelWidth:1920,sizes:\"820px\",src:\"https://framerusercontent.com/images/EdLg5LsfvHHCixIouLm6aX7wh8.png\",srcSet:\"https://framerusercontent.com/images/EdLg5LsfvHHCixIouLm6aX7wh8.png?scale-down-to=512 512w,https://framerusercontent.com/images/EdLg5LsfvHHCixIouLm6aX7wh8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/EdLg5LsfvHHCixIouLm6aX7wh8.png 1920w\"}},EszxHZDpT:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+8273+0),pixelHeight:1080,pixelWidth:1920,sizes:`max(${componentViewport?.width||\"100vw\"}, 1px)`,src:\"https://framerusercontent.com/images/EdLg5LsfvHHCixIouLm6aX7wh8.png\",srcSet:\"https://framerusercontent.com/images/EdLg5LsfvHHCixIouLm6aX7wh8.png?scale-down-to=512 512w,https://framerusercontent.com/images/EdLg5LsfvHHCixIouLm6aX7wh8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/EdLg5LsfvHHCixIouLm6aX7wh8.png 1920w\"}},H7_WF9cnz:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+7393+0),pixelHeight:1080,pixelWidth:1920,sizes:`max(${componentViewport?.width||\"100vw\"}, 1px)`,src:\"https://framerusercontent.com/images/EdLg5LsfvHHCixIouLm6aX7wh8.png\",srcSet:\"https://framerusercontent.com/images/EdLg5LsfvHHCixIouLm6aX7wh8.png?scale-down-to=512 512w,https://framerusercontent.com/images/EdLg5LsfvHHCixIouLm6aX7wh8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/EdLg5LsfvHHCixIouLm6aX7wh8.png 1920w\"}}},children:/*#__PURE__*/_jsxs(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+5809+0),pixelHeight:1080,pixelWidth:1920,sizes:`max(${componentViewport?.width||\"100vw\"}, 1px)`,src:\"https://framerusercontent.com/images/EdLg5LsfvHHCixIouLm6aX7wh8.png\",srcSet:\"https://framerusercontent.com/images/EdLg5LsfvHHCixIouLm6aX7wh8.png?scale-down-to=512 512w,https://framerusercontent.com/images/EdLg5LsfvHHCixIouLm6aX7wh8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/EdLg5LsfvHHCixIouLm6aX7wh8.png 1920w\"},className:\"framer-16an66b\",\"data-framer-name\":\"Supergraphic Light Version - 11 1\",id:elementId5,ref:ref6,children:[isDisplayed8()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EszxHZDpT:{__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.8,skewX:0,skewY:0,x:-53,y:75}},{ref:ref6,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__targetOpacity:.4,background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+8273+0+178),pixelHeight:1504,pixelWidth:1078,sizes:\"144px\",src:\"https://framerusercontent.com/images/KgvJHCwKQrIvurvkP4Gzo8790.png\",srcSet:\"https://framerusercontent.com/images/KgvJHCwKQrIvurvkP4Gzo8790.png?scale-down-to=1024 733w,https://framerusercontent.com/images/KgvJHCwKQrIvurvkP4Gzo8790.png 1078w\"}},H7_WF9cnz:{__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:2.4,skewX:0,skewY:0,x:-261,y:154}},{ref:ref6,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+7393+0+226.8801),pixelHeight:1504,pixelWidth:1078,sizes:\"199.0137px\",src:\"https://framerusercontent.com/images/KgvJHCwKQrIvurvkP4Gzo8790.png\",srcSet:\"https://framerusercontent.com/images/KgvJHCwKQrIvurvkP4Gzo8790.png?scale-down-to=1024 733w,https://framerusercontent.com/images/KgvJHCwKQrIvurvkP4Gzo8790.png 1078w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__spring:{bounce:.2,damping:60,delay:0,duration:3,durationBasedSpring:true,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.4,skewX:0,skewY:0,x:0,y:225}},{ref:ref6,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:.5,__perspectiveFX:false,__targetOpacity:.6,background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+5809+0+396),pixelHeight:1504,pixelWidth:1078,sizes:\"346px\",src:\"https://framerusercontent.com/images/KgvJHCwKQrIvurvkP4Gzo8790.png\",srcSet:\"https://framerusercontent.com/images/KgvJHCwKQrIvurvkP4Gzo8790.png?scale-down-to=1024 733w,https://framerusercontent.com/images/KgvJHCwKQrIvurvkP4Gzo8790.png 1078w\"},className:\"framer-1uj72k8 hidden-1wyrj5b\",\"data-border\":true,\"data-framer-name\":\"image\"})}),isDisplayed8()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EszxHZDpT:{__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.8,skewX:0,skewY:0,x:0,y:51}},{ref:ref6,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+8273+0+0),pixelHeight:2680,pixelWidth:2156,positionX:\"center\",positionY:\"center\",sizes:\"216px\",src:\"https://framerusercontent.com/images/IaiV77kgIqHHm8vl9MddSQK2c.png\",srcSet:\"https://framerusercontent.com/images/IaiV77kgIqHHm8vl9MddSQK2c.png?scale-down-to=1024 823w,https://framerusercontent.com/images/IaiV77kgIqHHm8vl9MddSQK2c.png?scale-down-to=2048 1647w,https://framerusercontent.com/images/IaiV77kgIqHHm8vl9MddSQK2c.png 2156w\"}},H7_WF9cnz:{__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:2.4,skewX:0,skewY:0,x:-101,y:51}},{ref:ref6,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+7393+0+0),pixelHeight:2680,pixelWidth:2156,positionX:\"center\",positionY:\"center\",sizes:\"292.1195px\",src:\"https://framerusercontent.com/images/IaiV77kgIqHHm8vl9MddSQK2c.png\",srcSet:\"https://framerusercontent.com/images/IaiV77kgIqHHm8vl9MddSQK2c.png?scale-down-to=1024 823w,https://framerusercontent.com/images/IaiV77kgIqHHm8vl9MddSQK2c.png?scale-down-to=2048 1647w,https://framerusercontent.com/images/IaiV77kgIqHHm8vl9MddSQK2c.png 2156w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__spring:{bounce:.2,damping:60,delay:0,duration:3,durationBasedSpring:true,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.4,skewX:0,skewY:0,x:0,y:51}},{ref:ref6,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:.5,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+5809+0+0),pixelHeight:2680,pixelWidth:2156,positionX:\"center\",positionY:\"center\",sizes:\"507.3946px\",src:\"https://framerusercontent.com/images/IaiV77kgIqHHm8vl9MddSQK2c.png\",srcSet:\"https://framerusercontent.com/images/IaiV77kgIqHHm8vl9MddSQK2c.png?scale-down-to=1024 823w,https://framerusercontent.com/images/IaiV77kgIqHHm8vl9MddSQK2c.png?scale-down-to=2048 1647w,https://framerusercontent.com/images/IaiV77kgIqHHm8vl9MddSQK2c.png 2156w\"},className:\"framer-gdt0om hidden-1wyrj5b\",\"data-framer-name\":\"image 274\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1oryrvy\",\"data-framer-name\":\"Services page Text\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eqeunS4q0:{effect:textEffect1}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3BhY2UgR3JvdGVzay1yZWd1bGFy\",\"--framer-font-family\":'\"Space Grotesk\", \"Space Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"What We Do\"})}),className:\"framer-oelqcf\",\"data-framer-name\":\"What We Do\",effect:textEffect,fonts:[\"GF;Space Grotesk-regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eqeunS4q0:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7U3BhY2UgR3JvdGVzay1yZWd1bGFy\",\"--framer-font-family\":'\"Space Grotesk\", \"Space Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[\"We Transform Challenges Into\",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7U3BhY2UgR3JvdGVzay03MDA=\",\"--framer-font-weight\":\"700\"},children:\" Dynamic Visual Stories\"})]})}),effect:textEffect8}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7U3BhY2UgR3JvdGVzay1yZWd1bGFy\",\"--framer-font-family\":'\"Space Grotesk\", \"Space Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"64px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[\"We Transform Challenges Into\",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7U3BhY2UgR3JvdGVzay03MDA=\",\"--framer-font-weight\":\"700\"},children:\" Dynamic Visual Stories\"})]})}),className:\"framer-11bkw8n\",\"data-framer-name\":\"We Transform Challenges Into Dynamic Visual Stories\",effect:textEffect7,fonts:[\"GF;Space Grotesk-regular\",\"GF;Space Grotesk-700\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"CkxS4wP0I\"},motionChild:true,nodeId:\"x2eLqnLsk\",scopeId:\"L19Tvfnan\",children:/*#__PURE__*/_jsxs(MotionAWithFX,{__framer__animate:{transition:transition15},__framer__animateOnce:true,__framer__enter:animation3,__framer__exit:animation14,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1dhgja6 framer-v9haje\",\"data-framer-name\":\"Button\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-a1hzzw\",\"data-framer-name\":\"Rectangle 8\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3BhY2UgR3JvdGVzay03MDA=\",\"--framer-font-family\":'\"Space Grotesk\", \"Space Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"rgb(247, 159, 93)\"},children:\"Our Service\"})}),className:\"framer-jf6643\",\"data-framer-name\":\"Our Service\",fonts:[\"GF;Space Grotesk-700\"],transformTemplate:transformTemplate3,verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(SVG,{className:\"framer-jfuzpn\",\"data-framer-name\":\"Group 10\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:56,intrinsicWidth:56,svg:'<svg width=\"56\" height=\"56\" viewBox=\"0 0 56 56\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<circle cx=\"28\" cy=\"28\" r=\"27\" stroke=\"white\" stroke-width=\"2\"/>\\n<g clip-path=\"url(#clip0_107_526)\">\\n<path d=\"M38.591 27.6114L29.037 36.5559L27.5605 34.9376L34.2266 28.7049H16.7471V26.518H34.2266L27.5605 20.2634L29.037 18.667L38.591 27.6114Z\" fill=\"white\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_107_526\">\\n<rect width=\"21.844\" height=\"17.8889\" fill=\"white\" transform=\"translate(16.7471 18.667)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})]})})]})]})})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-893ly6\",\"data-framer-name\":\"Filler for Loading\",style:{rotate:180}}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1txfrnd\",\"data-framer-name\":\"Sliding Footer Helper\"}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1e3,width:componentViewport?.width||\"100vw\",y:0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-13udrvv-container\",layoutScroll:true,nodeId:\"Viuifm8JD\",scopeId:\"L19Tvfnan\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eqeunS4q0:{variant:\"C18AQvQeB\"},EszxHZDpT:{variant:\"qe1vzVlmp\"},H7_WF9cnz:{variant:\"pEt1xovUc\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"Viuifm8JD\",layoutId:\"Viuifm8JD\",style:{height:\"100%\",width:\"100%\"},variant:\"TfsCHqUMm\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-V0hsJ.framer-v9haje, .framer-V0hsJ .framer-v9haje { display: block; }\",\".framer-V0hsJ.framer-1sc40i8 { align-content: center; align-items: center; background-color: #000000; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1920px; }\",\".framer-V0hsJ .framer-14eieri-container { flex: none; height: auto; left: 0px; mix-blend-mode: difference; position: fixed; right: 0px; top: 0px; z-index: 9; }\",\".framer-V0hsJ .framer-1ks32ms { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 2; }\",\".framer-V0hsJ .framer-1vd4r03 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 100vh; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 0; }\",\".framer-V0hsJ .framer-1t2buzw-container { flex: none; height: 100vh; position: relative; width: 100%; }\",\".framer-V0hsJ .framer-1dzg5x6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: 100vh; justify-content: center; left: calc(50.00000000000002% - 100% / 2); overflow: hidden; padding: 200px 56px 100px 56px; position: absolute; top: calc(50.00000000000002% - 100vh / 2); width: 100%; z-index: 4; }\",\".framer-V0hsJ .framer-l7m2en { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; height: 1px; justify-content: space-between; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-V0hsJ .framer-1he6943, .framer-V0hsJ .framer-qrt9gf, .framer-V0hsJ .framer-1rnmxk2, .framer-V0hsJ .framer-p5oqvu { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-V0hsJ .framer-dbjyse, .framer-V0hsJ .framer-1moyu25, .framer-V0hsJ .framer-1k3ohzv, .framer-V0hsJ .framer-mpvecb, .framer-V0hsJ .framer-1b1xvrw, .framer-V0hsJ .framer-1eg2e6g, .framer-V0hsJ .framer-6a1pgy, .framer-V0hsJ .framer-lwjuml, .framer-V0hsJ .framer-11k8flg, .framer-V0hsJ .framer-fxppeb, .framer-V0hsJ .framer-1njmd0f, .framer-V0hsJ .framer-mwaah4 { flex: none; height: 35px; position: relative; width: 35px; }\",\".framer-V0hsJ .framer-agcut8, .framer-V0hsJ .framer-djhqyf, .framer-V0hsJ .framer-h9ze2t, .framer-V0hsJ .framer-za2dlf, .framer-V0hsJ .framer-156w8uw, .framer-V0hsJ .framer-1yy77c6 { flex: none; height: 36px; position: relative; width: 35px; }\",\".framer-V0hsJ .framer-1nkdau8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 96px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-V0hsJ .framer-16bv34z { align-content: flex-end; align-items: flex-end; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; height: 100%; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-V0hsJ .framer-1dbibto, .framer-V0hsJ .framer-nh5b4h, .framer-V0hsJ .framer-1um3pkl, .framer-V0hsJ .framer-ik1ers { 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; opacity: 0.6; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-V0hsJ .framer-ryfzws, .framer-V0hsJ .framer-1hzz761 { flex: none; height: 44px; position: relative; width: 44px; }\",\".framer-V0hsJ .framer-1wfw6qz, .framer-V0hsJ .framer-13e8yj7, .framer-V0hsJ .framer-1n6blap, .framer-V0hsJ .framer-ppel2t, .framer-V0hsJ .framer-tocefr, .framer-V0hsJ .framer-1r8l5tx, .framer-V0hsJ .framer-1baqe4r { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-V0hsJ .framer-1u2vzar, .framer-V0hsJ .framer-39ugbt, .framer-V0hsJ .framer-i4elbw { flex: none; height: 96px; position: relative; text-decoration: none; width: 35px; }\",\".framer-V0hsJ .framer-mwqqyv { align-content: center; align-items: center; bottom: 0px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: 100vh; justify-content: center; left: calc(50.00000000000002% - 100% / 2); overflow: hidden; padding: 160px 32px 100px 32px; position: absolute; width: 100%; z-index: 4; }\",\".framer-V0hsJ .framer-j3bhkz, .framer-V0hsJ .framer-123b4yx { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; opacity: 0.6; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-V0hsJ .framer-bpor7i, .framer-V0hsJ .framer-k0t8zq, .framer-V0hsJ .framer-kp01by, .framer-V0hsJ .framer-gwthhh { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 180px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-V0hsJ .framer-1nv8j3e, .framer-V0hsJ .framer-1kxujx9, .framer-V0hsJ .framer-8fjen4, .framer-V0hsJ .framer-s9dlnf { 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-V0hsJ .framer-1mygmvi, .framer-V0hsJ .framer-1m98eu8, .framer-V0hsJ .framer-1d0cn87 { align-content: flex-end; align-items: flex-end; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-V0hsJ .framer-wv3uq5 { align-content: center; align-items: center; bottom: 0px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: 100%; justify-content: center; left: calc(50.00000000000002% - 100% / 2); overflow: hidden; padding: 160px 56px 80px 56px; position: absolute; width: 100%; z-index: 9; }\",\".framer-V0hsJ .framer-frnouh { flex: none; height: 47px; position: relative; width: 47px; }\",\".framer-V0hsJ .framer-150b86k { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: 100vh; justify-content: center; left: calc(50.00000000000002% - 100% / 2); overflow: hidden; padding: 100px 24px 100px 24px; position: absolute; top: calc(49.96214988644968% - 100vh / 2); width: 100%; z-index: 4; }\",\".framer-V0hsJ .framer-zvmw0e { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; height: 1px; justify-content: space-between; opacity: 0.6; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-V0hsJ .framer-1rstats, .framer-V0hsJ .framer-uohjd6, .framer-V0hsJ .framer-fkjz3a, .framer-V0hsJ .framer-i0dgpq { flex: none; height: 28px; position: relative; width: 28px; }\",\".framer-V0hsJ .framer-4nnbn8, .framer-V0hsJ .framer-19s6hwj { flex: none; height: 32px; position: relative; width: 31px; }\",\".framer-V0hsJ .framer-1jgsna4 { flex: none; height: 39px; position: relative; width: 39px; }\",\".framer-V0hsJ .framer-17ehuyb { flex: none; height: 70px; position: relative; text-decoration: none; width: 26px; }\",\".framer-V0hsJ .framer-8g0tmd { background: radial-gradient(73% 60.30434782608695% at 50% 50%, rgba(0, 0, 0, 0) 27.747764243735922%, rgba(0, 0, 0, 0.3) 79%, rgba(0, 0, 0, 0.4) 100%); flex: none; height: 100vh; left: 0px; opacity: 0.8; position: absolute; right: 0px; top: calc(50.00000000000002% - 100vh / 2); z-index: 2; }\",\".framer-V0hsJ .framer-lm2dk1 { background: linear-gradient(270deg, rgba(0, 0, 0, 0.49) 0%, rgba(0, 0, 0, 0) 20%, rgba(0, 0, 0, 0) 80%, rgba(0, 0, 0, 0.4) 100%); flex: none; height: 100vh; left: 0px; position: absolute; right: 0px; top: 0px; z-index: 2; }\",\".framer-V0hsJ .framer-1x4u55y { background: linear-gradient(180.0000000040075deg, rgba(0, 0, 0, 0.6) -6%, rgba(0, 0, 0, 0) 25%, rgba(0, 0, 0, 0.21) 75%, rgba(0, 0, 0, 0.4) 119%); flex: none; height: 100vh; left: 0px; position: absolute; right: 0px; top: 0px; z-index: 2; }\",\".framer-V0hsJ .framer-l4nwlj { align-content: center; align-items: center; background-color: #000000; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 308px; height: min-content; justify-content: center; overflow: visible; padding: 296px 56px 300px 56px; position: relative; width: 100%; z-index: 0; }\",\".framer-V0hsJ .framer-1xgcejn { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 52px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-V0hsJ .framer-1wrvvsf, .framer-V0hsJ .framer-9ru4wb { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 1204px; word-break: break-word; word-wrap: break-word; }\",\".framer-V0hsJ .framer-95jmec { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 56px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 100px 0px; position: relative; width: 100%; }\",\".framer-V0hsJ .framer-1gdu7mc { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 1099px; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-V0hsJ .framer-zi1zpo-container { flex: none; height: auto; position: relative; width: auto; z-index: 1; }\",\".framer-V0hsJ .framer-13k0pjr { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 432px; height: 100%; justify-content: center; left: 0px; padding: 56px; position: absolute; top: 0px; width: 100%; }\",\".framer-V0hsJ .framer-15xtl7g { align-content: center; align-items: center; background-color: #f0f0eb; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 184px 0px 184px 0px; position: relative; width: 100%; z-index: 2; }\",\".framer-V0hsJ .framer-d6yogq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 196px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-V0hsJ .framer-1bq90hy { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 125px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 0px 0px 192px; position: relative; width: 100%; }\",\".framer-V0hsJ .framer-kk6e5x { align-content: flex-start; align-items: flex-start; align-self: stretch; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: auto; justify-content: center; overflow: hidden; padding: 20px 0px 0px 0px; position: relative; width: min-content; }\",\".framer-V0hsJ .framer-g6ogje { flex: none; height: 209px; overflow: hidden; position: relative; width: 837px; }\",\".framer-V0hsJ .framer-90zu0t { --border-bottom-width: 1px; --border-color: #080024; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; bottom: 0px; flex: none; height: 108px; left: 255px; position: absolute; width: 540px; }\",\".framer-V0hsJ .framer-1p6qxn1 { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 0px; position: absolute; right: 0px; top: 0px; white-space: pre-wrap; word-break: break-word; word-wrap: break-word; }\",\".framer-V0hsJ .framer-vzaxk4 { aspect-ratio: 1.7873873873873873 / 1; border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; flex: none; height: var(--framer-aspect-ratio-supported, 780px); overflow: visible; position: relative; width: 1393px; z-index: 1; }\",\".framer-V0hsJ .framer-d82d5c { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 693px; word-break: break-word; word-wrap: break-word; }\",\".framer-V0hsJ .framer-4ptd1v, .framer-V0hsJ .framer-18leg1b { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 168px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-V0hsJ .framer-tkhuih { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 136px; height: min-content; justify-content: center; min-height: 191px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-V0hsJ .framer-v6xqmc { flex: none; height: 191px; left: calc(15.833333333333355% - 268px / 2); position: absolute; top: 0px; width: 268px; z-index: 1; }\",\".framer-V0hsJ .framer-1mgxxgm { flex: none; height: 154px; left: calc(40.78125000000002% - 418px / 2); position: absolute; top: 37px; width: 418px; z-index: 1; }\",\".framer-V0hsJ .framer-1sktho9 { flex: none; height: 191px; left: calc(65.62500000000003% - 265px / 2); position: absolute; top: 0px; width: 265px; z-index: 1; }\",\".framer-V0hsJ .framer-jzavnr { flex: none; height: 175px; left: calc(85.62500000000001% - 231px / 2); position: absolute; top: 17px; width: 231px; z-index: 1; }\",\".framer-V0hsJ .framer-1lyiqhw { 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; text-decoration: none; width: 15%; }\",\".framer-V0hsJ .framer-1xijmwz, .framer-V0hsJ .framer-tushyj { align-content: center; align-items: center; background-color: #000000; border-bottom-left-radius: 41px; border-bottom-right-radius: 41px; border-top-left-radius: 41px; border-top-right-radius: 41px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 24px 36px 24px 36px; position: relative; width: min-content; }\",\".framer-V0hsJ .framer-obmis, .framer-V0hsJ .framer-1ovigls { flex: none; height: 75px; position: relative; width: 74px; }\",\".framer-V0hsJ .framer-hec7ae { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; min-height: 608px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-V0hsJ .framer-64v0dg { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; min-height: 200px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-V0hsJ .framer-d4jyvd { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; min-height: 200px; overflow: hidden; padding: 0px; position: relative; width: 812px; }\",\".framer-V0hsJ .framer-ijy1e7 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 144px; height: min-content; justify-content: center; left: 29%; overflow: hidden; padding: 0px; position: absolute; top: 69px; transform: translateX(-50%); width: 35%; z-index: 1; }\",\".framer-V0hsJ .framer-182sej7, .framer-V0hsJ .framer-18omkd7 { flex: none; height: 135px; position: relative; width: 72%; }\",\".framer-V0hsJ .framer-yw2i62 { aspect-ratio: 2.7058823529411766 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 62px); position: relative; width: 168px; z-index: 1; }\",\".framer-V0hsJ .framer-1wik6ie { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 176px; height: 75%; justify-content: center; left: calc(70.81280788177342% - 48.891625615763544% / 2); overflow: hidden; padding: 0px; position: absolute; top: 69px; width: 49%; z-index: 1; }\",\".framer-V0hsJ .framer-17squco { flex: none; height: 107px; left: calc(50.1259445843829% - 72.29219143576826% / 2); position: absolute; top: 29px; width: 72%; z-index: 1; }\",\".framer-V0hsJ .framer-f4zcxx { flex: none; height: 128px; left: calc(50.1259445843829% - 44.584382871536526% / 2); position: absolute; top: 286px; width: 45%; z-index: 1; }\",\".framer-V0hsJ .framer-1c2bjp6 { aspect-ratio: 1.390625 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 82px); position: relative; width: 114px; }\",\".framer-V0hsJ .framer-1lgj2a { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 75px; justify-content: center; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-V0hsJ .framer-108yg49 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; min-height: 1666px; padding: 0px; position: relative; width: 100%; }\",\".framer-V0hsJ .framer-1xqv0v5 { bottom: 0px; flex: none; left: 0px; overflow: visible; position: absolute; right: 0px; top: 0px; z-index: 1; }\",\".framer-V0hsJ .framer-11yo9z0 { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: absolute; right: 1125px; top: 1317px; white-space: pre; width: auto; }\",\".framer-V0hsJ .framer-y11dsw { 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: absolute; right: 223px; top: 75%; transform: translateY(-50%); width: min-content; }\",\".framer-V0hsJ .framer-1kuuwvs, .framer-V0hsJ .framer-d4zsrc, .framer-V0hsJ .framer-gt9wvw { flex: none; height: 3px; position: relative; width: 1025px; }\",\".framer-V0hsJ .framer-16hp5tt { 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: absolute; right: 223px; top: 63%; transform: translateY(-50%); width: min-content; }\",\".framer-V0hsJ .framer-bnf4i8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 672px; overflow: hidden; padding: 0px; position: absolute; top: 52%; transform: translateY(-50%); width: min-content; }\",\".framer-V0hsJ .framer-184fvkg { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: absolute; right: 204px; top: 723px; white-space: pre-wrap; width: 402px; word-break: break-word; word-wrap: break-word; }\",\".framer-V0hsJ .framer-1urcpfg { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: absolute; right: 310px; top: 1138px; white-space: pre; width: auto; }\",\".framer-V0hsJ .framer-6xijvu { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: absolute; right: 331px; top: 1278px; white-space: pre; width: auto; }\",\".framer-V0hsJ .framer-11iyju4 { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: absolute; right: 204px; top: 896px; white-space: pre-wrap; width: 402px; word-break: break-word; word-wrap: break-word; }\",\".framer-V0hsJ .framer-tljdzq { aspect-ratio: 2.075268817204301 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 93px); position: absolute; right: 1055px; top: 915px; width: 193px; }\",\".framer-V0hsJ .framer-1wfdcvi { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: absolute; right: 796px; top: 931px; white-space: pre; width: auto; }\",\".framer-V0hsJ .framer-yklb6p { aspect-ratio: 1.83291139855849 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 113px); position: absolute; right: 1045px; top: 1078px; width: 207px; }\",\".framer-V0hsJ .framer-877v3v { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: absolute; right: 793px; top: 1124px; white-space: pre; width: auto; }\",\".framer-V0hsJ .framer-y4gjd9 { aspect-ratio: 2.075268817204301 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 93px); position: absolute; right: 1055px; top: 724px; width: 193px; }\",\".framer-V0hsJ .framer-13xcta5 { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: absolute; right: 787px; top: 745px; white-space: pre; width: auto; }\",\".framer-V0hsJ .framer-pux2fw { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 7%; position: absolute; top: 767px; transform: translateX(-50%); white-space: pre-wrap; width: 163px; word-break: break-word; word-wrap: break-word; }\",\".framer-V0hsJ .framer-muysq0 { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 48%; position: absolute; top: 228px; transform: translateX(-50%); white-space: pre-wrap; width: 1200px; word-break: break-word; word-wrap: break-word; }\",\".framer-V0hsJ .framer-1n8mzp0 { flex: none; height: 716px; left: calc(21.87500000000002% - 293px / 2); position: absolute; top: 682px; width: 293px; }\",\".framer-V0hsJ .framer-1wazm9p { --framer-paragraph-spacing: 0px; flex: none; height: 24px; left: 74%; position: absolute; top: 997px; transform: translateX(-50%); white-space: pre; width: auto; }\",\".framer-V0hsJ .framer-1wgba8v { --framer-paragraph-spacing: 0px; flex: none; height: 24px; left: 74%; position: absolute; top: 1238px; transform: translateX(-50%); white-space: pre; width: auto; }\",\".framer-V0hsJ .framer-14e7n7 { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 75%; position: absolute; top: 776px; transform: translateX(-50%); white-space: pre; width: auto; }\",\".framer-V0hsJ .framer-16an66b { aspect-ratio: 2.038135593220339 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 942px); position: relative; width: 1px; }\",\".framer-V0hsJ .framer-1uj72k8 { --border-bottom-width: 0.75px; --border-color: #ffffff; --border-left-width: 0.75px; --border-right-width: 0.75px; --border-style: solid; --border-top-width: 0.75px; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; flex: none; height: 347px; opacity: 0.6; position: absolute; right: 244px; top: 396px; width: 346px; }\",\".framer-V0hsJ .framer-gdt0om { aspect-ratio: 0.8044776119402985 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 630px); position: absolute; right: -2px; top: 0px; width: 507px; }\",\".framer-V0hsJ .framer-1oryrvy { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 68px; height: min-content; justify-content: center; left: 57px; overflow: hidden; padding: 0px; position: absolute; top: 286px; width: min-content; }\",\".framer-V0hsJ .framer-oelqcf { --framer-paragraph-spacing: 0px; align-self: stretch; flex: none; height: auto; position: relative; white-space: pre-wrap; width: auto; word-break: break-word; word-wrap: break-word; }\",\".framer-V0hsJ .framer-11bkw8n { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 869px; word-break: break-word; word-wrap: break-word; }\",\".framer-V0hsJ .framer-1dhgja6 { 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; text-decoration: none; width: min-content; }\",\".framer-V0hsJ .framer-a1hzzw { background-color: #ffffff; border-bottom-left-radius: 41px; border-bottom-right-radius: 41px; border-top-left-radius: 41px; border-top-right-radius: 41px; flex: none; height: 56px; position: relative; width: 182px; }\",\".framer-V0hsJ .framer-jf6643 { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 50%; position: absolute; top: 50%; transform: translate(-50%, -50%); white-space: pre; width: auto; }\",\".framer-V0hsJ .framer-jfuzpn { flex: none; height: 56px; position: relative; width: 56px; }\",\".framer-V0hsJ .framer-893ly6 { background-color: #000000; flex: none; height: 100vh; left: 0px; overflow: hidden; position: absolute; right: 0px; top: 0px; z-index: 0; }\",\".framer-V0hsJ .framer-1txfrnd { flex: none; height: 100vh; pointer-events: none; position: relative; width: 100%; z-index: -1; }\",\".framer-V0hsJ .framer-13udrvv-container { bottom: 0px; flex: none; height: 100vh; left: 0px; position: fixed; right: 0px; z-index: 1; }\",'.framer-V0hsJ[data-border=\"true\"]::after, .framer-V0hsJ [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@media (min-width: 810px) and (max-width: 1199px) { .framer-V0hsJ.framer-1sc40i8 { width: 810px; } .framer-V0hsJ .framer-14eieri-container { mix-blend-mode: unset; order: 1; top: 0px; z-index: 6; } .framer-V0hsJ .framer-1ks32ms { order: 2; } .framer-V0hsJ .framer-lm2dk1 { background: linear-gradient(0deg, rgba(0, 0, 0, 0.49) 0%, rgba(0, 0, 0, 0) 25%, rgba(0, 0, 0, 0) 75%, rgba(0, 0, 0, 0.4) 100%); } .framer-V0hsJ .framer-l4nwlj { gap: 228px; padding: 296px 44px 200px 44px; } .framer-V0hsJ .framer-1wrvvsf, .framer-V0hsJ .framer-9ru4wb, .framer-V0hsJ .framer-zi1zpo-container, .framer-V0hsJ .framer-1kuuwvs, .framer-V0hsJ .framer-d4zsrc, .framer-V0hsJ .framer-gt9wvw { width: 100%; } .framer-V0hsJ .framer-1gdu7mc { width: 722px; } .framer-V0hsJ .framer-13k0pjr { gap: 200px; } .framer-V0hsJ .framer-15xtl7g { gap: 160px; } .framer-V0hsJ .framer-1bq90hy { flex-direction: column; gap: 56px; padding: 0px 0px 0px 44px; } .framer-V0hsJ .framer-kk6e5x { align-self: unset; height: min-content; padding: 0px; } .framer-V0hsJ .framer-g6ogje { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; padding: 0px; width: min-content; } .framer-V0hsJ .framer-90zu0t { height: 119px; left: 0px; width: 529px; z-index: 1; } .framer-V0hsJ .framer-1p6qxn1 { height: 414px; left: unset; position: relative; right: unset; top: unset; width: 571px; } .framer-V0hsJ .framer-vzaxk4 { height: var(--framer-aspect-ratio-supported, 423px); width: 756px; } .framer-V0hsJ .framer-d82d5c { height: 216px; width: 694px; } .framer-V0hsJ .framer-hec7ae { min-height: unset; } .framer-V0hsJ .framer-64v0dg { min-height: unset; width: 100%; } .framer-V0hsJ .framer-d4jyvd { min-height: 550px; width: 100%; } .framer-V0hsJ .framer-ijy1e7 { left: 28%; order: 0; top: 68px; width: min-content; } .framer-V0hsJ .framer-182sej7 { aspect-ratio: 1.4140625 / 1; height: var(--framer-aspect-ratio-supported, 128px); width: 181px; } .framer-V0hsJ .framer-18omkd7 { aspect-ratio: 1.390625 / 1; height: var(--framer-aspect-ratio-supported, 128px); width: 178px; } .framer-V0hsJ .framer-1wik6ie { height: min-content; left: 68%; min-height: 414px; order: 1; top: 68px; transform: translateX(-50%); width: 285px; } .framer-V0hsJ .framer-17squco { aspect-ratio: 2.701923076923077 / 1; height: var(--framer-aspect-ratio-supported, 104px); left: 51%; order: 0; top: 20px; transform: translateX(-50%); width: 281px; } .framer-V0hsJ .framer-f4zcxx { aspect-ratio: 1.3247863247863247 / 1; height: var(--framer-aspect-ratio-supported, 117px); left: 50%; order: 1; top: 280px; transform: translateX(-50%); width: 155px; } .framer-V0hsJ .framer-108yg49 { height: 2524px; min-height: unset; z-index: 0; } .framer-V0hsJ .framer-1xqv0v5 { bottom: unset; flex: 1 0 0px; height: 100%; left: unset; position: relative; right: unset; top: unset; width: 1px; } .framer-V0hsJ .framer-11yo9z0 { left: 50%; right: unset; top: 2179px; transform: translateX(-50%); } .framer-V0hsJ .framer-y11dsw { left: 211px; right: 212px; top: 2104px; transform: unset; width: unset; } .framer-V0hsJ .framer-16hp5tt { left: 211px; right: 212px; top: 1812px; transform: unset; width: unset; } .framer-V0hsJ .framer-bnf4i8 { left: 211px; right: 212px; top: 1448px; transform: unset; width: unset; } .framer-V0hsJ .framer-184fvkg { left: 50%; right: unset; top: 1292px; transform: translateX(-50%); width: 386px; } .framer-V0hsJ .framer-1urcpfg { left: 50%; right: unset; top: 2008px; transform: translateX(-50%); } .framer-V0hsJ .framer-6xijvu { left: 50%; right: unset; top: 2231px; transform: translateX(-50%); white-space: pre-wrap; width: 292px; word-break: break-word; word-wrap: break-word; } .framer-V0hsJ .framer-11iyju4 { left: 50%; right: unset; top: 1632px; transform: translateX(-50%); width: 386px; } .framer-V0hsJ .framer-tljdzq { aspect-ratio: unset; height: 93px; left: calc(38.02469135802472% - 193px / 2); right: unset; top: 1511px; } .framer-V0hsJ .framer-1wfdcvi { left: 69%; right: unset; top: 1548px; transform: translateX(-50%); } .framer-V0hsJ .framer-yklb6p { aspect-ratio: unset; height: 113px; left: calc(38.888888888888914% - 207px / 2); right: unset; top: 1867px; } .framer-V0hsJ .framer-877v3v { left: 69%; right: unset; top: 1920px; transform: translateX(-50%); } .framer-V0hsJ .framer-y4gjd9 { aspect-ratio: unset; height: 93px; left: calc(38.02469135802472% - 193px / 2); right: unset; top: 1179px; } .framer-V0hsJ .framer-13xcta5 { left: 68%; right: unset; top: 1216px; transform: translateX(-50%); } .framer-V0hsJ .framer-pux2fw { left: 53px; top: 124px; transform: unset; width: 271px; } .framer-V0hsJ .framer-muysq0 { left: 48px; transform: unset; width: 686px; } .framer-V0hsJ .framer-1n8mzp0 { height: 596px; left: calc(50.00000000000002% - 244px / 2); top: 583px; width: 244px; } .framer-V0hsJ .framer-16an66b { aspect-ratio: unset; height: 879px; } .framer-V0hsJ .framer-1uj72k8 { height: 144px; opacity: 0.4; right: 108px; top: 178px; width: 144px; } .framer-V0hsJ .framer-gdt0om { height: var(--framer-aspect-ratio-supported, 269px); right: 0px; width: 216px; } .framer-V0hsJ .framer-1oryrvy { left: 48px; top: 178px; } .framer-V0hsJ .framer-11bkw8n { width: 484px; } .framer-V0hsJ .framer-893ly6 { order: 3; } .framer-V0hsJ .framer-1txfrnd { order: 5; } .framer-V0hsJ .framer-13udrvv-container { order: 6; }}\",\"@media (max-width: 809px) { .framer-V0hsJ.framer-1sc40i8 { width: 390px; } .framer-V0hsJ .framer-14eieri-container { mix-blend-mode: unset; z-index: 3; } .framer-V0hsJ .framer-lm2dk1 { background: linear-gradient(0deg, rgba(0, 0, 0, 0.49) 0%, rgba(0, 0, 0, 0) 25%, rgba(0, 0, 0, 0) 75%, rgba(0, 0, 0, 0.4) 100%); opacity: 0.42; } .framer-V0hsJ .framer-l4nwlj { gap: 120px; padding: 120px 24px 164px 24px; } .framer-V0hsJ .framer-1xgcejn { gap: 36px; height: 328px; } .framer-V0hsJ .framer-1wrvvsf, .framer-V0hsJ .framer-1gdu7mc, .framer-V0hsJ .framer-zi1zpo-container { width: 100%; } .framer-V0hsJ .framer-9ru4wb { width: 342px; } .framer-V0hsJ .framer-13k0pjr { gap: 431px; padding: 24px; right: 0px; top: 1px; width: unset; } .framer-V0hsJ .framer-15xtl7g { gap: 120px; padding: 184px 0px 160px 0px; } .framer-V0hsJ .framer-d6yogq { gap: 88px; order: 1; padding: 0px 24px 0px 24px; } .framer-V0hsJ .framer-1bq90hy { flex-direction: column; gap: 36px; padding: 0px; } .framer-V0hsJ .framer-kk6e5x { align-self: unset; height: min-content; padding: 0px; } .framer-V0hsJ .framer-g6ogje { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; padding: 0px; width: min-content; } .framer-V0hsJ .framer-90zu0t { bottom: unset; height: 42px; left: 0px; top: calc(49.35064935064937% - 42px / 2); width: 207px; z-index: 1; } .framer-V0hsJ .framer-1p6qxn1 { left: unset; position: relative; right: unset; top: unset; width: 324px; } .framer-V0hsJ .framer-vzaxk4 { height: var(--framer-aspect-ratio-supported, 195px); width: 349px; } .framer-V0hsJ .framer-d82d5c { width: 348px; } .framer-V0hsJ .framer-hec7ae { gap: 54px; min-height: unset; order: 2; } .framer-V0hsJ .framer-64v0dg { gap: 56px; min-height: unset; width: 100%; } .framer-V0hsJ .framer-d4jyvd { flex-direction: column; gap: 40px; min-height: unset; width: 390px; } .framer-V0hsJ .framer-ijy1e7 { align-content: flex-end; align-items: flex-end; flex-direction: row; gap: 48px; left: unset; order: 0; position: relative; top: unset; transform: unset; width: min-content; } .framer-V0hsJ .framer-182sej7 { aspect-ratio: 1.4140625 / 1; height: var(--framer-aspect-ratio-supported, 82px); order: 0; width: 116px; } .framer-V0hsJ .framer-yw2i62 { order: 1; } .framer-V0hsJ .framer-1wik6ie { align-content: flex-end; align-items: flex-end; flex-direction: row; gap: 80px; height: min-content; left: unset; order: 1; padding: 0px 37px 0px 0px; position: relative; top: unset; width: min-content; } .framer-V0hsJ .framer-f4zcxx { aspect-ratio: 1.3247863247863247 / 1; height: var(--framer-aspect-ratio-supported, 74px); left: unset; order: 2; position: relative; top: unset; width: 98px; } .framer-V0hsJ .framer-1c2bjp6, .framer-V0hsJ .framer-oelqcf { order: 0; } .framer-V0hsJ .framer-108yg49 { height: 1726px; min-height: unset; } .framer-V0hsJ .framer-1xqv0v5 { right: -1px; } .framer-V0hsJ .framer-11yo9z0 { left: 49%; right: unset; top: 1404px; transform: translateX(-50%); } .framer-V0hsJ .framer-y11dsw { left: 50%; right: unset; top: 1379px; transform: translateX(-50%); } .framer-V0hsJ .framer-1kuuwvs { height: 5px; width: 244px; } .framer-V0hsJ .framer-16hp5tt { left: 50%; right: unset; top: 1173px; transform: translateX(-50%); } .framer-V0hsJ .framer-d4zsrc { height: 5px; width: 243px; } .framer-V0hsJ .framer-bnf4i8 { left: 50%; top: 937px; transform: translateX(-50%); width: 243px; } .framer-V0hsJ .framer-gt9wvw { flex: 1 0 0px; height: 3px; width: 1px; } .framer-V0hsJ .framer-184fvkg { left: 50%; right: unset; top: 834px; transform: translateX(-50%); width: 230px; } .framer-V0hsJ .framer-1urcpfg { height: 14px; left: 50%; right: unset; top: 1307px; transform: translateX(-50%); } .framer-V0hsJ .framer-6xijvu { left: 50%; right: unset; top: 1448px; transform: translateX(-50%); white-space: pre-wrap; width: 164px; word-break: break-word; word-wrap: break-word; } .framer-V0hsJ .framer-11iyju4 { left: 50%; right: unset; top: 1057px; transform: translateX(-50%); width: 230px; } .framer-V0hsJ .framer-tljdzq { height: var(--framer-aspect-ratio-supported, 74px); left: 38%; right: unset; top: 960px; transform: translateX(-50%); width: 154px; } .framer-V0hsJ .framer-yklb6p { height: var(--framer-aspect-ratio-supported, 84px); left: 38%; right: unset; top: 1196px; transform: translateX(-50%); width: 154px; } .framer-V0hsJ .framer-y4gjd9 { height: var(--framer-aspect-ratio-supported, 73px); left: 39%; right: unset; top: 739px; transform: translateX(-50%); width: 151px; } .framer-V0hsJ .framer-pux2fw { left: 26px; top: 82px; transform: unset; width: 231px; } .framer-V0hsJ .framer-muysq0 { left: 26px; top: 142px; transform: unset; width: 339px; } .framer-V0hsJ .framer-1n8mzp0 { height: 385px; left: calc(49.87212276214836% - 157px / 2); top: 360px; width: 157px; } .framer-V0hsJ .framer-16an66b { aspect-ratio: unset; flex: none; height: 551px; width: 820px; } .framer-V0hsJ .framer-1oryrvy { left: 239px; top: 50%; transform: translateY(-50%); } .framer-V0hsJ .framer-11bkw8n { order: 1; width: 240px; } .framer-V0hsJ .framer-1dhgja6 { order: 2; }}\",\"@media (min-width: 1200px) and (max-width: 1919px) { .framer-V0hsJ.framer-1sc40i8 { width: 1200px; } .framer-V0hsJ .framer-14eieri-container { height: 67px; order: 1; } .framer-V0hsJ .framer-1ks32ms, .framer-V0hsJ .framer-13e8yj7 { order: 2; } .framer-V0hsJ .framer-1vd4r03, .framer-V0hsJ .framer-1hzz761 { order: 0; } .framer-V0hsJ .framer-8g0tmd { background: radial-gradient(87% 56.99999999999999% at 50% 50%, rgba(0, 0, 0, 0) 27.747764243735922%, rgba(0, 0, 0, 0.3) 79%, rgba(0, 0, 0, 0.4) 100%); top: calc(49.95633187772928% - 100vh / 2); } .framer-V0hsJ .framer-1x4u55y { background: linear-gradient(180.0000000040075deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 25%, rgba(0, 0, 0, 0.21) 75%, rgba(0, 0, 0, 0.4) 107%); } .framer-V0hsJ .framer-l4nwlj { gap: 200px; order: 1; padding: 180px 100px 260px 100px; } .framer-V0hsJ .framer-1xgcejn { justify-content: center; padding: 56px; } .framer-V0hsJ .framer-1wrvvsf, .framer-V0hsJ .framer-9ru4wb { width: 100%; } .framer-V0hsJ .framer-1gdu7mc { width: 823px; } .framer-V0hsJ .framer-13k0pjr { gap: 232px; padding: 0px 200px 0px 200px; } .framer-V0hsJ .framer-15xtl7g { height: 2446px; order: 2; } .framer-V0hsJ .framer-1bq90hy { gap: 64px; padding: 0px 0px 0px 48px; } .framer-V0hsJ .framer-90zu0t { height: 116px; left: 251px; width: 535px; } .framer-V0hsJ .framer-1p6qxn1 { left: 1px; right: unset; width: 837px; } .framer-V0hsJ .framer-vzaxk4 { height: var(--framer-aspect-ratio-supported, 603px); width: 1077px; } .framer-V0hsJ .framer-4ptd1v { gap: 120px; } .framer-V0hsJ .framer-tkhuih { gap: 100px; } .framer-V0hsJ .framer-v6xqmc { height: 128px; left: calc(13.166666666666687% - 181px / 2); top: calc(50.26178010471206% - 128px / 2); width: 181px; } .framer-V0hsJ .framer-1mgxxgm { height: 104px; left: calc(40.00000000000002% - 281px / 2); top: 53px; width: 281px; } .framer-V0hsJ .framer-1sktho9 { height: 128px; left: calc(66.75000000000001% - 178px / 2); top: calc(50.26178010471206% - 128px / 2); width: 178px; } .framer-V0hsJ .framer-jzavnr { height: 117px; left: calc(87.75000000000001% - 155px / 2); top: 43px; width: 155px; } .framer-V0hsJ .framer-1lyiqhw { width: 24%; } .framer-V0hsJ .framer-108yg49 { height: 1694px; min-height: unset; order: 3; } .framer-V0hsJ .framer-11yo9z0 { right: 722px; top: 1314px; } .framer-V0hsJ .framer-y11dsw { right: 113px; top: 1239px; transform: unset; } .framer-V0hsJ .framer-1kuuwvs, .framer-V0hsJ .framer-d4zsrc, .framer-V0hsJ .framer-gt9wvw { width: 736px; } .framer-V0hsJ .framer-16hp5tt { right: 113px; top: 1056px; transform: unset; } .framer-V0hsJ .framer-bnf4i8 { left: unset; right: 113px; top: 51%; } .framer-V0hsJ .framer-184fvkg { right: 18px; top: 733px; } .framer-V0hsJ .framer-1urcpfg { right: 183px; top: 1145px; } .framer-V0hsJ .framer-6xijvu { right: 200px; top: 1287px; } .framer-V0hsJ .framer-11iyju4 { right: 18px; top: 910px; } .framer-V0hsJ .framer-tljdzq { right: 652px; top: 913px; } .framer-V0hsJ .framer-1wfdcvi { right: 509px; top: 936px; } .framer-V0hsJ .framer-yklb6p { right: 642px; top: 1076px; } .framer-V0hsJ .framer-877v3v { right: 508px; top: 1133px; } .framer-V0hsJ .framer-y4gjd9 { right: 652px; top: 725px; } .framer-V0hsJ .framer-13xcta5 { right: 502px; top: 750px; } .framer-V0hsJ .framer-pux2fw { left: 184px; top: 148px; transform: unset; width: 268px; } .framer-V0hsJ .framer-muysq0 { left: 184px; transform: unset; width: 858px; } .framer-V0hsJ .framer-1n8mzp0 { height: 556px; left: calc(17.000000000000025% - 227px / 2); top: 733px; width: 227px; } .framer-V0hsJ .framer-s9dlnf { order: 4; } .framer-V0hsJ .framer-16an66b { aspect-ratio: unset; height: 843px; } .framer-V0hsJ .framer-1uj72k8 { height: 200px; right: 142px; top: 227px; width: 199px; } .framer-V0hsJ .framer-gdt0om { height: var(--framer-aspect-ratio-supported, 363px); right: 0px; width: 292px; } .framer-V0hsJ .framer-1oryrvy { left: 56px; top: 281px; } .framer-V0hsJ .framer-11bkw8n { width: 904px; } .framer-V0hsJ .framer-893ly6 { order: 3; } .framer-V0hsJ .framer-1txfrnd { order: 5; } .framer-V0hsJ .framer-13udrvv-container { order: 6; }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 9258\n * @framerIntrinsicWidth 1920\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"EszxHZDpT\":{\"layout\":[\"fixed\",\"auto\"]},\"eqeunS4q0\":{\"layout\":[\"fixed\",\"auto\"]},\"H7_WF9cnz\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"HAOVJ6H5g\":{\"pattern\":\":HAOVJ6H5g\",\"name\":\"highlight\"},\"GYlqRdtuR\":{\"pattern\":\":GYlqRdtuR\",\"name\":\"home-intro\"},\"V_3hOwjj6\":{\"pattern\":\":V_3hOwjj6\",\"name\":\"network-intro\"},\"L39_K0Eky\":{\"pattern\":\":L39_K0Eky\",\"name\":\"houses\"},\"X2eHpbP5_\":{\"pattern\":\":X2eHpbP5_\",\"name\":\"awards\"},\"HXWy91hXg\":{\"pattern\":\":HXWy91hXg\",\"name\":\"service\"}}\n * @framerResponsiveScreen\n */const FramerL19Tvfnan=withCSS(Component,css,\"framer-V0hsJ\");export default FramerL19Tvfnan;FramerL19Tvfnan.displayName=\"Home\";FramerL19Tvfnan.defaultProps={height:9258,width:1920};addFonts(FramerL19Tvfnan,[{explicitInter:true,fonts:[{family:\"Space Grotesk\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/spacegrotesk/v21/V8mQoQDjQSkFtoMM3T6r8E7mF71Q-gOoraIAEj7oUUsmNsFjTDJK.woff2\",weight:\"400\"},{family:\"Space Grotesk\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/spacegrotesk/v21/V8mQoQDjQSkFtoMM3T6r8E7mF71Q-gOoraIAEj4PVksmNsFjTDJK.woff2\",weight:\"700\"}]},...NavigationFonts,...VideoFonts,...CarouselFonts,...FooterFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerL19Tvfnan\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"EszxHZDpT\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"eqeunS4q0\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"H7_WF9cnz\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerColorSyntax\":\"true\",\"framerIntrinsicHeight\":\"9258\",\"framerIntrinsicWidth\":\"1920\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerAutoSizeImages\":\"true\",\"framerResponsiveScreen\":\"\",\"framerScrollSections\":\"{\\\"HAOVJ6H5g\\\":{\\\"pattern\\\":\\\":HAOVJ6H5g\\\",\\\"name\\\":\\\"highlight\\\"},\\\"GYlqRdtuR\\\":{\\\"pattern\\\":\\\":GYlqRdtuR\\\",\\\"name\\\":\\\"home-intro\\\"},\\\"V_3hOwjj6\\\":{\\\"pattern\\\":\\\":V_3hOwjj6\\\",\\\"name\\\":\\\"network-intro\\\"},\\\"L39_K0Eky\\\":{\\\"pattern\\\":\\\":L39_K0Eky\\\",\\\"name\\\":\\\"houses\\\"},\\\"X2eHpbP5_\\\":{\\\"pattern\\\":\\\":X2eHpbP5_\\\",\\\"name\\\":\\\"awards\\\"},\\\"HXWy91hXg\\\":{\\\"pattern\\\":\\\":HXWy91hXg\\\",\\\"name\\\":\\\"service\\\"}}\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerContractVersion\":\"1\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["noopReturn", "e", "velocityPerSecond", "calcBezier", "n", "e", "i", "binarySubdivide", "o", "r", "c", "u", "a", "s", "cubicBezier", "noopReturn", "getTForX", "t", "o", "cubicBezier", "__rest", "e", "t", "r", "n", "o", "n", "e", "t", "r", "s", "calcGeneratorVelocity", "n", "r", "velocityPerSecond", "calcDampingRatio", "e", "t", "hasReachedTarget", "spring", "o", "i", "h", "u", "d", "f", "l", "g", "glide", "a", "c", "isOutOfBounds", "nearestBoundary", "m", "calcDelta", "calcLatest", "applyFriction", "p", "M", "checkCatchBoundary", "pregenerateKeyframes", "W", "L", "D", "e", "M", "noopReturn", "k", "asTransformCssVar", "B", "L", "W", "t", "j", "B", "testAnimation", "e", "C", "$", "R", "resolveElements", "e", "t", "createGeneratorEasing", "e", "t", "o", "getGenerator", "s", "r", "a", "getKeyframes", "pregenerateKeyframes", "n", "i", "c", "isNumberOrNull", "l", "f", "u", "d", "calcGeneratorVelocity", "g", "m", "N", "spring", "F", "glide", "U", "inView$1", "resolveElements", "onIntersectionChange", "q", "K", "getElementSize", "notifyTarget", "notifyAll", "createResizeObserver", "resizeElement", "G", "_", "createWindowResizeHandler", "window", "resizeWindow", "resize", "dispatchPointerEvent", "e", "t", "dispatchViewEvent", "se", "o", "i", "s", "__rest", "inView$1", "mouseEvent", "re", "ae", "onPointerUp", "window", "onPointerDown", "n", "ce", "le", "isBrowser", "usePageVisibility", "isVisible", "setIsVisible", "ye", "ue", "onVisibilityChange", "awaitRefCallback", "element", "controller", "refCallbackResolve", "current", "node", "resolve", "reject", "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", "amountChildren", "j", "hasChildren", "isHorizontal", "isInverted", "u", "placeholderStyles", "p", "emojiStyles", "titleStyles", "subtitleStyles", "parentRef", "pe", "childrenRef", "se", "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", "scheduleMeasure", "frame", "fe", "initialResize", "ue", "resize", "contentSize", "Z", "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", "index", "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", "X", "Y", "slideKey", "width", "height", "numChildren", "effects", "isLast", "fallbackRef", "childOffset", "scrollRange", "val", "rotateY", "rotateX", "opacity", "scale", "originXorY", "latest", "newValue", "visibility", "mix", "key", "LayoutGroup", "q", "selectedOpacity", "total", "buttonStyle", "isSelected", "inlinePadding", "top", "bottom", "right", "left", "SlideshowFonts", "getFonts", "Slideshow", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "LayoutGroup", "ComponentViewportProvider", "SmartComponentScopedContainer", "Link", "Image2", "RichText2", "u", "css", "FramerZ7vfWkEiz", "withCSS", "Z7vfWkEiz_default", "addPropertyControls", "ControlType", "addFonts", "NavigationFonts", "getFonts", "s2rmvAS_A_default", "VideoFonts", "Video", "RichTextWithFX", "withFX", "RichText2", "CarouselFonts", "Z7vfWkEiz_default", "ContainerWithFX", "Container", "MotionDivWithFX", "motion", "ImageWithFX", "Image2", "MotionAWithFX", "FooterFonts", "HjSAoTqKD_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "animation", "transition1", "textEffect", "animation1", "textEffect1", "animation2", "transition2", "textEffect2", "textEffect3", "animation3", "transition3", "animation4", "transition4", "animation5", "transition5", "animation6", "animation7", "textEffect4", "transition6", "textEffect5", "textEffect6", "animation8", "transition7", "transition8", "animation9", "transition9", "animation10", "animation11", "transition10", "transition11", "animation12", "transition12", "animation13", "transformTemplate1", "_", "t", "transformTemplate2", "transition13", "textEffect7", "transition14", "textEffect8", "transition15", "animation14", "transformTemplate3", "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", "isDisplayed1", "isDisplayed2", "isDisplayed3", "isDisplayed4", "elementId", "useRouteElementId", "ref1", "elementId1", "ref2", "elementId2", "ref3", "isDisplayed5", "elementId3", "ref4", "isDisplayed6", "isDisplayed7", "elementId4", "ref5", "isDisplayed8", "elementId5", "ref6", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "PropertyOverrides2", "ComponentViewportProvider", "SVG", "x", "Link", "getLoadingLazyAtYPosition", "css", "FramerL19Tvfnan", "withCSS", "L19Tvfnan_default", "addFonts", "__FramerMetadata__"]
}
