{
  "version": 3,
  "sources": ["ssg:https://ga.jspm.io/npm:@motionone/utils@10.14.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:@motionone/easing@10.12.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:@motionone/animation@10.12.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:tslib@2.4.0/tslib.es6.js", "ssg:https://ga.jspm.io/npm:hey-listen@1.0.8/dist/index.js", "ssg:https://ga.jspm.io/npm:@motionone/generators@10.12.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:@motionone/dom@10.12.0/dist/index.es.js", "ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/XVUmpmPn1EPL0dzocT35/Ticker.js", "ssg:https://framerusercontent.com/modules/a2zyRlDichl5QXtJCp8R/6sp8ozuVgXqC8pSlx2qB/Q97DI0_Bf.js", "ssg:https://framerusercontent.com/modules/zdNbPPbnm1Nz5Sh3F83F/lXFuMHk21BUyp4IyFH1g/r8D2IYnYW.js", "ssg:https://framerusercontent.com/modules/bDqpPVaiMlqLduryjrJy/E5WlF85pq3sMbSUYWBuN/UY6lh5vC9.js", "ssg:https://framerusercontent.com/modules/fP8iSJK7Un5ckLikLiMS/AyFT0pW5jdD6pgs62i06/vW7JZDbZa.js", "ssg:https://framerusercontent.com/modules/kfh30ODSSNb2QiTZlVvY/21czXVfj1fcfYEEjftSs/JWuExVL3X.js"],
  "sourcesContent": ["function addUniqueItem(t,e){-1===t.indexOf(e)&&t.push(e)}function removeItem(t,e){const n=t.indexOf(e);n>-1&&t.splice(n,1)}const clamp=(t,e,n)=>Math.min(Math.max(n,t),e);const t={duration:.3,delay:0,endDelay:0,repeat:0,easing:\"ease\"};const isNumber=t=>\"number\"===typeof t;const isEasingList=t=>Array.isArray(t)&&!isNumber(t[0]);const wrap=(t,e,n)=>{const o=e-t;return((n-t)%o+o)%o+t};function getEasingForSegment(t,e){return isEasingList(t)?t[wrap(0,t.length,e)]:t}const mix=(t,e,n)=>-n*t+n*e+t;const noop=()=>{};const noopReturn=t=>t;const progress=(t,e,n)=>e-t===0?1:(n-t)/(e-t);function fillOffset(t,e){const n=t[t.length-1];for(let o=1;o<=e;o++){const s=progress(0,e,o);t.push(mix(n,1,s))}}function defaultOffset(t){const e=[0];fillOffset(e,t-1);return e}function interpolate(t,e=defaultOffset(t.length),n=noopReturn){const o=t.length;const s=o-e.length;s>0&&fillOffset(e,s);return s=>{let f=0;for(;f<o-2;f++)if(s<e[f+1])break;let r=clamp(0,1,progress(e[f],e[f+1],s));const c=getEasingForSegment(n,f);r=c(r);return mix(t[f],t[f+1],r)}}const isCubicBezier=t=>Array.isArray(t)&&isNumber(t[0]);const isEasingGenerator=t=>\"object\"===typeof t&&Boolean(t.createAnimation);const isFunction=t=>\"function\"===typeof t;const isString=t=>\"string\"===typeof t;const e={ms:t=>1e3*t,s:t=>t/1e3};\n/*\n  Convert velocity into velocity per second\n\n  @param [number]: Unit per frame\n  @param [number]: Frame duration in ms\n*/function velocityPerSecond(t,e){return e?t*(1e3/e):0}export{addUniqueItem,clamp,defaultOffset,t as defaults,fillOffset,getEasingForSegment,interpolate,isCubicBezier,isEasingGenerator,isEasingList,isFunction,isNumber,isString,mix,noop,noopReturn,progress,removeItem,e as time,velocityPerSecond,wrap};\n\n//# sourceMappingURL=index.es.js.map", "import{noopReturn as t,clamp as n}from\"@motionone/utils\";const calcBezier=(t,n,e)=>(((1-3*e+3*n)*t+(3*e-6*n))*t+3*n)*t;const e=1e-7;const i=12;function binarySubdivide(t,n,o,r,c){let u;let a;let s=0;do{a=n+(o-n)/2;u=calcBezier(a,r,c)-t;u>0?o=a:n=a}while(Math.abs(u)>e&&++s<i);return a}function cubicBezier(n,e,i,o){if(n===e&&i===o)return t;const getTForX=t=>binarySubdivide(t,0,1,n,i);return t=>0===t||1===t?t:calcBezier(getTForX(t),e,o)}const steps=(t,e=\"end\")=>i=>{i=\"end\"===e?Math.min(i,.999):Math.max(i,.001);const o=i*t;const r=\"end\"===e?Math.floor(o):Math.ceil(o);return n(0,1,r/t)};export{cubicBezier,steps};\n\n//# sourceMappingURL=index.es.js.map", "import{noopReturn as t,defaults as i,isEasingGenerator as e,isEasingList as s,interpolate as a}from\"@motionone/utils\";import{cubicBezier as n,steps as r}from\"@motionone/easing\";const o={ease:n(.25,.1,.25,1),\"ease-in\":n(.42,0,1,1),\"ease-in-out\":n(.42,0,.58,1),\"ease-out\":n(0,0,.58,1)};const h=/\\((.*?)\\)/;function getEasingFunction(i){if(\"function\"===typeof i)return i;if(Array.isArray(i))return n(...i);if(o[i])return o[i];if(i.startsWith(\"steps\")){const t=h.exec(i);if(t){const i=t[1].split(\",\");return r(parseFloat(i[0]),i[1].trim())}}return t}class Animation{constructor(n,r=[0,1],{easing:o,duration:h=i.duration,delay:u=i.delay,endDelay:l=i.endDelay,repeat:m=i.repeat,offset:c,direction:p=\"normal\"}={}){this.startTime=null;this.rate=1;this.t=0;this.cancelTimestamp=null;this.easing=t;this.duration=0;this.totalDuration=0;this.repeat=0;this.playState=\"idle\";this.finished=new Promise(((t,i)=>{this.resolve=t;this.reject=i}));o=o||i.easing;if(e(o)){const t=o.createAnimation(r,(()=>\"0\"),true);o=t.easing;void 0!==t.keyframes&&(r=t.keyframes);void 0!==t.duration&&(h=t.duration)}this.repeat=m;this.easing=s(o)?t:getEasingFunction(o);this.updateDuration(h);const d=a(r,c,s(o)?o.map(getEasingFunction):t);this.tick=t=>{var i;u=u;let e=0;e=void 0!==this.pauseTime?this.pauseTime:(t-this.startTime)*this.rate;this.t=e;e/=1e3;e=Math.max(e-u,0);\"finished\"===this.playState&&void 0===this.pauseTime&&(e=this.totalDuration);const s=e/this.duration;let a=Math.floor(s);let r=s%1;!r&&s>=1&&(r=1);1===r&&a--;const o=a%2;(\"reverse\"===p||\"alternate\"===p&&o||\"alternate-reverse\"===p&&!o)&&(r=1-r);const h=e>=this.totalDuration?1:Math.min(r,1);const m=d(this.easing(h));n(m);const c=void 0===this.pauseTime&&(\"finished\"===this.playState||e>=this.totalDuration+l);if(c){this.playState=\"finished\";null===(i=this.resolve)||void 0===i?void 0:i.call(this,m)}else\"idle\"!==this.playState&&(this.frameRequestId=requestAnimationFrame(this.tick))};this.play()}play(){const t=performance.now();this.playState=\"running\";void 0!==this.pauseTime?this.startTime=t-this.pauseTime:this.startTime||(this.startTime=t);this.cancelTimestamp=this.startTime;this.pauseTime=void 0;this.frameRequestId=requestAnimationFrame(this.tick)}pause(){this.playState=\"paused\";this.pauseTime=this.t}finish(){this.playState=\"finished\";this.tick(0)}stop(){var t;this.playState=\"idle\";void 0!==this.frameRequestId&&cancelAnimationFrame(this.frameRequestId);null===(t=this.reject)||void 0===t?void 0:t.call(this,false)}cancel(){this.stop();this.tick(this.cancelTimestamp)}reverse(){this.rate*=-1}commitStyles(){}updateDuration(t){this.duration=t;this.totalDuration=t*(this.repeat+1)}get currentTime(){return this.t}set currentTime(t){void 0!==this.pauseTime||0===this.rate?this.pauseTime=t:this.startTime=performance.now()-t/this.rate}get playbackRate(){return this.rate}set playbackRate(t){this.rate=t}}export{Animation,getEasingFunction};\n\n//# sourceMappingURL=index.es.js.map", "var extendStatics=function(e,t){extendStatics=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var r in t)Object.prototype.hasOwnProperty.call(t,r)&&(e[r]=t[r])};return extendStatics(e,t)};function __extends(e,t){if(\"function\"!==typeof t&&null!==t)throw new TypeError(\"Class extends value \"+String(t)+\" is not a constructor or null\");extendStatics(e,t);function __(){this.constructor=e}e.prototype=null===t?Object.create(t):(__.prototype=t.prototype,new __)}var __assign=function(){__assign=Object.assign||function __assign(e){for(var t,r=1,n=arguments.length;r<n;r++){t=arguments[r];for(var o in t)Object.prototype.hasOwnProperty.call(t,o)&&(e[o]=t[o])}return e};return __assign.apply(this,arguments)};function __rest(e,t){var r={};for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&t.indexOf(n)<0&&(r[n]=e[n]);if(null!=e&&\"function\"===typeof Object.getOwnPropertySymbols){var o=0;for(n=Object.getOwnPropertySymbols(e);o<n.length;o++)t.indexOf(n[o])<0&&Object.prototype.propertyIsEnumerable.call(e,n[o])&&(r[n[o]]=e[n[o]])}return r}function __decorate(e,t,r,n){var o,a=arguments.length,i=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if(\"object\"===typeof Reflect&&\"function\"===typeof Reflect.decorate)i=Reflect.decorate(e,t,r,n);else for(var c=e.length-1;c>=0;c--)(o=e[c])&&(i=(a<3?o(i):a>3?o(t,r,i):o(t,r))||i);return a>3&&i&&Object.defineProperty(t,r,i),i}function __param(e,t){return function(r,n){t(r,n,e)}}function __metadata(e,t){if(\"object\"===typeof Reflect&&\"function\"===typeof Reflect.metadata)return Reflect.metadata(e,t)}function __awaiter(e,t,r,n){function adopt(e){return e instanceof r?e:new r((function(t){t(e)}))}return new(r||(r=Promise))((function(r,o){function fulfilled(e){try{step(n.next(e))}catch(e){o(e)}}function rejected(e){try{step(n.throw(e))}catch(e){o(e)}}function step(e){e.done?r(e.value):adopt(e.value).then(fulfilled,rejected)}step((n=n.apply(e,t||[])).next())}))}function __generator(e,t){var r,n,o,a,i={label:0,sent:function(){if(1&o[0])throw o[1];return o[1]},trys:[],ops:[]};return a={next:verb(0),throw:verb(1),return:verb(2)},\"function\"===typeof Symbol&&(a[Symbol.iterator]=function(){return this}),a;function verb(e){return function(t){return step([e,t])}}function step(a){if(r)throw new TypeError(\"Generator is already executing.\");while(i)try{if(r=1,n&&(o=2&a[0]?n.return:a[0]?n.throw||((o=n.return)&&o.call(n),0):n.next)&&!(o=o.call(n,a[1])).done)return o;(n=0,o)&&(a=[2&a[0],o.value]);switch(a[0]){case 0:case 1:o=a;break;case 4:i.label++;return{value:a[1],done:false};case 5:i.label++;n=a[1];a=[0];continue;case 7:a=i.ops.pop();i.trys.pop();continue;default:if(!(o=i.trys,o=o.length>0&&o[o.length-1])&&(6===a[0]||2===a[0])){i=0;continue}if(3===a[0]&&(!o||a[1]>o[0]&&a[1]<o[3])){i.label=a[1];break}if(6===a[0]&&i.label<o[1]){i.label=o[1];o=a;break}if(o&&i.label<o[2]){i.label=o[2];i.ops.push(a);break}o[2]&&i.ops.pop();i.trys.pop();continue}a=t.call(e,i)}catch(e){a=[6,e];n=0}finally{r=o=0}if(5&a[0])throw a[1];return{value:a[0]?a[1]:void 0,done:true}}}var e=Object.create?function(e,t,r,n){void 0===n&&(n=r);var o=Object.getOwnPropertyDescriptor(t,r);o&&!(\"get\"in o?!t.__esModule:o.writable||o.configurable)||(o={enumerable:true,get:function(){return t[r]}});Object.defineProperty(e,n,o)}:function(e,t,r,n){void 0===n&&(n=r);e[n]=t[r]};function __exportStar(t,r){for(var n in t)\"default\"===n||Object.prototype.hasOwnProperty.call(r,n)||e(r,t,n)}function __values(e){var t=\"function\"===typeof Symbol&&Symbol.iterator,r=t&&e[t],n=0;if(r)return r.call(e);if(e&&\"number\"===typeof e.length)return{next:function(){e&&n>=e.length&&(e=void 0);return{value:e&&e[n++],done:!e}}};throw new TypeError(t?\"Object is not iterable.\":\"Symbol.iterator is not defined.\")}function __read(e,t){var r=\"function\"===typeof Symbol&&e[Symbol.iterator];if(!r)return e;var n,o,a=r.call(e),i=[];try{while((void 0===t||t-- >0)&&!(n=a.next()).done)i.push(n.value)}catch(e){o={error:e}}finally{try{n&&!n.done&&(r=a.return)&&r.call(a)}finally{if(o)throw o.error}}return i}\n/** @deprecated */function __spread(){for(var e=[],t=0;t<arguments.length;t++)e=e.concat(__read(arguments[t]));return e}\n/** @deprecated */function __spreadArrays(){for(var e=0,t=0,r=arguments.length;t<r;t++)e+=arguments[t].length;var n=Array(e),o=0;for(t=0;t<r;t++)for(var a=arguments[t],i=0,c=a.length;i<c;i++,o++)n[o]=a[i];return n}function __spreadArray(e,t,r){if(r||2===arguments.length)for(var n,o=0,a=t.length;o<a;o++)if(n||!(o in t)){n||(n=Array.prototype.slice.call(t,0,o));n[o]=t[o]}return e.concat(n||Array.prototype.slice.call(t))}function __await(e){return this instanceof __await?(this.v=e,this):new __await(e)}function __asyncGenerator(e,t,r){if(!Symbol.asyncIterator)throw new TypeError(\"Symbol.asyncIterator is not defined.\");var n,o=r.apply(e,t||[]),a=[];return n={},verb(\"next\"),verb(\"throw\"),verb(\"return\"),n[Symbol.asyncIterator]=function(){return this},n;function verb(e){o[e]&&(n[e]=function(t){return new Promise((function(r,n){a.push([e,t,r,n])>1||resume(e,t)}))})}function resume(e,t){try{step(o[e](t))}catch(e){settle(a[0][3],e)}}function step(e){e.value instanceof __await?Promise.resolve(e.value.v).then(fulfill,reject):settle(a[0][2],e)}function fulfill(e){resume(\"next\",e)}function reject(e){resume(\"throw\",e)}function settle(e,t){(e(t),a.shift(),a.length)&&resume(a[0][0],a[0][1])}}function __asyncDelegator(e){var t,r;return t={},verb(\"next\"),verb(\"throw\",(function(e){throw e})),verb(\"return\"),t[Symbol.iterator]=function(){return this},t;function verb(n,o){t[n]=e[n]?function(t){return(r=!r)?{value:__await(e[n](t)),done:\"return\"===n}:o?o(t):t}:o}}function __asyncValues(e){if(!Symbol.asyncIterator)throw new TypeError(\"Symbol.asyncIterator is not defined.\");var t,r=e[Symbol.asyncIterator];return r?r.call(e):(e=\"function\"===typeof __values?__values(e):e[Symbol.iterator](),t={},verb(\"next\"),verb(\"throw\"),verb(\"return\"),t[Symbol.asyncIterator]=function(){return this},t);function verb(r){t[r]=e[r]&&function(t){return new Promise((function(n,o){t=e[r](t),settle(n,o,t.done,t.value)}))}}function settle(e,t,r,n){Promise.resolve(n).then((function(t){e({value:t,done:r})}),t)}}function __makeTemplateObject(e,t){Object.defineProperty?Object.defineProperty(e,\"raw\",{value:t}):e.raw=t;return e}var t=Object.create?function(e,t){Object.defineProperty(e,\"default\",{enumerable:true,value:t})}:function(e,t){e.default=t};function __importStar(r){if(r&&r.__esModule)return r;var n={};if(null!=r)for(var o in r)\"default\"!==o&&Object.prototype.hasOwnProperty.call(r,o)&&e(n,r,o);t(n,r);return n}function __importDefault(e){return e&&e.__esModule?e:{default:e}}function __classPrivateFieldGet(e,t,r,n){if(\"a\"===r&&!n)throw new TypeError(\"Private accessor was defined without a getter\");if(\"function\"===typeof t?e!==t||!n:!t.has(e))throw new TypeError(\"Cannot read private member from an object whose class did not declare it\");return\"m\"===r?n:\"a\"===r?n.call(e):n?n.value:t.get(e)}function __classPrivateFieldSet(e,t,r,n,o){if(\"m\"===n)throw new TypeError(\"Private method is not writable\");if(\"a\"===n&&!o)throw new TypeError(\"Private accessor was defined without a setter\");if(\"function\"===typeof t?e!==t||!o:!t.has(e))throw new TypeError(\"Cannot write private member to an object whose class did not declare it\");return\"a\"===n?o.call(e,r):o?o.value=r:t.set(e,r),r}function __classPrivateFieldIn(e,t){if(null===t||\"object\"!==typeof t&&\"function\"!==typeof t)throw new TypeError(\"Cannot use 'in' operator on non-object\");return\"function\"===typeof e?t===e:e.has(t)}export{__assign,__asyncDelegator,__asyncGenerator,__asyncValues,__await,__awaiter,__classPrivateFieldGet,__classPrivateFieldIn,__classPrivateFieldSet,e as __createBinding,__decorate,__exportStar,__extends,__generator,__importDefault,__importStar,__makeTemplateObject,__metadata,__param,__read,__rest,__spread,__spreadArray,__spreadArrays,__values};\n\n//# sourceMappingURL=tslib.es6.js.map", "var n={};Object.defineProperty(n,\"__esModule\",{value:true});n.warning=function(){};n.invariant=function(){};const e=n.__esModule,t=n.warning,r=n.invariant;export default n;export{e as __esModule,r as invariant,t as warning};\n\n//# sourceMappingURL=index.js.map", "import{velocityPerSecond as e,time as t}from\"@motionone/utils\";const s=5;function calcGeneratorVelocity(t,n,r){const a=Math.max(n-s,0);return e(r-t(a),n-a)}const n={stiffness:100,damping:10,mass:1};const calcDampingRatio=(e=n.stiffness,t=n.damping,s=n.mass)=>t/(2*Math.sqrt(e*s));function hasReachedTarget(e,t,s){return e<t&&s>=t||e>t&&s<=t}const spring=({stiffness:e=n.stiffness,damping:s=n.damping,mass:r=n.mass,from:a=0,to:o=1,velocity:c=0,restSpeed:i=2,restDistance:h=.5}={})=>{c=c?t.s(c):0;const u={done:false,hasReachedTarget:false,current:a,target:o};const d=o-a;const f=Math.sqrt(e/r)/1e3;const l=calcDampingRatio(e,s,r);let g;if(l<1){const e=f*Math.sqrt(1-l*l);g=t=>o-Math.exp(-l*f*t)*((l*f*d-c)/e*Math.sin(e*t)+d*Math.cos(e*t))}else g=e=>o-Math.exp(-f*e)*(d+(f*d-c)*e);return e=>{u.current=g(e);const t=0===e?c:calcGeneratorVelocity(g,e,u.current);const s=Math.abs(t)<=i;const n=Math.abs(o-u.current)<=h;u.done=s&&n;u.hasReachedTarget=hasReachedTarget(a,o,u.current);return u}};const glide=({from:e=0,velocity:s=0,power:n=.8,decay:r=.325,bounceDamping:a,bounceStiffness:o,changeTarget:c,min:i,max:h,restDistance:u=.5,restSpeed:d})=>{r=t.ms(r);const f={hasReachedTarget:false,done:false,current:e,target:e};const isOutOfBounds=e=>void 0!==i&&e<i||void 0!==h&&e>h;const nearestBoundary=e=>void 0===i?h:void 0===h||Math.abs(i-e)<Math.abs(h-e)?i:h;let l=n*s;const g=e+l;const m=void 0===c?g:c(g);f.target=m;m!==g&&(l=m-e);const calcDelta=e=>-l*Math.exp(-e/r);const calcLatest=e=>m+calcDelta(e);const applyFriction=e=>{const t=calcDelta(e);const s=calcLatest(e);f.done=Math.abs(t)<=u;f.current=f.done?m:s};let p;let M;const checkCatchBoundary=e=>{if(isOutOfBounds(f.current)){p=e;M=spring({from:f.current,to:nearestBoundary(f.current),velocity:calcGeneratorVelocity(calcLatest,e,f.current),damping:a,stiffness:o,restDistance:u,restSpeed:d})}};checkCatchBoundary(0);return e=>{let t=false;if(!M&&void 0===p){t=true;applyFriction(e);checkCatchBoundary(e)}if(void 0!==p&&e>p){f.hasReachedTarget=true;return M(e-p)}f.hasReachedTarget=false;!t&&applyFriction(e);return f}};const r=10;const a=1e4;function pregenerateKeyframes(e){let t;let s=r;let n=e(0);const o=[n.current];while(!n.done&&s<a){n=e(s);o.push(n.done?n.target:n.current);void 0===t&&n.hasReachedTarget&&(t=s);s+=r}const c=s-r;1===o.length&&o.push(n.current);return{keyframes:o,duration:c/1e3,overshootDuration:(null!==t&&void 0!==t?t:c)/1e3}}export{calcGeneratorVelocity,glide,pregenerateKeyframes,spring};\n\n//# sourceMappingURL=index.es.js.map", "import{MotionValue as e}from\"@motionone/types\";import{noopReturn as t,addUniqueItem as n,isCubicBezier as o,defaults as i,isEasingGenerator as s,isNumber as r,time as a,isEasingList as c,noop as l,removeItem as f,mix as u,getEasingForSegment as d,isString as g,defaultOffset as m,fillOffset as h,progress as p,velocityPerSecond as v,interpolate as y}from\"@motionone/utils\";import{Animation as w,getEasingFunction as E}from\"@motionone/animation\";import{__rest as b}from\"tslib\";import{invariant as S}from\"hey-listen\";import{pregenerateKeyframes as A,calcGeneratorVelocity as O,spring as x,glide as V}from\"@motionone/generators\";const z=new WeakMap;function getAnimationData(e){z.has(e)||z.set(e,{transforms:[],values:new Map});return z.get(e)}function getMotionValue(t,n){t.has(n)||t.set(n,new e);return t.get(n)}const W=[\"\",\"X\",\"Y\",\"Z\"];const L=[\"translate\",\"scale\",\"rotate\",\"skew\"];const T={x:\"translateX\",y:\"translateY\",z:\"translateZ\"};const D={syntax:\"<angle>\",initialValue:\"0deg\",toDefaultUnit:e=>e+\"deg\"};const M={translate:{syntax:\"<length-percentage>\",initialValue:\"0px\",toDefaultUnit:e=>e+\"px\"},rotate:D,scale:{syntax:\"<number>\",initialValue:1,toDefaultUnit:t},skew:D};const k=new Map;const asTransformCssVar=e=>`--motion-${e}`;const B=[\"x\",\"y\",\"z\"];L.forEach((e=>{W.forEach((t=>{B.push(e+t);k.set(asTransformCssVar(e+t),M[e])}))}));const compareTransformOrder=(e,t)=>B.indexOf(e)-B.indexOf(t);const j=new Set(B);const isTransform=e=>j.has(e);const addTransformToElement=(e,t)=>{T[t]&&(t=T[t]);const{transforms:o}=getAnimationData(e);n(o,t);e.style.transform=buildTransformTemplate(o)};const buildTransformTemplate=e=>e.sort(compareTransformOrder).reduce(transformListToString,\"\").trim();const transformListToString=(e,t)=>`${e} ${t}(var(${asTransformCssVar(t)}))`;const isCssVar=e=>e.startsWith(\"--\");const P=new Set;function registerCssVariable(e){if(!P.has(e)){P.add(e);try{const{syntax:t,initialValue:n}=k.has(e)?k.get(e):{};CSS.registerProperty({name:e,inherits:false,syntax:t,initialValue:n})}catch(e){}}}const convertEasing=e=>o(e)?cubicBezierAsString(e):e;const cubicBezierAsString=([e,t,n,o])=>`cubic-bezier(${e}, ${t}, ${n}, ${o})`;const testAnimation=e=>document.createElement(\"div\").animate(e,{duration:.001});const C={cssRegisterProperty:()=>\"undefined\"!==typeof CSS&&Object.hasOwnProperty.call(CSS,\"registerProperty\"),waapi:()=>Object.hasOwnProperty.call(Element.prototype,\"animate\"),partialKeyframes:()=>{try{testAnimation({opacity:[1]})}catch(e){return false}return true},finished:()=>Boolean(testAnimation({opacity:[0,1]}).finished)};const $={};const R={};for(const e in C)R[e]=()=>{void 0===$[e]&&($[e]=C[e]());return $[e]};function hydrateKeyframes(e,t){for(let n=0;n<e.length;n++)null===e[n]&&(e[n]=n?e[n-1]:t());return e}const keyframesList=e=>Array.isArray(e)?e:[e];function getStyleName(e){T[e]&&(e=T[e]);return isTransform(e)?asTransformCssVar(e):e}const H={get:(e,t)=>{t=getStyleName(t);let n=isCssVar(t)?e.style.getPropertyValue(t):getComputedStyle(e)[t];if(!n&&0!==n){const e=k.get(t);e&&(n=e.initialValue)}return n},set:(e,t,n)=>{t=getStyleName(t);isCssVar(t)?e.style.setProperty(t,n):e.style[t]=n}};function stopAnimation(e,t=true){if(e&&\"finished\"!==e.playState)try{if(e.stop)e.stop();else{t&&e.commitStyles();e.cancel()}}catch(e){}}function getDevToolsRecord(){return window.__MOTION_DEV_TOOLS_RECORD}function animateStyle(e,t,n,o={}){const f=getDevToolsRecord();const u=false!==o.record&&f;let d;let{duration:g=i.duration,delay:m=i.delay,endDelay:h=i.endDelay,repeat:p=i.repeat,easing:v=i.easing,direction:y,offset:E,allowWebkitAcceleration:b=false}=o;const S=getAnimationData(e);let A=R.waapi();const O=isTransform(t);O&&addTransformToElement(e,t);const x=getStyleName(t);const V=getMotionValue(S.values,x);const z=k.get(x);stopAnimation(V.animation,!(s(v)&&V.generator)&&false!==o.record);return()=>{const readInitialValue=()=>{var t,n;return null!==(n=null!==(t=H.get(e,x))&&void 0!==t?t:null===z||void 0===z?void 0:z.initialValue)&&void 0!==n?n:0};let i=hydrateKeyframes(keyframesList(n),readInitialValue);if(s(v)){const e=v.createAnimation(i,readInitialValue,O,x,V);v=e.easing;void 0!==e.keyframes&&(i=e.keyframes);void 0!==e.duration&&(g=e.duration)}isCssVar(x)&&(R.cssRegisterProperty()?registerCssVariable(x):A=false);if(A){z&&(i=i.map((e=>r(e)?z.toDefaultUnit(e):e)));1!==i.length||R.partialKeyframes()&&!u||i.unshift(readInitialValue());const t={delay:a.ms(m),duration:a.ms(g),endDelay:a.ms(h),easing:c(v)?void 0:convertEasing(v),direction:y,iterations:p+1,fill:\"both\"};d=e.animate({[x]:i,offset:E,easing:c(v)?v.map(convertEasing):void 0},t);d.finished||(d.finished=new Promise(((e,t)=>{d.onfinish=e;d.oncancel=t})));const n=i[i.length-1];d.finished.then((()=>{H.set(e,x,n);d.cancel()})).catch(l);b||(d.playbackRate=1.000001)}else if(O){i=i.map((e=>\"string\"===typeof e?parseFloat(e):e));1===i.length&&i.unshift(parseFloat(readInitialValue()));const render=t=>{z&&(t=z.toDefaultUnit(t));H.set(e,x,t)};d=new w(render,i,Object.assign(Object.assign({},o),{duration:g,easing:v}))}else{const t=i[i.length-1];H.set(e,x,z&&r(t)?z.toDefaultUnit(t):t)}u&&f(e,t,i,{duration:g,delay:m,easing:v,repeat:p,offset:E},\"motion-one\");V.setAnimation(d);return d}}const getOptions=(e,t)=>e[t]?Object.assign(Object.assign({},e),e[t]):Object.assign({},e);function resolveElements(e,t){var n;if(\"string\"===typeof e)if(t){null!==(n=t[e])&&void 0!==n?n:t[e]=document.querySelectorAll(e);e=t[e]}else e=document.querySelectorAll(e);else e instanceof Element&&(e=[e]);return Array.from(e||[])}const createAnimation=e=>e();const withControls=(e,t,n=i.duration)=>new Proxy({animations:e.map(createAnimation).filter(Boolean),duration:n,options:t},I);const getActiveAnimation=e=>e.animations[0];const I={get:(e,t)=>{const n=getActiveAnimation(e);switch(t){case\"duration\":return e.duration;case\"currentTime\":return a.s((null===n||void 0===n?void 0:n[t])||0);case\"playbackRate\":case\"playState\":return null===n||void 0===n?void 0:n[t];case\"finished\":e.finished||(e.finished=Promise.all(e.animations.map(selectFinished)).catch(l));return e.finished;case\"stop\":return()=>{e.animations.forEach((e=>stopAnimation(e)))};case\"forEachNative\":return t=>{e.animations.forEach((n=>t(n,e)))};default:return\"undefined\"===typeof(null===n||void 0===n?void 0:n[t])?void 0:()=>e.animations.forEach((e=>e[t]()))}},set:(e,t,n)=>{switch(t){case\"currentTime\":n=a.ms(n);case\"currentTime\":case\"playbackRate\":for(let o=0;o<e.animations.length;o++)e.animations[o][t]=n;return true}return false}};const selectFinished=e=>e.finished;function stagger(e=.1,{start:t=0,from:n=0,easing:o}={}){return(i,s)=>{const a=r(n)?n:getFromIndex(n,s);const c=Math.abs(a-i);let l=e*c;if(o){const t=s*e;const n=E(o);l=n(l/t)*t}return t+l}}function getFromIndex(e,t){if(\"first\"===e)return 0;{const n=t-1;return\"last\"===e?n:n/2}}function resolveOption(e,t,n){return\"function\"===typeof e?e(t,n):e}function animate(e,t,n={}){e=resolveElements(e);const o=e.length;const i=[];for(let s=0;s<o;s++){const r=e[s];for(const e in t){const a=getOptions(n,e);a.delay=resolveOption(a.delay,s,o);const c=animateStyle(r,e,t[e],a);i.push(c)}}return withControls(i,n,n.duration)}function calcNextTime(e,t,n,o){var i;return r(t)?t:t.startsWith(\"-\")||t.startsWith(\"+\")?Math.max(0,e+parseFloat(t)):\"<\"===t?n:null!==(i=o.get(t))&&void 0!==i?i:e}function eraseKeyframes(e,t,n){for(let o=0;o<e.length;o++){const i=e[o];if(i.at>t&&i.at<n){f(e,i);o--}}}function addKeyframes(e,t,n,o,i,s){eraseKeyframes(e,i,s);for(let r=0;r<t.length;r++)e.push({value:t[r],at:u(i,s,o[r]),easing:d(n,r)})}function compareByTime(e,t){return e.at===t.at?null===e.value?1:-1:e.at-t.at}function timeline(e,t={}){var n;const o=createAnimationsFromTimeline(e,t);const i=o.map((e=>animateStyle(...e))).filter(Boolean);return withControls(i,t,null===(n=o[0])||void 0===n?void 0:n[3].duration)}function createAnimationsFromTimeline(e,t={}){var{defaultOptions:n={}}=t,o=b(t,[\"defaultOptions\"]);const r=[];const a=new Map;const c={};const l=new Map;let f=0;let u=0;let d=0;for(let t=0;t<e.length;t++){const o=e[t];if(g(o)){l.set(o,u);continue}if(!Array.isArray(o)){l.set(o.name,calcNextTime(u,o.at,f,l));continue}const[r,p,v={}]=o;void 0!==v.at&&(u=calcNextTime(u,v.at,f,l));let y=0;const w=resolveElements(r,c);const E=w.length;for(let e=0;e<E;e++){const t=w[e];const o=getElementSequence(t,a);for(const t in p){const r=getValueSequence(t,o);let a=keyframesList(p[t]);const c=getOptions(v,t);let{duration:l=n.duration||i.duration,easing:f=n.easing||i.easing}=c;if(s(f)){const e=isTransform(t);S(2===a.length||!e,\"spring must be provided 2 keyframes within timeline\");const n=f.createAnimation(a,(()=>\"0\"),e);f=n.easing;void 0!==n.keyframes&&(a=n.keyframes);void 0!==n.duration&&(l=n.duration)}const g=resolveOption(v.delay,e,E)||0;const w=u+g;const b=w+l;let{offset:A=m(a.length)}=c;1===A.length&&0===A[0]&&(A[1]=1);const O=length-a.length;O>0&&h(A,O);1===a.length&&a.unshift(null);addKeyframes(r,a,f,A,w,b);y=Math.max(g+l,y);d=Math.max(b,d)}}f=u;u+=y}a.forEach(((e,t)=>{for(const s in e){const a=e[s];a.sort(compareByTime);const c=[];const l=[];const f=[];for(let e=0;e<a.length;e++){const{at:t,value:n,easing:o}=a[e];c.push(n);l.push(p(0,d,t));f.push(o||i.easing)}if(0!==l[0]){l.unshift(0);c.unshift(c[0]);f.unshift(\"linear\")}if(1!==l[l.length-1]){l.push(1);c.push(null)}r.push([t,s,c,Object.assign(Object.assign(Object.assign({},n),{duration:d,easing:f,offset:l}),o)])}}));return r}function getElementSequence(e,t){!t.has(e)&&t.set(e,{});return t.get(e)}function getValueSequence(e,t){t[e]||(t[e]=[]);return t[e]}function createGeneratorEasing(e){const t=new WeakMap;return(n={})=>{const o=new Map;const getGenerator=(t=0,i=100,s=0,r=false)=>{const a=`${t}-${i}-${s}-${r}`;o.has(a)||o.set(a,e(Object.assign({from:t,to:i,velocity:s,restSpeed:r?.05:2,restDistance:r?.01:.5},n)));return o.get(a)};const getKeyframes=e=>{t.has(e)||t.set(e,A(e));return t.get(e)};return{createAnimation:(e,t,n,o,i)=>{var s,r;let a;const c=e.length;let l=n&&c<=2&&e.every(isNumberOrNull);if(l){const n=e[c-1];const l=1===c?null:e[0];let f=0;let u=0;const d=null===i||void 0===i?void 0:i.generator;if(d){const{animation:t,generatorStartTime:n}=i;const o=(null===t||void 0===t?void 0:t.startTime)||n||0;const r=(null===t||void 0===t?void 0:t.currentTime)||performance.now()-o;const a=d(r).current;u=null!==(s=l)&&void 0!==s?s:a;(1===c||2===c&&null===e[0])&&(f=O((e=>d(e).current),r,a))}else u=null!==(r=l)&&void 0!==r?r:parseFloat(t());const g=getGenerator(u,n,f,null===o||void 0===o?void 0:o.includes(\"scale\"));const m=getKeyframes(g);a=Object.assign(Object.assign({},m),{easing:\"linear\"});if(i){i.generator=g;i.generatorStartTime=performance.now()}}else{const e=getKeyframes(getGenerator(0,100));a={easing:\"ease\",duration:e.overshootDuration}}return a}}}}const isNumberOrNull=e=>\"string\"!==typeof e;const N=createGeneratorEasing(x);const F=createGeneratorEasing(V);const U={any:0,all:1};function inView$1(e,t,{root:n,margin:o,amount:i=\"any\"}={}){if(\"undefined\"===typeof IntersectionObserver)return()=>{};const s=resolveElements(e);const r=new WeakMap;const onIntersectionChange=e=>{e.forEach((e=>{const n=r.get(e.target);if(e.isIntersecting!==Boolean(n))if(e.isIntersecting){const n=t(e);\"function\"===typeof n?r.set(e.target,n):a.unobserve(e.target)}else if(n){n(e);r.delete(e.target)}}))};const a=new IntersectionObserver(onIntersectionChange,{root:n,rootMargin:o,threshold:\"number\"===typeof i?i:U[i]});s.forEach((e=>a.observe(e)));return()=>a.disconnect()}const q=new WeakMap;let K;function getElementSize(e,t){if(t){const{inlineSize:e,blockSize:n}=t[0];return{width:e,height:n}}return e instanceof SVGElement&&\"getBBox\"in e?e.getBBox():{width:e.offsetWidth,height:e.offsetHeight}}function notifyTarget({target:e,contentRect:t,borderBoxSize:n}){var o;null===(o=q.get(e))||void 0===o?void 0:o.forEach((o=>{o({target:e,contentSize:t,get size(){return getElementSize(e,n)}})}))}function notifyAll(e){e.forEach(notifyTarget)}function createResizeObserver(){\"undefined\"!==typeof ResizeObserver&&(K=new ResizeObserver(notifyAll))}function resizeElement(e,t){K||createResizeObserver();const n=resolveElements(e);n.forEach((e=>{let n=q.get(e);if(!n){n=new Set;q.set(e,n)}n.add(t);null===K||void 0===K?void 0:K.observe(e)}));return()=>{n.forEach((e=>{const n=q.get(e);null===n||void 0===n?void 0:n.delete(t);(null===n||void 0===n?void 0:n.size)||(null===K||void 0===K?void 0:K.unobserve(e))}))}}const G=new Set;let _;function createWindowResizeHandler(){_=()=>{const e={width:window.innerWidth,height:window.innerHeight};const t={target:window,size:e,contentSize:e};G.forEach((e=>e(t)))};window.addEventListener(\"resize\",_)}function resizeWindow(e){G.add(e);_||createWindowResizeHandler();return()=>{G.delete(e);!G.size&&_&&(_=void 0)}}function resize(e,t){return\"function\"===typeof e?resizeWindow(e):resizeElement(e,t)}const Z=50;const createAxisInfo=()=>({current:0,offset:[],progress:0,scrollLength:0,targetOffset:0,targetLength:0,containerLength:0,velocity:0});const createScrollInfo=()=>({time:0,x:createAxisInfo(),y:createAxisInfo()});const X={x:{length:\"Width\",position:\"Left\"},y:{length:\"Height\",position:\"Top\"}};function updateAxisInfo(e,t,n,o){const i=n[t];const{length:s,position:r}=X[t];const a=i.current;const c=n.time;i.current=e[\"scroll\"+r];i.scrollLength=e[\"scroll\"+s]-e[\"client\"+s];i.offset.length=0;i.offset[0]=0;i.offset[1]=i.scrollLength;i.progress=p(0,i.scrollLength,i.current);const l=o-c;i.velocity=l>Z?0:v(i.current-a,l)}function updateScrollInfo(e,t,n){updateAxisInfo(e,\"x\",t,n);updateAxisInfo(e,\"y\",t,n);t.time=n}function calcInset(e,t){let n={x:0,y:0};let o=e;while(o&&o!==t)if(o instanceof HTMLElement){n.x+=o.offsetLeft;n.y+=o.offsetTop;o=o.offsetParent}else if(o instanceof SVGGraphicsElement&&\"getBBox\"in o){const{top:e,left:t}=o.getBBox();n.x+=t;n.y+=e;while(o&&\"svg\"!==o.tagName)o=o.parentNode}return n}const Y={Enter:[[0,1],[1,1]],Exit:[[0,0],[1,0]],Any:[[1,0],[0,1]],All:[[0,0],[1,1]]};const J={start:0,center:.5,end:1};function resolveEdge(e,t,n=0){let o=0;void 0!==J[e]&&(e=J[e]);if(g(e)){const t=parseFloat(e);e.endsWith(\"px\")?o=t:e.endsWith(\"%\")?e=t/100:e.endsWith(\"vw\")?o=t/100*document.documentElement.clientWidth:e.endsWith(\"vh\")?o=t/100*document.documentElement.clientHeight:e=t}r(e)&&(o=t*e);return n+o}const Q=[0,0];function resolveOffset(e,t,n,o){let i=Array.isArray(e)?e:Q;let s=0;let a=0;if(r(e))i=[e,e];else if(g(e)){e=e.trim();i=e.includes(\" \")?e.split(\" \"):[e,J[e]?e:\"0\"]}s=resolveEdge(i[0],n,o);a=resolveEdge(i[1],t);return s-a}const ee={x:0,y:0};function resolveOffsets(e,t,n){let{offset:o=Y.All}=n;const{target:i=e,axis:s=\"y\"}=n;const r=\"y\"===s?\"height\":\"width\";const a=i!==e?calcInset(i,e):ee;const c=i===e?{width:e.scrollWidth,height:e.scrollHeight}:{width:i.clientWidth,height:i.clientHeight};const l={width:e.clientWidth,height:e.clientHeight};t[s].offset.length=0;let f=!t[s].interpolate;const u=o.length;for(let e=0;e<u;e++){const n=resolveOffset(o[e],l[r],c[r],a[s]);f||n===t[s].interpolatorOffsets[e]||(f=true);t[s].offset[e]=n}if(f){t[s].interpolate=y(m(u),t[s].offset);t[s].interpolatorOffsets=[...t[s].offset]}t[s].progress=t[s].interpolate(t[s].current)}function measure(e,t=e,n){n.x.targetOffset=0;n.y.targetOffset=0;if(t!==e){let o=t;while(o&&o!=e){n.x.targetOffset+=o.offsetLeft;n.y.targetOffset+=o.offsetTop;o=o.offsetParent}}n.x.targetLength=t===e?t.scrollWidth:t.clientWidth;n.y.targetLength=t===e?t.scrollHeight:t.clientHeight;n.x.containerLength=e.clientWidth;n.y.containerLength=e.clientHeight}function createOnScrollHandler(e,t,n,o={}){const i=o.axis||\"y\";return{measure:()=>measure(e,o.target,n),update:t=>{updateScrollInfo(e,n,t);(o.offset||o.target)&&resolveOffsets(e,n,o)},notify:\"function\"===typeof t?()=>t(n):scrubAnimation(t,n[i])}}function scrubAnimation(e,n){e.pause();e.forEachNative(((e,{easing:n})=>{var o,i;if(e.updateDuration){n||(e.easing=t);e.updateDuration(1)}else{const t={duration:1e3};n||(t.easing=\"linear\");null===(i=null===(o=e.effect)||void 0===o?void 0:o.updateTiming)||void 0===i?void 0:i.call(o,t)}}));return()=>{e.currentTime=n.progress}}const te=new WeakMap;const ne=new WeakMap;const oe=new WeakMap;const getEventTarget=e=>e===document.documentElement?window:e;function scroll(e,t={}){var{container:n=document.documentElement}=t,o=b(t,[\"container\"]);let i=oe.get(n);if(!i){i=new Set;oe.set(n,i)}const s=createScrollInfo();const r=createOnScrollHandler(n,e,s,o);i.add(r);if(!te.has(n)){const listener=()=>{const e=performance.now();for(const e of i)e.measure();for(const t of i)t.update(e);for(const e of i)e.notify()};te.set(n,listener);const e=getEventTarget(n);window.addEventListener(\"resize\",listener,{passive:true});n!==document.documentElement&&ne.set(n,resize(n,listener));e.addEventListener(\"scroll\",listener,{passive:true})}const a=te.get(n);const c=requestAnimationFrame(a);return()=>{var t;\"function\"!==typeof e&&e.stop();cancelAnimationFrame(c);const o=oe.get(n);if(!o)return;o.delete(r);if(o.size)return;const i=te.get(n);te.delete(n);if(i){getEventTarget(n).removeEventListener(\"scroll\",i);null===(t=ne.get(n))||void 0===t?void 0:t();window.removeEventListener(\"resize\",i)}}}function hasChanged(e,t){return typeof e!==typeof t||(Array.isArray(e)&&Array.isArray(t)?!shallowCompare(e,t):e!==t)}function shallowCompare(e,t){const n=t.length;if(n!==e.length)return false;for(let o=0;o<n;o++)if(t[o]!==e[o])return false;return true}function isVariant(e){return\"object\"===typeof e}function resolveVariant(e,t){return isVariant(e)?e:e&&t?t[e]:void 0}let ie;function processScheduledAnimations(){if(!ie)return;const e=ie.sort(compareByDepth).map(fireAnimateUpdates);e.forEach(fireNext);e.forEach(fireNext);ie=void 0}function scheduleAnimation(e){if(ie)n(ie,e);else{ie=[e];requestAnimationFrame(processScheduledAnimations)}}function unscheduleAnimation(e){ie&&f(ie,e)}const compareByDepth=(e,t)=>e.getDepth()-t.getDepth();const fireAnimateUpdates=e=>e.animateUpdates();const fireNext=e=>e.next();const motionEvent=(e,t)=>new CustomEvent(e,{detail:{target:t}});function dispatchPointerEvent(e,t,n){e.dispatchEvent(new CustomEvent(t,{detail:{originalEvent:n}}))}function dispatchViewEvent(e,t,n){e.dispatchEvent(new CustomEvent(t,{detail:{originalEntry:n}}))}const se={isActive:e=>Boolean(e.inView),subscribe:(e,{enable:t,disable:n},{inViewOptions:o={}})=>{const{once:i}=o,s=b(o,[\"once\"]);return inView$1(e,(o=>{t();dispatchViewEvent(e,\"viewenter\",o);if(!i)return t=>{n();dispatchViewEvent(e,\"viewleave\",t)}}),s)}};const mouseEvent=(e,t,n)=>o=>{if(!o.pointerType||\"mouse\"===o.pointerType){n();dispatchPointerEvent(e,t,o)}};const re={isActive:e=>Boolean(e.hover),subscribe:(e,{enable:t,disable:n})=>{const o=mouseEvent(e,\"hoverstart\",t);const i=mouseEvent(e,\"hoverend\",n);e.addEventListener(\"pointerenter\",o);e.addEventListener(\"pointerleave\",i);return()=>{e.removeEventListener(\"pointerenter\",o);e.removeEventListener(\"pointerleave\",i)}}};const ae={isActive:e=>Boolean(e.press),subscribe:(e,{enable:t,disable:n})=>{const onPointerUp=t=>{n();dispatchPointerEvent(e,\"pressend\",t);window.removeEventListener(\"pointerup\",onPointerUp)};const onPointerDown=n=>{t();dispatchPointerEvent(e,\"pressstart\",n);window.addEventListener(\"pointerup\",onPointerUp)};e.addEventListener(\"pointerdown\",onPointerDown);return()=>{e.removeEventListener(\"pointerdown\",onPointerDown);window.removeEventListener(\"pointerup\",onPointerUp)}}};const ce={inView:se,hover:re,press:ae};const le=[\"initial\",\"animate\",...Object.keys(ce),\"exit\"];const fe=new WeakMap;function createMotionState(e={},t){let n;let o=t?t.getDepth()+1:0;const i={initial:true,animate:true};const s={};const r={};for(const n of le)r[n]=\"string\"===typeof e[n]?e[n]:null===t||void 0===t?void 0:t.getContext()[n];const a=false===e.initial?\"animate\":\"initial\";let c=resolveVariant(e[a]||r[a],e.variants)||{},f=b(c,[\"transition\"]);const u=Object.assign({},f);function*animateUpdates(){var t,o;const s=f;f={};const r={};for(const n of le){if(!i[n])continue;const s=resolveVariant(e[n]);if(s)for(const n in s)if(\"transition\"!==n){f[n]=s[n];r[n]=getOptions(null!==(o=null!==(t=s.transition)&&void 0!==t?t:e.transition)&&void 0!==o?o:{},n)}}const a=new Set([...Object.keys(f),...Object.keys(s)]);const c=[];a.forEach((e=>{var t;void 0===f[e]&&(f[e]=u[e]);if(hasChanged(s[e],f[e])){null!==(t=u[e])&&void 0!==t?t:u[e]=H.get(n,e);c.push(animateStyle(n,e,f[e],r[e]))}}));yield;const d=c.map((e=>e())).filter(Boolean);if(!d.length)return;const g=f;n.dispatchEvent(motionEvent(\"motionstart\",g));Promise.all(d.map((e=>e.finished))).then((()=>{n.dispatchEvent(motionEvent(\"motioncomplete\",g))})).catch(l)}const setGesture=(e,t)=>()=>{i[e]=t;scheduleAnimation(d)};const updateGestureSubscriptions=()=>{for(const t in ce){const o=ce[t].isActive(e);const i=s[t];if(o&&!i)s[t]=ce[t].subscribe(n,{enable:setGesture(t,true),disable:setGesture(t,false)},e);else if(!o&&i){i();delete s[t]}}};const d={update:t=>{if(n){e=t;updateGestureSubscriptions();scheduleAnimation(d)}},setActive:(e,t)=>{if(n){i[e]=t;scheduleAnimation(d)}},animateUpdates:animateUpdates,getDepth:()=>o,getTarget:()=>f,getOptions:()=>e,getContext:()=>r,mount:e=>{S(Boolean(e),\"Animation state must be mounted with valid Element\");n=e;fe.set(n,d);updateGestureSubscriptions();return()=>{fe.delete(n);unscheduleAnimation(d);for(const e in s)s[e]()}},isMounted:()=>Boolean(n)};return d}function createStyles(e){const t={};const n=[];for(let o in e){const i=e[o];if(isTransform(o)){T[o]&&(o=T[o]);n.push(o);o=asTransformCssVar(o)}let s=Array.isArray(i)?i[0]:i;const a=k.get(o);a&&(s=r(i)?a.toDefaultUnit(i):i);t[o]=s}n.length&&(t.transform=buildTransformTemplate(n));return t}const camelLetterToPipeLetter=e=>`-${e.toLowerCase()}`;const camelToPipeCase=e=>e.replace(/[A-Z]/g,camelLetterToPipeLetter);function createStyleString(e={}){const t=createStyles(e);let n=\"\";for(const e in t){n+=e.startsWith(\"--\")?e:camelToPipeCase(e);n+=`: ${t[e]}; `}return n}export{Y as ScrollOffset,animate,animateStyle,createMotionState,createStyleString,createStyles,getAnimationData,getStyleName,F as glide,inView$1 as inView,fe as mountedStates,resize,scroll,N as spring,stagger,H as style,timeline,withControls};\n\n//# sourceMappingURL=index.es.js.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useEffect,useState,useRef,useMemo,createRef,useCallback,cloneElement}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{useAnimationFrame,useReducedMotion,LayoutGroup,useInView,useMotionValue,useTransform,motion,wrap,frame}from\"framer-motion\";import{resize}from\"@motionone/dom\";const MAX_DUPLICATED_ITEMS=100;const directionTransformers={left:offset=>`translateX(-${offset}px)`,right:offset=>`translateX(${offset}px)`,top:offset=>`translateY(-${offset}px)`,bottom:offset=>`translateY(${offset}px)`};const supportsAcceleratedAnimations=typeof Animation!==\"undefined\"&&typeof Animation.prototype.updatePlaybackRate===\"function\";/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Ticker(props){/* Props */let{slots,gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,speed,hoverFactor,direction,alignment,sizingOptions,fadeOptions,style}=props;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{widthType,heightType}=sizingOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/* Checks */const isCanvas=RenderTarget.current()===RenderTarget.canvas;// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const numChildren=Children.count(filteredSlots);const hasChildren=numChildren>0;if(direction===true){direction=\"left\";}const isHorizontal=direction===\"left\"||direction===\"right\";const offset=useMotionValue(0);const transformer=directionTransformers[direction];const transform=useTransform(offset,transformer);/* Refs and State */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return[/*#__PURE__*/createRef(),/*#__PURE__*/createRef()];},[]);const[size,setSize]=useState({parent:null,children:null});/* Arrays */let clonedChildren=[];let dupedChildren=[];/* Duplicate value */let duplicateBy=0;let opacity=0;if(isCanvas){duplicateBy=numChildren?Math.floor(10/numChildren):0;opacity=1;}if(!isCanvas&&hasChildren&&size.parent){duplicateBy=Math.round(size.parent/size.children*2)+1;duplicateBy=Math.min(duplicateBy,MAX_DUPLICATED_ITEMS);opacity=1;}/* Measure parent and child */const measure=useCallback(()=>{if(hasChildren&&parentRef.current){const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetLeft:childrenRef[0].current.offsetTop:0;const end=childrenRef[1].current?isHorizontal?childrenRef[1].current.offsetLeft+childrenRef[1].current.offsetWidth:childrenRef[1].current.offsetTop+childrenRef[1].current.offsetHeight:0;const childrenLength=end-start+gap;setSize({parent:parentLength,children:childrenLength});}},[]);const childrenStyles=isCanvas?{contentVisibility:\"auto\"}:{};/* Add refs to first and last child */if(hasChildren){// TODO: These conditional hooks will be unsafe if hasChildren ever changes outside the canvas.\nif(!isCanvas){/**\n             * Track whether this is the initial resize event. By default this will fire on mount,\n             * which we do in the useEffect. We should only fire it on subsequent resizes.\n             */let initialResize=useRef(true);useEffect(()=>{frame.read(measure);return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){frame.read(measure);}initialResize.current=false;});},[]);}clonedChildren=Children.map(filteredSlots,(child,index)=>{var _child_props,_child_props1,_child_props2,_child_props3;let ref;if(index===0){ref=childrenRef[0];}if(index===filteredSlots.length-1){ref=childrenRef[1];}const size={width:widthType?(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.width:\"100%\",height:heightType?(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.height:\"100%\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{ref:ref,style:size,children:/*#__PURE__*/cloneElement(child,{style:{...(_child_props2=child.props)===null||_child_props2===void 0?void 0:_child_props2.style,...size,flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},(_child_props3=child.props)===null||_child_props3===void 0?void 0:_child_props3.children)})});});}if(!isCanvas){for(let i=0;i<duplicateBy;i++){dupedChildren=[...dupedChildren,...Children.map(filteredSlots,(child,childIndex)=>{var _child_props,_child_props1,_child_props2,_child_props3,_child_props4,_child_props5;const size={width:widthType?(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.width:\"100%\",height:heightType?(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.height:\"100%\",willChange:\"transform\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{style:size,\"aria-hidden\":true,children:/*#__PURE__*/cloneElement(child,{key:i+\" \"+childIndex,style:{...(_child_props2=child.props)===null||_child_props2===void 0?void 0:_child_props2.style,width:widthType?(_child_props3=child.props)===null||_child_props3===void 0?void 0:_child_props3.width:\"100%\",height:heightType?(_child_props4=child.props)===null||_child_props4===void 0?void 0:_child_props4.height:\"100%\",flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-dupe-\"+i:undefined},(_child_props5=child.props)===null||_child_props5===void 0?void 0:_child_props5.children)},i+\"li\"+childIndex)},i+\"lg\"+childIndex);})];}}const animateToValue=size.children+size.children*Math.round(size.parent/size.children);const initialTime=useRef(null);const prevTime=useRef(null);const xOrY=useRef(0);const isHover=useRef(false);const isReducedMotion=useReducedMotion();const listRef=useRef(null);const animationRef=useRef(null);/**\n     * Setup animations\n     */if(!isCanvas){const isInView=useInView(parentRef);/**\n         * If this is an animation we can hardware accelerate, animate with WAAPI\n         */if(supportsAcceleratedAnimations){useEffect(()=>{if(isReducedMotion||!animateToValue||!speed){return;}animationRef.current=listRef.current.animate({transform:[transformer(0),transformer(animateToValue)]},{duration:Math.abs(animateToValue)/speed*1e3,iterations:Infinity,easing:\"linear\"});return()=>animationRef.current.cancel();},[hoverFactor,animateToValue,speed]);// Pause the animation when it's out of view\nuseEffect(()=>{if(!animationRef.current)return;if(isInView&&animationRef.current.playState===\"paused\"){animationRef.current.play();}else if(!isInView&&animationRef.current.playState===\"running\"){animationRef.current.pause();}},[isInView]);}else{/**\n             * If we can't accelerate this animation because we have a hoverFactor defined\n             * animate with a rAF loop.\n             */useAnimationFrame(t=>{if(!animateToValue||isReducedMotion||supportsAcceleratedAnimations){return;}/**\n                 * In case this animation is delayed from starting because we're running a bunch\n                 * of other work, we want to set an initial time rather than counting from 0.\n                 * That ensures that if the animation is delayed, it starts from the first frame\n                 * rather than jumping.\n                 */if(initialTime.current===null){initialTime.current=t;}t=t-initialTime.current;const timeSince=prevTime.current===null?0:t-prevTime.current;let delta=timeSince*(speed/1e3);if(isHover.current){delta*=hoverFactor;}xOrY.current+=delta;xOrY.current=wrap(0,animateToValue,xOrY.current);prevTime.current=t;if(!isInView)return;offset.set(xOrY.current);});}}/* Fades */const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/* Empty state */if(!hasChildren){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2728\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to infinitely loop on your page.\"})]});}return /*#__PURE__*/_jsx(\"section\",{style:{...containerStyle,opacity:opacity,WebkitMaskImage:fadeContent?fadeMask:undefined,MozMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,overflow:overflow?\"visible\":\"hidden\",padding:paddingValue},ref:parentRef,children:/*#__PURE__*/_jsxs(motion.ul,{ref:listRef,style:{...containerStyle,gap:gap,top:direction===\"bottom\"&&isValidNumber(animateToValue)?-animateToValue:undefined,left:direction===\"right\"&&isValidNumber(animateToValue)?-animateToValue:undefined,placeItems:alignment,position:\"relative\",flexDirection:isHorizontal?\"row\":\"column\",...style,willChange:isCanvas?\"auto\":\"transform\",transform:supportsAcceleratedAnimations?transformer(0):transform},onMouseEnter:()=>{isHover.current=true;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=hoverFactor;}},onMouseLeave:()=>{isHover.current=false;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=1;}},children:[clonedChildren,dupedChildren]})});}/* Default Properties */Ticker.defaultProps={gap:10,padding:10,sizingOptions:{widthType:true,heightType:true},fadeOptions:{fadeContent:true,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},direction:true};/* Property Controls */addPropertyControls(Ticker,{slots:{type:ControlType.Array,title:\"Children\",control:{type:ControlType.ComponentInstance}},speed:{type:ControlType.Number,title:\"Speed\",min:0,max:1e3,defaultValue:100,unit:\"%\",displayStepper:true,step:5},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\",\"right\",\"top\",\"bottom\"],optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\"],optionTitles:[\"Left\",\"Right\",\"Top\",\"Bottom\"],defaultValue:\"left\",displaySegmentedControl:true},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{direction:{right:[\"align-top\",\"align-middle\",\"align-bottom\"],left:[\"align-top\",\"align-middle\",\"align-bottom\"],top:[\"align-left\",\"align-center\",\"align-right\"],bottom:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},gap:{type:ControlType.Number,title:\"Gap\"},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},sizingOptions:{type:ControlType.Object,title:\"Sizing\",controls:{widthType:{type:ControlType.Boolean,title:\"Width\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true},heightType:{type:ControlType.Boolean,title:\"Height\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true}}},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:true},overflow:{type:ControlType.Boolean,title:\"Overflow\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false,hidden(props){return props.fadeContent===true;}},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.05,hidden(props){return props.fadeContent===false;}}}},hoverFactor:{type:ControlType.Number,title:\"Hover\",min:0,max:1,unit:\"x\",defaultValue:1,step:.1,displayStepper:true,description:\"Slows down the speed while you are hovering.\"}});/* Placeholder Styles */const containerStyle={display:\"flex\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Styles */const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:150,lineHeight:1.5,textAlign:\"center\"};/* Clamp function, used for fadeInset */const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);const isValidNumber=value=>typeof value===\"number\"&&!isNaN(value);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Ticker\",\"slots\":[],\"annotations\":{\"framerDisableUnlink\":\"*\",\"framerIntrinsicWidth\":\"400\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"200\",\"framerSupportedLayoutHeight\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "// Generated by Framer (d5ca742)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"Inter\",\"Inter-Bold\",\"Inter-BoldItalic\",\"Inter-Italic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/H89BbHkbHDzlxZzxi8uPzTsp90.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/u6gJwDuwB143kpNK1T1MDKDWkMc.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/43sJ6MfOPh1LCJt46OvyDuSbA6o.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/wccHG0r4gBDAIRhfHiOlq6oEkqw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/WZ367JPwf9bRW6LdTHN8rXgSjw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/QxmhnWTzLtyjIiZcfaLIJ8EFBXU.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/2A4Xx7CngadFGlVV4xrO06OBHY.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/CfMzU8w2e7tHgF4T4rATMPuWosA.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/867QObYax8ANsfX4TGEVU9YiCM.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Oyn2ZbENFdnW7mt2Lzjk1h9Zb9k.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/cdAe8hgZ1cMyLu9g005pAW3xMo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/DOfvtmE1UplCq161m6Hj8CSQYg.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vFzuJY0c65av44uhEKB6vyjFMg.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/tKtBcDnBMevsEEJKdNGhhkLzYo.woff2\",weight:\"400\"}]}];export const css=['.framer-tyWew .framer-styles-preset-ag3p86:not(.rich-text-wrapper), .framer-tyWew .framer-styles-preset-ag3p86.rich-text-wrapper h1 { --framer-font-family: \"Inter\", sans-serif; --framer-font-family-bold: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 64px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: 0px; --framer-line-height: 115%; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: #333333; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }','@media (max-width: 1439px) and (min-width: 1000px) { .framer-tyWew .framer-styles-preset-ag3p86:not(.rich-text-wrapper), .framer-tyWew .framer-styles-preset-ag3p86.rich-text-wrapper h1 { --framer-font-family: \"Inter\", sans-serif; --framer-font-family-bold: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 60px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: 0px; --framer-line-height: 115%; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: #333333; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 999px) and (min-width: 810px) { .framer-tyWew .framer-styles-preset-ag3p86:not(.rich-text-wrapper), .framer-tyWew .framer-styles-preset-ag3p86.rich-text-wrapper h1 { --framer-font-family: \"Inter\", sans-serif; --framer-font-family-bold: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 48px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: 0px; --framer-line-height: 115%; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: #333333; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-tyWew .framer-styles-preset-ag3p86:not(.rich-text-wrapper), .framer-tyWew .framer-styles-preset-ag3p86.rich-text-wrapper h1 { --framer-font-family: \"Inter\", sans-serif; --framer-font-family-bold: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 42px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: 0px; --framer-line-height: 115%; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: #333333; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }'];export const className=\"framer-tyWew\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{fontStore}from\"framer\";fontStore.loadFonts([\"Inter\",\"Inter-Bold\",\"Inter-BoldItalic\",\"Inter-Italic\"]);export const fonts=[];export const css=['.framer-dbfgI .framer-styles-preset-avhvi7:not(.rich-text-wrapper), .framer-dbfgI .framer-styles-preset-avhvi7.rich-text-wrapper p { --framer-font-family: \"Inter\", sans-serif; --framer-font-family-bold: \"Inter-Bold\", \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Inter-BoldItalic\", \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-italic: \"Inter-Italic\", \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-size: 20px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: 0px; --framer-line-height: 170%; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: #333333; --framer-text-decoration: none; --framer-text-transform: none; }'];export const className=\"framer-dbfgI\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (01933e6)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"Inter\",\"Inter-Bold\",\"Inter-BoldItalic\",\"Inter-Italic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/H89BbHkbHDzlxZzxi8uPzTsp90.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/u6gJwDuwB143kpNK1T1MDKDWkMc.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/43sJ6MfOPh1LCJt46OvyDuSbA6o.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/wccHG0r4gBDAIRhfHiOlq6oEkqw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/WZ367JPwf9bRW6LdTHN8rXgSjw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/QxmhnWTzLtyjIiZcfaLIJ8EFBXU.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/2A4Xx7CngadFGlVV4xrO06OBHY.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/CfMzU8w2e7tHgF4T4rATMPuWosA.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/867QObYax8ANsfX4TGEVU9YiCM.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Oyn2ZbENFdnW7mt2Lzjk1h9Zb9k.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/cdAe8hgZ1cMyLu9g005pAW3xMo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/DOfvtmE1UplCq161m6Hj8CSQYg.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vFzuJY0c65av44uhEKB6vyjFMg.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/tKtBcDnBMevsEEJKdNGhhkLzYo.woff2\",weight:\"400\"}]}];export const css=['.framer-77dKI .framer-styles-preset-12bf5sf:not(.rich-text-wrapper), .framer-77dKI .framer-styles-preset-12bf5sf.rich-text-wrapper h1 { --framer-font-family: \"Inter\", sans-serif; --framer-font-family-bold: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 42px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: 0px; --framer-line-height: 115%; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: #333333; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }','@media (max-width: 1439px) and (min-width: 1000px) { .framer-77dKI .framer-styles-preset-12bf5sf:not(.rich-text-wrapper), .framer-77dKI .framer-styles-preset-12bf5sf.rich-text-wrapper h1 { --framer-font-family: \"Inter\", sans-serif; --framer-font-family-bold: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 38px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: 0px; --framer-line-height: 115%; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: #333333; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 999px) and (min-width: 810px) { .framer-77dKI .framer-styles-preset-12bf5sf:not(.rich-text-wrapper), .framer-77dKI .framer-styles-preset-12bf5sf.rich-text-wrapper h1 { --framer-font-family: \"Inter\", sans-serif; --framer-font-family-bold: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 34px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: 0px; --framer-line-height: 115%; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: #333333; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-77dKI .framer-styles-preset-12bf5sf:not(.rich-text-wrapper), .framer-77dKI .framer-styles-preset-12bf5sf.rich-text-wrapper h1 { --framer-font-family: \"Inter\", sans-serif; --framer-font-family-bold: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 26px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: 0px; --framer-line-height: 115%; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: #333333; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }'];export const className=\"framer-77dKI\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (ddd30d5)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"FS;Clash Grotesk-regular\",\"FS;Clash Grotesk-bold\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Clash Grotesk\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/O462VY6O6FTQCS72XVMTQHXAM4NN5CY3/TWF57ITZORMJ3MEWLQQIVO6BMXIB6FUR/MJQFMMOTEGNXDVM7HBBDTQHTVB2M7Y6G.woff2\",weight:\"400\"},{family:\"Clash Grotesk\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/P6VJ47S3OYMUC7HYSJLTK7PEIK5O2NPQ/TK62VLUWA76PMTK2XWBNDZB7QVXJGYE3/I5W5NEJGYVFUC5I4XOXVET63OE5PSVHJ.woff2\",weight:\"700\"}]}];export const css=['.framer-rCSwL .framer-styles-preset-l0ldrm:not(.rich-text-wrapper), .framer-rCSwL .framer-styles-preset-l0ldrm.rich-text-wrapper h4 { --framer-font-family: \"Clash Grotesk\", \"Clash Grotesk Placeholder\", sans-serif; --framer-font-family-bold: \"Clash Grotesk\", \"Clash Grotesk Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 32px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-letter-spacing: -0.5px; --framer-line-height: 140%; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: var(--token-c14065e7-5a4d-4109-85cf-bca8f791260a, #ffffff); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }'];export const className=\"framer-rCSwL\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (ca9141d)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,PropertyOverrides,RichText,SVG,useCustomCursors,useHydratedBreakpointVariants,useLocaleInfo,useRouteElementId,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/XVUmpmPn1EPL0dzocT35/Ticker.js\";import{Icon as Feather}from\"https://framerusercontent.com/modules/f0DboytQenYh21kfme7W/zb1zVBMZJKgPMiedOi0y/Feather.js\";import Navigation from\"#framer/local/canvasComponent/ENhjKlWGe/ENhjKlWGe.js\";import PrimaryButton from\"#framer/local/canvasComponent/J5H6mw4qz/J5H6mw4qz.js\";import ContactSection from\"#framer/local/canvasComponent/MqxOTXRyk/MqxOTXRyk.js\";import*as sharedStyle5 from\"#framer/local/css/nJwfhQ0mx/nJwfhQ0mx.js\";import*as sharedStyle3 from\"#framer/local/css/ofR0ztJAv/ofR0ztJAv.js\";import*as sharedStyle from\"#framer/local/css/Q97DI0_Bf/Q97DI0_Bf.js\";import*as sharedStyle1 from\"#framer/local/css/r8D2IYnYW/r8D2IYnYW.js\";import*as sharedStyle4 from\"#framer/local/css/UY6lh5vC9/UY6lh5vC9.js\";import*as sharedStyle6 from\"#framer/local/css/vW7JZDbZa/vW7JZDbZa.js\";import*as sharedStyle2 from\"#framer/local/css/wS3BoxK61/wS3BoxK61.js\";import metadataProvider from\"#framer/local/webPageMetadata/JWuExVL3X/JWuExVL3X.js\";const NavigationFonts=getFonts(Navigation);const ContainerWithFX=withFX(Container);const PrimaryButtonFonts=getFonts(PrimaryButton);const FeatherFonts=getFonts(Feather);const MotionDivWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.div);const TickerFonts=getFonts(Ticker);const MotionDivWithFX=withFX(motion.div);const RichTextWithFX=withFX(RichText);const ContactSectionFonts=getFonts(ContactSection);const breakpoints={G0gMHLfJo:\"(min-width: 810px) and (max-width: 1439px)\",V0bY9AVKg:\"(max-width: 809px)\",V8ide3R6H:\"(min-width: 1440px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-VzyQx\";const variantClassNames={G0gMHLfJo:\"framer-v-1360rd0\",V0bY9AVKg:\"framer-v-7asqo1\",V8ide3R6H:\"framer-v-42jx4r\"};const transition1={damping:35,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:-100};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const transition2={damping:61,delay:.3,mass:1,stiffness:400,type:\"spring\"};const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const animation2={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-40};const transition3={delay:.6,duration:.6,ease:[.44,0,.56,1],type:\"tween\"};const animation3={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3,x:0,y:0};const animation4={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:40};const animation5={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:50};const transition4={damping:60,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation6={filter:\"blur(10px)\",opacity:.001,rotate:0,scale:1,skewX:0,skewY:0,x:0,y:10};const transition5={damping:40,delay:.03,mass:1,stiffness:400,type:\"spring\"};const textEffect={effect:animation6,tokenization:\"character\",transition:transition5,trigger:\"onInView\",type:\"appear\"};const transition6={damping:60,delay:0,mass:1.2,stiffness:350,type:\"spring\"};const animation7={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition6,x:0,y:50};const transition7={damping:60,delay:.3,mass:1.2,stiffness:350,type:\"spring\"};const animation8={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition7,x:0,y:50};const transition8={damping:60,delay:.6,mass:1.2,stiffness:350,type:\"spring\"};const animation9={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition8,x:0,y:50};const metadata=metadataProvider();const humanReadableVariantMap={Desktop:\"V8ide3R6H\",Phone:\"V0bY9AVKg\",Tablet:\"G0gMHLfJo\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"V8ide3R6H\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useEffect(()=>{const metadata1=metadataProvider(undefined,activeLocale);if(metadata1.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata1.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata1.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata1=metadataProvider(undefined,activeLocale);document.title=metadata1.title||\"\";if(metadata1.viewport){var _document_querySelector;(_document_querySelector=document.querySelector('meta[name=\"viewport\"]'))===null||_document_querySelector===void 0?void 0:_document_querySelector.setAttribute(\"content\",metadata1.viewport);}const bodyCls=metadata1.bodyClassName;if(bodyCls){const body=document.body;body.classList.forEach(c=>c.startsWith(\"framer-body-\")&&body.classList.remove(c));body.classList.add(`${metadata1.bodyClassName}-framer-VzyQx`);}return()=>{if(bodyCls)document.body.classList.remove(`${metadata1.bodyClassName}-framer-VzyQx`);};},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const ref1=React.useRef(null);const isDisplayed=()=>{if(!isBrowser())return true;if([\"G0gMHLfJo\",\"V0bY9AVKg\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"G0gMHLfJo\")return true;return false;};const isDisplayed2=()=>{if(!isBrowser())return true;if(baseVariant===\"V0bY9AVKg\")return true;return false;};const elementId=useRouteElementId(\"Vhu0eurlg\");const ref2=React.useRef(null);const elementId1=useRouteElementId(\"BqwnvKcyg\");const ref3=React.useRef(null);const elementId2=useRouteElementId(\"QUBiDXYzn\");const ref4=React.useRef(null);const ref5=React.useRef(null);const isDisplayed3=()=>{if(!isBrowser())return true;if(baseVariant===\"V0bY9AVKg\")return false;return true;};const ref6=React.useRef(null);const ref7=React.useRef(null);const ref8=React.useRef(null);const elementId3=useRouteElementId(\"ECgDW8qnT\");const elementId4=useRouteElementId(\"smhvM24Mi\");const elementId5=useRouteElementId(\"wnCJP1mAY\");const elementId6=useRouteElementId(\"F6LweTtwm\");const elementId7=useRouteElementId(\"rBtijvTXx\");const ref9=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className];useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"V8ide3R6H\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:[/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-42jx4r\",className),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:64,width:\"100vw\",y:0,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:false,__framer__scrollDirection:{direction:\"down\",target:animation},__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1c9i6ru-container\",layoutScroll:true,style:{transformPerspective:1200},transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{V0bY9AVKg:{variant:\"m67dvRxGy\"}},children:/*#__PURE__*/_jsx(Navigation,{height:\"100%\",id:\"bAqZXJPYX\",layoutId:\"bAqZXJPYX\",style:{width:\"100%\"},variant:\"ouQ_27hdZ\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(Image,{as:\"section\",background:{alt:\"header background image\",fit:\"fill\",loading:getLoadingLazyAtYPosition(0),pixelHeight:1414,pixelWidth:2200,sizes:\"100vw\",src:\"https://framerusercontent.com/images/Nmn7NzPdcc4xAOzb7Nmte32xRc.webp\",srcSet:\"https://framerusercontent.com/images/Nmn7NzPdcc4xAOzb7Nmte32xRc.webp?scale-down-to=512 512w,https://framerusercontent.com/images/Nmn7NzPdcc4xAOzb7Nmte32xRc.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/Nmn7NzPdcc4xAOzb7Nmte32xRc.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/Nmn7NzPdcc4xAOzb7Nmte32xRc.webp 2200w\"},className:\"framer-aj1pg7\",\"data-framer-name\":\"Hero section\",name:\"Hero section\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-6n1sj7\",\"data-framer-name\":\"Container\",name:\"Container\",children:[/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation1,className:\"framer-807ktm\",\"data-framer-appear-id\":\"807ktm\",\"data-framer-name\":\"Top content\",initial:animation2,name:\"Top content\",optimized:true,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-18b6xhy\",\"data-framer-name\":\"Main headline\",name:\"Main headline\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{className:\"framer-styles-preset-ag3p86\",\"data-styles-preset\":\"Q97DI0_Bf\",style:{\"--framer-text-color\":\"var(--token-c14065e7-5a4d-4109-85cf-bca8f791260a, rgb(255, 255, 255))\"},children:[\"\u0426\u0438\u0444\u0440\u043E\u0432\u044B\u0435 \u0440\u0435\u0448\u0435\u043D\u0438\u044F\",/*#__PURE__*/_jsx(\"br\",{}),\"\u0434\u043B\u044F \u0431\u0438\u0437\u043D\u0435\u0441\u0430\"]})}),className:\"framer-689cry\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-11hjlot\",\"data-framer-name\":\"Buttons\",name:\"Buttons\",children:[isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:47,y:535,children:/*#__PURE__*/_jsx(Container,{className:\"framer-5wv7u6-container hidden-1360rd0 hidden-7asqo1\",children:/*#__PURE__*/_jsx(PrimaryButton,{BlJNMfRrN:true,fzPQj5vxM:\"#contact\",height:\"100%\",icFgveKzp:\"arrow-right\",id:\"bVu92Zmwr\",layoutId:\"bVu92Zmwr\",qWQ35JEj6:\"\u041E\u0431\u0441\u0443\u0434\u0438\u0442\u044C \u0437\u0430\u0434\u0430\u0447\u0443\",variant:\"eqjrLW3WJ\",width:\"100%\"})})}),isDisplayed1()&&/*#__PURE__*/_jsx(Link,{href:\"#contact\",nodeId:\"heIUfPZdY\",openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsxs(\"a\",{className:\"framer-188eumb hidden-42jx4r hidden-7asqo1 framer-1a8c6kr\",\"data-border\":true,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"170%\",\"--framer-text-color\":\"var(--token-c14065e7-5a4d-4109-85cf-bca8f791260a, rgb(255, 255, 255))\"},children:\"\u041E\u0431\u0441\u0443\u0434\u0438\u0442\u044C \u0437\u0430\u0434\u0430\u0447\u0443\"})}),className:\"framer-v90ksw\",fonts:[\"Inter-Medium\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-fklbsd\",\"data-framer-name\":\"Button Icon\",name:\"Button Icon\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1x74zgt-container\",children:/*#__PURE__*/_jsx(Feather,{color:\"var(--token-c14065e7-5a4d-4109-85cf-bca8f791260a, rgb(255, 255, 255))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"arrow-right\",id:\"XxuitUo5J\",layoutId:\"XxuitUo5J\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-st92ez\",\"data-framer-name\":\"Hover Fill\",name:\"Hover Fill\"})]})}),isDisplayed2()&&/*#__PURE__*/_jsx(Link,{href:\"#contact\",nodeId:\"hmn_0OLDP\",openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsxs(\"a\",{className:\"framer-y2gagl hidden-42jx4r hidden-1360rd0 framer-1a8c6kr\",\"data-border\":true,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"170%\",\"--framer-text-color\":\"var(--token-c14065e7-5a4d-4109-85cf-bca8f791260a, rgb(255, 255, 255))\"},children:\"\u041E\u0431\u0441\u0443\u0434\u0438\u0442\u044C \u0437\u0430\u0434\u0430\u0447\u0443\"})}),className:\"framer-ajksia\",fonts:[\"Inter-Medium\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1jcir0y\",\"data-framer-name\":\"Button Icon\",name:\"Button Icon\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-sc0kyy-container\",children:/*#__PURE__*/_jsx(Feather,{color:\"var(--token-c14065e7-5a4d-4109-85cf-bca8f791260a, rgb(255, 255, 255))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"arrow-right\",id:\"RMe6_Dz_V\",layoutId:\"RMe6_Dz_V\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-8o734u\",\"data-framer-name\":\"Hover Fill\",name:\"Hover Fill\"})]})})]})]}),/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation3,className:\"framer-b61ygv\",\"data-framer-appear-id\":\"b61ygv\",\"data-framer-name\":\"Bottom content\",initial:animation4,name:\"Bottom content\",optimized:true,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{V0bY9AVKg:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"RlM7Q2xhc2ggR3JvdGVzay1yZWd1bGFy\",\"--framer-font-family\":'\"Clash Grotesk\", \"Clash Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"115%\",\"--framer-text-color\":\"var(--token-c14065e7-5a4d-4109-85cf-bca8f791260a, rgb(255, 255, 255))\"},children:\"\u0410\u0432\u0442\u043E\u043C\u0430\u0442\u0438\u0437\u0430\u0446\u0438\u044F, \u0438\u043D\u0442\u0435\u0433\u0440\u0430\u0446\u0438\u044F \u0438 \u0440\u0430\u0437\u0440\u0430\u0431\u043E\u0442\u043A\u0430\"})}),fonts:[\"FS;Clash Grotesk-regular\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"RlM7Q2xhc2ggR3JvdGVzay1saWdodA==\",\"--framer-font-family\":'\"Clash Grotesk\", \"Clash Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"42px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"115%\",\"--framer-text-color\":\"var(--token-c14065e7-5a4d-4109-85cf-bca8f791260a, rgb(255, 255, 255))\"},children:\"\u0410\u0432\u0442\u043E\u043C\u0430\u0442\u0438\u0437\u0430\u0446\u0438\u044F, \u0438\u043D\u0442\u0435\u0433\u0440\u0430\u0446\u0438\u044F \u0438 \u0440\u0430\u0437\u0440\u0430\u0431\u043E\u0442\u043A\u0430\"})}),className:\"framer-owr0fk\",fonts:[\"FS;Clash Grotesk-light\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{V0bY9AVKg:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-yq35cv\",\"data-styles-preset\":\"wS3BoxK61\",style:{\"--framer-text-color\":\"var(--token-c14065e7-5a4d-4109-85cf-bca8f791260a, rgb(255, 255, 255))\"},children:\"GGroupp \u2014 \u0430\u0432\u0442\u043E\u0440\u0438\u0437\u043E\u0432\u0430\u043D\u043D\u044B\u0439 \u043F\u0430\u0440\u0442\u043D\u0435\u0440 \u042F\u043D\u0434\u0435\u043A\u0441. \u0412\u043D\u0435\u0434\u0440\u044F\u0435\u043C \u042F\u043D\u0434\u0435\u043A\u0441 \u0422\u0440\u0435\u043A\u0435\u0440 \u0438 \u0440\u0430\u0441\u0448\u0438\u0440\u044F\u0435\u043C \u0435\u0433\u043E \u0432\u043E\u0437\u043C\u043E\u0436\u043D\u043E\u0441\u0442\u0438 \u0437\u0430 \u0441\u0447\u0435\u0442 \u043A\u0430\u0441\u0442\u043E\u043C\u043D\u043E\u0439 \u0440\u0430\u0437\u0440\u0430\u0431\u043E\u0442\u043A\u0438.\\xa0\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-avhvi7\",\"data-styles-preset\":\"r8D2IYnYW\",style:{\"--framer-text-color\":\"var(--token-c14065e7-5a4d-4109-85cf-bca8f791260a, rgb(255, 255, 255))\"},children:\"GGroupp \u2014 \u0430\u0432\u0442\u043E\u0440\u0438\u0437\u043E\u0432\u0430\u043D\u043D\u044B\u0439 \u043F\u0430\u0440\u0442\u043D\u0435\u0440 \u042F\u043D\u0434\u0435\u043A\u0441. \u0412\u043D\u0435\u0434\u0440\u044F\u0435\u043C \u042F\u043D\u0434\u0435\u043A\u0441 \u0422\u0440\u0435\u043A\u0435\u0440 \u0438 \u0440\u0430\u0441\u0448\u0438\u0440\u044F\u0435\u043C \u0435\u0433\u043E \u0432\u043E\u0437\u043C\u043E\u0436\u043D\u043E\u0441\u0442\u0438 \u0437\u0430 \u0441\u0447\u0435\u0442 \u043A\u0430\u0441\u0442\u043E\u043C\u043D\u043E\u0439 \u0440\u0430\u0437\u0440\u0430\u0431\u043E\u0442\u043A\u0438.\\xa0\"})}),className:\"framer-6w4b09\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1drako2\",\"data-framer-name\":\"Glow\",name:\"Glow\",style:{rotate:90}})]}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-hnya06\",\"data-framer-name\":\"Ticker section\",name:\"Ticker section\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-xf9p6l\",\"data-framer-name\":\"Container\",name:\"Container\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ow2oco-container\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:100,height:\"100%\",hoverFactor:.5,id:\"jJwlE0sP6\",layoutId:\"jJwlE0sP6\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-7250c2\",\"data-framer-name\":\"logo1\",name:\"logo1\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-12wf4oh\",\"data-framer-name\":\"\u041F\u043E\u043B\u0438\u043F\u043B\u0430\u0441\u0442\u0438\u043A\",layout:\"position\",name:\"\u041F\u043E\u043B\u0438\u043F\u043B\u0430\u0441\u0442\u0438\u043A\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 196 40\"><path d=\"M 24.044 27.12 L 26.7 27.12 L 26.7 25.631 C 25.116 25.557 24.044 25.569 24.044 27.12 Z\" fill=\"rgb(0, 85, 147)\"></path><path d=\"M 53.16 6.658 C 47.527 3.145 39.588 1.157 30.811 1.157 L 29.868 1.157 C 27.841 1.188 25.881 1.329 23.988 1.569 C 21.77 1.846 19.618 2.271 17.572 2.818 C 12.191 4.277 7.655 6.634 4.543 9.717 C 1.664 12.566 0 16.043 0 20.006 C 0 23.975 1.664 27.452 4.543 30.302 C 5.609 31.36 6.848 32.338 8.228 33.218 L 8.228 20.08 C 8.228 17.631 11.815 15.643 16.574 15.342 L 16.574 10.191 C 16.574 9.286 17.079 8.443 17.936 7.729 C 19.618 6.332 22.676 5.403 26.22 5.403 C 27.668 5.403 29.049 5.569 30.263 5.834 C 33.585 6.585 35.872 8.24 35.872 10.191 C 35.872 12.148 33.585 13.803 30.263 14.554 C 29.049 14.825 27.674 14.978 26.22 14.978 C 22.959 14.978 20.118 14.154 18.373 13.009 L 18.373 15.311 C 23.526 15.44 27.545 17.502 27.545 20.086 C 27.545 22.683 23.526 24.745 18.373 24.874 L 18.373 27.828 C 18.373 28.203 18.515 28.498 18.904 28.498 L 21.159 28.511 L 21.159 29.883 L 17.93 29.883 C 17.11 29.871 16.555 29.237 16.555 28.511 L 16.555 24.825 C 13.856 24.646 11.532 23.895 10.028 22.898 L 10.028 34.271 C 12.265 35.465 14.799 36.449 17.566 37.194 C 19.612 37.742 21.763 38.16 23.995 38.437 C 25.874 38.671 27.841 38.812 29.862 38.843 L 29.862 38.837 L 30.805 38.837 C 39.588 38.837 47.527 36.855 53.167 33.342 C 58.393 30.086 61.617 25.508 61.617 20 C 61.623 14.505 58.399 9.926 53.16 6.658 Z M 33.986 14.129 L 34.004 14.129 C 36.149 14.129 37.899 15.52 37.899 17.212 C 37.899 18.874 36.143 20.265 34.004 20.271 L 33.986 20.271 C 31.835 20.271 30.072 18.886 30.072 17.212 C 30.072 15.514 31.835 14.129 33.986 14.129 Z M 28.414 29.889 L 26.707 29.889 L 26.707 28.505 L 24.05 28.505 L 24.05 29.889 L 22.219 29.889 L 22.219 27.637 C 22.219 24.978 24.05 24.252 26.713 24.252 L 28.42 24.252 L 28.42 29.889 Z M 32.815 29.889 L 29.733 29.889 L 29.733 28.505 L 32.901 28.505 C 33.554 28.48 33.616 27.766 32.87 27.766 L 31.508 27.766 C 30.226 27.766 29.32 27.298 29.32 26.135 C 29.32 25.003 30.189 24.252 31.459 24.252 L 34.547 24.252 L 34.547 25.631 L 31.403 25.631 C 30.75 25.631 30.756 26.394 31.372 26.394 L 32.956 26.394 C 35.742 26.314 35.872 30.037 32.815 29.889 Z M 40.895 25.643 L 39.138 25.643 L 39.138 29.889 L 37.443 29.889 L 37.443 25.643 L 35.607 25.643 L 35.607 24.252 L 40.889 24.252 L 40.889 25.643 Z M 43.539 29.852 L 41.85 29.852 L 41.85 24.215 L 43.539 24.215 Z M 43.675 19.975 L 40.34 19.975 C 39.496 19.975 38.916 19.329 38.916 18.578 L 38.916 14.338 L 40.611 14.338 L 40.611 17.908 C 40.611 18.302 40.667 18.572 41.061 18.572 L 43.681 18.572 L 43.681 19.975 Z M 49.635 25.631 L 48.125 25.631 C 46.578 25.631 45.875 26.203 45.875 27.132 C 45.875 28.062 46.578 28.634 48.125 28.634 L 49.635 28.634 L 49.635 30.006 L 47.884 30.006 C 45.419 29.938 44.34 28.818 44.34 27.126 C 44.34 25.44 45.419 24.314 47.884 24.246 L 49.635 24.246 Z M 47.416 18.474 L 47.416 19.963 L 45.715 19.963 L 45.715 18.474 C 43.934 18.431 43.49 16.911 43.496 15.637 L 43.502 14.326 L 45.191 14.326 L 45.191 15.637 C 45.191 17.095 45.881 17.132 46.572 17.145 C 47.256 17.126 47.952 17.071 47.952 15.637 L 47.952 14.326 L 49.641 14.326 L 49.647 15.637 C 49.635 16.911 49.191 18.425 47.416 18.474 Z\" fill=\"rgb(0, 85, 147)\"></path><path d=\"M 33.998 18.892 C 35.206 18.892 36.205 18.129 36.205 17.212 C 36.205 16.277 35.206 15.52 33.998 15.52 C 32.784 15.52 31.779 16.271 31.779 17.212 C 31.785 18.129 32.784 18.892 33.998 18.892 Z M 30.269 12.825 C 32.439 12.283 33.881 11.323 33.881 10.197 C 33.881 9.083 32.439 8.123 30.269 7.582 C 29.129 7.286 27.754 7.12 26.281 7.12 C 22.022 7.12 18.663 8.48 18.663 10.197 C 18.663 11.908 22.022 13.274 26.281 13.274 C 27.754 13.274 29.135 13.12 30.269 12.825 Z M 10.318 20.092 C 10.318 21.618 12.98 22.874 16.568 23.12 L 16.568 21.052 L 17.942 21.052 L 18.386 21.04 L 18.386 23.163 C 22.429 23.071 25.56 21.742 25.56 20.086 C 25.56 18.443 22.429 17.12 18.386 17.022 L 18.386 19.785 L 16.58 19.785 L 16.58 17.052 C 12.98 17.323 10.318 18.566 10.318 20.092 Z M 162.384 30.025 L 165.373 30.025 L 165.373 27.631 L 162.92 27.625 C 161.583 27.625 159.703 27.058 159.703 24.972 C 159.703 22.886 161.583 22.32 162.92 22.32 L 165.373 22.32 L 165.373 19.926 L 162.384 19.926 C 155.432 20.105 155.352 29.84 162.384 30.025 Z M 166.434 22.369 L 169.657 22.369 L 169.657 29.877 L 172.443 29.877 L 172.443 22.369 L 175.667 22.369 L 175.667 19.914 L 166.434 19.914 Z M 196 21.668 L 196 19.926 L 192.961 19.926 C 192.961 21.84 193.202 23.391 191.704 23.391 L 190.058 23.391 L 190.058 19.926 L 187.272 19.926 L 187.272 29.889 L 190.058 29.889 L 190.083 25.834 L 191.753 25.834 C 192.382 25.834 192.98 26.203 192.974 27.175 L 192.961 29.871 L 196 29.889 L 196 27.348 C 196 26.394 195.852 25.618 194.527 24.898 C 195.864 24.443 196 22.64 196 21.668 Z M 88.94 19.926 L 82.234 19.926 L 82.234 29.877 L 85.02 29.877 L 85.02 22.369 L 87.541 22.369 C 88.188 22.369 88.28 22.843 88.28 23.551 L 88.28 29.877 L 91.078 29.877 L 91.078 22.135 C 90.98 20.966 90.148 20.018 88.94 19.926 Z M 132.947 19.926 L 126.241 19.926 L 126.241 29.877 L 129.027 29.877 L 129.027 22.369 L 131.548 22.369 C 132.195 22.369 132.288 22.843 132.288 23.551 L 132.288 29.877 L 135.086 29.877 L 135.086 22.135 C 134.987 20.966 134.149 20.018 132.947 19.926 Z M 106.986 12.8 L 108.392 12.8 C 108.755 12.8 108.805 13.065 108.805 13.458 L 108.805 16.991 L 110.364 16.991 L 110.364 12.671 C 110.315 12.018 109.846 11.489 109.174 11.434 L 105.427 11.434 L 105.427 16.991 L 106.98 16.991 L 106.98 12.8 Z M 103.054 11.434 L 99.307 11.434 L 99.307 16.991 L 100.86 16.991 L 100.86 12.8 L 102.265 12.8 C 102.629 12.8 102.678 13.065 102.678 13.458 L 102.678 16.991 L 104.237 16.991 L 104.237 12.671 C 104.194 12.012 103.726 11.489 103.054 11.434 Z M 105.242 24.738 L 105.242 29.877 L 108.034 29.877 L 108.034 24.929 C 108.034 22.935 108.564 22.382 110.062 22.382 L 110.062 22.369 L 111.295 22.369 L 111.295 29.877 L 114.081 29.877 L 114.081 19.926 L 109.797 19.926 C 106.536 19.865 105.242 22.068 105.242 24.738 Z M 136.738 24.738 L 136.738 29.877 L 139.53 29.877 L 139.53 24.929 C 139.53 22.935 140.06 22.382 141.558 22.382 L 141.558 22.369 L 142.784 22.369 L 142.784 29.877 L 145.57 29.877 L 145.57 19.926 L 141.286 19.926 C 138.026 19.865 136.738 22.068 136.738 24.738 Z\" fill=\"rgb(0, 85, 147)\"></path><path d=\"M 147.234 24.738 L 147.234 29.877 L 150.026 29.877 L 150.026 27.329 L 153.287 27.329 L 153.287 29.877 L 156.073 29.877 L 156.073 19.926 L 151.789 19.926 C 148.529 19.865 147.234 22.068 147.234 24.738 Z M 152.06 22.369 L 153.293 22.369 L 153.293 24.868 L 150.032 24.868 C 150.045 22.923 150.581 22.382 152.066 22.382 L 152.066 22.369 Z M 116.552 16.991 L 116.552 11.44 L 114.161 11.44 C 112.336 11.409 111.615 12.64 111.615 14.129 L 111.615 16.997 L 113.181 16.997 L 113.181 15.569 L 114.999 15.569 L 114.999 16.991 Z M 113.175 14.197 C 113.181 13.108 113.477 12.806 114.309 12.806 L 114.309 12.8 L 114.999 12.8 L 114.999 14.197 Z M 121.797 27.428 L 119.276 27.428 L 119.276 27.415 C 118.629 27.415 118.537 26.948 118.537 26.246 L 118.537 19.926 L 115.739 19.926 L 115.739 27.668 C 115.831 28.837 116.669 29.785 117.871 29.883 L 124.577 29.883 L 124.577 19.932 L 121.791 19.932 L 121.791 27.428 Z M 182.829 27.428 L 180.308 27.428 L 180.308 27.415 C 179.661 27.415 179.568 26.948 179.568 26.246 L 179.568 19.926 L 176.776 19.926 L 176.776 27.668 C 176.868 28.837 177.701 29.785 178.909 29.883 L 185.614 29.883 L 185.614 19.932 L 182.829 19.932 Z M 96.009 15.618 L 96.009 15.625 L 93.038 15.625 L 93.045 16.991 L 96.792 16.991 C 97.47 16.935 97.932 16.406 97.988 15.754 L 97.988 11.428 L 96.428 11.428 L 96.428 13.662 L 95.029 13.662 C 94.666 13.662 94.616 13.403 94.616 13.009 L 94.616 11.434 L 93.051 11.434 L 93.051 13.797 C 93.106 14.449 93.568 14.978 94.246 15.034 L 96.428 15.034 C 96.416 15.385 96.348 15.618 96.009 15.618 Z M 90.863 11.434 L 87.115 11.434 L 87.115 16.991 L 88.675 16.991 L 88.675 15.92 L 90.493 15.92 C 91.855 15.92 92.052 15.034 92.052 14.412 L 92.052 12.671 C 92.003 12.012 91.534 11.489 90.863 11.434 Z M 90.493 14.092 C 90.493 14.4 90.265 14.548 90.024 14.548 L 88.675 14.548 L 88.675 12.8 L 90.08 12.8 L 90.08 12.806 C 90.444 12.806 90.493 13.065 90.493 13.458 Z M 83.799 13.458 C 83.799 13.065 83.849 12.806 84.212 12.806 L 84.212 12.8 L 86.024 12.8 L 86.024 11.434 L 83.423 11.434 C 82.745 11.489 82.283 12.012 82.228 12.671 L 82.228 16.991 L 83.793 16.991 L 83.793 13.458 Z M 98.764 19.865 L 97.606 19.865 C 96.219 19.865 94.961 20.431 94.049 21.342 C 93.104 22.282 92.572 23.56 92.57 24.892 C 92.57 26.277 93.137 27.532 94.049 28.443 C 94.991 29.388 96.271 29.92 97.606 29.92 L 98.764 29.92 C 100.151 29.92 101.408 29.354 102.321 28.443 C 103.266 27.502 103.798 26.225 103.8 24.892 C 103.8 23.508 103.233 22.252 102.321 21.342 C 101.381 20.394 100.1 19.862 98.764 19.865 Z M 100.601 26.726 C 100.126 27.2 99.479 27.489 98.764 27.489 L 97.606 27.489 C 96.891 27.489 96.243 27.194 95.769 26.726 C 95.278 26.242 95.003 25.581 95.005 24.892 C 95.005 24.178 95.294 23.532 95.769 23.058 C 96.237 22.585 96.891 22.295 97.606 22.295 L 98.764 22.295 C 100.198 22.301 101.36 23.46 101.365 24.892 C 101.365 25.606 101.076 26.252 100.601 26.726 Z M 72.298 29.877 L 73.389 29.877 L 73.389 11.434 L 72.298 11.434 Z\" fill=\"rgb(0, 85, 147)\"></path></svg>',svgContentId:9389658303,withExternalLayout:true})}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1ftmdua\",\"data-framer-name\":\"logo2\",layout:\"position\",name:\"logo2\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 42 42\"><path d=\"M 39.881 2.102 L 2.099 2.102 L 2.099 39.916 L 39.881 39.916 L 39.881 2.102 Z\" fill=\"rgb(237,27,52)\"></path><path d=\"M 33.782 5.876 C 32.913 5.876 32.253 6.446 31.924 7.138 L 27.167 14.98 C 26.838 15.705 26.599 16.519 26.599 17.059 C 26.599 17.542 26.661 17.965 26.839 18.358 L 31.982 30.657 L 12 30.657 C 11.282 30.657 10.689 29.939 10.689 29.271 L 10.689 8.071 C 10.538 5.176 6.379 5.176 6.289 8.159 L 6.376 30.657 C 6.376 33.103 8.264 35.063 10.689 35.063 L 37.934 35.063 L 31.298 18.059 C 31.117 17.424 31.026 16.851 31.472 16.096 L 35.872 8.947 C 35.936 8.796 36.018 8.162 36.018 7.984 C 35.931 6.686 34.918 5.815 33.782 5.876 Z M 22.993 5.883 C 21.924 5.891 20.858 6.624 20.858 8.071 L 20.858 23.245 C 20.858 25.447 17.894 25.269 17.894 23.245 L 17.894 8.071 C 17.894 5.176 13.617 5.176 13.617 8.071 L 13.617 23.362 C 13.617 26.859 16.217 29.184 19.329 29.184 C 22.528 29.184 25.135 26.859 25.135 23.362 L 25.135 8.071 C 25.135 6.594 24.062 5.875 22.993 5.883 Z\" fill=\"rgb(255,255,255)\"></path></svg>',svgContentId:9442516462,withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-8k1atu\",\"data-framer-name\":\"logo3\",name:\"logo3\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1y11zy6\",\"data-framer-name\":\"Ruselprom\",layout:\"position\",name:\"Ruselprom\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 187 35\"><path d=\"M 16.101 0.126 L 18.432 0.126 C 19.399 0.262 20.329 0.604 21.167 1.104 C 23.892 2.711 25.973 5.273 27.28 8.127 C 28.28 10.34 28.672 12.982 27.597 15.245 C 25.411 13.791 23.69 11.777 21.964 9.826 C 20.481 8.186 18.873 6.539 16.79 5.692 C 14.849 4.874 12.637 4.962 10.648 5.558 C 7.423 6.521 4.534 8.326 1.857 10.327 C 4.183 4.618 10.003 0.613 16.101 0.126 Z M 24.752 1.852 C 27.977 3.195 30.479 5.866 32.25 8.82 C 34.164 12.037 35.244 15.836 34.873 19.59 C 34.429 21.81 32.81 23.586 31.089 24.954 C 29.082 26.52 26.72 27.68 24.207 28.133 C 22.728 28.404 21.167 28.23 19.815 27.557 C 21.845 24.333 25.223 22.349 27.66 19.481 C 29.347 17.556 30.289 14.93 29.868 12.368 C 29.275 8.431 26.985 5.044 24.752 1.852 Z M 7.149 8.263 C 9.557 6.845 12.643 6.159 15.27 7.391 C 12.951 11.029 8.95 13.143 6.529 16.69 C 5.161 18.661 4.778 21.207 5.345 23.525 C 6.171 27.097 8.243 30.21 10.34 33.157 C 7.981 32.181 5.852 30.654 4.101 28.799 C 1.884 26.445 0.496 23.364 0.17 20.147 L 0.17 17.193 C 0.428 16.035 0.892 14.932 1.511 13.922 C 2.91 11.632 4.842 9.64 7.149 8.263 Z M 7.478 19.735 C 9.145 20.924 10.583 22.39 11.926 23.93 C 13.672 25.885 15.408 27.992 17.82 29.152 C 19.675 30.074 21.851 30.131 23.831 29.621 C 27.289 28.749 30.305 26.746 33.215 24.759 C 30.916 30.083 25.69 33.998 19.956 34.786 L 16.106 34.786 C 14.965 34.521 13.902 33.986 12.956 33.304 C 10.725 31.676 8.961 29.44 7.779 26.95 C 6.728 24.716 6.377 22.023 7.478 19.735 Z M 41.162 11.435 C 41.793 10.81 42.745 10.769 43.583 10.751 C 46.008 10.756 48.433 10.747 50.861 10.756 C 51.962 10.792 53.169 10.801 54.077 11.519 C 55.073 12.266 55.343 13.587 55.37 14.765 C 55.404 16.136 55.372 17.606 54.641 18.816 C 54.052 19.79 52.833 20.132 51.76 20.155 C 49.624 20.161 47.487 20.15 45.351 20.157 C 45.347 21.421 45.356 22.687 45.344 23.954 C 43.741 23.945 42.14 23.951 40.537 23.949 C 40.534 20.433 40.541 16.917 40.532 13.404 C 40.532 12.711 40.618 11.927 41.162 11.435 Z M 45.378 14.577 C 45.306 15.338 45.36 16.104 45.351 16.867 C 46.728 16.845 48.109 16.917 49.484 16.84 C 50.775 16.802 51.081 14.57 49.824 14.224 C 48.748 13.986 47.632 14.131 46.538 14.09 C 46.128 14.101 45.48 14.047 45.378 14.577 Z M 55.091 10.749 C 56.873 10.758 58.656 10.749 60.438 10.756 C 61.434 12.599 62.467 14.423 63.445 16.279 C 64.559 14.484 65.504 12.588 66.55 10.753 C 68.296 10.753 70.04 10.751 71.786 10.753 C 69.143 15.121 66.555 19.523 63.878 23.865 C 62.161 24.067 60.361 23.892 58.615 23.945 C 59.397 22.697 60.182 21.453 60.972 20.211 C 59.018 17.053 57.025 13.918 55.091 10.749 Z M 76.899 10.792 C 79.178 10.706 81.456 10.774 83.734 10.753 L 83.734 14.095 C 81.82 14.14 79.898 13.993 77.991 14.188 C 77.094 14.262 76.317 14.962 76.145 15.841 C 75.912 16.97 75.876 18.175 76.182 19.289 C 76.51 20.338 77.708 20.614 78.673 20.646 C 80.434 20.694 82.199 20.648 83.96 20.664 L 83.96 23.949 C 81.449 23.942 78.938 23.965 76.426 23.94 C 74.922 23.913 73.301 23.491 72.316 22.275 C 71.093 20.841 71.03 18.841 71.048 17.049 C 71.086 15.422 71.242 13.599 72.443 12.371 C 73.575 11.163 75.312 10.83 76.899 10.792 Z M 85.149 10.81 C 87.747 10.814 90.344 10.801 92.94 10.814 C 94.52 10.905 96.253 11.458 97.145 12.862 C 98.078 14.373 98.012 16.22 98.003 17.93 C 97.963 19.427 97.854 21.079 96.86 22.284 C 95.818 23.55 94.088 23.92 92.525 23.949 L 84.923 23.949 L 84.923 20.664 C 86.547 20.657 88.168 20.678 89.792 20.657 C 90.723 20.608 91.739 20.567 92.518 19.982 C 92.926 19.708 93.003 19.185 93.148 18.752 C 90.575 18.721 88.003 18.75 85.433 18.736 L 85.433 15.737 C 88.003 15.728 90.573 15.755 93.143 15.723 C 92.711 14.555 91.4 14.172 90.272 14.122 C 88.567 14.058 86.857 14.113 85.149 14.095 Z M 103.497 12.149 C 104.093 10.701 105.882 10.563 107.232 10.64 C 108.276 10.667 109.53 10.989 109.979 12.049 C 111.86 16.011 113.736 19.978 115.601 23.949 C 113.892 23.935 112.18 23.976 110.47 23.926 C 109.265 20.925 108.101 17.9 106.763 14.958 C 105.409 17.907 104.297 20.963 103.035 23.951 C 101.332 23.945 99.632 23.956 97.929 23.942 C 99.795 20.016 101.64 16.079 103.497 12.149 Z M 115.955 12.511 C 115.984 11.512 116.96 10.808 117.907 10.817 C 121.508 10.805 125.111 10.805 128.711 10.814 C 129.739 10.805 130.752 11.65 130.663 12.735 C 130.675 16.473 130.663 20.211 130.668 23.949 C 129.062 23.949 127.459 23.951 125.853 23.947 C 125.851 20.884 125.865 17.821 125.849 14.756 C 125.939 14.317 125.55 13.954 125.12 13.995 C 123.913 13.968 122.701 13.968 121.494 13.995 C 121.053 13.954 120.67 14.312 120.767 14.763 C 120.754 17.823 120.763 20.884 120.765 23.945 C 119.159 23.954 117.554 23.949 115.948 23.949 C 115.955 20.136 115.937 16.324 115.955 12.511 Z M 133.718 11.132 C 134.769 10.601 135.99 10.79 137.127 10.751 C 139.525 10.794 141.93 10.663 144.324 10.832 C 145.768 10.878 147.102 11.918 147.358 13.363 C 147.664 15.064 147.687 16.92 146.971 18.526 C 146.457 19.688 145.112 20.143 143.927 20.155 C 141.774 20.159 139.62 20.155 137.469 20.152 C 137.455 21.419 137.464 22.683 137.462 23.949 L 132.706 23.949 C 132.706 20.361 132.706 16.77 132.704 13.182 C 132.684 12.393 132.973 11.51 133.718 11.132 Z M 137.598 14.355 C 137.342 15.166 137.498 16.034 137.464 16.867 C 138.85 16.847 140.24 16.915 141.624 16.843 C 142.929 16.822 143.239 14.593 141.998 14.233 C 141.069 13.993 140.098 14.126 139.149 14.09 C 138.633 14.129 138.017 13.975 137.598 14.355 Z M 153.103 10.864 C 154.915 10.547 156.765 10.64 158.595 10.656 C 160.348 10.758 162.32 10.973 163.613 12.3 C 164.936 13.759 164.922 15.868 164.925 17.719 C 164.909 19.448 164.744 21.43 163.376 22.667 C 161.759 24.031 159.503 24.042 157.499 24.119 C 155.355 24.096 153.074 24.205 151.099 23.224 C 149.949 22.647 149.215 21.464 148.973 20.225 C 148.663 18.723 148.683 17.171 148.801 15.651 C 148.898 14.453 149.215 13.202 150.053 12.301 C 150.846 11.456 151.994 11.071 153.103 10.864 Z M 155.094 14.194 C 153.561 14.856 153.565 16.781 153.683 18.193 C 153.69 19.359 154.444 20.628 155.699 20.737 C 156.956 20.841 158.579 21.038 159.435 19.881 C 160.205 18.963 159.965 17.692 159.995 16.591 C 160.076 15.384 159.173 14.147 157.941 14.024 C 156.996 13.961 156.002 13.87 155.094 14.194 Z M 166.571 12.724 C 166.551 11.537 167.76 10.855 168.802 10.728 C 170.219 10.558 171.875 10.472 173.04 11.451 C 173.992 12.319 174.18 13.669 174.674 14.801 C 175.364 16.469 175.79 18.258 176.714 19.822 C 177.592 18.422 177.963 16.784 178.594 15.268 C 179.114 14.063 179.348 12.692 180.187 11.653 C 181.334 10.461 183.167 10.547 184.678 10.733 C 185.779 10.848 186.903 11.612 186.944 12.81 L 186.944 23.949 L 182.09 23.949 C 182.142 22.4 182.142 20.85 182.185 19.303 C 182.141 18.009 182.38 16.707 182.12 15.427 C 181.069 17.848 180.378 20.415 179.364 22.853 C 178.958 23.886 177.74 24.135 176.75 24.126 C 175.756 24.137 174.508 23.917 174.085 22.88 C 173.1 20.458 172.38 17.934 171.379 15.52 C 171.063 16.528 171.252 17.588 171.257 18.623 C 171.252 20.399 171.352 22.173 171.318 23.949 L 166.562 23.949 C 166.571 20.207 166.546 16.466 166.571 12.724 Z\" fill=\"rgb(0, 74, 152)\"></path></svg>',svgContentId:12669097217,withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-sjdwwy\",\"data-framer-name\":\"logo4\",name:\"logo4\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-u7qgpw\",\"data-framer-name\":\"Graphic\",layout:\"position\",name:\"Graphic\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 37 40\"><g id=\"ss10686140244_1\"><g id=\"ss10686140244_2\"><path d=\"M 18.507 40 C 10.607 40 6.238 39.356 3.393 37.763 C 1.302 36.593 0 34.831 0 33.17 L 0 11.119 C 0 8.644 1.833 5.814 4.764 3.746 C 7.198 2.034 11.567 0 18.507 0 C 30.589 0 37.015 6.458 37.015 11.119 L 37.015 33.152 C 37.015 34.83 35.712 36.593 33.604 37.762 C 30.777 39.356 26.407 40 18.507 40\" fill=\"rgb(245,235,220)\"></path></g><g transform=\"translate(2.089 2)\" id=\"ss10686140244_4\"><path d=\"M 30.543 34.021 C 27.786 35.56 23.058 36 16.517 36 C 9.976 36 5.248 35.56 2.492 34.021 C 0.837 33.1 0 31.843 0 30.942 C 0 30.43 0.276 30.136 0.89 30.136 L 32.143 30.136 C 32.758 30.136 33.034 30.43 33.034 30.942 C 33.034 31.843 32.197 33.1 30.543 34.021 L 30.543 34.021 M 32.143 10.146 L 0.89 10.146 C 0.275 10.146 0 9.832 0 9.267 C 0 5.916 5.099 0 16.517 0 C 27.829 0 33.034 5.916 33.034 9.267 C 33.034 9.832 32.759 10.146 32.143 10.146\" fill=\"rgb(255,135,50)\"></path></g><g transform=\"translate(2.089 13.32)\" id=\"ss10686140244_6\"><path d=\"M 6.657 12.648 C 6.562 12.502 6.552 12.408 6.552 12.366 C 6.552 12.251 6.615 12.167 6.742 12.052 C 7.039 11.779 7.771 11.099 8.174 10.481 C 8.481 10.01 8.608 9.581 8.608 9.225 C 8.608 8.314 7.771 7.602 6.859 7.602 C 6.275 7.602 5.724 7.926 5.353 8.523 C 4.855 9.319 4.261 10.24 3.88 10.607 C 3.785 10.702 3.732 10.722 3.658 10.722 C 3.53 10.722 3.477 10.638 3.477 10.502 L 3.477 9.456 C 3.477 8.43 2.863 7.602 1.749 7.602 C 0.626 7.602 0.021 8.429 0.021 9.456 L 0.021 15.906 C 0.021 16.932 0.625 17.76 1.749 17.76 C 2.863 17.76 3.477 16.933 3.477 15.906 L 3.477 14.42 C 3.477 14.294 3.53 14.2 3.658 14.2 C 3.827 14.2 3.87 14.367 3.912 14.451 C 4.156 15.027 4.866 16.252 5.524 16.974 C 5.969 17.456 6.52 17.76 7.103 17.76 C 8.089 17.76 8.916 16.912 8.916 16 C 8.916 15.435 8.672 15.016 8.206 14.514 C 7.612 13.874 6.912 13.036 6.657 12.649 L 6.657 12.648 M 19.878 7.004 C 21.542 7.004 22.592 5.957 22.592 4.428 C 22.592 3.455 21.998 2.784 20.811 2.784 L 20.472 2.784 C 19.846 2.784 19.358 3.078 19.358 3.738 C 19.358 4.324 19.878 4.607 20.27 4.607 C 20.472 4.607 20.599 4.67 20.599 4.816 C 20.599 5.004 20.377 5.13 20.122 5.13 C 19.327 5.13 18.786 4.575 18.786 3.538 C 18.786 2.387 19.529 1.968 20.101 1.968 C 20.8 1.968 20.917 2.324 21.405 2.324 C 21.967 2.324 22.349 1.864 22.349 1.382 C 22.349 1.026 22.189 0.754 21.946 0.565 C 21.5 0.24 20.875 0 19.942 0 C 18.299 0 16.698 1.068 16.698 3.539 C 16.697 5.905 18.298 7.004 19.878 7.004 M 1.24 6.942 L 2.735 6.942 C 4.145 6.942 5.004 6.01 5.004 4.847 C 5.004 3.915 4.442 3.486 4.315 3.381 C 4.262 3.339 4.209 3.298 4.209 3.256 C 4.209 3.204 4.241 3.182 4.294 3.12 C 4.495 2.889 4.696 2.523 4.696 1.988 C 4.696 0.732 3.837 0.062 2.502 0.062 L 1.24 0.062 C 0.403 0.062 0 0.544 0 1.193 L 0 5.81 C 0 6.46 0.403 6.942 1.24 6.942 M 1.866 1.863 C 1.866 1.727 1.951 1.622 2.131 1.622 L 2.269 1.622 C 2.724 1.622 2.863 1.936 2.863 2.209 C 2.863 2.46 2.725 2.816 2.269 2.816 L 2.131 2.816 C 1.951 2.816 1.866 2.712 1.866 2.575 L 1.866 1.863 M 1.866 4.314 C 1.866 4.178 1.951 4.072 2.131 4.072 L 2.321 4.072 C 2.831 4.072 2.979 4.407 2.979 4.711 C 2.979 4.984 2.83 5.371 2.321 5.371 L 2.131 5.371 C 1.951 5.371 1.866 5.266 1.866 5.13 L 1.866 4.314 M 28.921 6.994 C 29.6 6.994 29.97 6.491 29.97 5.863 L 29.97 4.753 C 29.97 4.617 30.034 4.554 30.14 4.554 C 30.267 4.554 30.309 4.627 30.33 4.753 C 30.426 5.287 30.68 6.009 30.966 6.376 C 31.327 6.848 31.666 6.994 32.006 6.994 C 32.556 6.994 33.034 6.565 33.034 6.03 C 33.034 5.674 32.886 5.412 32.695 5.172 C 32.334 4.722 32.112 4.429 31.974 4.062 C 31.942 3.978 31.963 3.905 32.059 3.832 C 32.388 3.581 32.769 3.026 32.769 2.146 C 32.769 0.816 31.656 0.062 30.309 0.062 L 29.112 0.062 C 28.274 0.062 27.872 0.544 27.872 1.193 L 27.872 5.864 C 27.872 6.492 28.243 6.994 28.921 6.994 L 28.921 6.994 M 29.854 2.042 C 29.854 1.906 29.939 1.8 30.119 1.8 L 30.267 1.8 C 30.713 1.8 30.85 2.114 30.85 2.387 C 30.85 2.649 30.713 2.994 30.267 2.994 L 30.119 2.994 C 29.938 2.994 29.854 2.89 29.854 2.753 L 29.854 2.041 L 29.854 2.042 M 11.492 7.601 C 10.305 7.601 9.658 8.48 9.658 9.58 L 9.658 15.78 C 9.658 16.88 10.305 17.759 11.492 17.759 C 12.679 17.759 13.326 16.879 13.326 15.78 L 13.326 9.58 C 13.326 8.481 12.679 7.601 11.492 7.601 M 30.341 11.633 L 29.822 11.633 C 28.889 11.633 28.168 12.062 28.168 13.004 C 28.168 13.863 28.953 14.271 29.536 14.271 C 29.822 14.271 30.023 14.355 30.023 14.575 C 30.023 14.847 29.684 15.025 29.324 15.025 C 28.126 15.025 27.309 14.218 27.309 12.721 C 27.309 11.056 28.422 10.449 29.281 10.449 C 30.331 10.449 30.5 10.973 31.232 10.973 C 32.006 10.981 32.642 10.367 32.652 9.601 C 32.652 9.088 32.419 8.69 32.048 8.418 C 31.401 7.946 30.426 7.6 29.048 7.6 C 26.578 7.6 24.171 9.14 24.171 12.721 C 24.171 16.145 26.577 17.747 28.952 17.747 C 31.443 17.747 33.023 16.229 33.023 14.009 C 33.023 12.606 32.133 11.633 30.341 11.633 M 26.334 6.942 C 26.928 6.942 27.395 6.596 27.395 5.968 C 27.395 5.35 26.928 5.004 26.334 5.004 L 25.38 5.004 C 25.2 5.004 25.115 4.9 25.115 4.763 L 25.115 4.564 C 25.115 4.428 25.2 4.323 25.38 4.323 L 26.112 4.323 C 26.621 4.323 27.024 4.02 27.024 3.485 C 27.024 2.952 26.621 2.648 26.112 2.648 L 25.38 2.648 C 25.2 2.648 25.115 2.543 25.115 2.406 L 25.115 2.239 C 25.115 2.103 25.2 1.998 25.38 1.998 L 26.334 1.998 C 26.928 1.998 27.395 1.652 27.395 1.024 C 27.395 0.406 26.928 0.06 26.334 0.06 L 24.331 0.06 C 23.494 0.06 23.09 0.542 23.09 1.192 L 23.09 5.809 C 23.09 6.458 23.493 6.94 24.331 6.94 L 26.334 6.94 L 26.334 6.942 L 26.334 6.942 M 8.121 6.994 C 9.838 6.994 10.75 5.978 10.75 4.701 L 10.75 1.172 C 10.75 0.544 10.379 0.04 9.7 0.04 C 9.022 0.04 8.651 0.544 8.651 1.172 L 8.651 4.585 C 8.651 4.836 8.502 5.129 8.121 5.129 C 7.739 5.129 7.611 4.836 7.611 4.585 L 7.611 1.172 C 7.611 0.544 7.23 0.04 6.551 0.04 C 5.872 0.04 5.501 0.544 5.501 1.172 L 5.501 4.7 C 5.502 5.978 6.403 6.993 8.121 6.993 L 8.121 6.994 M 15.563 6.994 C 16.114 6.994 16.592 6.564 16.592 6.03 C 16.592 5.674 16.443 5.412 16.253 5.172 C 15.945 4.774 15.669 4.428 15.532 4.062 C 15.5 3.978 15.521 3.904 15.617 3.831 C 15.946 3.58 16.327 3.025 16.327 2.146 C 16.327 0.816 15.214 0.062 13.867 0.062 L 12.669 0.062 C 11.832 0.062 11.428 0.543 11.428 1.193 L 11.428 5.863 C 11.428 6.491 11.8 6.994 12.478 6.994 C 13.157 6.994 13.528 6.491 13.528 5.863 L 13.528 4.754 C 13.528 4.618 13.591 4.554 13.697 4.554 C 13.825 4.554 13.867 4.628 13.888 4.754 C 13.983 5.287 14.238 6.01 14.524 6.377 C 14.885 6.847 15.223 6.994 15.563 6.994 M 13.824 2.994 L 13.675 2.994 C 13.495 2.994 13.411 2.889 13.411 2.753 L 13.411 2.041 C 13.411 1.905 13.495 1.8 13.675 1.8 L 13.824 1.8 C 14.269 1.8 14.407 2.114 14.407 2.387 C 14.407 2.648 14.269 2.994 13.824 2.994 L 13.824 2.994 M 21.659 7.601 C 20.567 7.601 19.973 8.407 19.973 9.423 L 19.973 11.685 C 19.973 11.873 19.909 11.957 19.793 11.957 C 19.708 11.957 19.644 11.905 19.57 11.758 L 18.097 8.932 C 17.535 7.853 16.952 7.602 16.284 7.602 C 15.171 7.602 14.556 8.428 14.556 9.466 L 14.556 15.937 C 14.556 16.953 15.149 17.759 16.241 17.759 C 17.333 17.759 17.927 16.953 17.927 15.937 L 17.927 13.676 C 17.927 13.488 17.99 13.403 18.107 13.403 C 18.192 13.403 18.256 13.455 18.329 13.602 L 19.803 16.429 C 20.365 17.508 20.969 17.759 21.616 17.759 C 22.729 17.759 23.344 16.932 23.344 15.895 L 23.344 9.424 C 23.344 8.408 22.751 7.602 21.659 7.602 L 21.659 7.601\" fill=\"rgb(214,35,0)\"></path></g></g></svg>',svgContentId:10686140244,withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-ye9syg\",\"data-framer-name\":\"logo5\",name:\"logo5\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-n03a3r\",\"data-framer-name\":\"\u041D\u043C\u0436\u043A\",layout:\"position\",name:\"\u041D\u043C\u0436\u043A\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 119 30\"><g transform=\"translate(-0.002 0)\" id=\"ss10174691401_1\"><path d=\"M 100.039 0.006 L 94.624 0.006 L 91.225 8.21 L 95.175 18.235 L 100.954 18.235 L 96.359 8.029 Z\" fill=\"rgb(55, 134, 79)\"></path><path d=\"M 91.132 0.006 L 86.366 0.006 L 86.366 18.232 L 91.132 18.232 Z\" fill=\"rgb(55, 134, 79)\"></path><path d=\"M 82.234 18.235 L 86.274 8.21 L 82.877 0.006 L 77.468 0.006 L 81.143 8.029 L 76.544 18.226 Z M 113.527 8.029 L 117.835 0.006 L 112.421 0.006 L 108.106 8.21 L 112.971 18.235 L 118.753 18.235 Z\" fill=\"rgb(55, 134, 79)\"></path><path d=\"M 108.013 0.006 L 103.247 0.006 L 103.247 18.232 L 108.013 18.232 Z\" fill=\"rgb(55, 134, 79)\"></path><path d=\"M 50.855 18.226 L 50.855 0 L 45.999 0 L 45.999 5.834 L 40.949 5.834 L 40.949 0 L 36.174 0 L 36.174 18.226 L 40.949 18.226 L 40.949 9.933 L 45.999 9.942 L 45.999 18.226 Z M 69.572 18.226 L 69.557 8.412 L 64.605 14.95 L 59.558 8.412 L 59.579 18.226 L 54.706 18.226 L 54.7 0 L 59.008 0 L 64.605 7.473 L 70.197 0 L 74.427 0 L 74.436 18.226 Z M 39.636 23.881 L 37.522 23.881 L 37.522 27.873 L 36.174 27.873 L 36.174 22.809 L 39.636 22.809 Z M 42.833 26.893 C 43.069 26.904 43.301 26.818 43.472 26.655 C 43.635 26.488 43.756 26.284 43.825 26.061 C 43.892 25.837 43.928 25.604 43.933 25.369 C 43.94 24.982 43.836 24.601 43.634 24.27 C 43.454 23.973 43.121 23.802 42.773 23.828 C 42.019 23.828 41.64 24.368 41.64 25.447 C 41.626 25.813 41.731 26.174 41.939 26.477 C 42.139 26.76 42.474 26.917 42.821 26.89 Z M 41.654 23.543 C 41.814 23.299 42.017 23.086 42.252 22.913 C 42.533 22.739 42.861 22.656 43.191 22.675 C 43.762 22.662 44.309 22.9 44.686 23.326 C 44.889 23.569 45.046 23.847 45.15 24.146 C 45.269 24.512 45.327 24.895 45.32 25.28 C 45.319 25.738 45.242 26.193 45.093 26.626 C 44.955 27.02 44.706 27.368 44.375 27.627 C 44.032 27.884 43.61 28.018 43.179 28.007 C 42.592 28.033 42.04 27.726 41.756 27.214 L 41.729 27.214 L 41.729 29.834 L 40.366 29.834 L 40.366 22.809 L 41.657 22.809 Z M 49.01 27.781 C 48.839 28.28 48.711 28.672 48.579 28.937 C 48.495 29.16 48.372 29.367 48.217 29.549 C 48.098 29.69 47.939 29.794 47.76 29.846 C 47.52 29.901 47.274 29.925 47.027 29.917 L 46.429 29.902 L 46.429 28.812 C 46.516 28.827 46.604 28.834 46.693 28.833 C 46.901 28.845 47.109 28.797 47.291 28.693 C 47.452 28.523 47.549 28.303 47.566 28.069 L 45.688 22.809 L 47.183 22.809 L 48.274 26.534 L 48.295 26.534 L 49.336 22.809 L 50.762 22.809 Z M 56.117 27.873 L 54.762 27.873 L 54.762 23.902 L 52.858 23.902 L 52.858 27.873 L 51.512 27.873 L 51.512 22.809 L 56.117 22.809 Z M 61.932 27.873 L 60.581 27.873 L 60.581 23.902 L 58.682 23.902 L 58.682 27.873 L 57.337 27.873 L 57.337 22.809 L 61.932 22.809 Z M 65.975 25.408 C 65.698 25.56 65.393 25.653 65.078 25.681 C 64.912 25.709 64.749 25.751 64.59 25.806 C 64.472 25.853 64.369 25.931 64.291 26.032 C 64.209 26.15 64.17 26.292 64.181 26.436 C 64.168 26.611 64.237 26.782 64.369 26.899 C 64.49 26.995 64.639 27.047 64.794 27.048 C 64.993 27.048 65.19 27.004 65.371 26.92 C 65.549 26.846 65.703 26.725 65.816 26.569 C 65.935 26.423 65.997 26.24 65.993 26.052 Z M 67.275 26.878 C 67.262 27.073 67.292 27.269 67.362 27.451 C 67.4 27.552 67.48 27.631 67.58 27.668 L 67.58 27.873 L 66.127 27.873 C 66.066 27.68 66.023 27.481 65.999 27.279 C 65.798 27.487 65.571 27.667 65.323 27.817 C 65.023 27.964 64.691 28.034 64.357 28.022 C 64.092 28.024 63.83 27.969 63.589 27.858 C 63.354 27.755 63.155 27.584 63.018 27.368 C 62.866 27.12 62.791 26.833 62.799 26.543 C 62.792 26.258 62.857 25.976 62.988 25.723 C 63.112 25.501 63.295 25.317 63.517 25.191 C 63.756 25.053 64.02 24.965 64.294 24.933 L 65.49 24.749 C 65.789 24.707 65.957 24.573 65.957 24.356 C 65.987 24.16 65.884 23.967 65.703 23.881 C 65.504 23.798 65.29 23.76 65.075 23.768 C 64.856 23.745 64.638 23.816 64.477 23.964 C 64.356 24.107 64.282 24.283 64.264 24.469 L 62.97 24.469 C 62.99 24.058 63.136 23.662 63.388 23.335 C 63.588 23.08 63.865 22.895 64.178 22.809 C 64.531 22.713 64.897 22.668 65.263 22.675 C 65.566 22.678 65.867 22.718 66.16 22.794 C 66.46 22.87 66.734 23.025 66.952 23.243 C 67.182 23.481 67.301 23.804 67.281 24.134 Z M 73.45 27.873 L 72.101 27.873 L 72.101 22.809 L 73.45 22.809 L 73.45 24.728 L 75.133 22.809 L 76.804 22.809 L 74.977 24.769 L 76.876 27.873 L 75.253 27.873 L 74.006 25.702 L 73.45 26.269 Z M 79.702 23.804 C 79.322 23.764 78.952 23.94 78.745 24.258 C 78.557 24.59 78.464 24.966 78.476 25.346 C 78.464 25.72 78.557 26.09 78.745 26.415 C 78.948 26.739 79.32 26.919 79.702 26.878 C 80.078 26.918 80.445 26.747 80.655 26.436 C 80.844 26.108 80.939 25.735 80.93 25.357 C 80.94 24.975 80.845 24.597 80.655 24.264 C 80.448 23.949 80.079 23.775 79.702 23.816 Z M 79.702 28.007 C 79.25 28.012 78.803 27.91 78.398 27.71 C 78.001 27.511 77.671 27.201 77.447 26.819 C 77.195 26.365 77.07 25.852 77.085 25.334 C 77.079 24.928 77.151 24.525 77.298 24.146 C 77.423 23.827 77.618 23.539 77.869 23.305 C 78.113 23.091 78.396 22.925 78.703 22.815 C 79.025 22.708 79.362 22.653 79.702 22.654 C 80.04 22.654 80.376 22.709 80.697 22.815 C 81.005 22.924 81.288 23.093 81.528 23.314 C 81.778 23.546 81.973 23.83 82.1 24.146 C 82.244 24.525 82.314 24.928 82.306 25.334 C 82.312 25.73 82.242 26.124 82.1 26.495 C 81.975 26.813 81.78 27.098 81.528 27.33 C 81.288 27.553 81.003 27.722 80.691 27.826 C 80.374 27.94 80.039 27.997 79.702 27.995 Z M 88.157 24.413 L 86.874 27.873 L 85.747 27.873 L 84.462 24.413 L 84.42 24.413 C 84.42 24.46 84.441 24.547 84.45 24.656 C 84.459 24.766 84.45 24.882 84.45 25.016 L 84.45 27.873 L 83.197 27.873 L 83.197 22.824 L 85.036 22.824 L 86.277 26.269 L 86.318 26.269 L 87.559 22.824 L 89.401 22.824 L 89.401 27.873 L 88.145 27.873 L 88.145 25.016 C 88.145 24.903 88.16 24.784 88.166 24.665 C 88.172 24.547 88.166 24.469 88.187 24.413 Z M 95.237 27.873 L 93.889 27.873 L 93.889 23.908 L 91.987 23.908 L 91.987 27.873 L 90.639 27.873 L 90.639 22.809 L 95.237 22.809 Z M 99.268 25.408 C 98.991 25.56 98.686 25.655 98.371 25.687 C 98.208 25.71 98.047 25.75 97.892 25.806 C 97.775 25.854 97.672 25.932 97.593 26.032 C 97.509 26.149 97.467 26.292 97.474 26.436 C 97.456 26.613 97.53 26.788 97.671 26.899 C 97.794 26.996 97.945 27.048 98.102 27.048 C 98.3 27.045 98.497 27.004 98.679 26.926 C 98.855 26.846 99.008 26.723 99.124 26.569 C 99.236 26.42 99.295 26.238 99.292 26.052 Z M 100.586 26.878 C 100.572 27.072 100.597 27.267 100.658 27.451 C 100.696 27.552 100.776 27.631 100.876 27.668 L 100.876 27.873 L 99.429 27.873 C 99.367 27.68 99.325 27.481 99.304 27.279 C 99.101 27.486 98.87 27.665 98.619 27.811 C 98.32 27.959 97.987 28.029 97.653 28.016 C 97.393 28.019 97.135 27.964 96.9 27.852 C 96.66 27.752 96.458 27.581 96.32 27.362 C 96.167 27.117 96.091 26.831 96.101 26.543 C 96.094 26.259 96.16 25.977 96.293 25.726 C 96.413 25.501 96.593 25.314 96.813 25.185 C 97.056 25.051 97.321 24.964 97.596 24.927 L 98.792 24.743 C 99.109 24.71 99.265 24.567 99.265 24.35 C 99.29 24.155 99.188 23.964 99.011 23.875 C 98.815 23.794 98.604 23.756 98.392 23.762 C 98.164 23.732 97.935 23.808 97.77 23.967 C 97.658 24.114 97.585 24.287 97.558 24.469 L 96.269 24.469 C 96.282 24.065 96.42 23.674 96.664 23.35 C 96.87 23.09 97.154 22.901 97.474 22.809 C 97.829 22.716 98.195 22.671 98.562 22.675 C 98.865 22.678 99.166 22.718 99.459 22.794 C 99.757 22.874 100.029 23.028 100.249 23.243 C 100.481 23.48 100.603 23.803 100.586 24.134 Z M 106.351 27.873 L 105.003 27.873 L 105.003 25.868 L 103.107 25.868 L 103.107 27.873 L 101.758 27.873 L 101.758 22.809 L 103.107 22.809 L 103.107 24.799 L 105.003 24.799 L 105.003 22.809 L 106.351 22.809 Z M 112.175 27.873 L 110.827 27.873 L 110.827 24.82 L 109.021 27.873 L 107.577 27.873 L 107.577 22.809 L 108.922 22.809 L 108.922 25.856 L 110.728 22.809 L 112.175 22.809 Z M 118 27.879 L 116.645 27.879 L 116.645 24.832 L 114.839 27.879 L 113.401 27.879 L 113.401 22.821 L 114.756 22.821 L 114.756 25.862 L 116.559 22.821 L 118 22.821 Z M 117.315 20.917 C 117.315 21.284 117.14 21.63 116.843 21.85 C 116.689 21.953 116.519 22.031 116.34 22.081 C 116.144 22.126 115.944 22.149 115.742 22.15 C 115.478 22.151 115.216 22.106 114.968 22.016 C 114.738 21.935 114.537 21.789 114.388 21.597 C 114.247 21.398 114.174 21.16 114.179 20.917 L 115.115 20.917 C 115.107 21.084 115.171 21.246 115.291 21.364 C 115.411 21.481 115.574 21.543 115.742 21.535 C 115.911 21.541 116.075 21.479 116.197 21.362 C 116.318 21.246 116.386 21.085 116.385 20.917 Z\" fill=\"rgb(55, 134, 79)\"></path><path d=\"M 24.244 0 C 20.847 0.001 17.571 1.253 15.05 3.514 C 12.531 1.256 9.26 0.004 5.868 0 L 0.002 0 L 0.002 14.955 C -0.075 20.346 2.776 25.36 7.463 28.078 C 12.15 30.795 17.947 30.795 22.634 28.078 C 27.321 25.36 30.172 20.346 30.095 14.955 L 30.095 0 Z M 26.367 14.95 C 26.266 21.088 21.229 26.012 15.048 26.012 C 8.868 26.012 3.83 21.088 3.73 14.95 L 3.73 3.71 L 5.868 3.71 C 9.505 3.721 12.851 5.689 14.61 8.851 L 15.05 9.63 L 15.486 8.851 C 17.248 5.684 20.601 3.715 24.244 3.71 L 26.367 3.71 Z\" fill=\"rgb(55, 134, 79)\"></path><path d=\"M 9.223 10.316 C 10.12 11.201 10.622 12.407 10.616 13.663 L 10.616 14.967 C 10.619 15.539 10.732 16.104 10.948 16.634 C 11.174 17.166 11.503 17.65 11.916 18.056 C 12.152 18.288 12.411 18.496 12.688 18.677 C 12.969 18.853 13.27 18.995 13.585 19.099 L 14.249 19.337 L 14.249 13.663 C 14.229 9.078 10.492 5.366 5.877 5.347 L 5.362 5.347 L 5.362 8.932 L 5.868 8.932 C 7.127 8.929 8.336 9.427 9.223 10.316 Z M 18.327 7.785 C 16.75 9.339 15.865 11.457 15.872 13.663 L 15.872 19.346 L 16.521 19.108 C 16.836 19.004 17.137 18.862 17.418 18.686 C 18.189 18.193 18.789 17.476 19.137 16.634 C 19.355 16.098 19.468 15.525 19.469 14.947 L 19.469 13.663 C 19.474 12.41 19.98 11.211 20.874 10.328 C 21.761 9.437 22.971 8.939 24.232 8.944 L 24.722 8.944 L 24.722 5.347 L 24.244 5.347 C 22.023 5.34 19.892 6.219 18.327 7.785 Z\" fill=\"rgb(55, 134, 79)\"></path><path d=\"M 21.114 13.663 L 21.114 14.967 C 21.13 16.548 20.503 18.069 19.376 19.185 C 18.795 19.757 18.111 20.213 17.358 20.531 C 16.605 20.841 15.799 21.002 14.984 21.006 C 13.393 20.998 11.872 20.356 10.762 19.224 C 10.2 18.665 9.754 18.002 9.45 17.272 C 9.14 16.542 8.983 15.757 8.986 14.964 L 8.986 13.663 C 8.988 11.95 7.593 10.558 5.868 10.553 L 5.362 10.553 L 5.362 14.955 C 5.455 20.204 9.765 24.41 15.048 24.41 C 20.332 24.41 24.642 20.204 24.734 14.955 L 24.734 10.553 C 24.18 12.163 22.797 13.351 21.114 13.663 Z\" fill=\"rgb(55, 134, 79)\"></path></g></svg>',svgContentId:10174691401,withExternalLayout:true})})],speed:50,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-1m01kpe\",\"data-framer-name\":\"Metrics section\",id:elementId,name:\"Metrics section\",ref:ref2,children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-16g1k9y\",\"data-framer-name\":\"Container\",name:\"Container\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1s13jbg\",\"data-framer-name\":\"Content\",name:\"Content\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-f5zwrn\",\"data-framer-name\":\"About\",name:\"About\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1e5vity\",\"data-framer-name\":\"Left content\",name:\"Left content\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-p7mlc2\",\"data-styles-preset\":\"ofR0ztJAv\",style:{\"--framer-text-color\":\"var(--token-c10ffba5-6ae6-4742-b1d5-4ccf1da5f728, rgb(160, 118, 249))\"},children:\"GGroupp \u0432 \u0446\u0438\u0444\u0440\u0430\u0445\"})}),className:\"framer-8z45lp\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-12bf5sf\",\"data-styles-preset\":\"UY6lh5vC9\",style:{\"--framer-text-color\":\"var(--token-c14065e7-5a4d-4109-85cf-bca8f791260a, rgb(255, 255, 255))\"},children:\"\u0411\u043B\u0430\u0433\u043E\u0434\u0430\u0440\u044F \u043C\u043D\u043E\u0433\u043E\u043B\u0435\u0442\u043D\u0435\u0439 \u0440\u0430\u0431\u043E\u0442\u0435 \u0441 Microsoft \u043C\u044B \u043D\u0430\u043A\u043E\u043F\u0438\u043B\u0438 \u044D\u043A\u0441\u043F\u0435\u0440\u0442\u0438\u0437\u0443 \u0432 \u0430\u0432\u0442\u043E\u043C\u0430\u0442\u0438\u0437\u0430\u0446\u0438\u0438 \u043F\u0440\u043E\u0434\u0430\u0436, \u0441\u0435\u0440\u0432\u0438\u0441\u0430, \u043F\u0440\u043E\u0438\u0437\u0432\u043E\u0434\u0441\u0442\u0432\u0430 \u0438 HR. \u0421\u0435\u0433\u043E\u0434\u043D\u044F \u043C\u044B \u043F\u0440\u0438\u043C\u0435\u043D\u044F\u0435\u043C \u044D\u0442\u043E\u0442 \u043E\u043F\u044B\u0442 \u0434\u043B\u044F \u0432\u043D\u0435\u0434\u0440\u0435\u043D\u0438\u044F \u0442\u0435\u0445\u043D\u043E\u043B\u043E\u0433\u0438\u0439 \u042F\u043D\u0434\u0435\u043A\u0441\u0430, \u0430\u0434\u0430\u043F\u0442\u0438\u0440\u0443\u044F \u0435\u0433\u043E \u043F\u043E\u0434 \u0442\u0435\u043A\u0443\u0449\u0438\u0435 \u0437\u0430\u0434\u0430\u0447\u0438 \u0440\u043E\u0441\u0441\u0438\u0439\u0441\u043A\u043E\u0433\u043E \u0431\u0438\u0437\u043D\u0435\u0441\u0430.\"})}),className:\"framer-1pec9hd\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-bislho\",\"data-framer-name\":\"Right content\",name:\"Right content\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1svgano\",\"data-border\":true,\"data-framer-name\":\"list 1\",name:\"list 1\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{V0bY9AVKg:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"RlM7Q2xhc2ggR3JvdGVzay1yZWd1bGFy\",\"--framer-font-family\":'\"Clash Grotesk\", \"Clash Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"66px\",\"--framer-letter-spacing\":\"-1.5px\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--token-c14065e7-5a4d-4109-85cf-bca8f791260a, rgb(255, 255, 255))\"},children:\"10\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"RlM7Q2xhc2ggR3JvdGVzay1yZWd1bGFy\",\"--framer-font-family\":'\"Clash Grotesk\", \"Clash Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"98px\",\"--framer-line-height\":\"0.8em\",\"--framer-text-color\":\"var(--token-c14065e7-5a4d-4109-85cf-bca8f791260a, rgb(255, 255, 255))\"},children:\"10\"})}),className:\"framer-7hascn\",\"data-framer-name\":\"10\",fonts:[\"FS;Clash Grotesk-regular\"],name:\"10\",verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-p7mlc2\",\"data-styles-preset\":\"ofR0ztJAv\",style:{\"--framer-text-color\":\"var(--token-c14065e7-5a4d-4109-85cf-bca8f791260a, rgb(255, 255, 255))\"},children:\"\u041B\u0435\u0442 \u043E\u043F\u044B\u0442\u0430\"})}),className:\"framer-gwsq1\",\"data-framer-name\":\"The task is being managed effectively. And dedicated support team are here to help.\",fonts:[\"Inter\"],name:\"The task is being managed effectively. And dedicated support team are here to help.\",verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1e5y6gw\",\"data-border\":true,\"data-framer-name\":\"list 2\",name:\"list 2\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{V0bY9AVKg:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"RlM7Q2xhc2ggR3JvdGVzay1yZWd1bGFy\",\"--framer-font-family\":'\"Clash Grotesk\", \"Clash Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"66px\",\"--framer-letter-spacing\":\"-1.5px\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--token-c14065e7-5a4d-4109-85cf-bca8f791260a, rgb(255, 255, 255))\"},children:\"30 +\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"RlM7Q2xhc2ggR3JvdGVzay1yZWd1bGFy\",\"--framer-font-family\":'\"Clash Grotesk\", \"Clash Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"98px\",\"--framer-line-height\":\"0.8em\",\"--framer-text-color\":\"var(--token-c14065e7-5a4d-4109-85cf-bca8f791260a, rgb(255, 255, 255))\"},children:\"30 +\"})}),className:\"framer-lgnjt0\",\"data-framer-name\":\"50+\",fonts:[\"FS;Clash Grotesk-regular\"],name:\"50+\",verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-p7mlc2\",\"data-styles-preset\":\"ofR0ztJAv\",style:{\"--framer-text-color\":\"var(--token-c14065e7-5a4d-4109-85cf-bca8f791260a, rgb(255, 255, 255))\"},children:\"\u0420\u0430\u0437\u0440\u0430\u0431\u043E\u0442\u0447\u0438\u043A\u043E\u0432 \u0432 \u0448\u0442\u0430\u0442\u0435\"})}),className:\"framer-1h9jxb0\",\"data-framer-name\":\"The task is being managed effectively. And dedicated support team are here to help.\",fonts:[\"Inter\"],name:\"The task is being managed effectively. And dedicated support team are here to help.\",verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-wf3tba\",\"data-border\":true,\"data-framer-name\":\"list 3\",name:\"list 3\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{V0bY9AVKg:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"RlM7Q2xhc2ggR3JvdGVzay1yZWd1bGFy\",\"--framer-font-family\":'\"Clash Grotesk\", \"Clash Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"66px\",\"--framer-letter-spacing\":\"-1.5px\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--token-c14065e7-5a4d-4109-85cf-bca8f791260a, rgb(255, 255, 255))\"},children:\"50+\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"RlM7Q2xhc2ggR3JvdGVzay1yZWd1bGFy\",\"--framer-font-family\":'\"Clash Grotesk\", \"Clash Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"98px\",\"--framer-line-height\":\"0.8em\",\"--framer-text-color\":\"var(--token-c14065e7-5a4d-4109-85cf-bca8f791260a, rgb(255, 255, 255))\"},children:\"50+\"})}),className:\"framer-xgm7gd\",\"data-framer-name\":\"30%\",fonts:[\"FS;Clash Grotesk-regular\"],name:\"30%\",verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-p7mlc2\",\"data-styles-preset\":\"ofR0ztJAv\",style:{\"--framer-text-color\":\"var(--token-c14065e7-5a4d-4109-85cf-bca8f791260a, rgb(255, 255, 255))\"},children:\"\u0420\u0435\u0430\u043B\u0438\u0437\u043E\u0432\u0430\u043D\u043D\u044B\u0445 \u043F\u0440\u043E\u0435\u043A\u0442\u043E\u0432\"})}),className:\"framer-e2jjlz\",\"data-framer-name\":\"The task is being managed effectively. And dedicated support team are here to help.\",fonts:[\"Inter\"],name:\"The task is being managed effectively. And dedicated support team are here to help.\",verticalAlignment:\"center\",withExternalLayout:true})]})]})]})})})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-2oeq3p\",\"data-framer-name\":\"Features section\",id:elementId1,name:\"Features section\",ref:ref3,children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-r1wam7\",\"data-framer-name\":\"Container\",name:\"Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-12r50d4\",\"data-framer-name\":\"Content\",name:\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1jwh2gr\",\"data-framer-name\":\"About\",name:\"About\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-wz4gpt\",\"data-framer-name\":\"Left content\",name:\"Left content\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1thkik3\",\"data-styles-preset\":\"nJwfhQ0mx\",style:{\"--framer-text-color\":\"var(--token-c14065e7-5a4d-4109-85cf-bca8f791260a, rgb(255, 255, 255))\"},children:\"\u042F\u043D\u0434\u0435\u043A\u0441 \u0422\u0440\u0435\u043A\u0435\u0440\"})}),className:\"framer-1fefncn\",effect:textEffect,fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1fc36f5\",\"data-framer-name\":\"Right content\",name:\"Right content\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-p7mlc2\",\"data-styles-preset\":\"ofR0ztJAv\",style:{\"--framer-text-color\":\"var(--token-c10ffba5-6ae6-4742-b1d5-4ccf1da5f728, rgb(160, 118, 249))\"},children:\"\u0420\u0435\u0448\u0435\u043D\u0438\u044F\"})}),className:\"framer-jj2b4x\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-13q3al2\",\"data-framer-name\":\"Cards\",name:\"Cards\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-zix0w6\",children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation5,__framer__exit:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-yrsl05\",\"data-border\":true,\"data-framer-name\":\"Card One\",name:\"Card One\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1s5ne5d\",\"data-framer-name\":\"Content\",name:\"Content\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{G0gMHLfJo:{background:{alt:\"Features image \",fit:\"fit\",intrinsicHeight:453.3333333333333,intrinsicWidth:453.3333333333333,loading:getLoadingLazyAtYPosition(2033),pixelHeight:580,pixelWidth:680,positionX:\"center\",positionY:\"center\",sizes:\"max(max((min(100vw, 1320px) - 92px) / 3, 1px) - 40px, 1px)\",src:\"https://framerusercontent.com/images/DsW0LrMUjih6FtjdbiF3ro7h5P8.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/DsW0LrMUjih6FtjdbiF3ro7h5P8.png?scale-down-to=512 512w,https://framerusercontent.com/images/DsW0LrMUjih6FtjdbiF3ro7h5P8.png 680w\"}},V0bY9AVKg:{background:{alt:\"Features image \",fit:\"fit\",intrinsicHeight:453.3333333333333,intrinsicWidth:453.3333333333333,loading:getLoadingLazyAtYPosition(2311.9),pixelHeight:580,pixelWidth:680,positionX:\"center\",positionY:\"center\",sizes:\"max(min(100vw, 1320px) - 80px, 1px)\",src:\"https://framerusercontent.com/images/DsW0LrMUjih6FtjdbiF3ro7h5P8.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/DsW0LrMUjih6FtjdbiF3ro7h5P8.png?scale-down-to=512 512w,https://framerusercontent.com/images/DsW0LrMUjih6FtjdbiF3ro7h5P8.png 680w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Features image \",fit:\"fit\",intrinsicHeight:453.3333333333333,intrinsicWidth:453.3333333333333,loading:getLoadingLazyAtYPosition(2278.2),pixelHeight:580,pixelWidth:680,positionX:\"center\",positionY:\"center\",sizes:\"335px\",src:\"https://framerusercontent.com/images/DsW0LrMUjih6FtjdbiF3ro7h5P8.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/DsW0LrMUjih6FtjdbiF3ro7h5P8.png?scale-down-to=512 512w,https://framerusercontent.com/images/DsW0LrMUjih6FtjdbiF3ro7h5P8.png 680w\"},className:\"framer-14la1wa\",\"data-framer-name\":\"Image one\",name:\"Image one\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-3q387y\",\"data-framer-name\":\"Content\",name:\"Content\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-u96uof\",\"data-framer-name\":\"info\",name:\"info\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-l0ldrm\",\"data-styles-preset\":\"vW7JZDbZa\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-c14065e7-5a4d-4109-85cf-bca8f791260a, rgb(255, 255, 255))\"},children:\"\u0415\u0434\u0438\u043D\u043E\u0435 \u043F\u0440\u043E\u0441\u0442\u0440\u0430\u043D\u0441\u0442\u0432\u043E \u0434\u043B\u044F \u0432\u0441\u0435\u0445 \u043A\u043E\u043C\u0430\u043D\u0434\"})}),className:\"framer-c63fd\",\"data-framer-name\":\"Contact us\",fonts:[\"Inter\"],name:\"Contact us\",verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-p7mlc2\",\"data-styles-preset\":\"ofR0ztJAv\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-c14065e7-5a4d-4109-85cf-bca8f791260a, rgb(255, 255, 255))\"},children:\"\u041E\u0442 \u0440\u0430\u0437\u0440\u0430\u0431\u043E\u0442\u043A\u0438 \u0434\u043E\\xa0\u043A\u0440\u0435\u0430\u0442\u0438\u0432\u0430 \u2014 \u0434\u043B\u044F \u0432\u0441\u0435\u0439 \u043A\u043E\u043C\u043F\u0430\u043D\u0438\u0438 \u0432\\xa0\u0422\u0440\u0435\u043A\u0435\u0440\u0435 \u043D\u0430\u0439\u0434\u0443\u0442\u0441\u044F \u0438\u043D\u0441\u0442\u0440\u0443\u043C\u0435\u043D\u0442\u044B \u0434\u043B\u044F \u0440\u0430\u0431\u043E\u0442\u044B \u043D\u0430\u0434 \u0435\u0436\u0435\u0434\u043D\u0435\u0432\u043D\u044B\u043C\u0438 \u0437\u0430\u0434\u0430\u0447\u0430\u043C\u0438 \u0438\u043B\u0438 \u043F\u0440\u043E\u0435\u043A\u0442\u043D\u043E\u0433\u043E \u0438\\xa0\u043F\u0440\u043E\u0446\u0435\u0441\u0441\u043D\u043E\u0433\u043E \u0443\u043F\u0440\u0430\u0432\u043B\u0435\u043D\u0438\u044F\"})}),className:\"framer-8rtbj7\",\"data-framer-name\":\"+239 555-0108, +324 776-1056\",fonts:[\"Inter\"],name:\"+239 555-0108, +324 776-1056\",verticalAlignment:\"center\",withExternalLayout:true})]})})]})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:true,__framer__enter:animation5,__framer__exit:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1a84oyd\",\"data-border\":true,\"data-framer-name\":\"Card Two\",name:\"Card Two\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-f2801i\",\"data-framer-name\":\"Content\",name:\"Content\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{G0gMHLfJo:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:453.3333333333333,intrinsicWidth:453.3333333333333,loading:getLoadingLazyAtYPosition(2033),pixelHeight:580,pixelWidth:680,positionX:\"center\",positionY:\"center\",sizes:\"max(max((min(100vw, 1320px) - 92px) / 3, 1px) - 40px, 1px)\",src:\"https://framerusercontent.com/images/gongxUlZOmSXzbVyg2ZuXgkgdKM.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/gongxUlZOmSXzbVyg2ZuXgkgdKM.png?scale-down-to=512 512w,https://framerusercontent.com/images/gongxUlZOmSXzbVyg2ZuXgkgdKM.png 680w\"}},V0bY9AVKg:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:453.3333333333333,intrinsicWidth:453.3333333333333,loading:getLoadingLazyAtYPosition(2980.7),pixelHeight:580,pixelWidth:680,positionX:\"center\",positionY:\"center\",sizes:\"max(min(100vw, 1320px) - 80px, 1px)\",src:\"https://framerusercontent.com/images/gongxUlZOmSXzbVyg2ZuXgkgdKM.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/gongxUlZOmSXzbVyg2ZuXgkgdKM.png?scale-down-to=512 512w,https://framerusercontent.com/images/gongxUlZOmSXzbVyg2ZuXgkgdKM.png 680w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:453.3333333333333,intrinsicWidth:453.3333333333333,loading:getLoadingLazyAtYPosition(2278.2),pixelHeight:580,pixelWidth:680,positionX:\"center\",positionY:\"center\",sizes:\"335px\",src:\"https://framerusercontent.com/images/gongxUlZOmSXzbVyg2ZuXgkgdKM.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/gongxUlZOmSXzbVyg2ZuXgkgdKM.png?scale-down-to=512 512w,https://framerusercontent.com/images/gongxUlZOmSXzbVyg2ZuXgkgdKM.png 680w\"},className:\"framer-19we7qb\",\"data-framer-name\":\"Image two\",name:\"Image two\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1rqd3yh\",\"data-framer-name\":\"Content\",name:\"Content\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1xhikrq\",\"data-framer-name\":\"info\",name:\"info\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-l0ldrm\",\"data-styles-preset\":\"vW7JZDbZa\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-c14065e7-5a4d-4109-85cf-bca8f791260a, rgb(255, 255, 255))\"},children:\"\u0423\u043D\u0438\u0432\u0435\u0440\u0441\u0430\u043B\u044C\u043D\u044B\u0439 \u0438\u043D\u0441\u0442\u0440\u0443\u043C\u0435\u043D\u0442\"})}),className:\"framer-ic7pxy\",\"data-framer-name\":\"Contact us\",fonts:[\"Inter\"],name:\"Contact us\",verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-p7mlc2\",\"data-styles-preset\":\"ofR0ztJAv\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-c14065e7-5a4d-4109-85cf-bca8f791260a, rgb(255, 255, 255))\"},children:\"\u0422\u0440\u0435\u043A\u0435\u0440\\xa0\u2014 no-code \u043F\u043B\u0430\u0442\u0444\u043E\u0440\u043C\u0430, \u043A\u043E\u0442\u043E\u0440\u0443\u044E \u043B\u044E\u0431\u043E\u0439 \u0441\u043E\u0442\u0440\u0443\u0434\u043D\u0438\u043A \u043C\u043E\u0436\u0435\u0442 \u043D\u0430\u0441\u0442\u0440\u043E\u0438\u0442\u044C \u043F\u043E\u0434 \u0441\u0432\u043E\u0438 \u043D\u0443\u0436\u0434\u044B \u0431\u0435\u0437 \u0443\u0447\u0430\u0441\u0442\u0438\u044F \u0440\u0430\u0437\u0440\u0430\u0431\u043E\u0442\u043A\u0438, \u0441\\xa0\u043F\u043E\u043C\u043E\u0449\u044C\u044E \u0448\u0430\u0431\u043B\u043E\u043D\u043E\u0432 \u0438\\xa0\u0432\u0438\u0437\u0443\u0430\u043B\u044C\u043D\u043E\u0433\u043E \u0440\u0435\u0434\u0430\u043A\u0442\u043E\u0440\u0430\"})}),className:\"framer-134yxce\",\"data-framer-name\":\"+239 555-0108, +324 776-1056\",fonts:[\"Inter\"],name:\"+239 555-0108, +324 776-1056\",verticalAlignment:\"center\",withExternalLayout:true})]})})]})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition8},__framer__animateOnce:true,__framer__enter:animation5,__framer__exit:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-d3y3av\",\"data-border\":true,\"data-framer-name\":\"Card Three\",name:\"Card Three\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-12kiugl\",\"data-framer-name\":\"Content\",name:\"Content\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{G0gMHLfJo:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:453.3333333333333,intrinsicWidth:453.3333333333333,loading:getLoadingLazyAtYPosition(2033),pixelHeight:580,pixelWidth:680,positionX:\"center\",positionY:\"center\",sizes:\"max(max((min(100vw, 1320px) - 92px) / 3, 1px) - 40px, 1px)\",src:\"https://framerusercontent.com/images/zIOEIGd9egHYHOFkIyvO8kNnei0.webp?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/zIOEIGd9egHYHOFkIyvO8kNnei0.webp?scale-down-to=512 512w,https://framerusercontent.com/images/zIOEIGd9egHYHOFkIyvO8kNnei0.webp 680w\"}},V0bY9AVKg:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:453.3333333333333,intrinsicWidth:453.3333333333333,loading:getLoadingLazyAtYPosition(3649.5),pixelHeight:580,pixelWidth:680,positionX:\"center\",positionY:\"center\",sizes:\"max(min(100vw, 1320px) - 80px, 1px)\",src:\"https://framerusercontent.com/images/zIOEIGd9egHYHOFkIyvO8kNnei0.webp?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/zIOEIGd9egHYHOFkIyvO8kNnei0.webp?scale-down-to=512 512w,https://framerusercontent.com/images/zIOEIGd9egHYHOFkIyvO8kNnei0.webp 680w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:453.3333333333333,intrinsicWidth:453.3333333333333,loading:getLoadingLazyAtYPosition(2278.2),pixelHeight:580,pixelWidth:680,positionX:\"center\",positionY:\"center\",sizes:\"335px\",src:\"https://framerusercontent.com/images/zIOEIGd9egHYHOFkIyvO8kNnei0.webp?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/zIOEIGd9egHYHOFkIyvO8kNnei0.webp?scale-down-to=512 512w,https://framerusercontent.com/images/zIOEIGd9egHYHOFkIyvO8kNnei0.webp 680w\"},className:\"framer-19c6ovj\",\"data-framer-name\":\"Image three\",name:\"Image three\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1olrtmh\",\"data-framer-name\":\"Content\",name:\"Content\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1f90gfk\",\"data-framer-name\":\"info\",name:\"info\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-l0ldrm\",\"data-styles-preset\":\"vW7JZDbZa\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-c14065e7-5a4d-4109-85cf-bca8f791260a, rgb(255, 255, 255))\"},children:\"\u041B\u0443\u0447\u0448\u0438\u0435 \u043F\u0440\u0430\u043A\u0442\u0438\u043A\u0438 \u042F\u043D\u0434\u0435\u043A\u0441\u0430\"})}),className:\"framer-kweez9\",\"data-framer-name\":\"Contact us\",fonts:[\"Inter\"],name:\"Contact us\",verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-p7mlc2\",\"data-styles-preset\":\"ofR0ztJAv\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-c14065e7-5a4d-4109-85cf-bca8f791260a, rgb(255, 255, 255))\"},children:\"\u0423\u0436\u0435 \u0431\u043E\u043B\u0435\u0435 10 \u043B\u0435\u0442 \u043F\u0440\u0438 \u0441\u043E\u0437\u0434\u0430\u043D\u0438\u0438 \u0432\u0441\u0435\u0445 \u043F\u0440\u043E\u0434\u0443\u043A\u0442\u043E\u0432 \u042F\u043D\u0434\u0435\u043A\u0441 \u0438\u0441\u043F\u043E\u043B\u044C\u0437\u0443\u0435\u0442 \u0422\u0440\u0435\u043A\u0435\u0440. \u041E\u043D \u0440\u0430\u0437\u0432\u0438\u0432\u0430\u0435\u0442\u0441\u044F \u0441 \u0443\u0447\u0451\u0442\u043E\u043C \u043E\u043F\u044B\u0442\u0430 \u0440\u0430\u0431\u043E\u0442\u044B \u0441 \u0437\u0430\u0434\u0430\u0447\u0430\u043C\u0438, \u043F\u0440\u043E\u0435\u043A\u0442\u0430\u043C\u0438 \u0438 \u043F\u0440\u043E\u0446\u0435\u0441\u0441\u0430\u043C\u0438\\xa0\"})}),className:\"framer-fuzpiz\",\"data-framer-name\":\"+239 555-0108, +324 776-1056\",fonts:[\"Inter\"],name:\"+239 555-0108, +324 776-1056\",verticalAlignment:\"center\",withExternalLayout:true})]})})]})})]})})]})})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-jx0221\",\"data-framer-name\":\"Services section\",name:\"Services section\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1tlo87x\",\"data-framer-name\":\"Container\",id:elementId2,name:\"Container\",ref:ref4,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{G0gMHLfJo:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"RlM7Q2xhc2ggR3JvdGVzay1saWdodA==\",\"--framer-font-family\":'\"Clash Grotesk\", \"Clash Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"120px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"-5px\",\"--framer-text-color\":\"var(--token-c14065e7-5a4d-4109-85cf-bca8f791260a, rgb(255, 255, 255))\"},children:\"\u0421\u0435\u0440\u0432\u0438\u0441\u044B\"})})},V0bY9AVKg:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"RlM7Q2xhc2ggR3JvdGVzay1saWdodA==\",\"--framer-font-family\":'\"Clash Grotesk\", \"Clash Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"59px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"0.9em\",\"--framer-text-color\":\"var(--token-c14065e7-5a4d-4109-85cf-bca8f791260a, rgb(255, 255, 255))\"},children:\"\u0421\u0435\u0440\u0432\u0438\u0441\u044B\"})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__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:0}},{ref:ref5,target:{opacity:0,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(\"h1\",{style:{\"--font-selector\":\"RlM7Q2xhc2ggR3JvdGVzay1saWdodA==\",\"--framer-font-family\":'\"Clash Grotesk\", \"Clash Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"208px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"-5px\",\"--framer-text-color\":\"var(--token-c14065e7-5a4d-4109-85cf-bca8f791260a, rgb(255, 255, 255))\"},children:\"\u0421\u0435\u0440\u0432\u0438\u0441\u044B\"})}),className:\"framer-qm91lk\",fonts:[\"FS;Clash Grotesk-light\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})}),isDisplayed3()&&/*#__PURE__*/_jsx(MotionDivWithFX,{__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:0}},{ref:ref5,target:{opacity:0,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-9iotsh hidden-7asqo1\",\"data-framer-name\":\"Shadow\",name:\"Shadow\",style:{transformPerspective:1200}}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__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:-20,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{ref:ref5,target:{opacity:1,rotate:-70,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-800}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1pg3dfs\",\"data-framer-name\":\"Card 4\",name:\"Card 4\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{G0gMHLfJo:{background:{alt:\"Servcies background image\",fit:\"fill\",intrinsicHeight:534,intrinsicWidth:533.3333333333334,loading:getLoadingLazyAtYPosition(2870.8),pixelHeight:801,pixelWidth:800,sizes:\"534px\",src:\"https://framerusercontent.com/images/AWt6zcoqPs9H81EMoC4xfgZEdWY.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/AWt6zcoqPs9H81EMoC4xfgZEdWY.png?scale-down-to=512 512w,https://framerusercontent.com/images/AWt6zcoqPs9H81EMoC4xfgZEdWY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/AWt6zcoqPs9H81EMoC4xfgZEdWY.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/AWt6zcoqPs9H81EMoC4xfgZEdWY.png 2600w\"}},V0bY9AVKg:{background:{alt:\"Servcies background image\",fit:\"fill\",intrinsicHeight:534,intrinsicWidth:533.3333333333334,loading:getLoadingLazyAtYPosition(4775.299999999999),pixelHeight:801,pixelWidth:800,sizes:\"534px\",src:\"https://framerusercontent.com/images/AWt6zcoqPs9H81EMoC4xfgZEdWY.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/AWt6zcoqPs9H81EMoC4xfgZEdWY.png?scale-down-to=512 512w,https://framerusercontent.com/images/AWt6zcoqPs9H81EMoC4xfgZEdWY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/AWt6zcoqPs9H81EMoC4xfgZEdWY.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/AWt6zcoqPs9H81EMoC4xfgZEdWY.png 2600w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Servcies background image\",fit:\"fill\",intrinsicHeight:534,intrinsicWidth:533.3333333333334,loading:getLoadingLazyAtYPosition(3144),pixelHeight:801,pixelWidth:800,sizes:\"534px\",src:\"https://framerusercontent.com/images/AWt6zcoqPs9H81EMoC4xfgZEdWY.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/AWt6zcoqPs9H81EMoC4xfgZEdWY.png?scale-down-to=512 512w,https://framerusercontent.com/images/AWt6zcoqPs9H81EMoC4xfgZEdWY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/AWt6zcoqPs9H81EMoC4xfgZEdWY.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/AWt6zcoqPs9H81EMoC4xfgZEdWY.png 2600w\"},className:\"framer-9neese\",\"data-framer-name\":\"image\",name:\"image\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-v0xibh\",\"data-border\":true,\"data-framer-name\":\"Gradento\",name:\"Gradento\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-zrlzxq\",\"data-framer-name\":\"Text\",name:\"Text\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"SW50ZXItTGlnaHQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"1.1em\",\"--framer-text-color\":\"var(--token-20608b9f-0145-4a1e-b971-ee948ebbb015, rgb(255, 255, 255))\"},children:\"\u0418\u0422 \u0430\u0443\u0442\u0441\u043E\u0440\u0441\u0438\u043D\u0433\"})}),className:\"framer-11pv6m1\",fonts:[\"Inter-Light\"],verticalAlignment:\"top\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__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:-12,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{ref:ref6,target:{opacity:1,rotate:-70,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-800}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1xysvxy\",\"data-framer-name\":\"Card 3\",name:\"Card 3\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{G0gMHLfJo:{background:{alt:\"Servcies background image\",fit:\"fill\",intrinsicHeight:534,intrinsicWidth:533.3333333333334,loading:getLoadingLazyAtYPosition(2974.8),pixelHeight:801,pixelWidth:800,sizes:\"400px\",src:\"https://framerusercontent.com/images/TriMEg9VI7vab6L5vl80XoMJYF8.jpg\",srcSet:\"https://framerusercontent.com/images/TriMEg9VI7vab6L5vl80XoMJYF8.jpg 800w\"}},V0bY9AVKg:{background:{alt:\"Servcies background image\",fit:\"fill\",intrinsicHeight:534,intrinsicWidth:533.3333333333334,loading:getLoadingLazyAtYPosition(4879.299999999999),pixelHeight:801,pixelWidth:800,sizes:\"400px\",src:\"https://framerusercontent.com/images/TriMEg9VI7vab6L5vl80XoMJYF8.jpg\",srcSet:\"https://framerusercontent.com/images/TriMEg9VI7vab6L5vl80XoMJYF8.jpg 800w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Servcies background image\",fit:\"fill\",intrinsicHeight:534,intrinsicWidth:533.3333333333334,loading:getLoadingLazyAtYPosition(3248),pixelHeight:801,pixelWidth:800,sizes:\"400px\",src:\"https://framerusercontent.com/images/TriMEg9VI7vab6L5vl80XoMJYF8.jpg\",srcSet:\"https://framerusercontent.com/images/TriMEg9VI7vab6L5vl80XoMJYF8.jpg 800w\"},className:\"framer-d706vm\",\"data-framer-name\":\"image\",name:\"image\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1uxi60j\",\"data-border\":true,\"data-framer-name\":\"Gradento\",name:\"Gradento\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-4919zh\",\"data-framer-name\":\"Text\",name:\"Text\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"SW50ZXItTGlnaHQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"1.1em\",\"--framer-text-color\":\"var(--token-20608b9f-0145-4a1e-b971-ee948ebbb015, rgb(255, 255, 255))\"},children:\"\u0412\u043D\u0435\u0434\u0440\u0435\u043D\u0438\u0435 GPT\"})}),className:\"framer-2cayo2\",fonts:[\"Inter-Light\"],verticalAlignment:\"top\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__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:-4,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{ref:ref7,target:{opacity:1,rotate:-70,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-800}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-9d0ovi\",\"data-framer-name\":\"Card 2\",name:\"Card 2\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1ang1ur\",\"data-framer-name\":\"Illustrinny\\xf3\",fill:\"black\",intrinsicHeight:1752,intrinsicWidth:1124,name:\"Illustrinny\\xf3\",svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" version=\"1.1\" id=\"diyw\" x=\"0\" y=\"0\" viewBox=\"0 0 1123.8 1751.9\" style=\"enable-background:new 0 0 1123.8 1751.9\" xml:space=\"preserve\"><style>.st0{fill:#391952}</style><path class=\"st0\" d=\"M604 .5c1.7 1 3.5.8 5.3 1 7.7.7 11.1 4.7 12.8 12.5 1.1 4.9 4.2 9.3 6.5 13.8 6.2 12.5 15.5 23.2 21.2 36 4 9.1 10.3 16.9 14.3 26.1 1.7 3.8 19.2 31.5 25 41.6 3.4 6.1 7.4 11.8 10.4 18.1 2.6 5.5 30.2 50.6 39.5 69 7.1 13.9 14.9 27.5 23.3 40.7 6.3 10 12.1 20.2 17.9 30.5 6.1 10.9 12.8 21.4 19.1 32.2 4.6 7.9 8.9 16 13.4 23.9 4 7 8.7 13.7 12.2 21 4 8.4 9.4 16 13.7 24.3 6.7 12.6 14 24.8 21 37.2 5.3 9.4 10.9 18.6 16.1 28.1 6.3 11.6 11.8 23.6 18.6 34.9 4 6.7 8.1 13.6 8.6 20.9.6 8.2 5.6 8.2 10.9 10.3 11.7 4.7 24.4 4.6 36.2 8.4 10.9 3.5 20.8 8.7 29.9 15.4 5.6 4.2 11 8.6 16.6 12.7 10 7.4 16.2 17.5 22 27.9 12.2 22 16.3 45.9 15.4 70.8-.3 7.2-1.7 14.1-4.8 20.7-4.6 10-7.7 20.6-14 29.8-1.3 1.9-.8 3.7.4 5.6 6.1 10.1 10.6 21.1 16.2 31.4 3 5.6 7.5 10.3 9.8 16.2 3.5 9 8.9 16.9 13.7 25.2 5.2 9 8.2 19.1 15 27.4 3.7 4.6 4.8 11.3 8.5 16 4.3 5.5 5.8 12.1 9.2 17.9 4.8 8.3 10.3 16.4 13.7 25.6 3.5 9.7 8.9 18.5 13.7 27.5 2.3 4.2 5 8.2 6.7 12.8 1.5 4.2 2.4 8.3 1.4 13.1-1.4 6.4-1.8 13.2-1.9 19.8 0 11.4-2.5 22.5-4.6 33.6-3.8 20.5-11.6 67.1-12 81.9-2.4 5.9-2.1 12.5-2.5 18.7-1.6 21.1-4.3 42-7.7 62.9-1.9 11.7-3.4 23.4-5.4 35-1.5 8.2-3.8 16.2-5.8 24.3-1.8 6.9-6.8 9.6-12.5 11.6-3.4 1.2-7.2 2.7-10.9.4-.3-.2-.8-.3-1-.2-4.6 3.4-2.8 5.6-7.3 6.4-1.2.2-9.6 1-10.6 1.1-15.4 1.9-30.8 2.1-46.3 2.2-16.8.2-33.6.9-50.4.6-8.1-.1-16.3.8-24.4-.4-3.7-.6-5 1.6-4.9 5.1.3 14.6.7 29.3.7 43.9.1 35.8.3 71.7 0 107.5-.1 12.1-1 24.3-.8 36.4.1 4.4.8 15.3-17.6 14.9-10-2.2-20.2-.9-30.4-.7-10.6.2-21.2.1-31.9.1-6.6 0-13.3.3-19.9 0-9.1-.4-18.3.1-27.4.1h-38.3c-5 0-10 .1-14.9-.2-3.2-.2-4.6.1-4.5 4.1.4 15.8.6 31.6.5 47.4-.1 28.1-.4 56.2-.9 84.3-.1 9.1-.5 18.2-3.7 27.2-1.4.3-4.6 2.6-6.3 2.9-8.3 1.7-16.8 2.4-25.3 2.5-17.5.2-35 .1-52.5 0-19.8-.1-39.6-.8-59.3-.3-40.3 1-80.6 0-121 .5-3.8 0-7.7.1-11.5-.2-4.1-.3-5.6 1.3-5.5 5.5.5 20.6.9 41.3 1.1 61.9.2 19.5 0 39-.1 58.5 0 5.5 1.5 10.7 2 16.1.2 2.1.2 3.3-2.1 3.4-1 .1-1.9.2-2.9.7-3.9 1.9-7.9 2.7-12.4 3.3-25.6 3.1-51.2 1.9-76.8 1.4-22.6-.5-45.2 0-67.8-.8-23.6-.9-47.2-.3-70.8-1.3-7.7-.3-15.5-.4-23.2-.5-2.1 0-53.2.7-61.5-.9-13.6-2.6-27.2-2.2-40.8-2.1-4.7 0-9.3-.6-13.9-1.2-.3 0-66.7.9-72.1-2.6-1.4-.9-3.2-1.3-3.4-3.3-.2-2.1 1.3-3.3 2.8-4.4 2.8-2 6-1.7 9.2-1.6 11.3.4 22.6.3 33.8 1.5 14.5 1.6 28.8-.6 43.1-1.9 9.3-.9 18.7.2 27.8-2.1 8.7-2.1 70.1-2.6 92-3.2 17.9-.5 35.9-.4 53.8-.4 12.9 0 25.9-.4 38.8-.5 15.4-.2 30.9.3 46.3-.7 12.6-.8 25.2 0 37.8-.5 10.5-.4 21 0 31.4.3 4.2.1 5.8-1.4 5.5-5.5-1.5-19.1-.4-38.2-.5-57.2-.2-22.3.5-44.5 1.9-66.8.2-3.9 2.7-27.7 5.1-35.5 4.4-14.8 7.9-29.9 12.3-44.7 5.2-17.4 9.9-34.9 17.2-51.6.6-1.4 1.6-3.1.4-4.2-3.8-3.5-1.9-7.8-1.3-11.3 4-21.4 8.6-42.7 13.1-64.1 3.6-17.3 7.4-34.5 11-51.7 6.4-30.8 12.6-61.7 19.1-92.5 3.7-17.6 8-35 11.2-52.6 2.9-16.2 6.8-32.3 10-48.4 2.4-12.4 5.5-24.6 7.9-37 4.3-22 8.6-44.1 13.1-66.1 2.5-12.2 6-24.2 8.1-36.4 2.3-13.5 5.7-26.7 8.4-40.1 2.1-10.3 4.7-20.4 7-30.7.3-1.1 1-2.1.2-4.1-1.4 3.3-2.6 6-3.7 8.7-3.8 9.8-8.5 19.1-12.3 28.9-4.2 10.9-9.6 21.2-13.8 32.1-4.4 11.6-10.9 21.9-19.4 31.1-6.5 7.1-12.1 15-18.7 22.1-4.6 4.9-9.3 9.8-14.3 14.5-7 6.6-14.5 12.6-21.5 19.2-5.5 5.2-12.3 8.7-19.4 11.1-15.6 5.2-31.7 8-48.2 6.4-8.2-.8-16.3-1.9-24.2-4.9-17.7-6.7-35.9-12.3-53.7-18.9-23.1-8.6-46-17.7-68.9-26.6-15.2-5.9-30.1-12.3-45.9-16.6-4.6-1.2-5.7-5.8-7.3-9.5-4-9-5.9-18.4-4.3-28.2.6-4-.6-4.8-4.8-4.8-8.2.1-13.3 5.3-18.4 10-6.5 6.1-12.1 13-16.7 20.9-9.6 16.5-18.7 33.4-30.5 48.5-2.4 3.1-5.6 5.7-8.7 8.2-11.4 9.3-22.1 19.6-36.7 24.5-7 2.4-13.9 4-21 3.1-5.9-.8-10.8-4-13.4-9.9-3.5-8-2.8-16.3-2.3-24.6.9-15.3 2.8-30.6 3.1-45.8.4-20.1 5.9-39 9.2-58.5 2.7-16.1 5.5-32.2 8.5-48.2 1-5.5 2.5-11 4.3-16.4 2.4-7.3 2.1-15.1 4.4-22.5 2.7-8.8 7.4-16.6 12.5-24.2.8-1.2 2.1-2.3 3.7-2.5 9.5-1.1 18.9-.8 27.7 3.1 3 1.3 6.1 1.4 9.1 2.2 12.6 3.3 24.9 7.5 37.3 11.3 19.1 5.9 38.1 11.9 57.1 18.1 18.8 6.1 37.5 12.9 56.5 18.6 15.3 4.6 30.3 10.1 45.5 14.9 18.6 5.9 37.2 11.4 55.5 18.2 4.8 1.8 9.9 3 14.8 4.7 2.3.8 4 .4 4.8-2 1.1-3.1 3.3-5.3 5.6-7.6 5.3-5.4 5.9-12.9 8.5-19.5 4.8-12 8.4-24.5 13.6-36.5 2.5-5.8 3.6-12.1 6.2-17.9 5.9-13.2 9.5-27.3 14.9-40.7 3.9-9.9 8.1-19.7 12.1-29.6 1.9-4.6 3.5-9.3 5.1-14 1.2-3.5-1.5-8-6.8-11-5.3-2.9-10.4-5.9-15.3-9.4-5.9-4.1-11.9-7.9-14.9-14.9-.4-1-1-1.7-2.2-1.8-2.8-.4-1.7-2.2-1.4-3.8 2.8-13.2 10.8-23.8 18-34.6 14.1-21 28.4-41.9 43-62.5 7.9-11.1 16.4-21.8 24.9-32.5 7-8.7 12.9-18.2 19.1-27.4 1.7-2.4 1.5-3.7-1.7-5.1-29.6-13.5-60.8-22.9-91.2-34.2-6.4-2.4-13.2-4.3-19-7.5-13.4-7.4-28.5-11.1-40.9-20.5-9.8-7.5-17.2-16.4-21.8-27.9-6.6-16.7-7.5-34-6-51.6.6-6.5 3.9-12.4 7.5-17.8 5.8-14.3 21-28.5 29.5-35.4 9.4-7.7 17.6-16.8 27.4-24 2.8-2.1 5.6-4.1 8.4-6.3 3-2.4 5.9-2.5 9.3-.7 2 1 4.3 1.9 4.3 4.3 0 2.5-1 5.1-3.4 6.2-7.9 3.9-13.5 10-18 17.3-6.9 11.2-16.3 20.6-23.5 31.7-4.8 7.5-8.4 15.5-11.7 23.7-1.4 3.5-1.7 7.3-1.1 10.8 1.9 10.6.8 21.6 3.9 32.1.5 1.7.7 3.7 1.6 5.2 4 6.9 8.9 13.2 14.9 18.6 1.2 1.1 2.7 2.5 4.4 1.6 1.5-.8.8-2.7 1-4.1 2.5-18 7.4-35.2 18.7-49.9 2.1-2.8 1.4-4.4-1.8-4.7-8.5-.8-15.8-5.1-23.3-8.5-3.3-1.4-3.6-3.1-.9-5.4 1.4-1.2 3-2.2 4.7-2.7 6.5-2.1 13.2-3.5 20-3.3 13.6.5 27.2 2.3 40.7 4.2 6.7 1 13.5 1.5 20.7 2.3-.4-4.4-3-7.5-4.8-10.9-7.2-13.9-14.6-27.6-22.4-41.1-8.5-14.7-16.3-29.7-25.3-44.2-5.1-8.2-8.9-17.1-13.6-25.5-6.8-12.2-13.7-24.3-20.9-36.3-5.4-9.2-9.4-19.1-14.8-28.2-5.4-9.1-10.2-18.6-15-28-7.3-14-13.8-28.4-19.5-43.1-1.9-5-1.7-10.2 1.2-15.3 11.7-20.8 25.4-40.2 39.7-59.3 4.9-6.6 22.8-22.7 26.1-24.2 7.8-3.6 14.6-8.5 22-12.6 11.6-6.5 23.1-13.2 34.6-19.9 11.5-6.6 23.2-12.9 34.7-19.7 8.2-4.9 17.7-7 27.1-7.9 14.6-1.4 28.9-4.5 43.5-5.9 8.6-.8 17.1-2.2 25.6-3.4 3.6.5 7 .5 10.3.5zm78.4 1576.4c4.4 0 8.8.1 13.2 0 1.9-.1 2.8-1.3 2.7-3.4-.1-2.2-.3-4.4-.3-6.6-.1-33.1-.5-66.2-.1-99.2.2-20-1.6-40.1 4-59.9 1-3.6 3.1-4.4 5.6-5.2 2.7-.8 5.6-1.1 8.4-1 18.6.4 37.2.2 55.8 0 29.5-.3 58.9-.2 88.4-.1 7 0 14-.4 20.9 1.2 3.5.8 4.6.1 4.7-3.8.4-14.7-.9-29.3-.5-44 .5-18.3.6-36.6.2-54.9-.3-15.5-.1-31 0-46.5.1-9 .3-18 .8-26.9.1-2 .2-3.9-1.4-5.6-4.7-5-.5-9.4 1.1-13.9 1.1-3.2 4.5-3.3 7.2-3.4 13.3-.3 26.6-.8 39.9-.8 13.3.1 26.5-.2 39.8.5 14 .8 28-.1 41.9.9 7.2.5 14.4-.1 21.7.6-.8-1-1.6-1.5-2.4-2-8.5-5.1-17.5-9.7-25.5-15.5-17.2-12.2-35.4-23-53.7-33.5-20.3-11.7-40.9-23-60.8-35.4-6.2-3.9-12.2-8.1-18.6-11.5-10.7-5.8-20.8-12.5-30.5-19.7-4.3-3.2-7-8-10.5-11.9-4.5-5-8-11.1-10.7-17.9-4.5-11.6-13.1-21.1-18.7-32.3-14.1-28-31.9-53.8-46.3-81.6-6-11.7-14.4-22-19.9-34-1.6-3.5-4.3-6.5-6.6-9.9-1.8 2.1-1.8 4.3-2.2 6.3l-11.7 60.3c-2.3 11.9-4.2 23.9-7 35.6-2.5 10.3-4.4 20.8-6.6 31.2-2.8 12.8-4.9 25.8-7.8 38.5-3.1 13.8-5.5 27.7-8.6 41.4-3.4 15.1-6.7 30.4-9.4 45.7-2 11.1-5.1 21.9-6.5 33.2-.9 7.6-3.6 15-5.2 22.6-1.9 9.4-3.8 18.8-4.9 28.4-1.2 10.3-4.9 20.2-6.7 30.5-2.7 15.1-5.8 30.2-9.6 45.2-6.1 24.2-9.4 48.9-15.2 73.2-3.7 15.2-7.2 30.4-10.5 45.7-.5 2.2-.5 4.6-2.4 6.6-3.2 2.5-12.2 5.8-15.6 6.8-10.4 5.9-17.9 9.4-27.2 13.4-1.2.5-2.6.5-3.2 2.1-1 3 2.8 14.8 5.9 16.4 9.4 4.9 18.3 10.9 29 12.7 4.4.7 8.8 1.8 13.1 2.9 9 2.4 17.5 6.1 26 9.9 17.9 7.8 31.2 19.4 36.2 39 1.4 5.6 2.3 11.4 3.6 17.1.9 4.5.1 8.2-3.3 12.5zm74.8-805.5c-2.8 5-2.9 10.3-3.9 15.2-4.3 21.6-7.9 43.2-12.3 64.8-1.2 6 .1 10.8 3.2 15.5 5.8 8.9 10.3 18.6 15.3 28 8.3 15.4 15 31.6 23.8 46.7 5.9 10.2 12.3 20.3 16.8 31.2 5.4 13 13.5 24.4 19.3 37 4.8 10.4 11.8 19.6 15.7 30.5 1.8 5 5.8 8.4 8.9 12.5 1.1 1.4 2.8 1.4 4.6 1.3 9.9-.4 19.8-1.4 29.9-1.3 17.4.2 34.8-.9 52.1 1.1 1.2.1 2.2-.5 3.3-1.1 29.6-17 60.4-31.6 91-46.8 9.1-4.5 14.9-11.6 20.9-18.8 3.7-4.5 6.6-9.6 10.2-14.1 12-15.3 24.5-30.3 37.5-44.8 1.9-2.1 1.9-3.8.7-6.2-2.2-4.6-5.4-8.4-7.9-12.7-17.6-30-34.3-60.6-50.9-91.1-18.5-33.9-37-67.8-55.2-101.9-11-20.5-23.1-40.5-32-62.1-.9-2.2-2.6-2.8-4.6-3.3l-38.4-9c-1.5-.3-13-3.1-14.8-3.4-9.2-1.2-18.5-2.5-27.5-5-1.2-.3-2.7-1.4-3.7-.1-1.1 1.3.3 2.5.8 3.6 3.7 8.4 9 15.9 13.2 24 4.9 9.4 9.6 19 15.3 28 4.4 7 8.7 14.2 12.5 21.5 5.4 10.7 11 21.2 17.2 31.5 4.7 7.8 8.1 16.4 12.9 24.2 11.3 17.9 20.7 36.8 31.8 54.8 4.6 7.5 8.1 15.7 12.3 23.4 5.5 10.2 10.3 20.9 14.3 31.9 2.9 8 5.1 16.2 9.6 23.5 2.9 4.8 5.5 9.9 8 14.9 6.6 12.9 12.2 26.3 19.8 38.6 3.4 5.6 6 11.5 7.5 17.8.4 1.9 1.7 4.2-.3 5.5-1.7 1.2-3.9.3-5.7-.5-1.2-.5-2.3-1.3-3.4-2.1-6.7-4.7-10.7-11.8-14.1-18.9-3-6.2-6.2-12.5-10.1-17.8-6.1-8.4-11.8-14.5-17.4-23.1-2.7-4.2-20.1-31-25.5-39.4-9.4-14.7-17.6-30.1-26.2-45.3-8.8-15.7-17-31.6-24.8-47.8-4.3-9-7.2-18.6-11.7-27.4-9.5-18.5-19.9-36.5-29.9-54.8-13-23.8-26.1-47.6-39-71.5-1.2-2.1-2.7-3.2-4.9-3.7-10.5-2.5-21.1-5-31.5-7.7-4-1.1-5.6.3-6.1 4.1-1.3 9.1-3.7 17.9-5.2 26.9-4.4 25.6-8.5 51.2-13.9 76.5-.9 4.1-.4 7.8 2 11.4 7.8 11.6 13.8 24.3 20.7 36.5 12.1 21.5 23.4 43.4 35.8 64.7 22 37.9 44.5 75.6 64.1 114.9 5.4 10.7 9.5 21.9 14.5 32.8 1 2.3 6.8 14.4 8.7 18.3 4 8 7.9 16.1 12.5 23.8 2.6 4.4 5.6 8.7 5.8 14.2.1 4-1.6 5.5-5.5 4.5-1.6-.5-2.8-1.7-4.2-2.7-5.3-3.9-10.6-8.7-13.5-14.2-9.1-17.1-17.3-34.1-28.8-49.5-7.1-9.5-13.3-19.4-19.5-29.4-6.3-10.1-11.7-20.7-17.3-31.1-4.6-8.4-9.5-16.6-14.6-24.7-8.8-13.9-15.6-29-23.9-43.2-12.7-21.7-24.6-43.8-36.5-65.9-2.4-4.6-4.2-9.1-7.8-13.2zm150.7-199.3c.3-10.1-1.2-19.3-3.1-28.4-.8-3.7-2.7-5.8-6.3-6.9-4.7-1.4-9.5-1.6-14.2-2.8-30.6-7.3-61-15.4-91.3-23.7-28.4-7.8-56.6-16.2-84.9-24.4-22.2-6.4-45-9.6-67.9-12.5-10.2-1.3-20.5-1.3-30.7-2.7-16.3-2.2-32.6-5.1-49-6.6-13.7-1.3-27.3-4.1-41.1-4.8-10.8-.5-21.5-1.2-32.2-3.7-13.9-3.3-28-6-42-8.8-4.4-.9-7.4 1.3-9.4 5.3-9.4 18.2-12 38.3-16 58-.4 2.1.4 3.1 2.3 3.7 9.2 2.9 18.4 5.8 27.4 9.1 11.5 4.3 23.2 8.3 34.9 12.1 9.8 3.2 18.9 8.5 29.1 10.2 5.6.9 24.8 9.1 25.7 7.4 3.9-7.6 9.6-14 14-21.2 3.8-6.1 8.1-11.9 13.5-16.6 3.5-3 7.4-5.7 12.5-5.3 1.5.1 3.2.7 2.2 2.2-3 4.4-3.1 9.7-5.2 14.3-2.8 6.3-6.3 12.6-10.4 18.1-15.4 20.9-27.9 43.4-39.8 66.3-7.3 13.9-16.1 26.8-24.8 39.8-11.7 17.6-24.3 34.5-36.3 51.9-3.6 5.2-7.3 10.3-11.2 15.3-.9 1.1-2.6 2.1-1.6 3.8.9 1.5 2.8.9 4.2.7 8-.7 15.9-1.9 23.9-2.3 9-.5 53.8.4 67.2 2.3 11.4 1.6 22.8 2.9 34 5.2 21 4.2 42 8.5 62.7 14.1 7.3 2 14.8 3.4 21.9 6.5 7.5 3.2 14.9 6.6 22.3 10 11.1 5.1 23 8.6 33.5 15.1 2.4 1.5 4.5 1.3 5.1-2.1.4-2.5.8-4.9 1.3-7.4 6-27.3 11.6-54.7 17-82.1 3.4-17.3 7.5-34.5 11-51.8 1.9-9.1 3.2-18.4 7.1-27 2.5-5.8 4.9-7.3 11-6.5 1.5.2 3.2.3 4.3-.7 2.7-2.4 5.4-1.6 8.4-.9 19 4.3 38.1 8.3 57 12.7 11 2.6 22.2 4.5 33.1 7.6 6.1 1.7 12.1 4.5 18.9 4.1 2.4-.2 3.6-.5 4.3-2.9 4.5-14.3 8.5-28.9 7.6-43.7zM643.4 455c3.9.1 7.4-3.7 6.9-8.7-.9-8.6-1.5-17.2-4.5-25.5-6.3-17.3-7.3-35.2-4.6-53.2 2.2-14.9 11.1-26.1 22.2-35.6 5-4.3 4.7-6.6-1.6-9.7-3.5-1.7-6.3-3.8-8.3-7.5-16.3-29.8-33-59.3-49.4-89.1-10.3-18.6-20.4-37.4-30.4-56.2-7.7-14.4-16-28.4-22.3-43.5-1-2.4-2.7-4.6-4.1-6.8-1.4-2.2-2.9-2.6-5.4-1.1-7.1 4.3-14.5 8.2-21.7 12.3-18.4 10.5-36.7 21-55.2 31.3-3.6 2-3.9 4-1.8 7.1 2.7 4.2 5.4 8.4 7.8 12.8 10.4 19.5 21.8 38.5 32.3 58 15.4 28.5 31.9 56.4 47.7 84.8 5.7 10.2 11 20.5 16.3 30.9 6.3 12.2 14.3 23.6 20.3 35.9 1.8 3.7 11.1 21.4 14.2 26.3 5.4 8.4 9.7 17.3 13.8 26.3 1.2 2.7 2 6.2 5.2 6.9 7.3 1.8 14.7 2.9 22.6 4.3zm116.9-99.9c6.2-.5 13.5-1.2 20.8-1.8 4.6-.3 5-.7 2.9-5-4.2-8.3-8.8-16.4-13.1-24.6-13-24.7-26.9-48.9-40.3-73.4-5.3-9.7-10-19.9-15.9-29.3-3.8-6-7.6-12.1-11.3-18.2-3.8-6.2-6.1-13.4-10.3-19.3-4.1-5.8-5.7-12.6-8.6-18.8-9.4-20-20.1-39.3-29.6-59.2-4.7-9.9-9.7-19.7-15.1-29.2-6.6-11.8-12.7-23.8-18.1-36.3-3.4-7.8-6.7-7.5-11-.2-6.5 11-14.1 21.3-20.4 32.5-5.9 10.6-13 20.5-19.1 31-2 3.4-1.6 5.4.4 8.3 5.6 8.4 11.3 16.8 16.3 25.5 12.8 22.2 25 44.7 37.9 66.8 3.9 6.8 7.4 13.8 11.2 20.6 7.5 13.1 15 26.3 22.4 39.5 6.4 11.3 12.9 22.6 18.7 34.1 2.6 5.1 6 10 5.5 16.3-.3 3.3 1.7 5.1 5.1 4.2 8-2 15.9-1.6 23.7.5 6.9 1.9 14.3 3.2 20.4 6.9 9.4 5.8 15.8 14.6 20.7 24.4 1.2 2.8 2.1 5.6 6.8 4.7zM372.6 175.7c-1.4.9-3.8-.5-4.8 1.5-.8 1.7.9 3 1.8 4.4 3 5 5.7 10.1 8.9 14.9 10.8 16 19.3 33.3 28.8 50 6.7 11.9 12.9 24.1 19.3 36.1 8.8 16.4 17.7 32.8 26.4 49.2 6.9 13.1 13.5 26.3 20.6 39.3 10.7 19.7 21.7 39.3 32.5 59 1.7 3.1 4 4.5 7.4 5.1 7.2 1.3 14.6.9 21.8 2.3 14 2.7 28.4 3.7 42.4 6.6 1.4.3 3.2.7 4.2-.7s0-2.9-.8-4.2c-6.4-10.1-11.9-20.8-18-31.1-12.9-21.5-24.5-43.8-37.1-65.5-11.6-20-22.5-40.4-33.7-60.6-9.5-17.1-19.2-34.2-28.6-51.4-8.6-15.6-17.1-31.2-25.4-46.9-4.3-8.2-4.5-8.6-13.7-8.2-1.3.1-2.6.4-4 .5-9.3.6-18.6 2.5-27.9 1.1-6.6-.9-13.3.2-20.1-1.4zm494 897.1c1.2 1.2 1.5 1.6 1.9 1.8 19.6 9.2 37.9 20.7 56.6 31.4 15.2 8.6 29.8 18.2 44.9 26.9 8.2 4.8 29.7 15.3 32.2 14.6 9 1.3 14.9 1.5 22.5 0 23.7-3.1 29.1-11.4 33.2-14.7 7.5-5.9 13.7-13.1 20-20.2.7-.8 1.5-1.9 1.7-3 2.4-12.6 4.6-25.2 7-37.7 1.6-8.1.5-16.3 1.4-24.4 1.3-11.4 3.6-22.6 5.4-33.9 1.8-10.8 2.8-21.8 3.8-32.7.7-7.8 1.5-15.6 2.3-23.7-10.9 12.4-21.6 24.5-32.2 36.6-.8.9-1.5 1.9-1.9 2.9-4.6 13.5-14.2 22.1-26.7 28.1-10.8 5.2-21.4 10.8-32.1 16.1-18.8 9.4-37.4 18.9-56.3 28-9.1 4.4-18.7 6.4-28.4 6.3-18-.2-36.1-.6-55.3-2.4zm-204.8 489.4c1.9-4.5-1.8-8.8-2.9-13.7-1.4-6-4.8-10.1-9.7-13.3-13.5-8.6-28.5-13.9-43.9-17.2-14.1-3-26.3-9.3-37.9-17.1-8.9-6-12.5-15.3-13.5-25.7-.3-3.2-1-6.2-5.4-5.1-21.9 5.2-43.8.1-65.7-.1-3.8 0-5.4.4-6 4.4-3.9 23.7-10.2 46.8-16.2 70-2.5 9.5-3.9 19.3-9.2 27.9-.7 1.1-2.2 2-1.4 3.5s2.3.8 3.6.8c14.9 0 29.9-.2 44.8-.1 23.8.1 47.5.8 71.3.4 13.3-.3 26.5.5 39.8 0 6.9-.3 14-.9 20.9-.2 10.2.9 20.3.1 30.4-.1 2.5 0 3-.8 2-3-1.5-3.3-1-6.8-1-11.4zM77.5 1076.5c1-.2 1.7-.2 2.2-.5 7.7-4.8 14.4-10.9 19.7-18.2 11.2-15.6 19.5-32.9 28.8-49.6 6.2-11.1 13.2-21.6 22.7-30.2 8.2-7.5 18.1-12.1 28.6-13 10.4-1 21.4-4.5 31.7 1.7 2.2 1.3 4.1.4 4.8-2.5 3.5-15.1 5.9-30.4 6.8-45.9.3-5.1-1.6-6.7-6.7-5.8-2.3.4-4-.2-5.5-1.5-1.7-1.5-3.6-2.4-5.7-3-5.7-1.9-11.4-3.7-17.1-5.6-17.8-5.9-35.7-12-53.5-17.9-6.8-2.3-6.8-2-7.3 4.8-.5 7.6-1.1 15.3-2.5 22.8-3.1 17.4-7.2 34.5-10.1 51.9-3.9 23.7-10.2 46.7-18.6 69.1-4.4 11.9-10.4 23-15.5 34.6-1.1 2.8-2.7 5.3-2.8 8.8zM750 433.4c.4 4.7 2.6 7.5 4 10.6 5.8 12.9 14.9 24 19.9 37.3.8 2.2 2.7 2.7 4.7 3.2 5.3 1.3 10.7 2.4 16 4 23.3 7.2 47.5 11.6 70.5 20 .9.3 2 1 2.8.1 1.1-1.1-.1-2.1-.6-3.1-3.5-6.2-7.2-12.3-10.6-18.6-7.2-13.7-14.3-27.4-21.5-41.1-12.8-24.3-25.7-48.5-38.5-72.8-3.4-6.5-4.2-7.2-11-4.3-6.5 2.7-13.1 4.7-19.9 6.3-2.5.6-3.8 1.9-3.2 4.6 2.9 11.3 1.9 23.6 7.9 34.2.5.9.8 1.8 1.1 2.8.5 1.6-2.7 12.5-4 13.5-.5.4-1.2.5-1.8.8-4.7 2.7-9.6 5.2-15.8 2.5zm175.2 109.8c-.6 3.6 1.8 6 2.1 9 1.1 11.1 2.7 22.2 1.6 33.4-1.1 11.4-2.5 22.9-7.9 33.2-1.8 3.4-.6 4.5 2.5 5.2 5.2 1.2 10.3 2.6 15.6 3.4 11.3 1.8 21.1 7.9 32.2 10.1 1.2.2 2.1 1 2.7 2.1 7.7 13.6 16.6 26.5 23.2 40.7 1 2.2 2.2 4.4 4.1 6 6.8-8.8 11-21.3 11.5-32.2.4-8.2-.3-16.4-1.6-24.4-3-19.8-11.9-36.8-26.3-51-4.3-4.2-9.3-7.5-13.9-11.3-13.6-11-28.7-19-45.8-24.2zM586.7 28.9c-7.8.1-14.4.9-20.8 2.2-17.4 3.4-35 4.9-52.5 7.3-3.1.4-5.9-.6-9.1.3-9.5 2.7-17.2 8.7-25.6 13.2-21.3 11.3-41.3 24.9-63.5 34.4-5.8 2.5-9.7 6.7-12.9 12-5.3 8.8-10.3 17.8-16.2 26.3-6.3 9-12 18.2-16.8 28.1-.8 1.6-2.4 3.6 1.2 3.7 10.3.2 20.6.7 30.9.1 9.5-.5 18.9-1.8 28.4-2 3.2-.1 14.6-2.9 16-5 2.4-3.7 6.3-5.2 9.8-7.3 14.5-8.5 28.8-17.2 43.5-25.3C513.3 109 527 100 541.7 93c5.5-2.6 10.2-5.8 13.1-11.6 3.4-6.8 7.3-13.4 11.2-19.9 6.5-10.7 12.3-21.8 20.7-32.6zm148 402.8c-.9-4.6 1.6-8.3 3.5-12.4 1.1-2.5 2.8-3.1 5.1-2.9 3 .2 5.9.7 8.9.8 2.8 0 4.3-1.7 2.7-4.2-4.4-7-7-14.7-10.6-22-1.4-2.7-3.1-3.4-6-2.7-2.8.6-4.7 1.8-6.5 4.1-2.7 3.5-2.7 7.3-2.7 11.3 0 3.1-.6 6.1-4.2 7.2-3.4 1-6.9 1.5-9.7-1.6-1.4-1.5-2.8-2.9-4.2-4.2-2.4-2.2-4.9-4.4-8.4-2.9-3.7 1.6-4.6 5.2-4.4 8.8.4 6.4 2.2 12.4 6.9 17.2 1.1 1.1 2.9 2.2 1.4 4.1-1.2 1.6-2.9 1.3-4.6.7-.8-.3-1.5-.6-2.3-.9-7.1-2.7-7.5-2.6-11.8 4.1-.3.5-.8 1.3-1.3 1.4-4.4 1.2-8.2 4.4-13.1 4.3-2 0-4.1.8-4.5 3.2-.5 3.4-.6 6.9-1.8 10.3-.6 2 1.2 1.9 2.5 2.3 3.2.9 6.6-.1 9.9.9 7 1.9 14.3 3.3 21.3 5.2 3.4.9 4.8-.2 5.9-3.3 1.5-4.2 3.4-8.3 5.3-12.4 2.1-4.6 5.6-5.5 9.7-2.6 1 .7 1.8.4 2.8.2 7.2-1.4 10.6-5.9 10.2-14zm-75.8-60.1c1.8-.2 3.7-.2 5.4-.6 21.2-4.9 43-6.8 64.2-11.4 1.9-.4 4.5 0 5.3-2s-1.3-3.6-2.6-5.1c-11-13.4-31.3-18.9-49.1-12.7-13.3 4.7-22.7 13.6-25.2 28.2-.2 1.7-1.4 3.9 2 3.6zm58.4 94.6c.9 1.3 1.1 1.8 1.5 2.1 6 5.2 13.7 5.1 20.8 6.7.4.1 1.3-.2 1.3-.4.8-4.2-3-6.6-3.9-10.2-.4-1.5-1.5-2.5-3-1.4-4.8 3.6-10.3 3.9-16.7 3.2z\"/><path class=\"st0\" d=\"M517.2 50.2c6.8 2.7 16.4 1.5 20.1 11.2 1.4 3.5 2.4 7.2 3.4 10.9.9 3.4-1.1 5.7-3 8-3.4 4.1-8.4 6.4-11.6 10.7-3.3 4.5-25.6 17.4-32.2 21.1-12.9 7.2-26.2 13.6-39.6 19.8-3.8 1.8-7.9 3.1-11.9 4.9-1.7.8-28.8 6.5-34.1 1.4-5.6-5.4-5.4-14-.1-20.6 8.1-10.1 18-17.9 28.2-25.7 10.4-8 21.6-14.6 32.4-21.9 2.6-1.8 13.3-4.9 15.3-6.4 8.2-5.9 16.7-10.9 26.9-12.6 1.8-.3 3.6-.5 6.2-.8zm-72.4 60.3c15.3-4.3 55.8-23.3 64.3-33.8.7-.9.1-2.2-1.1-2.2-27.7.5-50.9 22.2-64.6 33.5-1.1 1-.1 2.9 1.4 2.5z\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{G0gMHLfJo:{background:{alt:\"Servcies background image\",fit:\"fill\",intrinsicHeight:534,intrinsicWidth:533.3333333333334,loading:getLoadingLazyAtYPosition(2840.8),pixelHeight:801,pixelWidth:800,sizes:\"534px\",src:\"https://framerusercontent.com/images/7Zpq5rsCuhC8CoNtwow4eE3TemA.png\",srcSet:\"https://framerusercontent.com/images/7Zpq5rsCuhC8CoNtwow4eE3TemA.png 800w\"}},V0bY9AVKg:{background:{alt:\"Servcies background image\",fit:\"fill\",intrinsicHeight:534,intrinsicWidth:533.3333333333334,loading:getLoadingLazyAtYPosition(4745.299999999999),pixelHeight:801,pixelWidth:800,sizes:\"534px\",src:\"https://framerusercontent.com/images/7Zpq5rsCuhC8CoNtwow4eE3TemA.png\",srcSet:\"https://framerusercontent.com/images/7Zpq5rsCuhC8CoNtwow4eE3TemA.png 800w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Servcies background image\",fit:\"fill\",intrinsicHeight:534,intrinsicWidth:533.3333333333334,loading:getLoadingLazyAtYPosition(3114),pixelHeight:801,pixelWidth:800,sizes:\"534px\",src:\"https://framerusercontent.com/images/7Zpq5rsCuhC8CoNtwow4eE3TemA.png\",srcSet:\"https://framerusercontent.com/images/7Zpq5rsCuhC8CoNtwow4eE3TemA.png 800w\"},className:\"framer-1ad1oe1\",\"data-framer-name\":\"image\",name:\"image\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-f0t6ah\",\"data-border\":true,\"data-framer-name\":\"Gradento\",name:\"Gradento\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-xf577m\",\"data-framer-name\":\"Text\",name:\"Text\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"SW50ZXItTGlnaHQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"1.1em\",\"--framer-text-color\":\"var(--token-20608b9f-0145-4a1e-b971-ee948ebbb015, rgb(255, 255, 255))\"},children:\"\u0420\u0430\u0437\u0440\u0430\u0431\u043E\u0442\u043A\u0430\"})}),className:\"framer-jygyxm\",fonts:[\"Inter-Light\"],verticalAlignment:\"top\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__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:4,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{ref:ref8,target:{opacity:1,rotate:-70,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-800}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-9e7cv9\",\"data-framer-name\":\"Card 1\",name:\"Card 1\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{G0gMHLfJo:{background:{alt:\"Servcies background image\",fit:\"fill\",intrinsicHeight:533.3333333333334,intrinsicWidth:533.3333333333334,loading:getLoadingLazyAtYPosition(2974.8),pixelHeight:800,pixelWidth:800,sizes:\"401px\",src:\"https://framerusercontent.com/images/TrbTQ8gSDTFgzJUBQkhOk2hAWOA.jpg\",srcSet:\"https://framerusercontent.com/images/TrbTQ8gSDTFgzJUBQkhOk2hAWOA.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/TrbTQ8gSDTFgzJUBQkhOk2hAWOA.jpg 800w\"}},V0bY9AVKg:{background:{alt:\"Servcies background image\",fit:\"fill\",intrinsicHeight:533.3333333333334,intrinsicWidth:533.3333333333334,loading:getLoadingLazyAtYPosition(4879.299999999999),pixelHeight:800,pixelWidth:800,sizes:\"401px\",src:\"https://framerusercontent.com/images/TrbTQ8gSDTFgzJUBQkhOk2hAWOA.jpg\",srcSet:\"https://framerusercontent.com/images/TrbTQ8gSDTFgzJUBQkhOk2hAWOA.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/TrbTQ8gSDTFgzJUBQkhOk2hAWOA.jpg 800w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Servcies background image\",fit:\"fill\",intrinsicHeight:533.3333333333334,intrinsicWidth:533.3333333333334,loading:getLoadingLazyAtYPosition(3248),pixelHeight:800,pixelWidth:800,sizes:\"401px\",src:\"https://framerusercontent.com/images/TrbTQ8gSDTFgzJUBQkhOk2hAWOA.jpg\",srcSet:\"https://framerusercontent.com/images/TrbTQ8gSDTFgzJUBQkhOk2hAWOA.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/TrbTQ8gSDTFgzJUBQkhOk2hAWOA.jpg 800w\"},className:\"framer-1fuz9uf\",\"data-framer-name\":\"image\",name:\"image\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1thv8ew\",\"data-border\":true,\"data-framer-name\":\"Gradento\",name:\"Gradento\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-2iff2\",\"data-framer-name\":\"Text\",name:\"Text\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"SW50ZXItTGlnaHQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"1.1em\",\"--framer-text-color\":\"var(--token-20608b9f-0145-4a1e-b971-ee948ebbb015, rgb(255, 255, 255))\"},children:\"No-code \u043F\u043B\u0430\u0442\u0444\u043E\u0440\u043C\u044B\"})}),className:\"framer-1qii5kw\",fonts:[\"Inter-Light\"],verticalAlignment:\"top\",withExternalLayout:true})})})]})]})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-1o8fui\",\"data-framer-name\":\"Trigger-1\",id:elementId3,name:\"Trigger-1\",ref:ref8}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-tti6ep\",\"data-framer-name\":\"Trigger-2\",id:elementId4,name:\"Trigger-2\",ref:ref7}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-1b47muw\",\"data-framer-name\":\"Trigger-3\",id:elementId5,name:\"Trigger-3\",ref:ref6}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-1txh8j6\",\"data-framer-name\":\"Trigger-4\",id:elementId6,name:\"Trigger-4\",ref:ref5}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{G0gMHLfJo:{y:6485.8},V0bY9AVKg:{y:8130.299999999999}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:889,width:\"100vw\",y:6759,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ps97mj-container\",id:elementId7,ref:ref9,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{G0gMHLfJo:{variant:\"X43bH5CtF\"},V0bY9AVKg:{variant:\"nT7czNAoN\"}},children:/*#__PURE__*/_jsx(ContactSection,{height:\"100%\",id:\"rBtijvTXx\",layoutId:\"rBtijvTXx\",style:{width:\"100%\"},variant:\"gTV7jw7Q8\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:cx(serializationHash,...sharedStyleClassNames),id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",`.${metadata.bodyClassName}-framer-VzyQx { background: var(--token-8139056f-6eb1-43e3-a0ba-39ab18aa1fb5, rgb(25, 23, 30)) /* {\"name\":\"Neutral 03\"} */; }`,\".framer-VzyQx.framer-1a8c6kr, .framer-VzyQx .framer-1a8c6kr { display: block; }\",\".framer-VzyQx.framer-42jx4r { align-content: center; align-items: center; background-color: var(--token-8139056f-6eb1-43e3-a0ba-39ab18aa1fb5, #19171e); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1440px; }\",\".framer-VzyQx .framer-1c9i6ru-container { flex: none; height: auto; left: 50%; position: fixed; top: 0px; transform: translateX(-50%); width: 100%; z-index: 2; }\",\".framer-VzyQx .framer-aj1pg7 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 100vh; justify-content: flex-end; overflow: hidden; padding: 196px 0px 120px 0px; position: relative; width: 100%; }\",\".framer-VzyQx .framer-6n1sj7 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: center; max-width: 1320px; overflow: hidden; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-VzyQx .framer-807ktm, .framer-VzyQx .framer-1s13jbg { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-VzyQx .framer-18b6xhy, .framer-VzyQx .framer-11hjlot { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-VzyQx .framer-689cry { -webkit-user-select: none; flex: none; height: auto; pointer-events: auto; position: relative; user-select: none; white-space: pre-wrap; width: 60%; word-break: break-word; word-wrap: break-word; }\",\".framer-VzyQx .framer-5wv7u6-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-VzyQx .framer-188eumb, .framer-VzyQx .framer-y2gagl { --border-bottom-width: 1px; --border-color: var(--token-6f65aca3-040a-4dc9-a9ae-fa1eca621033, #393b43); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: var(--token-91dde303-ebf6-4a94-86a9-809a76d5fca4, #613fe7); border-bottom-left-radius: 58px; border-bottom-right-radius: 58px; border-top-left-radius: 58px; border-top-right-radius: 58px; cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: hidden; padding: 10px 24px 10px 24px; position: relative; text-decoration: none; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-VzyQx .framer-v90ksw, .framer-VzyQx .framer-ajksia { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre; width: auto; z-index: 3; }\",\".framer-VzyQx .framer-fklbsd, .framer-VzyQx .framer-1jcir0y { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 16px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 16px; z-index: 2; }\",\".framer-VzyQx .framer-1x74zgt-container, .framer-VzyQx .framer-sc0kyy-container { flex: none; height: 16px; position: relative; width: 16px; z-index: 1; }\",\".framer-VzyQx .framer-st92ez, .framer-VzyQx .framer-8o734u { background-color: var(--token-91dde303-ebf6-4a94-86a9-809a76d5fca4, #613fe7); flex: none; height: 100%; left: -9px; overflow: visible; position: absolute; top: 0px; width: 9px; z-index: 1; }\",\".framer-VzyQx .framer-b61ygv { -webkit-backdrop-filter: blur(20px); align-content: center; align-items: center; backdrop-filter: blur(20px); background-color: rgba(78, 78, 78, 0.2); border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: flex-start; overflow: visible; padding: 24px 32px 24px 32px; position: relative; width: 100%; }\",\".framer-VzyQx .framer-owr0fk, .framer-VzyQx .framer-6w4b09 { -webkit-user-select: none; flex: 1 0 0px; height: auto; pointer-events: auto; position: relative; user-select: none; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-VzyQx .framer-1drako2 { -webkit-filter: blur(15px); background: radial-gradient(25% 50% at 50% 100%, #0f93ff 0%, rgba(255, 255, 255, 0) 100%); border-bottom-left-radius: 72px; border-bottom-right-radius: 72px; border-top-left-radius: 72px; border-top-right-radius: 72px; bottom: -52px; filter: blur(15px); flex: none; left: -520px; opacity: 0.2; overflow: hidden; position: absolute; top: 0px; width: 1784px; will-change: var(--framer-will-change-override, transform); z-index: 0; }\",\".framer-VzyQx .framer-hnya06 { align-content: center; align-items: center; background-color: var(--token-8139056f-6eb1-43e3-a0ba-39ab18aa1fb5, #000000); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 8px 0px 8px 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-VzyQx .framer-xf9p6l { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; max-width: 1320px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-VzyQx .framer-1ow2oco-container { -webkit-filter: grayscale(0); filter: grayscale(0); flex: none; height: 200px; position: relative; width: 981px; }\",\".framer-VzyQx .framer-7250c2, .framer-VzyQx .framer-8k1atu, .framer-VzyQx .framer-ye9syg { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-VzyQx .framer-12wf4oh { flex: none; height: 40px; position: relative; width: 196px; }\",\".framer-VzyQx .framer-1ftmdua { height: 42px; position: relative; width: 42px; }\",\".framer-VzyQx .framer-1y11zy6 { flex: none; height: 35px; position: relative; width: 187px; }\",\".framer-VzyQx .framer-sjdwwy { height: 40px; overflow: hidden; position: relative; width: 37px; }\",\".framer-VzyQx .framer-u7qgpw { flex: none; height: 40px; left: calc(48.648648648648674% - 37px / 2); position: absolute; top: calc(50.00000000000002% - 40px / 2); width: 37px; }\",\".framer-VzyQx .framer-n03a3r { flex: none; height: 30px; position: relative; width: 119px; }\",\".framer-VzyQx .framer-1m01kpe, .framer-VzyQx .framer-2oeq3p { align-content: center; align-items: center; background-color: #000000; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 60px 0px 60px 0px; position: relative; width: 100%; }\",\".framer-VzyQx .framer-16g1k9y, .framer-VzyQx .framer-r1wam7 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: center; max-width: 1320px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-VzyQx .framer-f5zwrn { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 60px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-VzyQx .framer-1e5vity { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-VzyQx .framer-8z45lp, .framer-VzyQx .framer-1pec9hd, .framer-VzyQx .framer-1fefncn { -webkit-user-select: none; flex: none; height: auto; pointer-events: auto; position: relative; user-select: none; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-VzyQx .framer-bislho, .framer-VzyQx .framer-wz4gpt { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-VzyQx .framer-1svgano { --border-bottom-width: 1px; --border-color: var(--token-c10ffba5-6ae6-4742-b1d5-4ccf1da5f728, #a076f9); --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 0px; align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 0px 32px 0px; position: relative; width: 100%; }\",\".framer-VzyQx .framer-7hascn, .framer-VzyQx .framer-lgnjt0, .framer-VzyQx .framer-xgm7gd { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-VzyQx .framer-gwsq1, .framer-VzyQx .framer-1h9jxb0, .framer-VzyQx .framer-e2jjlz, .framer-VzyQx .framer-11pv6m1, .framer-VzyQx .framer-2cayo2, .framer-VzyQx .framer-jygyxm, .framer-VzyQx .framer-1qii5kw { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-VzyQx .framer-1e5y6gw, .framer-VzyQx .framer-wf3tba { --border-bottom-width: 1px; --border-color: var(--token-c10ffba5-6ae6-4742-b1d5-4ccf1da5f728, #a076f9); --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 0px; align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 32px 0px 32px 0px; position: relative; width: 100%; }\",\".framer-VzyQx .framer-12r50d4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-VzyQx .framer-1jwh2gr { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-VzyQx .framer-1fc36f5 { align-content: flex-end; align-items: flex-end; display: flex; flex: 0.65 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-VzyQx .framer-jj2b4x { -webkit-user-select: none; flex: none; height: auto; pointer-events: auto; position: relative; user-select: none; white-space: pre; width: auto; }\",\".framer-VzyQx .framer-13q3al2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-VzyQx .framer-zix0w6 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-VzyQx .framer-yrsl05, .framer-VzyQx .framer-1a84oyd, .framer-VzyQx .framer-d3y3av { --border-bottom-width: 1px; --border-color: rgba(255, 255, 255, 0.1); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; background-color: #000000; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 32px 48px 32px 48px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-VzyQx .framer-1s5ne5d, .framer-VzyQx .framer-f2801i, .framer-VzyQx .framer-12kiugl { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-VzyQx .framer-14la1wa { flex: none; height: 335px; overflow: visible; position: relative; width: 335px; }\",\".framer-VzyQx .framer-3q387y, .framer-VzyQx .framer-1rqd3yh, .framer-VzyQx .framer-1olrtmh { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-VzyQx .framer-u96uof, .framer-VzyQx .framer-1xhikrq, .framer-VzyQx .framer-1f90gfk { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-VzyQx .framer-c63fd, .framer-VzyQx .framer-8rtbj7, .framer-VzyQx .framer-ic7pxy, .framer-VzyQx .framer-134yxce, .framer-VzyQx .framer-kweez9, .framer-VzyQx .framer-fuzpiz { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-VzyQx .framer-19we7qb, .framer-VzyQx .framer-19c6ovj { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 335px); overflow: visible; position: relative; width: 335px; }\",\".framer-VzyQx .framer-jx0221 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 200px; height: 100vh; justify-content: center; overflow: visible; padding: 0px; position: sticky; top: 0px; width: 100%; will-change: transform; z-index: 1; }\",\".framer-VzyQx .framer-1tlo87x { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 100vh; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-VzyQx .framer-qm91lk { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-VzyQx .framer-9iotsh { -webkit-filter: blur(60px); background-color: rgba(97, 63, 232, 0.24); border-bottom-left-radius: 50%; border-bottom-right-radius: 50%; border-top-left-radius: 50%; border-top-right-radius: 50%; filter: blur(60px); flex: none; height: 519px; left: calc(50.00000000000002% - 1026px / 2); overflow: hidden; position: absolute; top: calc(50.00000000000002% - 519px / 2); width: 1026px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-VzyQx .framer-1pg3dfs, .framer-VzyQx .framer-1xysvxy, .framer-VzyQx .framer-9d0ovi, .framer-VzyQx .framer-9e7cv9 { background-color: #2451e3; border-bottom-left-radius: 35px; border-bottom-right-radius: 35px; border-top-left-radius: 35px; border-top-right-radius: 35px; flex: none; height: 380px; left: calc(50.00000000000002% - 300px / 2); overflow: hidden; position: absolute; top: calc(50.00000000000002% - 380px / 2); width: 300px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-VzyQx .framer-9neese { aspect-ratio: 0.9987515605493135 / 1; bottom: -30px; flex: none; height: var(--framer-aspect-ratio-supported, 535px); left: -197px; overflow: visible; position: absolute; right: -37px; }\",\".framer-VzyQx .framer-v0xibh, .framer-VzyQx .framer-1uxi60j, .framer-VzyQx .framer-f0t6ah, .framer-VzyQx .framer-1thv8ew { --border-bottom-width: 1px; --border-color: rgba(255, 255, 255, 0.05); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 0px; background: linear-gradient(180deg, rgba(36, 81, 227, 0.11) 0%, rgb(36, 81, 227) 100%); border-bottom-left-radius: 35px; border-bottom-right-radius: 35px; border-top-left-radius: 35px; border-top-right-radius: 35px; bottom: 0px; flex: none; left: 0px; overflow: hidden; position: absolute; right: 0px; top: 0px; will-change: var(--framer-will-change-override, transform); }\",\".framer-VzyQx .framer-zrlzxq, .framer-VzyQx .framer-4919zh, .framer-VzyQx .framer-xf577m, .framer-VzyQx .framer-2iff2 { align-content: center; align-items: center; bottom: 30px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 30px; overflow: visible; padding: 0px; position: absolute; right: 30px; }\",\".framer-VzyQx .framer-d706vm { aspect-ratio: 0.9987515605493135 / 1; bottom: 0px; flex: none; height: var(--framer-aspect-ratio-supported, 401px); left: -19px; overflow: visible; position: absolute; right: -81px; }\",\".framer-VzyQx .framer-1ang1ur { aspect-ratio: 0.6415525114155252 / 1; bottom: -16px; flex: none; position: absolute; right: -13px; top: -51px; width: var(--framer-aspect-ratio-supported, 287px); }\",\".framer-VzyQx .framer-1ad1oe1 { aspect-ratio: 0.9987515605493135 / 1; bottom: 0px; flex: none; height: var(--framer-aspect-ratio-supported, 535px); left: -117px; overflow: visible; position: absolute; right: -117px; }\",\".framer-VzyQx .framer-1fuz9uf { aspect-ratio: 1 / 1; bottom: 0px; flex: none; height: var(--framer-aspect-ratio-supported, 401px); left: -19px; overflow: visible; position: absolute; right: -82px; }\",\".framer-VzyQx .framer-1o8fui, .framer-VzyQx .framer-tti6ep, .framer-VzyQx .framer-1b47muw, .framer-VzyQx .framer-1txh8j6 { flex: none; height: 700px; overflow: hidden; position: relative; width: 100%; }\",\".framer-VzyQx .framer-1ps97mj-container { flex: none; height: auto; position: relative; width: 100%; z-index: 3; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-VzyQx.framer-42jx4r, .framer-VzyQx .framer-aj1pg7, .framer-VzyQx .framer-6n1sj7, .framer-VzyQx .framer-807ktm, .framer-VzyQx .framer-18b6xhy, .framer-VzyQx .framer-11hjlot, .framer-VzyQx .framer-188eumb, .framer-VzyQx .framer-fklbsd, .framer-VzyQx .framer-y2gagl, .framer-VzyQx .framer-1jcir0y, .framer-VzyQx .framer-b61ygv, .framer-VzyQx .framer-hnya06, .framer-VzyQx .framer-xf9p6l, .framer-VzyQx .framer-7250c2, .framer-VzyQx .framer-8k1atu, .framer-VzyQx .framer-ye9syg, .framer-VzyQx .framer-1m01kpe, .framer-VzyQx .framer-16g1k9y, .framer-VzyQx .framer-1s13jbg, .framer-VzyQx .framer-f5zwrn, .framer-VzyQx .framer-1e5vity, .framer-VzyQx .framer-bislho, .framer-VzyQx .framer-1svgano, .framer-VzyQx .framer-1e5y6gw, .framer-VzyQx .framer-wf3tba, .framer-VzyQx .framer-2oeq3p, .framer-VzyQx .framer-r1wam7, .framer-VzyQx .framer-12r50d4, .framer-VzyQx .framer-1jwh2gr, .framer-VzyQx .framer-wz4gpt, .framer-VzyQx .framer-1fc36f5, .framer-VzyQx .framer-13q3al2, .framer-VzyQx .framer-zix0w6, .framer-VzyQx .framer-yrsl05, .framer-VzyQx .framer-1s5ne5d, .framer-VzyQx .framer-3q387y, .framer-VzyQx .framer-u96uof, .framer-VzyQx .framer-1a84oyd, .framer-VzyQx .framer-f2801i, .framer-VzyQx .framer-1rqd3yh, .framer-VzyQx .framer-1xhikrq, .framer-VzyQx .framer-d3y3av, .framer-VzyQx .framer-12kiugl, .framer-VzyQx .framer-1olrtmh, .framer-VzyQx .framer-1f90gfk, .framer-VzyQx .framer-jx0221, .framer-VzyQx .framer-1tlo87x, .framer-VzyQx .framer-zrlzxq, .framer-VzyQx .framer-4919zh, .framer-VzyQx .framer-xf577m, .framer-VzyQx .framer-2iff2 { gap: 0px; } .framer-VzyQx.framer-42jx4r > *, .framer-VzyQx .framer-hnya06 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-VzyQx.framer-42jx4r > :first-child, .framer-VzyQx .framer-aj1pg7 > :first-child, .framer-VzyQx .framer-6n1sj7 > :first-child, .framer-VzyQx .framer-807ktm > :first-child, .framer-VzyQx .framer-hnya06 > :first-child, .framer-VzyQx .framer-xf9p6l > :first-child, .framer-VzyQx .framer-1m01kpe > :first-child, .framer-VzyQx .framer-16g1k9y > :first-child, .framer-VzyQx .framer-1s13jbg > :first-child, .framer-VzyQx .framer-1e5vity > :first-child, .framer-VzyQx .framer-bislho > :first-child, .framer-VzyQx .framer-2oeq3p > :first-child, .framer-VzyQx .framer-r1wam7 > :first-child, .framer-VzyQx .framer-12r50d4 > :first-child, .framer-VzyQx .framer-wz4gpt > :first-child, .framer-VzyQx .framer-1fc36f5 > :first-child, .framer-VzyQx .framer-13q3al2 > :first-child, .framer-VzyQx .framer-1s5ne5d > :first-child, .framer-VzyQx .framer-3q387y > :first-child, .framer-VzyQx .framer-u96uof > :first-child, .framer-VzyQx .framer-f2801i > :first-child, .framer-VzyQx .framer-1rqd3yh > :first-child, .framer-VzyQx .framer-1xhikrq > :first-child, .framer-VzyQx .framer-12kiugl > :first-child, .framer-VzyQx .framer-1olrtmh > :first-child, .framer-VzyQx .framer-1f90gfk > :first-child, .framer-VzyQx .framer-jx0221 > :first-child { margin-top: 0px; } .framer-VzyQx.framer-42jx4r > :last-child, .framer-VzyQx .framer-aj1pg7 > :last-child, .framer-VzyQx .framer-6n1sj7 > :last-child, .framer-VzyQx .framer-807ktm > :last-child, .framer-VzyQx .framer-hnya06 > :last-child, .framer-VzyQx .framer-xf9p6l > :last-child, .framer-VzyQx .framer-1m01kpe > :last-child, .framer-VzyQx .framer-16g1k9y > :last-child, .framer-VzyQx .framer-1s13jbg > :last-child, .framer-VzyQx .framer-1e5vity > :last-child, .framer-VzyQx .framer-bislho > :last-child, .framer-VzyQx .framer-2oeq3p > :last-child, .framer-VzyQx .framer-r1wam7 > :last-child, .framer-VzyQx .framer-12r50d4 > :last-child, .framer-VzyQx .framer-wz4gpt > :last-child, .framer-VzyQx .framer-1fc36f5 > :last-child, .framer-VzyQx .framer-13q3al2 > :last-child, .framer-VzyQx .framer-1s5ne5d > :last-child, .framer-VzyQx .framer-3q387y > :last-child, .framer-VzyQx .framer-u96uof > :last-child, .framer-VzyQx .framer-f2801i > :last-child, .framer-VzyQx .framer-1rqd3yh > :last-child, .framer-VzyQx .framer-1xhikrq > :last-child, .framer-VzyQx .framer-12kiugl > :last-child, .framer-VzyQx .framer-1olrtmh > :last-child, .framer-VzyQx .framer-1f90gfk > :last-child, .framer-VzyQx .framer-jx0221 > :last-child { margin-bottom: 0px; } .framer-VzyQx .framer-aj1pg7 > *, .framer-VzyQx .framer-1m01kpe > *, .framer-VzyQx .framer-2oeq3p > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-VzyQx .framer-6n1sj7 > *, .framer-VzyQx .framer-16g1k9y > *, .framer-VzyQx .framer-r1wam7 > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } .framer-VzyQx .framer-807ktm > *, .framer-VzyQx .framer-1s13jbg > *, .framer-VzyQx .framer-bislho > *, .framer-VzyQx .framer-wz4gpt > *, .framer-VzyQx .framer-1fc36f5 > *, .framer-VzyQx .framer-u96uof > *, .framer-VzyQx .framer-1xhikrq > *, .framer-VzyQx .framer-1f90gfk > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-VzyQx .framer-18b6xhy > *, .framer-VzyQx .framer-11hjlot > *, .framer-VzyQx .framer-fklbsd > *, .framer-VzyQx .framer-1jcir0y > *, .framer-VzyQx .framer-7250c2 > *, .framer-VzyQx .framer-8k1atu > *, .framer-VzyQx .framer-ye9syg > *, .framer-VzyQx .framer-1svgano > *, .framer-VzyQx .framer-1e5y6gw > *, .framer-VzyQx .framer-wf3tba > *, .framer-VzyQx .framer-yrsl05 > *, .framer-VzyQx .framer-1a84oyd > *, .framer-VzyQx .framer-d3y3av > *, .framer-VzyQx .framer-1tlo87x > *, .framer-VzyQx .framer-zrlzxq > *, .framer-VzyQx .framer-4919zh > *, .framer-VzyQx .framer-xf577m > *, .framer-VzyQx .framer-2iff2 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-VzyQx .framer-18b6xhy > :first-child, .framer-VzyQx .framer-11hjlot > :first-child, .framer-VzyQx .framer-188eumb > :first-child, .framer-VzyQx .framer-fklbsd > :first-child, .framer-VzyQx .framer-y2gagl > :first-child, .framer-VzyQx .framer-1jcir0y > :first-child, .framer-VzyQx .framer-b61ygv > :first-child, .framer-VzyQx .framer-7250c2 > :first-child, .framer-VzyQx .framer-8k1atu > :first-child, .framer-VzyQx .framer-ye9syg > :first-child, .framer-VzyQx .framer-f5zwrn > :first-child, .framer-VzyQx .framer-1svgano > :first-child, .framer-VzyQx .framer-1e5y6gw > :first-child, .framer-VzyQx .framer-wf3tba > :first-child, .framer-VzyQx .framer-1jwh2gr > :first-child, .framer-VzyQx .framer-zix0w6 > :first-child, .framer-VzyQx .framer-yrsl05 > :first-child, .framer-VzyQx .framer-1a84oyd > :first-child, .framer-VzyQx .framer-d3y3av > :first-child, .framer-VzyQx .framer-1tlo87x > :first-child, .framer-VzyQx .framer-zrlzxq > :first-child, .framer-VzyQx .framer-4919zh > :first-child, .framer-VzyQx .framer-xf577m > :first-child, .framer-VzyQx .framer-2iff2 > :first-child { margin-left: 0px; } .framer-VzyQx .framer-18b6xhy > :last-child, .framer-VzyQx .framer-11hjlot > :last-child, .framer-VzyQx .framer-188eumb > :last-child, .framer-VzyQx .framer-fklbsd > :last-child, .framer-VzyQx .framer-y2gagl > :last-child, .framer-VzyQx .framer-1jcir0y > :last-child, .framer-VzyQx .framer-b61ygv > :last-child, .framer-VzyQx .framer-7250c2 > :last-child, .framer-VzyQx .framer-8k1atu > :last-child, .framer-VzyQx .framer-ye9syg > :last-child, .framer-VzyQx .framer-f5zwrn > :last-child, .framer-VzyQx .framer-1svgano > :last-child, .framer-VzyQx .framer-1e5y6gw > :last-child, .framer-VzyQx .framer-wf3tba > :last-child, .framer-VzyQx .framer-1jwh2gr > :last-child, .framer-VzyQx .framer-zix0w6 > :last-child, .framer-VzyQx .framer-yrsl05 > :last-child, .framer-VzyQx .framer-1a84oyd > :last-child, .framer-VzyQx .framer-d3y3av > :last-child, .framer-VzyQx .framer-1tlo87x > :last-child, .framer-VzyQx .framer-zrlzxq > :last-child, .framer-VzyQx .framer-4919zh > :last-child, .framer-VzyQx .framer-xf577m > :last-child, .framer-VzyQx .framer-2iff2 > :last-child { margin-right: 0px; } .framer-VzyQx .framer-188eumb > *, .framer-VzyQx .framer-y2gagl > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } .framer-VzyQx .framer-b61ygv > * { margin: 0px; margin-left: calc(48px / 2); margin-right: calc(48px / 2); } .framer-VzyQx .framer-xf9p6l > *, .framer-VzyQx .framer-1s5ne5d > *, .framer-VzyQx .framer-3q387y > *, .framer-VzyQx .framer-f2801i > *, .framer-VzyQx .framer-1rqd3yh > *, .framer-VzyQx .framer-12kiugl > *, .framer-VzyQx .framer-1olrtmh > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-VzyQx .framer-f5zwrn > *, .framer-VzyQx .framer-1jwh2gr > * { margin: 0px; margin-left: calc(64px / 2); margin-right: calc(64px / 2); } .framer-VzyQx .framer-1e5vity > * { margin: 0px; margin-bottom: calc(4px / 2); margin-top: calc(4px / 2); } .framer-VzyQx .framer-12r50d4 > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-VzyQx .framer-13q3al2 > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } .framer-VzyQx .framer-zix0w6 > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-VzyQx .framer-jx0221 > * { margin: 0px; margin-bottom: calc(200px / 2); margin-top: calc(200px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,'.framer-VzyQx[data-border=\"true\"]::after, .framer-VzyQx [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: 1439px) { .${metadata.bodyClassName}-framer-VzyQx { background: var(--token-8139056f-6eb1-43e3-a0ba-39ab18aa1fb5, rgb(25, 23, 30)) /* {\"name\":\"Neutral 03\"} */; } .framer-VzyQx.framer-42jx4r { width: 810px; } .framer-VzyQx .framer-aj1pg7 { height: min-content; justify-content: center; } .framer-VzyQx .framer-6n1sj7, .framer-VzyQx .framer-16g1k9y, .framer-VzyQx .framer-r1wam7 { padding: 0px 30px 0px 30px; } .framer-VzyQx .framer-b61ygv { background-color: rgba(0, 0, 0, 0.4); } .framer-VzyQx .framer-xf9p6l { max-width: 768px; } .framer-VzyQx .framer-13q3al2 { gap: 10px; justify-content: center; } .framer-VzyQx .framer-yrsl05, .framer-VzyQx .framer-1a84oyd, .framer-VzyQx .framer-d3y3av { padding: 20px; } .framer-VzyQx .framer-1s5ne5d, .framer-VzyQx .framer-f2801i, .framer-VzyQx .framer-12kiugl { align-content: flex-start; align-items: flex-start; } .framer-VzyQx .framer-14la1wa { aspect-ratio: 0.9970238095238095 / 1; height: var(--framer-aspect-ratio-supported, 200px); width: 100%; } .framer-VzyQx .framer-3q387y { align-content: center; align-items: center; gap: 10px; justify-content: center; } .framer-VzyQx .framer-u96uof, .framer-VzyQx .framer-1xhikrq, .framer-VzyQx .framer-1f90gfk { gap: 16px; } .framer-VzyQx .framer-19we7qb, .framer-VzyQx .framer-19c6ovj { height: var(--framer-aspect-ratio-supported, 200px); width: 100%; } .framer-VzyQx .framer-1rqd3yh, .framer-VzyQx .framer-1olrtmh { align-content: center; align-items: center; justify-content: center; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-VzyQx .framer-13q3al2, .framer-VzyQx .framer-3q387y, .framer-VzyQx .framer-u96uof, .framer-VzyQx .framer-1xhikrq, .framer-VzyQx .framer-1f90gfk { gap: 0px; } .framer-VzyQx .framer-13q3al2 > *, .framer-VzyQx .framer-3q387y > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-VzyQx .framer-13q3al2 > :first-child, .framer-VzyQx .framer-3q387y > :first-child, .framer-VzyQx .framer-u96uof > :first-child, .framer-VzyQx .framer-1xhikrq > :first-child, .framer-VzyQx .framer-1f90gfk > :first-child { margin-top: 0px; } .framer-VzyQx .framer-13q3al2 > :last-child, .framer-VzyQx .framer-3q387y > :last-child, .framer-VzyQx .framer-u96uof > :last-child, .framer-VzyQx .framer-1xhikrq > :last-child, .framer-VzyQx .framer-1f90gfk > :last-child { margin-bottom: 0px; } .framer-VzyQx .framer-u96uof > *, .framer-VzyQx .framer-1xhikrq > *, .framer-VzyQx .framer-1f90gfk > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } }}`,`@media (max-width: 809px) { .${metadata.bodyClassName}-framer-VzyQx { background: var(--token-8139056f-6eb1-43e3-a0ba-39ab18aa1fb5, rgb(25, 23, 30)) /* {\"name\":\"Neutral 03\"} */; } .framer-VzyQx.framer-42jx4r { width: 390px; } .framer-VzyQx .framer-aj1pg7 { height: min-content; justify-content: flex-start; padding: 144px 0px 120px 0px; } .framer-VzyQx .framer-6n1sj7, .framer-VzyQx .framer-16g1k9y, .framer-VzyQx .framer-r1wam7 { padding: 0px 20px 0px 20px; } .framer-VzyQx .framer-689cry { flex: 1 0 0px; width: 1px; } .framer-VzyQx .framer-b61ygv { background-color: rgba(0, 0, 0, 0.4); flex-direction: column; gap: 24px; } .framer-VzyQx .framer-owr0fk, .framer-VzyQx .framer-6w4b09, .framer-VzyQx .framer-1e5vity, .framer-VzyQx .framer-bislho { flex: none; width: 100%; } .framer-VzyQx .framer-hnya06 { padding: 8px 20px 8px 20px; } .framer-VzyQx .framer-xf9p6l { gap: 16px; max-width: 390px; } .framer-VzyQx .framer-f5zwrn, .framer-VzyQx .framer-zix0w6 { flex-direction: column; } .framer-VzyQx .framer-1svgano { padding: 0px 0px 16px 0px; } .framer-VzyQx .framer-1e5y6gw { align-content: center; align-items: center; padding: 16px 0px 16px 0px; } .framer-VzyQx .framer-wf3tba { padding: 16px 0px 16px 0px; } .framer-VzyQx .framer-jj2b4x { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-VzyQx .framer-yrsl05, .framer-VzyQx .framer-1a84oyd, .framer-VzyQx .framer-d3y3av { flex: none; padding: 32px 20px 32px 20px; width: 100%; } .framer-VzyQx .framer-1s5ne5d, .framer-VzyQx .framer-f2801i, .framer-VzyQx .framer-12kiugl { align-content: flex-start; align-items: flex-start; } .framer-VzyQx .framer-14la1wa { width: 100%; } .framer-VzyQx .framer-3q387y, .framer-VzyQx .framer-1rqd3yh, .framer-VzyQx .framer-1olrtmh { align-content: center; align-items: center; } .framer-VzyQx .framer-19we7qb, .framer-VzyQx .framer-19c6ovj { height: var(--framer-aspect-ratio-supported, 310px); width: 100%; } .framer-VzyQx .framer-jx0221 { padding: 120px 0px 0px 0px; } .framer-VzyQx .framer-1tlo87x { flex-direction: column; justify-content: flex-start; } .framer-VzyQx .framer-qm91lk { order: 0; } .framer-VzyQx .framer-1pg3dfs { bottom: 110px; order: 2; top: unset; } .framer-VzyQx .framer-1xysvxy { bottom: 110px; order: 3; top: unset; } .framer-VzyQx .framer-9d0ovi { bottom: 110px; order: 4; top: unset; } .framer-VzyQx .framer-9e7cv9 { bottom: 110px; order: 5; top: unset; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-VzyQx .framer-b61ygv, .framer-VzyQx .framer-xf9p6l, .framer-VzyQx .framer-f5zwrn, .framer-VzyQx .framer-zix0w6, .framer-VzyQx .framer-1tlo87x { gap: 0px; } .framer-VzyQx .framer-b61ygv > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-VzyQx .framer-b61ygv > :first-child, .framer-VzyQx .framer-xf9p6l > :first-child, .framer-VzyQx .framer-f5zwrn > :first-child, .framer-VzyQx .framer-zix0w6 > :first-child, .framer-VzyQx .framer-1tlo87x > :first-child { margin-top: 0px; } .framer-VzyQx .framer-b61ygv > :last-child, .framer-VzyQx .framer-xf9p6l > :last-child, .framer-VzyQx .framer-f5zwrn > :last-child, .framer-VzyQx .framer-zix0w6 > :last-child, .framer-VzyQx .framer-1tlo87x > :last-child { margin-bottom: 0px; } .framer-VzyQx .framer-xf9p6l > *, .framer-VzyQx .framer-zix0w6 > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-VzyQx .framer-f5zwrn > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } .framer-VzyQx .framer-1tlo87x > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }}`];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 7149\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"G0gMHLfJo\":{\"layout\":[\"fixed\",\"auto\"]},\"V0bY9AVKg\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerResponsiveScreen\n */const FramerJWuExVL3X=withCSS(Component,css,\"framer-VzyQx\");export default FramerJWuExVL3X;FramerJWuExVL3X.displayName=\"Page\";FramerJWuExVL3X.defaultProps={height:7149,width:1440};addFonts(FramerJWuExVL3X,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5A3Ce6C9YYmCjpQx9M4inSaKU.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/Qx95Xyt0Ka3SGhinnbXIGpEIyP4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/6mJuEAguuIuMog10gGvH5d3cl8.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/xYYWaj7wCU5zSQH0eXvSaS19wo.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/otTaNuNpVK4RbdlT7zDDdKvQBA.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/d3tHnaQIAeqiE5hGcRw4mmgWYU.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/DolVirEGb34pEXEp8t8FQBSK4.woff2\",weight:\"500\"},{family:\"Clash Grotesk\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/SINQ57HHHPFVR2H2M32ZNEFSVLE2LFD2/7IAKEQYNYVZZQGJW7R4Y7C5IZ7XHSFQO/DKSXVIDJANOLWNE4OACLWSGITSUTBGB3.woff2\",weight:\"300\"},{family:\"Clash Grotesk\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/O462VY6O6FTQCS72XVMTQHXAM4NN5CY3/TWF57ITZORMJ3MEWLQQIVO6BMXIB6FUR/MJQFMMOTEGNXDVM7HBBDTQHTVB2M7Y6G.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/BkDpl4ghaqvMi1btKFyG2tdbec.woff2\",weight:\"300\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/zAMK70AQRFSShJgUiaR5IiIhgzk.woff2\",weight:\"300\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/IETjvc5qzUaRoaruDpPSwCUM8.woff2\",weight:\"300\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/oLCoaT3ioA0fHdJnWR9W6k7NY.woff2\",weight:\"300\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/Sj0PCHQSBjFmEp6NBWg6FNaKc.woff2\",weight:\"300\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/v2q8JTTTs7McDMSEhnxAIBqd0.woff2\",weight:\"300\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/H4TfENUY1rh8R9UaSD6vngjJP3M.woff2\",weight:\"300\"}]},...NavigationFonts,...PrimaryButtonFonts,...FeatherFonts,...TickerFonts,...ContactSectionFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerJWuExVL3X\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerResponsiveScreen\":\"\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"1440\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"7149\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"G0gMHLfJo\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"V0bY9AVKg\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["noopReturn", "t", "e", "t", "velocityPerSecond", "calcBezier", "t", "n", "e", "i", "binarySubdivide", "o", "r", "c", "u", "a", "s", "cubicBezier", "noopReturn", "getTForX", "o", "cubicBezier", "__rest", "e", "r", "n", "o", "n", "e", "t", "r", "s", "calcGeneratorVelocity", "t", "n", "r", "velocityPerSecond", "calcDampingRatio", "e", "hasReachedTarget", "spring", "o", "c", "i", "h", "u", "d", "f", "g", "glide", "a", "isOutOfBounds", "nearestBoundary", "l", "m", "calcDelta", "calcLatest", "applyFriction", "p", "checkCatchBoundary", "pregenerateKeyframes", "W", "L", "D", "e", "M", "noopReturn", "k", "asTransformCssVar", "B", "L", "W", "j", "B", "testAnimation", "e", "C", "$", "R", "resolveElements", "e", "createGeneratorEasing", "e", "o", "getGenerator", "t", "i", "s", "r", "a", "getKeyframes", "pregenerateKeyframes", "n", "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", "dispatchViewEvent", "se", "o", "__rest", "inView$1", "t", "mouseEvent", "re", "ae", "onPointerUp", "window", "onPointerDown", "n", "ce", "le", "MAX_DUPLICATED_ITEMS", "directionTransformers", "offset", "supportsAcceleratedAnimations", "Ticker", "props", "slots", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "speed", "hoverFactor", "direction", "alignment", "sizingOptions", "fadeOptions", "style", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "widthType", "heightType", "paddingValue", "isCanvas", "RenderTarget", "filteredSlots", "numChildren", "j", "hasChildren", "isHorizontal", "useMotionValue", "transformer", "transform", "useTransform", "parentRef", "pe", "childrenRef", "se", "W", "size", "setSize", "ye", "clonedChildren", "dupedChildren", "duplicateBy", "opacity", "measure", "te", "parentLength", "start", "childrenLength", "childrenStyles", "initialResize", "ue", "frame", "resize", "contentSize", "child", "index", "_child_props", "_child_props1", "_child_props2", "_child_props3", "ref", "p", "LayoutGroup", "q", "i", "childIndex", "_child_props4", "_child_props5", "animateToValue", "initialTime", "prevTime", "xOrY", "isHover", "isReducedMotion", "useReducedMotion", "listRef", "animationRef", "isInView", "useInView", "useAnimationFrame", "t", "delta", "wrap", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "containerStyle", "u", "motion", "isValidNumber", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "addPropertyControls", "ControlType", "num", "min", "max", "value", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "NavigationFonts", "getFonts", "ENhjKlWGe_default", "ContainerWithFX", "withFX", "Container", "PrimaryButtonFonts", "J5H6mw4qz_default", "FeatherFonts", "Icon", "MotionDivWithOptimizedAppearEffect", "withOptimizedAppearEffect", "motion", "TickerFonts", "Ticker", "MotionDivWithFX", "RichTextWithFX", "RichText2", "ContactSectionFonts", "MqxOTXRyk_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transition1", "animation", "transformTemplate1", "_", "transition2", "animation1", "animation2", "transition3", "animation3", "animation4", "animation5", "transition4", "animation6", "transition5", "textEffect", "transition6", "animation7", "transition7", "animation8", "transition8", "animation9", "metadata", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata1", "robotsTag", "ie", "_document_querySelector", "bodyCls", "body", "c", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "ref1", "pe", "isDisplayed", "isDisplayed1", "isDisplayed2", "elementId", "useRouteElementId", "ref2", "elementId1", "ref3", "elementId2", "ref4", "ref5", "isDisplayed3", "ref6", "ref7", "ref8", "elementId3", "elementId4", "elementId5", "elementId6", "elementId7", "ref9", "defaultLayoutId", "ae", "sharedStyleClassNames", "useCustomCursors", "p", "GeneratedComponentContext", "u", "LayoutGroup", "cx", "ComponentViewportProvider", "PropertyOverrides2", "Image2", "getLoadingLazyAtYPosition", "x", "Link", "SVG", "css", "FramerJWuExVL3X", "withCSS", "JWuExVL3X_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
