{
  "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.14.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:@motionone/animation@10.14.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.14.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/qacJMtbrGDTpaTF4eVfx/Ticker.js", "ssg:https://framerusercontent.com/modules/NlWOynIHTSGUv5YGPZo0/agqlU5oIXCl6NzkOzT2B/DsXl8X3La.js", "ssg:https://framerusercontent.com/modules/0ahlb7ZTlNe1tUN9tsRt/HtZHvwBrkAOI7dATgVYx/rHVrp6RoP.js", "ssg:https://framerusercontent.com/modules/3nvtyFzd2XvacsPP2Okm/cpsvoQSKPw49udW2OGoE/augiA20Il.js"],
  "sourcesContent": ["function addUniqueItem(t,e){-1===t.indexOf(e)&&t.push(e)}function removeItem(t,e){const n=t.indexOf(e);n>-1&&t.splice(n,1)}const clamp=(t,e,n)=>Math.min(Math.max(n,t),e);const t={duration:.3,delay:0,endDelay:0,repeat:0,easing:\"ease\"};const isNumber=t=>\"number\"===typeof t;const isEasingList=t=>Array.isArray(t)&&!isNumber(t[0]);const wrap=(t,e,n)=>{const o=e-t;return((n-t)%o+o)%o+t};function getEasingForSegment(t,e){return isEasingList(t)?t[wrap(0,t.length,e)]:t}const mix=(t,e,n)=>-n*t+n*e+t;const noop=()=>{};const noopReturn=t=>t;const progress=(t,e,n)=>e-t===0?1:(n-t)/(e-t);function fillOffset(t,e){const n=t[t.length-1];for(let o=1;o<=e;o++){const s=progress(0,e,o);t.push(mix(n,1,s))}}function defaultOffset(t){const e=[0];fillOffset(e,t-1);return e}function interpolate(t,e=defaultOffset(t.length),n=noopReturn){const o=t.length;const s=o-e.length;s>0&&fillOffset(e,s);return s=>{let f=0;for(;f<o-2;f++)if(s<e[f+1])break;let r=clamp(0,1,progress(e[f],e[f+1],s));const c=getEasingForSegment(n,f);r=c(r);return mix(t[f],t[f+1],r)}}const isCubicBezier=t=>Array.isArray(t)&&isNumber(t[0]);const isEasingGenerator=t=>\"object\"===typeof t&&Boolean(t.createAnimation);const isFunction=t=>\"function\"===typeof t;const isString=t=>\"string\"===typeof t;const e={ms:t=>1e3*t,s:t=>t/1e3};\n/*\n  Convert velocity into velocity per second\n\n  @param [number]: Unit per frame\n  @param [number]: Frame duration in ms\n*/function velocityPerSecond(t,e){return e?t*(1e3/e):0}export{addUniqueItem,clamp,defaultOffset,t as defaults,fillOffset,getEasingForSegment,interpolate,isCubicBezier,isEasingGenerator,isEasingList,isFunction,isNumber,isString,mix,noop,noopReturn,progress,removeItem,e as time,velocityPerSecond,wrap};\n\n//# sourceMappingURL=index.es.js.map", "import{noopReturn as t,clamp as n}from\"@motionone/utils\";const calcBezier=(t,n,e)=>(((1-3*e+3*n)*t+(3*e-6*n))*t+3*n)*t;const e=1e-7;const i=12;function binarySubdivide(t,n,o,r,c){let u;let a;let s=0;do{a=n+(o-n)/2;u=calcBezier(a,r,c)-t;u>0?o=a:n=a}while(Math.abs(u)>e&&++s<i);return a}function cubicBezier(n,e,i,o){if(n===e&&i===o)return t;const getTForX=t=>binarySubdivide(t,0,1,n,i);return t=>0===t||1===t?t:calcBezier(getTForX(t),e,o)}const steps=(t,e=\"end\")=>i=>{i=\"end\"===e?Math.min(i,.999):Math.max(i,.001);const o=i*t;const r=\"end\"===e?Math.floor(o):Math.ceil(o);return n(0,1,r/t)};export{cubicBezier,steps};\n\n//# sourceMappingURL=index.es.js.map", "import{isFunction as t,isCubicBezier as i,noopReturn as e,defaults as s,isEasingGenerator as a,isEasingList as n,interpolate as r}from\"@motionone/utils\";import{cubicBezier as h,steps as o}from\"@motionone/easing\";const l={ease:h(.25,.1,.25,1),\"ease-in\":h(.42,0,1,1),\"ease-in-out\":h(.42,0,.58,1),\"ease-out\":h(0,0,.58,1)};const u=/\\((.*?)\\)/;function getEasingFunction(s){if(t(s))return s;if(i(s))return h(...s);if(l[s])return l[s];if(s.startsWith(\"steps\")){const t=u.exec(s);if(t){const i=t[1].split(\",\");return o(parseFloat(i[0]),i[1].trim())}}return e}class Animation{constructor(t,i=[0,1],{easing:h,duration:o=s.duration,delay:l=s.delay,endDelay:u=s.endDelay,repeat:m=s.repeat,offset:c,direction:p=\"normal\"}={}){this.startTime=null;this.rate=1;this.t=0;this.cancelTimestamp=null;this.easing=e;this.duration=0;this.totalDuration=0;this.repeat=0;this.playState=\"idle\";this.finished=new Promise(((t,i)=>{this.resolve=t;this.reject=i}));h=h||s.easing;if(a(h)){const t=h.createAnimation(i);h=t.easing;i=t.keyframes||i;o=t.duration||o}this.repeat=m;this.easing=n(h)?e:getEasingFunction(h);this.updateDuration(o);const d=r(i,c,n(h)?h.map(getEasingFunction):e);this.tick=i=>{var e;l=l;let s=0;s=void 0!==this.pauseTime?this.pauseTime:(i-this.startTime)*this.rate;this.t=s;s/=1e3;s=Math.max(s-l,0);\"finished\"===this.playState&&void 0===this.pauseTime&&(s=this.totalDuration);const a=s/this.duration;let n=Math.floor(a);let r=a%1;!r&&a>=1&&(r=1);1===r&&n--;const h=n%2;(\"reverse\"===p||\"alternate\"===p&&h||\"alternate-reverse\"===p&&!h)&&(r=1-r);const o=s>=this.totalDuration?1:Math.min(r,1);const m=d(this.easing(o));t(m);const c=void 0===this.pauseTime&&(\"finished\"===this.playState||s>=this.totalDuration+u);if(c){this.playState=\"finished\";null===(e=this.resolve)||void 0===e?void 0:e.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,noopReturn as s}from\"@motionone/utils\";const n=5;function calcGeneratorVelocity(t,s,r){const a=Math.max(s-n,0);return e(r-t(a),s-a)}const r={stiffness:100,damping:10,mass:1};const calcDampingRatio=(e=r.stiffness,t=r.damping,s=r.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=r.stiffness,damping:s=r.damping,mass:n=r.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/n)/1e3;const l=calcDampingRatio(e,s,n);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 a=10;const o=1e4;function pregenerateKeyframes(e,t=s){let n;let r=a;let c=e(0);const i=[t(c.current)];while(!c.done&&r<o){c=e(r);i.push(t(c.done?c.target:c.current));void 0===n&&c.hasReachedTarget&&(n=r);r+=a}const h=r-a;1===i.length&&i.push(c.current);return{keyframes:i,duration:h/1e3,overshootDuration:(null!==n&&void 0!==n?n:h)/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;const numChildren=Children.count(slots);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(slots,(child,index)=>{var _child_props,_child_props1,_child_props2,_child_props3;let ref;if(index===0){ref=childrenRef[0];}if(index===slots.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(slots,(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%\"};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]);}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,transform:supportsAcceleratedAnimations?undefined:transform,willChange:isCanvas?\"auto\":\"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\":{\"framerContractVersion\":\"1\",\"framerDisableUnlink\":\"*\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicHeight\":\"200\",\"framerIntrinsicWidth\":\"400\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "// Generated by Framer (9e4a47a)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"Inter-Medium\",\"Inter-Bold\",\"Inter-BoldItalic\",\"Inter-MediumItalic\"]);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/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:\"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/khkJkwSL66WFg8SX6Wa726c.woff2\",weight:\"500\"},{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/0E7IMbDzcGABpBwwqNEt60wU0w.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/NTJ0nQgIF0gcDelS14zQ9NR9Q.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/QrcNhgEPfRl0LS8qz5Ln8olanl8.woff2\",weight:\"500\"},{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/JEXmejW8mXOYMtt0hyRg811kHac.woff2\",weight:\"500\"},{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/ksvR4VsLksjpSwnC2fPgHRNMw.woff2\",weight:\"500\"},{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/uy9s0iWuxiNnVt8EpTI3gzohpwo.woff2\",weight:\"500\"}]}];export const css=['.framer-Nazm8 .framer-styles-preset-oos0p2:not(.rich-text-wrapper), .framer-Nazm8 .framer-styles-preset-oos0p2.rich-text-wrapper h6 { --framer-font-family: \"Inter\", \"Inter Placeholder\", 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: 12px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 500; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 500; --framer-letter-spacing: 0em; --framer-line-height: 120%; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: rgba(255, 255, 255, 0.6); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }'];export const className=\"framer-Nazm8\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (9e4a47a)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,RichText,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/NlWOynIHTSGUv5YGPZo0/agqlU5oIXCl6NzkOzT2B/DsXl8X3La.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/I2RFEYdMSotdygxskYx2/sL1rsSu8NKKaYEMsKe14/GfrRDHwNw.js\";const enabledGestures={ScyspmfsW:{hover:true}};const serializationHash=\"framer-X0JNM\";const variantClassNames={ScyspmfsW:\"framer-v-hn758\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({height,id,image,link2,name1,number,width,...props})=>{var _ref,_ref1,_ref2;return{...props,DPMILTv3Z:link2!==null&&link2!==void 0?link2:props.DPMILTv3Z,eAnySZrID:(_ref=name1!==null&&name1!==void 0?name1:props.eAnySZrID)!==null&&_ref!==void 0?_ref:\"Momina's Mixed Plate\",nKQ1MSHF1:(_ref1=number!==null&&number!==void 0?number:props.nKQ1MSHF1)!==null&&_ref1!==void 0?_ref1:\"92.7K subscribers\",OCNhLCSpE:(_ref2=image!==null&&image!==void 0?image:props.OCNhLCSpE)!==null&&_ref2!==void 0?_ref2:{src:\"https://framerusercontent.com/images/xCERQJbNecGhsQZLRas05evvtA.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/xCERQJbNecGhsQZLRas05evvtA.png?scale-down-to=512 512w,https://framerusercontent.com/images/xCERQJbNecGhsQZLRas05evvtA.png 880w\"}};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,eAnySZrID,nKQ1MSHF1,DPMILTv3Z,OCNhLCSpE,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"ScyspmfsW\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const isDisplayed=()=>{if(gestureVariant===\"ScyspmfsW-hover\")return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{...addPropertyOverrides({\"ScyspmfsW-hover\":{href:DPMILTv3Z,openInNewTab:true}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(Image,{...restProps,...gestureHandlers,background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0),sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",...toResponsiveImage(OCNhLCSpE),...{positionX:\"center\",positionY:\"center\"}},className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-hn758\",className,classNames)} framer-i53z2a`,\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"ScyspmfsW\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20,...style},...addPropertyOverrides({\"ScyspmfsW-hover\":{\"data-framer-name\":undefined,as:\"a\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-tysqrh\",\"data-framer-name\":\"Rectangle 34624300\",layoutDependency:layoutDependency,layoutId:\"Uk1ipXSpw\",style:{background:\"linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.2) 100%)\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20},variants:{\"ScyspmfsW-hover\":{background:\"linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 100%)\"}},children:isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-12qbs8l\",\"data-framer-name\":\"Frame 25\",layoutDependency:layoutDependency,layoutId:\"QLbSMrH3J\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:6,borderBottomRightRadius:6,borderTopLeftRadius:6,borderTopRightRadius:6},transformTemplate:transformTemplate1,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"130%\"},children:\"Show more\"})}),className:\"framer-sd4rhg\",\"data-framer-name\":\"Show more\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"fcr0XrPZB\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-105ye53\",\"data-framer-name\":\"youtube\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:12,intrinsicWidth:16,layoutDependency:layoutDependency,layoutId:\"yNVHjnbHX\",svg:'<svg width=\"16\" height=\"12\" viewBox=\"0 0 16 12\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M14.7416 2.31447C14.5527 1.65299 14.0802 1.1805 13.4187 0.991501C12.2847 0.708008 7.46531 0.708008 7.46531 0.708008C7.46531 0.708008 2.74044 0.708008 1.51197 0.991501C0.850485 1.1805 0.377988 1.65299 0.188993 2.31447C-2.88666e-06 3.54294 0 5.99988 0 5.99988C0 5.99988 2.87258e-06 8.45682 0.283496 9.68529C0.472491 10.3468 0.944974 10.8193 1.60646 11.0083C2.74043 11.2918 7.55982 11.2918 7.55982 11.2918C7.55982 11.2918 12.2847 11.2918 13.5132 11.0083C14.1746 10.8193 14.6472 10.3468 14.8362 9.68529C15.1196 8.45682 15.1196 5.99988 15.1196 5.99988C15.1196 5.99988 15.1196 3.54294 14.7416 2.31447ZM6.04785 8.26782V3.73194L10.0168 5.99988L6.04785 8.26782Z\" fill=\"#FF0000\"/>\\n</svg>\\n',withExternalLayout:true})]})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1vxc5j8\",\"data-framer-name\":\"Frame 1321317150\",layoutDependency:layoutDependency,layoutId:\"hXBZXFDHQ\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-1fia4mh\",\"data-styles-preset\":\"GfrRDHwNw\",style:{\"--framer-text-color\":\"var(--extracted-1lwpl3i, var(--token-1e0d3100-3129-48d5-9eb1-d8fdbef76552, rgb(255, 255, 255)))\"},children:\"Momina's Mixed Plate\"})}),className:\"framer-33lrq4\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"FS9LOuuwd\",style:{\"--extracted-1lwpl3i\":\"var(--token-1e0d3100-3129-48d5-9eb1-d8fdbef76552, rgb(255, 255, 255))\",\"--framer-paragraph-spacing\":\"0px\"},text:eAnySZrID,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-oos0p2\",\"data-styles-preset\":\"DsXl8X3La\",children:\"92.7K subscribers\"})}),className:\"framer-1tpgjij\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"HWQKHfv8K\",style:{\"--framer-paragraph-spacing\":\"0px\"},text:nKQ1MSHF1,verticalAlignment:\"top\",withExternalLayout:true})]})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-X0JNM.framer-i53z2a, .framer-X0JNM .framer-i53z2a { display: block; }\",\".framer-X0JNM.framer-hn758 { align-content: flex-start; align-items: flex-start; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: 160px; justify-content: flex-end; overflow: hidden; padding: 16px; position: relative; width: 220px; will-change: var(--framer-will-change-override, transform); }\",\".framer-X0JNM .framer-tysqrh { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; z-index: 1; }\",\".framer-X0JNM .framer-12qbs8l { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: flex-start; left: 50%; overflow: visible; padding: 6px 13px 6px 13px; position: absolute; top: 50%; width: min-content; }\",\".framer-X0JNM .framer-sd4rhg { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-X0JNM .framer-105ye53 { flex: none; height: 12px; position: relative; width: 16px; }\",\".framer-X0JNM .framer-1vxc5j8 { align-content: flex-start; align-items: flex-start; bottom: 16px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; left: 16px; overflow: visible; padding: 0px; position: absolute; right: 16px; z-index: 1; }\",\".framer-X0JNM .framer-33lrq4, .framer-X0JNM .framer-1tpgjij { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-X0JNM.framer-hn758, .framer-X0JNM .framer-12qbs8l, .framer-X0JNM .framer-1vxc5j8 { gap: 0px; } .framer-X0JNM.framer-hn758 > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-X0JNM.framer-hn758 > :first-child, .framer-X0JNM .framer-1vxc5j8 > :first-child { margin-top: 0px; } .framer-X0JNM.framer-hn758 > :last-child, .framer-X0JNM .framer-1vxc5j8 > :last-child { margin-bottom: 0px; } .framer-X0JNM .framer-12qbs8l > * { margin: 0px; margin-left: calc(6px / 2); margin-right: calc(6px / 2); } .framer-X0JNM .framer-12qbs8l > :first-child { margin-left: 0px; } .framer-X0JNM .framer-12qbs8l > :last-child { margin-right: 0px; } .framer-X0JNM .framer-1vxc5j8 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } }\",\".framer-X0JNM.framer-v-hn758.hover.framer-hn758 { text-decoration: none; }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 160\n * @framerIntrinsicWidth 220\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"Hjcftcbzz\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"eAnySZrID\":\"name1\",\"nKQ1MSHF1\":\"number\",\"DPMILTv3Z\":\"link2\",\"OCNhLCSpE\":\"image\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerrHVrp6RoP=withCSS(Component,css,\"framer-X0JNM\");export default FramerrHVrp6RoP;FramerrHVrp6RoP.displayName=\"DRM/players\";FramerrHVrp6RoP.defaultProps={height:160,width:220};addPropertyControls(FramerrHVrp6RoP,{eAnySZrID:{defaultValue:\"Momina's Mixed Plate\",displayTextArea:false,title:\"Name\",type:ControlType.String},nKQ1MSHF1:{defaultValue:\"92.7K subscribers\",displayTextArea:false,title:\"Number\",type:ControlType.String},DPMILTv3Z:{title:\"Link 2\",type:ControlType.Link},OCNhLCSpE:{__defaultAssetReference:\"data:framer/asset-reference,xCERQJbNecGhsQZLRas05evvtA.png?originalFilename=image.png&preferredSize=auto\",title:\"Image\",type:ControlType.ResponsiveImage}});addFonts(FramerrHVrp6RoP,[{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/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:\"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\"}]},...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerrHVrp6RoP\",\"slots\":[],\"annotations\":{\"framerVariables\":\"{\\\"eAnySZrID\\\":\\\"name1\\\",\\\"nKQ1MSHF1\\\":\\\"number\\\",\\\"DPMILTv3Z\\\":\\\"link2\\\",\\\"OCNhLCSpE\\\":\\\"image\\\"}\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"220\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Hjcftcbzz\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicHeight\":\"160\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./rHVrp6RoP.map", "// Generated by Framer (9f68555)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,PropertyOverrides,ResolveLinks,RichText,SVG,useActiveVariantCallback,useCustomCursors,useHydratedBreakpointVariants,useLocaleInfo,useOverlayState,useRouteElementId,useRouter,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{AnimatePresence,LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import*as ReactDOM from\"react-dom\";import{Icon as Material}from\"https://framerusercontent.com/modules/6Ldpz1V0DkD45gXvi67I/PCgBX5d6MdQT7E7nhdXn/Material.js\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/qacJMtbrGDTpaTF4eVfx/Ticker.js\";import DRMSlider from\"#framer/local/canvasComponent/HHMMcm9oA/HHMMcm9oA.js\";import DRMButtons from\"#framer/local/canvasComponent/I91Fv9nfm/I91Fv9nfm.js\";import DRMForm from\"#framer/local/canvasComponent/mgnpehJXQ/mgnpehJXQ.js\";import DRMServiceCard from\"#framer/local/canvasComponent/mkW3QwEuk/mkW3QwEuk.js\";import DRMMenu from\"#framer/local/canvasComponent/qcFdnCXKa/qcFdnCXKa.js\";import DRMPlayers from\"#framer/local/canvasComponent/rHVrp6RoP/rHVrp6RoP.js\";import*as sharedStyle1 from\"#framer/local/css/dx8nfbYmS/dx8nfbYmS.js\";import*as sharedStyle5 from\"#framer/local/css/Dyn3uEx28/Dyn3uEx28.js\";import*as sharedStyle7 from\"#framer/local/css/e9Fvv4iGz/e9Fvv4iGz.js\";import*as sharedStyle8 from\"#framer/local/css/LhlMUVcJY/LhlMUVcJY.js\";import*as sharedStyle4 from\"#framer/local/css/nam91LSV_/nam91LSV_.js\";import*as sharedStyle from\"#framer/local/css/QBj9BCX0r/QBj9BCX0r.js\";import*as sharedStyle9 from\"#framer/local/css/sly0QttF8/sly0QttF8.js\";import*as sharedStyle3 from\"#framer/local/css/UAtxkrELx/UAtxkrELx.js\";import*as sharedStyle6 from\"#framer/local/css/wjNpFc4yO/wjNpFc4yO.js\";import*as sharedStyle2 from\"#framer/local/css/ya7EE3uJv/ya7EE3uJv.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const DRMMenuFonts=getFonts(DRMMenu);const DRMButtonsFonts=getFonts(DRMButtons);const DRMFormFonts=getFonts(DRMForm);const MaterialFonts=getFonts(Material);const MotionDivWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.div);const ContainerWithOptimizedAppearEffect=withOptimizedAppearEffect(Container);const ImageWithOptimizedAppearEffect=withOptimizedAppearEffect(Image);const DRMPlayersFonts=getFonts(DRMPlayers);const TickerFonts=getFonts(Ticker);const RichTextWithFX=withFX(RichText);const MotionDivWithFX=withFX(motion.div);const DRMServiceCardFonts=getFonts(DRMServiceCard);const ContainerWithFX=withFX(Container);const DRMSliderFonts=getFonts(DRMSlider);const breakpoints={pt3F4AErh:\"(min-width: 768px) and (max-width: 1439px)\",WQLkyLRf1:\"(min-width: 1440px)\",xzId7X5_T:\"(max-width: 767px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-1B44b\";const variantClassNames={pt3F4AErh:\"framer-v-7vl58a\",WQLkyLRf1:\"framer-v-72rtr7\",xzId7X5_T:\"framer-v-xzzl4z\"};const Overlay=({children,blockDocumentScrolling,enabled=true})=>{const[visible,setVisible]=useOverlayState({blockDocumentScrolling});return children({hide:()=>setVisible(false),show:()=>setVisible(true),toggle:()=>setVisible(!visible),visible:enabled&&visible});};const transition1={delay:0,duration:.3,ease:[.44,0,.56,1],type:\"tween\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:-150};const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:0};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:-150};const transition2={damping:50,delay:.1,mass:1,stiffness:150,type:\"spring\"};const animation3={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const animation4={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:.8,skewX:0,skewY:0,x:0,y:30};const transition3={damping:50,delay:.3,mass:1,stiffness:150,type:\"spring\"};const animation5={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3,x:0,y:0};const animation6={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:20};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const transition4={damping:20,delay:.9,mass:1,stiffness:110,type:\"spring\"};const animation7={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition4,x:0,y:0};const animation8={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:.1,skewX:0,skewY:0,x:0,y:10};const transition5={damping:20,delay:1.1,mass:1,stiffness:110,type:\"spring\"};const animation9={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition5,x:0,y:0};const transition6={damping:20,delay:.7,mass:1,stiffness:110,type:\"spring\"};const animation10={opacity:1,rotate:-15,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition6,x:0,y:0};const transition7={damping:20,delay:.5,mass:1,stiffness:110,type:\"spring\"};const animation11={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition7,x:0,y:0};const transition8={damping:30,delay:.5,mass:1,stiffness:110,type:\"spring\"};const animation12={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition8,x:0,y:0};const animation13={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,x:0,y:30};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const animation14={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:30};const transition9={damping:50,delay:.2,mass:1,stiffness:300,type:\"spring\"};const transition10={damping:50,delay:.3,mass:1,stiffness:300,type:\"spring\"};const animation15={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:10};const transition11={damping:30,delay:.4,mass:1,stiffness:110,type:\"spring\"};const transition12={damping:30,delay:.6,mass:1,stiffness:110,type:\"spring\"};const transition13={damping:30,delay:.8,mass:1,stiffness:110,type:\"spring\"};const transition14={damping:30,delay:1,mass:1,stiffness:110,type:\"spring\"};const transition15={damping:30,delay:1.2,mass:1,stiffness:110,type:\"spring\"};const transition16={damping:30,delay:.1,mass:1,stiffness:110,type:\"spring\"};const transition17={damping:20,delay:.3,mass:1,stiffness:110,type:\"spring\"};const transition18={damping:20,delay:.4,mass:1,stiffness:110,type:\"spring\"};const transition19={damping:20,delay:.6,mass:1,stiffness:110,type:\"spring\"};const transition20={damping:30,delay:0,mass:1,stiffness:150,type:\"spring\"};const transition21={damping:30,delay:.1,mass:1,stiffness:150,type:\"spring\"};const animation16={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:20};const transition22={damping:30,delay:.2,mass:1,stiffness:150,type:\"spring\"};const metadata=metadataProvider();const humanReadableVariantMap={Desktop:\"WQLkyLRf1\",Phone:\"xzId7X5_T\",Tablet:\"pt3F4AErh\"};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:\"WQLkyLRf1\"};};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-1B44b`);}return()=>{if(bodyCls)document.body.classList.remove(`${metadata1.bodyClassName}-framer-1B44b`);};},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const{activeVariantCallback,delay}=useActiveVariantCallback(undefined);const j1DOsD4d3welu7j=({overlay,paginationInfo})=>activeVariantCallback(async(...args)=>{overlay.toggle();});const nqkM2DFBa1wvko5h=({overlay,paginationInfo})=>activeVariantCallback(async(...args)=>{overlay.hide();});const onTapwelu7j=({overlay,paginationInfo})=>activeVariantCallback(async(...args)=>{overlay.toggle();});const onTap1wvko5h=({overlay,paginationInfo})=>activeVariantCallback(async(...args)=>{overlay.hide();});const b6QKjjnGz1wvko5h=({overlay,paginationInfo})=>activeVariantCallback(async(...args)=>{overlay.hide();});const ref1=React.useRef(null);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"xzId7X5_T\")return false;return true;};const router=useRouter();const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"pt3F4AErh\")return false;return true;};const isDisplayed2=()=>{if(!isBrowser())return true;if(baseVariant===\"xzId7X5_T\")return true;return false;};const elementId=useRouteElementId(\"gW6h8pQdW\");const ref2=React.useRef(null);const elementId1=useRouteElementId(\"GxfHs6zG9\");const ref3=React.useRef(null);const isDisplayed3=()=>{if(!isBrowser())return true;if([\"pt3F4AErh\",\"xzId7X5_T\"].includes(baseVariant))return false;return true;};const ref4=React.useRef(null);const elementId2=useRouteElementId(\"NNEoxVLDL\");const ref5=React.useRef(null);const elementId3=useRouteElementId(\"zQJQEPfrP\");const elementId4=useRouteElementId(\"dQ3bM4cXD\");const ref6=React.useRef(null);const ref7=React.useRef(null);const elementId5=useRouteElementId(\"eoKEo0Uu8\");const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className,sharedStyle7.className,sharedStyle8.className,sharedStyle9.className];useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"WQLkyLRf1\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:[/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-72rtr7\",className),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1wx8h4h\",\"data-framer-name\":\"header\",name:\"header\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ky0zir\",children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"augiA20Il\"},nodeId:\"dfPjPW4L4\",children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-1jtvkbi framer-lux5qc\",\"data-framer-name\":\"logo\",name:\"logo\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{pt3F4AErh:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition(20.5),positionX:\"center\",positionY:\"center\",sizes:\"77px\",src:\"https://framerusercontent.com/images/XTtgWxtuUO6kpNGL5qoM3RbC2o.png\",srcSet:\"https://framerusercontent.com/images/XTtgWxtuUO6kpNGL5qoM3RbC2o.png?scale-down-to=512 512w,https://framerusercontent.com/images/XTtgWxtuUO6kpNGL5qoM3RbC2o.png 516w\"}},xzId7X5_T:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition(8),positionX:\"center\",positionY:\"center\",sizes:\"81px\",src:\"https://framerusercontent.com/images/XTtgWxtuUO6kpNGL5qoM3RbC2o.png\",srcSet:\"https://framerusercontent.com/images/XTtgWxtuUO6kpNGL5qoM3RbC2o.png?scale-down-to=512 512w,https://framerusercontent.com/images/XTtgWxtuUO6kpNGL5qoM3RbC2o.png 516w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition(15.5),positionX:\"center\",positionY:\"center\",sizes:\"101px\",src:\"https://framerusercontent.com/images/XTtgWxtuUO6kpNGL5qoM3RbC2o.png\",srcSet:\"https://framerusercontent.com/images/XTtgWxtuUO6kpNGL5qoM3RbC2o.png?scale-down-to=512 512w,https://framerusercontent.com/images/XTtgWxtuUO6kpNGL5qoM3RbC2o.png 516w\"},className:\"framer-8yc6bj\",\"data-framer-name\":\"image 22\",name:\"image 22\"})})})}),isDisplayed()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1pmws8l hidden-xzzl4z\",\"data-framer-name\":\"menu\",name:\"menu\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"PTXLG3O4u\"},implicitPathVariables:undefined},{href:{webPageId:\"PTXLG3O4u\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:21,y:24.5,children:/*#__PURE__*/_jsx(Container,{className:\"framer-u86wu2-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{pt3F4AErh:{LY5g3M3vs:resolvedLinks[1],variant:\"U2YL0eKxq\"}},children:/*#__PURE__*/_jsx(DRMMenu,{height:\"100%\",id:\"H3xqPysaW\",layoutId:\"H3xqPysaW\",LY5g3M3vs:resolvedLinks[0],rpXnzFsMx:\"MC Pay\",uoY6SfCrd:false,variant:\"iDiAI7mlo\",VkijJC07h:\"var(--token-4a37d03b-292a-4f1d-b60d-fbdb936ec64d, rgb(126, 185, 2))\",wFIMggBrX:\"var(--token-3925fb8a-d62b-453e-b675-cdc563c5a26e, rgb(0, 0, 0))\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"qptEHPWId\"},implicitPathVariables:undefined},{href:{webPageId:\"qptEHPWId\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:21,y:24.5,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1nik8wn-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{pt3F4AErh:{LY5g3M3vs:resolvedLinks1[1],variant:\"U2YL0eKxq\"}},children:/*#__PURE__*/_jsx(DRMMenu,{height:\"100%\",id:\"JYt_ko5XS\",layoutId:\"JYt_ko5XS\",LY5g3M3vs:resolvedLinks1[0],rpXnzFsMx:\"Services\",uoY6SfCrd:false,variant:\"iDiAI7mlo\",VkijJC07h:\"var(--token-4a37d03b-292a-4f1d-b60d-fbdb936ec64d, rgb(126, 185, 2))\",wFIMggBrX:\"var(--token-3925fb8a-d62b-453e-b675-cdc563c5a26e, rgb(0, 0, 0))\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"r3MAk2kAR\"},implicitPathVariables:undefined},{href:{webPageId:\"r3MAk2kAR\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:21,y:24.5,children:/*#__PURE__*/_jsx(Container,{className:\"framer-crv501-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{pt3F4AErh:{LY5g3M3vs:resolvedLinks2[1],variant:\"U2YL0eKxq\"}},children:/*#__PURE__*/_jsx(DRMMenu,{height:\"100%\",id:\"D_KQ8Dcys\",layoutId:\"D_KQ8Dcys\",LY5g3M3vs:resolvedLinks2[0],rpXnzFsMx:\"For business\",uoY6SfCrd:false,variant:\"iDiAI7mlo\",VkijJC07h:\"var(--token-4a37d03b-292a-4f1d-b60d-fbdb936ec64d, rgb(126, 185, 2))\",wFIMggBrX:\"var(--token-3925fb8a-d62b-453e-b675-cdc563c5a26e, rgb(0, 0, 0))\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"QPxdX8f9N\"},implicitPathVariables:undefined},{href:{webPageId:\"QPxdX8f9N\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:21,y:24.5,children:/*#__PURE__*/_jsx(Container,{className:\"framer-pq33l3-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{pt3F4AErh:{LY5g3M3vs:resolvedLinks3[1],variant:\"U2YL0eKxq\"}},children:/*#__PURE__*/_jsx(DRMMenu,{height:\"100%\",id:\"tr8qsrtmf\",layoutId:\"tr8qsrtmf\",LY5g3M3vs:resolvedLinks3[0],rpXnzFsMx:\"About\",uoY6SfCrd:false,variant:\"iDiAI7mlo\",VkijJC07h:\"var(--token-4a37d03b-292a-4f1d-b60d-fbdb936ec64d, rgb(126, 185, 2))\",wFIMggBrX:\"var(--token-3925fb8a-d62b-453e-b675-cdc563c5a26e, rgb(0, 0, 0))\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-tnobr1\",\"data-framer-name\":\"buttons\",name:\"buttons\",children:[isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:54,y:8,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1wkcxp8-container hidden-xzzl4z\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{pt3F4AErh:{aGInQ8yqs:\"8px 20px 8px 20px\"}},children:/*#__PURE__*/_jsx(DRMButtons,{aGInQ8yqs:\"12px 32px 12px 32px\",e_9K_n2W1:\"var(--token-1e0d3100-3129-48d5-9eb1-d8fdbef76552, rgb(255, 255, 255))\",height:\"100%\",hf04RyC6z:\"https://mcpay.io/auth/sign-in?mcn_slug=dot-republic\",id:\"phJwnXkmT\",layoutId:\"phJwnXkmT\",M73giwIe7:\"rgb(255, 255, 255)\",Mx__Z5xAt:\"var(--token-4a37d03b-292a-4f1d-b60d-fbdb936ec64d, rgb(126, 185, 2))\",UCPnrSF2R:\"var(--token-3925fb8a-d62b-453e-b675-cdc563c5a26e, rgb(0, 0, 0))\",variant:\"AjRfpVJ7t\",VuqYa0svz:true,width:\"100%\",XTJ6CH_H_:\"var(--token-1e0d3100-3129-48d5-9eb1-d8fdbef76552, rgb(255, 255, 255))\",ymWO_NR6m:\"Sign in\",ZBs2WBkve:\"var(--token-80bde714-14bd-4dfe-a71f-db496cd95503, rgb(173, 255, 0))\"})})})}),isDisplayed()&&/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:true,children:overlay=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:54,y:8,children:/*#__PURE__*/_jsxs(Container,{className:\"framer-rn6w72-container hidden-xzzl4z\",id:\"rn6w72\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{pt3F4AErh:{aGInQ8yqs:\"8px 20px 8px 20px\"}},children:/*#__PURE__*/_jsx(DRMButtons,{aGInQ8yqs:\"12px 32px 12px 32px\",e_9K_n2W1:\"var(--token-3925fb8a-d62b-453e-b675-cdc563c5a26e, rgb(0, 0, 0))\",height:\"100%\",id:\"riIEzcoeD\",j1DOsD4d3:j1DOsD4d3welu7j({overlay}),layoutId:\"riIEzcoeD\",M73giwIe7:\"rgb(255, 255, 255)\",Mx__Z5xAt:\"var(--token-80bde714-14bd-4dfe-a71f-db496cd95503, rgb(173, 255, 0))\",UCPnrSF2R:\"var(--token-1e0d3100-3129-48d5-9eb1-d8fdbef76552, rgb(255, 255, 255))\",variant:\"AjRfpVJ7t\",VuqYa0svz:true,width:\"100%\",XTJ6CH_H_:\"var(--token-3925fb8a-d62b-453e-b675-cdc563c5a26e, rgb(0, 0, 0))\",ymWO_NR6m:\"Get started\",ZBs2WBkve:\"var(--token-80bde714-14bd-4dfe-a71f-db496cd95503, rgb(173, 255, 0))\"})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[0,0,1,1],type:\"tween\"}},className:\"framer-1cgo3yz\",\"data-framer-portal-id\":\"rn6w72\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[0,0,1,1],type:\"tween\"}},initial:{opacity:0}},\"IZHSk2m8_\"),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1e3,width:\"100vw\",y:0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-k8uqkj-container\",\"data-framer-portal-id\":\"rn6w72\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{pt3F4AErh:{variant:\"nATCoEPXk\"}},children:/*#__PURE__*/_jsx(DRMForm,{height:\"100%\",id:\"Udm0rqkzZ\",layoutId:\"Udm0rqkzZ\",nqkM2DFBa:nqkM2DFBa1wvko5h({overlay}),style:{height:\"100%\",width:\"100%\"},variant:\"O9azcry8r\",width:\"100%\"})})})})]}),document.querySelector(\"#overlay\"))})})]})})})}),isDisplayed1()&&/*#__PURE__*/_jsx(Overlay,{children:overlay1=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1c4y1xb hidden-7vl58a\",\"data-framer-name\":\"burger\",id:\"1c4y1xb\",name:\"burger\",onTap:onTapwelu7j({overlay:overlay1}),children:[isDisplayed2()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1w7lkit hidden-72rtr7\",\"data-framer-name\":\"\u0411\u0443\u0440\u0433\u0435\u0440\",fill:\"black\",intrinsicHeight:32,intrinsicWidth:32,name:\"\u0411\u0443\u0440\u0433\u0435\u0440\",svg:'<svg width=\"32\" height=\"32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><rect x=\"3\" y=\"8\" width=\"26\" height=\"3\" rx=\"1.5\" fill=\"#000\"/><rect x=\"3\" y=\"14\" width=\"26\" height=\"3\" rx=\"1.5\" fill=\"#000\"/><rect x=\"3\" y=\"20\" width=\"26\" height=\"3\" rx=\"1.5\" fill=\"#000\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay1.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:\"framer-13mtgg1\",\"data-framer-portal-id\":\"1c4y1xb\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay1.hide()},\"NdenlRIu0\"),/*#__PURE__*/_jsxs(motion.div,{animate:animation1,className:\"framer-12qf64u\",\"data-framer-portal-id\":\"1c4y1xb\",exit:animation,initial:animation2,style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-18vh25x\",\"data-framer-name\":\"header\",name:\"header\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xzId7X5_T:{href:{webPageId:\"augiA20Il\"}}},children:/*#__PURE__*/_jsx(Link,{nodeId:\"QupL0heli\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xzId7X5_T:{onTap:onTap1wvko5h({overlay:overlay1})}},children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-5r7pob framer-lux5qc\",\"data-framer-name\":\"logo\",name:\"logo\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xzId7X5_T:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition(7.616279069767442),positionX:\"center\",positionY:\"center\",sizes:\"81px\",src:\"https://framerusercontent.com/images/XTtgWxtuUO6kpNGL5qoM3RbC2o.png\",srcSet:\"https://framerusercontent.com/images/XTtgWxtuUO6kpNGL5qoM3RbC2o.png?scale-down-to=512 512w,https://framerusercontent.com/images/XTtgWxtuUO6kpNGL5qoM3RbC2o.png 516w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition(16),positionX:\"center\",positionY:\"center\",sizes:\"101px\",src:\"https://framerusercontent.com/images/XTtgWxtuUO6kpNGL5qoM3RbC2o.png\",srcSet:\"https://framerusercontent.com/images/XTtgWxtuUO6kpNGL5qoM3RbC2o.png?scale-down-to=512 512w,https://framerusercontent.com/images/XTtgWxtuUO6kpNGL5qoM3RbC2o.png 516w\"},className:\"framer-1wvh0fk\",\"data-framer-name\":\"image 22\",name:\"image 22\"})})})})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-11caog7\",\"data-framer-name\":\"burger\",name:\"burger\",onTap:onTap1wvko5h({overlay:overlay1}),children:[isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-tt89iu-container hidden-xzzl4z\",children:/*#__PURE__*/_jsx(Material,{color:\"var(--token-3925fb8a-d62b-453e-b675-cdc563c5a26e, rgb(0, 0, 0))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"Close\",iconStyle15:\"Filled\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"saFRRPri8\",layoutId:\"saFRRPri8\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),isDisplayed2()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1y0514 hidden-72rtr7\",\"data-framer-name\":\"\u041A\u0440\u0435\u0441\u0442\u0438\u0435\",fill:\"black\",intrinsicHeight:32,intrinsicWidth:32,name:\"\u041A\u0440\u0435\u0441\u0442\u0438\u0435\",svg:'<svg width=\"32\" height=\"32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><rect x=\"6.121\" y=\"24.385\" width=\"26\" height=\"3\" rx=\"1.5\" transform=\"rotate(-45 6.121 24.385)\" fill=\"#000\"/><rect x=\"8.121\" y=\"6.385\" width=\"26\" height=\"3\" rx=\"1.5\" transform=\"rotate(45 8.121 6.385)\" fill=\"#000\"/></svg>',withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-7qdngp\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-2tw5xg\",\"data-framer-name\":\"menu\",name:\"menu\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"PTXLG3O4u\"},implicitPathVariables:undefined}],children:resolvedLinks4=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xzId7X5_T:{width:\"calc(100vw - 40px)\",y:70}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:21,y:95,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1bjamzy-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xzId7X5_T:{b6QKjjnGz:b6QKjjnGz1wvko5h({overlay:overlay1}),LY5g3M3vs:resolvedLinks4[0],style:{width:\"100%\"},uoY6SfCrd:false}},children:/*#__PURE__*/_jsx(DRMMenu,{height:\"100%\",id:\"BDWAc6n_f\",layoutId:\"BDWAc6n_f\",rpXnzFsMx:\"MC Pay\",uoY6SfCrd:true,variant:\"iDiAI7mlo\",VkijJC07h:\"var(--token-4a37d03b-292a-4f1d-b60d-fbdb936ec64d, rgb(126, 185, 2))\",wFIMggBrX:\"var(--token-3925fb8a-d62b-453e-b675-cdc563c5a26e, rgb(0, 0, 0))\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"qptEHPWId\"},implicitPathVariables:undefined}],children:resolvedLinks5=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xzId7X5_T:{width:\"calc(100vw - 40px)\",y:107}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:21,y:132,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1x7jkpl-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xzId7X5_T:{b6QKjjnGz:b6QKjjnGz1wvko5h({overlay:overlay1}),LY5g3M3vs:resolvedLinks5[0],style:{width:\"100%\"},uoY6SfCrd:false}},children:/*#__PURE__*/_jsx(DRMMenu,{height:\"100%\",id:\"zIC03iy4z\",layoutId:\"zIC03iy4z\",rpXnzFsMx:\"Services\",uoY6SfCrd:true,variant:\"iDiAI7mlo\",VkijJC07h:\"var(--token-4a37d03b-292a-4f1d-b60d-fbdb936ec64d, rgb(126, 185, 2))\",wFIMggBrX:\"var(--token-3925fb8a-d62b-453e-b675-cdc563c5a26e, rgb(0, 0, 0))\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"r3MAk2kAR\"},implicitPathVariables:undefined}],children:resolvedLinks6=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xzId7X5_T:{width:\"calc(100vw - 40px)\",y:144}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:21,y:169,children:/*#__PURE__*/_jsx(Container,{className:\"framer-114ei3r-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xzId7X5_T:{b6QKjjnGz:b6QKjjnGz1wvko5h({overlay:overlay1}),LY5g3M3vs:resolvedLinks6[0],rpXnzFsMx:\"For business\",style:{width:\"100%\"},uoY6SfCrd:false}},children:/*#__PURE__*/_jsx(DRMMenu,{height:\"100%\",id:\"eypVkOrTw\",layoutId:\"eypVkOrTw\",rpXnzFsMx:\"Minimum guarantee\",uoY6SfCrd:true,variant:\"iDiAI7mlo\",VkijJC07h:\"var(--token-4a37d03b-292a-4f1d-b60d-fbdb936ec64d, rgb(126, 185, 2))\",wFIMggBrX:\"var(--token-3925fb8a-d62b-453e-b675-cdc563c5a26e, rgb(0, 0, 0))\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"QPxdX8f9N\"},implicitPathVariables:undefined}],children:resolvedLinks7=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xzId7X5_T:{width:\"calc(100vw - 40px)\",y:181}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:21,y:206,children:/*#__PURE__*/_jsx(Container,{className:\"framer-hvg36j-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xzId7X5_T:{b6QKjjnGz:b6QKjjnGz1wvko5h({overlay:overlay1}),LY5g3M3vs:resolvedLinks7[0],style:{width:\"100%\"},uoY6SfCrd:false}},children:/*#__PURE__*/_jsx(DRMMenu,{height:\"100%\",id:\"uA4Fk40mV\",layoutId:\"uA4Fk40mV\",rpXnzFsMx:\"About\",uoY6SfCrd:true,variant:\"iDiAI7mlo\",VkijJC07h:\"var(--token-4a37d03b-292a-4f1d-b60d-fbdb936ec64d, rgb(126, 185, 2))\",wFIMggBrX:\"var(--token-3925fb8a-d62b-453e-b675-cdc563c5a26e, rgb(0, 0, 0))\",width:\"100%\"})})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-a34t4j\",\"data-framer-name\":\"Frame 31\",name:\"Frame 31\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:54,width:\"max((100vw - 48px) / 2, 1px)\",y:922,children:/*#__PURE__*/_jsx(Container,{className:\"framer-f2vnkb-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xzId7X5_T:{hf04RyC6z:\"https://mcpay.io/auth/sign-in?mcn_slug=dot-republic\"}},children:/*#__PURE__*/_jsx(DRMButtons,{aGInQ8yqs:\"12px 32px 12px 32px\",e_9K_n2W1:\"var(--token-1e0d3100-3129-48d5-9eb1-d8fdbef76552, rgb(255, 255, 255))\",height:\"100%\",id:\"VSrPyuBin\",layoutId:\"VSrPyuBin\",M73giwIe7:\"rgb(255, 255, 255)\",Mx__Z5xAt:\"var(--token-4a37d03b-292a-4f1d-b60d-fbdb936ec64d, rgb(126, 185, 2))\",style:{width:\"100%\"},UCPnrSF2R:\"var(--token-3925fb8a-d62b-453e-b675-cdc563c5a26e, rgb(0, 0, 0))\",variant:\"AjRfpVJ7t\",VuqYa0svz:true,width:\"100%\",XTJ6CH_H_:\"var(--token-1e0d3100-3129-48d5-9eb1-d8fdbef76552, rgb(255, 255, 255))\",ymWO_NR6m:\"Sign in\",ZBs2WBkve:\"var(--token-80bde714-14bd-4dfe-a71f-db496cd95503, rgb(173, 255, 0))\"})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"UCoh6GTTn\"},implicitPathVariables:undefined}],children:resolvedLinks8=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:54,width:\"max((100vw - 48px) / 2, 1px)\",y:922,children:/*#__PURE__*/_jsx(Container,{className:\"framer-bkkcm2-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xzId7X5_T:{hf04RyC6z:resolvedLinks8[0],VuqYa0svz:false}},children:/*#__PURE__*/_jsx(DRMButtons,{aGInQ8yqs:\"12px 32px 12px 32px\",e_9K_n2W1:\"var(--token-3925fb8a-d62b-453e-b675-cdc563c5a26e, rgb(0, 0, 0))\",height:\"100%\",id:\"bkBpsp5T4\",layoutId:\"bkBpsp5T4\",M73giwIe7:\"rgb(255, 255, 255)\",Mx__Z5xAt:\"var(--token-80bde714-14bd-4dfe-a71f-db496cd95503, rgb(173, 255, 0))\",style:{width:\"100%\"},UCPnrSF2R:\"var(--token-1e0d3100-3129-48d5-9eb1-d8fdbef76552, rgb(255, 255, 255))\",variant:\"AjRfpVJ7t\",VuqYa0svz:true,width:\"100%\",XTJ6CH_H_:\"var(--token-3925fb8a-d62b-453e-b675-cdc563c5a26e, rgb(0, 0, 0))\",ymWO_NR6m:\"Get started\",ZBs2WBkve:\"var(--token-80bde714-14bd-4dfe-a71f-db496cd95503, rgb(173, 255, 0))\"})})})})})]})]})]})]}),document.querySelector(\"#overlay\"))})})]})})})]})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-p2vkt\",\"data-framer-name\":\"hero\",name:\"hero\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-14ogscg\",\"data-framer-name\":\"title+describtion+button\",name:\"title+describtion+button\",children:[/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation3,className:\"framer-ikm385\",\"data-framer-appear-id\":\"ikm385\",\"data-framer-name\":\"title+describtion\",initial:animation4,name:\"title+describtion\",optimized:true,children:[isDisplayed()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-130k0ml hidden-xzzl4z\",\"data-framer-name\":\"Elevate Your Creator\\u2028Journey with DRM\",fill:'var(--token-3925fb8a-d62b-453e-b675-cdc563c5a26e, rgb(0, 0, 0)) /* {\"name\":\"black\"} */',intrinsicHeight:149,intrinsicWidth:926,name:\"Elevate Your Creator\\u2028Journey with DRM\",svg:'<svg width=\"926\" height=\"149\" viewBox=\"0 0 926 149\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M797.456 95.8311H811.127L825.565 131.055H826.18L840.618 95.8311H854.289V148.258H843.537V114.134H843.101L829.533 148.002H822.212L808.643 114.006H808.208V148.258H797.456V95.8311Z\" fill=\"black\"/>\\n<path d=\"M747.624 148.258V95.8311H768.309C772.269 95.8311 775.648 96.5393 778.447 97.9558C781.263 99.3552 783.405 101.343 784.872 103.92C786.357 106.48 787.1 109.492 787.1 112.957C787.1 116.438 786.349 119.433 784.847 121.942C783.345 124.434 781.169 126.345 778.319 127.676C775.486 129.007 772.055 129.673 768.027 129.673H754.178V120.764H766.235C768.352 120.764 770.11 120.474 771.509 119.894C772.909 119.314 773.95 118.443 774.632 117.283C775.332 116.122 775.682 114.68 775.682 112.957C775.682 111.216 775.332 109.748 774.632 108.554C773.95 107.359 772.9 106.455 771.483 105.84C770.084 105.209 768.318 104.893 766.184 104.893H758.709V148.258H747.624ZM775.938 124.399L788.968 148.258H776.731L763.983 124.399H775.938Z\" fill=\"black\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M692.652 148.258H711.238C716.563 148.258 721.137 147.208 724.96 145.109C728.8 143.01 731.744 139.998 733.792 136.073C735.857 132.147 736.89 127.454 736.89 121.993C736.89 116.549 735.857 111.873 733.792 107.965C731.744 104.057 728.817 101.062 725.011 98.9797C721.205 96.8806 716.665 95.8311 711.392 95.8311H692.652V105.328H703.737H710.803C714.08 105.328 716.836 105.909 719.072 107.069C721.308 108.229 722.989 110.038 724.115 112.496C725.259 114.953 725.83 118.119 725.83 121.993C725.83 125.901 725.259 129.093 724.115 131.567C722.989 134.025 721.299 135.842 719.046 137.02C716.81 138.18 714.054 138.76 710.777 138.76H703.737H692.652V148.258Z\" fill=\"black\"/>\\n<path d=\"M607.359 148.258V95.8311H618.444V117.462H640.947V95.8311H652.006V148.258H640.947V126.601H618.444V148.258H607.359Z\" fill=\"black\"/>\\n<path d=\"M554.685 104.97V95.8311H597.745V104.97H581.693V148.258H570.736V104.97H554.685Z\" fill=\"black\"/>\\n<path d=\"M546.746 95.8311V148.258H535.661V95.8311H546.746Z\" fill=\"black\"/>\\n<path d=\"M478.312 148.258L463.311 95.8311H475.419L484.098 132.258H484.533L494.108 95.8311H504.476L514.025 132.335H514.485L523.164 95.8311H529.653V115.218L520.271 148.258H509.468L499.484 113.981H499.074L489.116 148.258H478.312Z\" fill=\"black\"/>\\n<path d=\"M389.47 95.8311H401.886L413.842 118.409H414.354L426.309 95.8311H438.725L419.602 129.724V148.258H408.594V129.724L389.47 95.8311Z\" fill=\"black\"/>\\n<path d=\"M345.877 148.258V95.8311H381.206V104.97H356.962V117.462H379.388V126.601H356.962V139.119H381.308V148.258H345.877Z\" fill=\"black\"/>\\n<path d=\"M334.196 95.8311V148.258H324.622L301.812 115.261H301.428V148.258H290.343V95.8311H300.071L322.702 128.802H323.162V95.8311H334.196Z\" fill=\"black\"/>\\n<path d=\"M217.782 95.8311H228.867V129.878C228.867 133.7 227.954 137.045 226.128 139.912C224.319 142.78 221.784 145.015 218.525 146.619C215.265 148.206 211.468 149 207.133 149C202.781 149 198.975 148.206 195.715 146.619C192.455 145.015 189.921 142.78 188.112 139.912C186.302 137.045 185.398 133.7 185.398 129.878V95.8311H196.483V128.93C196.483 130.927 196.918 132.702 197.788 134.255C198.676 135.808 199.922 137.028 201.526 137.916C203.13 138.803 204.999 139.247 207.133 139.247C209.283 139.247 211.152 138.803 212.739 137.916C214.343 137.028 215.581 135.808 216.451 134.255C217.339 132.702 217.782 130.927 217.782 128.93V95.8311Z\" fill=\"black\"/>\\n<path d=\"M174.663 122.044C174.663 127.761 173.58 132.625 171.412 136.636C169.262 140.646 166.326 143.71 162.606 145.826C158.902 147.925 154.738 148.974 150.113 148.974C145.453 148.974 141.272 147.916 137.569 145.8C133.865 143.684 130.938 140.621 128.788 136.61C126.637 132.6 125.562 127.744 125.562 122.044C125.562 116.327 126.637 111.463 128.788 107.453C130.938 103.442 133.865 100.388 137.569 98.2885C141.272 96.1723 145.453 95.1143 150.113 95.1143C154.738 95.1143 158.902 96.1723 162.606 98.2885C166.326 100.388 169.262 103.442 171.412 107.453C173.58 111.463 174.663 116.327 174.663 122.044ZM163.425 122.044C163.425 118.341 162.87 115.218 161.761 112.675C160.669 110.132 159.124 108.204 157.127 106.89C155.13 105.576 152.792 104.919 150.113 104.919C147.433 104.919 145.095 105.576 143.098 106.89C141.101 108.204 139.548 110.132 138.439 112.675C137.347 115.218 136.801 118.341 136.801 122.044C136.801 125.748 137.347 128.871 138.439 131.414C139.548 133.956 141.101 135.885 143.098 137.199C145.095 138.513 147.433 139.17 150.113 139.17C152.792 139.17 155.13 138.513 157.127 137.199C159.124 135.885 160.669 133.956 161.761 131.414C162.87 128.871 163.425 125.748 163.425 122.044Z\" fill=\"black\"/>\\n<path d=\"M103.839 95.8311H114.796V132.386C114.796 135.765 114.036 138.701 112.517 141.192C111.015 143.684 108.925 145.604 106.245 146.952C103.566 148.3 100.451 148.974 96.9011 148.974C93.7437 148.974 90.8765 148.42 88.2994 147.311C85.7394 146.184 83.7084 144.478 82.2065 142.191C80.7046 139.887 79.9622 136.994 79.9793 133.513H91.013C91.0471 134.895 91.3287 136.081 91.8578 137.071C92.404 138.044 93.1464 138.795 94.085 139.324C95.0408 139.836 96.1672 140.092 97.4643 140.092C98.8296 140.092 99.9816 139.801 100.92 139.221C101.876 138.624 102.601 137.754 103.096 136.61C103.591 135.467 103.839 134.059 103.839 132.386V95.8311Z\" fill=\"black\"/>\\n<path d=\"M884.156 53.1434V0.716797H904.841C908.8 0.716797 912.179 1.42503 914.978 2.84151C917.794 4.24092 919.936 6.2291 921.404 8.80606C922.889 11.366 923.631 14.3781 923.631 17.8425C923.631 21.3239 922.88 24.319 921.379 26.8277C919.877 29.3193 917.701 31.2307 914.85 32.5619C912.017 33.893 908.587 34.5586 904.559 34.5586H890.709V25.6502H902.767C904.883 25.6502 906.641 25.36 908.041 24.7798C909.44 24.1996 910.481 23.3292 911.164 22.1687C911.864 21.0082 912.214 19.5661 912.214 17.8425C912.214 16.1018 911.864 14.6341 911.164 13.4395C910.481 12.2448 909.432 11.3404 908.015 10.726C906.616 10.0945 904.849 9.77882 902.716 9.77882H895.241V53.1434H884.156ZM912.47 29.2852L925.5 53.1434H913.263L900.514 29.2852H912.47Z\" fill=\"black\"/>\\n<path d=\"M873.421 26.9301C873.421 32.6472 872.337 37.511 870.17 41.5215C868.019 45.532 865.084 48.5953 861.363 50.7115C857.66 52.8106 853.496 53.8602 848.87 53.8602C844.211 53.8602 840.03 52.8021 836.326 50.6859C832.623 48.5697 829.696 45.5064 827.545 41.4959C825.395 37.4854 824.32 32.6301 824.32 26.9301C824.32 21.213 825.395 16.3492 827.545 12.3387C829.696 8.32819 832.623 5.27338 836.326 3.17427C840.03 1.05809 844.211 0 848.87 0C853.496 0 857.66 1.05809 861.363 3.17427C865.084 5.27338 868.019 8.32819 870.17 12.3387C872.337 16.3492 873.421 21.213 873.421 26.9301ZM862.183 26.9301C862.183 23.2268 861.628 20.1037 860.519 17.5609C859.426 15.018 857.882 13.0896 855.885 11.7755C853.888 10.4614 851.55 9.8044 848.87 9.8044C846.191 9.8044 843.853 10.4614 841.856 11.7755C839.859 13.0896 838.306 15.018 837.197 17.5609C836.104 20.1037 835.558 23.2268 835.558 26.9301C835.558 30.6334 836.104 33.7565 837.197 36.2993C838.306 38.8421 839.859 40.7706 841.856 42.0846C843.853 43.3987 846.191 44.0558 848.87 44.0558C851.55 44.0558 853.888 43.3987 855.885 42.0846C857.882 40.7706 859.426 38.8421 860.519 36.2993C861.628 33.7565 862.183 30.6334 862.183 26.9301Z\" fill=\"black\"/>\\n<path d=\"M774.961 9.85561V0.716797H818.021V9.85561H801.969V53.1434H791.012V9.85561H774.961Z\" fill=\"black\"/>\\n<path d=\"M734.775 53.1434H722.896L740.995 0.716797H755.28L773.354 53.1434H761.476L748.343 12.6971H747.933L734.775 53.1434ZM734.032 32.5363H762.09V41.1887H734.032V32.5363Z\" fill=\"black\"/>\\n<path d=\"M692.55 53.0069V0.580322H731.036L727.879 9.71914H703.635V22.2114H723.549L720.393 31.3502H703.635V43.8681H716.095L712.883 53.0069H692.55Z\" fill=\"black\"/>\\n<path d=\"M644.72 53.1434V0.716797H665.405C669.365 0.716797 672.744 1.42503 675.543 2.84151C678.359 4.24092 680.501 6.2291 681.969 8.80606C683.453 11.366 684.196 14.3781 684.196 17.8425C684.196 21.3239 683.445 24.319 681.943 26.8277C680.441 29.3193 678.265 31.2307 675.415 32.5619C672.582 33.893 669.151 34.5586 665.124 34.5586H651.274V25.6502H663.332C665.448 25.6502 667.206 25.36 668.605 24.7798C670.005 24.1996 671.046 23.3292 671.728 22.1687C672.428 21.0082 672.778 19.5661 672.778 17.8425C672.778 16.1018 672.428 14.6341 671.728 13.4395C671.046 12.2448 669.996 11.3404 668.58 10.726C667.18 10.0945 665.414 9.77882 663.28 9.77882H655.805V53.1434H644.72ZM673.034 29.2852L686.065 53.1434H673.828L661.079 29.2852H673.034Z\" fill=\"black\"/>\\n<path d=\"M634.248 19.0712H623.035C622.83 17.6206 622.412 16.3321 621.781 15.2058C621.149 14.0623 620.339 13.0896 619.349 12.2875C618.359 11.4854 617.216 10.871 615.918 10.4444C614.638 10.0177 613.247 9.8044 611.746 9.8044C609.032 9.8044 606.668 10.4785 604.654 11.8267C602.64 13.1579 601.079 15.1034 599.969 17.6633C598.86 20.2061 598.305 23.295 598.305 26.9301C598.305 30.6675 598.86 33.8077 599.969 36.3505C601.096 38.8933 602.666 40.8132 604.68 42.1102C606.694 43.4073 609.023 44.0558 611.669 44.0558C613.154 44.0558 614.527 43.8595 615.79 43.467C617.07 43.0745 618.205 42.5028 619.195 41.7519C620.185 40.9839 621.004 40.0538 621.653 38.9616C622.318 37.8694 622.779 36.6235 623.035 35.2241L634.248 35.2753C633.958 37.6816 633.233 40.0026 632.072 42.2382C630.929 44.4568 629.384 46.445 627.439 48.2028C625.51 49.9435 623.206 51.3259 620.526 52.3498C617.864 53.3567 614.852 53.8602 611.49 53.8602C606.813 53.8602 602.632 52.8021 598.945 50.6859C595.276 48.5697 592.375 45.5064 590.241 41.4959C588.125 37.4854 587.067 32.6301 587.067 26.9301C587.067 21.213 588.142 16.3492 590.293 12.3387C592.443 8.32819 595.361 5.27338 599.048 3.17427C602.734 1.05809 606.881 0 611.49 0C614.527 0 617.343 0.426649 619.938 1.27995C622.549 2.13325 624.861 3.37906 626.875 5.01739C628.889 6.63866 630.528 8.62684 631.791 10.9819C633.071 13.337 633.89 16.0335 634.248 19.0712Z\" fill=\"black\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M518.948 0.716797V9.77882H530.033H537.508C539.642 9.77882 541.408 10.0945 542.808 10.726C544.224 11.3404 545.274 12.2448 545.957 13.4395C546.656 14.6341 547.006 16.1018 547.006 17.8425C547.006 19.5661 546.656 21.0082 545.957 22.1687C545.274 23.3292 544.233 24.1996 542.833 24.7798C541.434 25.36 539.676 25.6502 537.56 25.6502H533.679L548.056 53.1434H560.293L549.169 32.7761C549.329 32.7067 549.487 32.6353 549.643 32.5619C552.493 31.2307 554.669 29.3193 556.171 26.8277C557.673 24.319 558.424 21.3239 558.424 17.8425C558.424 14.3781 557.681 11.366 556.197 8.80606C554.729 6.2291 552.587 4.24092 549.771 2.84151C546.972 1.42503 543.593 0.716797 539.633 0.716797H518.948Z\" fill=\"black\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M237.287 95.1938V104.256H248.372H255.847C257.981 104.256 259.747 104.572 261.147 105.203C262.563 105.817 263.613 106.722 264.295 107.917C264.995 109.111 265.345 110.579 265.345 112.32C265.345 114.043 264.995 115.485 264.295 116.646C263.613 117.806 262.572 118.677 261.172 119.257C259.773 119.837 258.015 120.127 255.899 120.127H252.017L266.395 147.62H278.632L267.508 127.253C267.667 127.184 267.826 127.112 267.982 127.039C270.832 125.708 273.008 123.796 274.51 121.305C276.012 118.796 276.763 115.801 276.763 112.32C276.763 108.855 276.02 105.843 274.536 103.283C273.068 100.706 270.926 98.718 268.11 97.3186C265.311 95.9021 261.932 95.1938 257.972 95.1938H237.287Z\" fill=\"black\"/>\\n<path d=\"M496.22 0.716797H507.305V34.7634C507.305 38.5862 506.392 41.9311 504.565 44.7982C502.756 47.6652 500.222 49.9009 496.962 51.5051C493.702 53.0922 489.905 53.8858 485.57 53.8858C481.218 53.8858 477.412 53.0922 474.152 51.5051C470.893 49.9009 468.358 47.6652 466.549 44.7982C464.74 41.9311 463.835 38.5862 463.835 34.7634V0.716797H474.92V33.8162C474.92 35.8129 475.356 37.5878 476.226 39.1408C477.113 40.6938 478.359 41.914 479.964 42.8014C481.568 43.6889 483.437 44.1326 485.57 44.1326C487.721 44.1326 489.589 43.6889 491.177 42.8014C492.781 41.914 494.018 40.6938 494.889 39.1408C495.776 37.5878 496.22 35.8129 496.22 33.8162V0.716797Z\" fill=\"black\"/>\\n<path d=\"M453.101 26.9301C453.101 32.6472 452.017 37.511 449.85 41.5215C447.699 45.532 444.764 48.5953 441.043 50.7115C437.34 52.8106 433.175 53.8602 428.55 53.8602C423.891 53.8602 419.71 52.8021 416.006 50.6859C412.303 48.5697 409.376 45.5064 407.225 41.4959C405.075 37.4854 404 32.6301 404 26.9301C404 21.213 405.075 16.3492 407.225 12.3387C409.376 8.32819 412.303 5.27338 416.006 3.17427C419.71 1.05809 423.891 0 428.55 0C433.175 0 437.34 1.05809 441.043 3.17427C444.764 5.27338 447.699 8.32819 449.85 12.3387C452.017 16.3492 453.101 21.213 453.101 26.9301ZM441.862 26.9301C441.862 23.2268 441.308 20.1037 440.198 17.5609C439.106 15.018 437.561 13.0896 435.565 11.7755C433.568 10.4614 431.23 9.8044 428.55 9.8044C425.871 9.8044 423.533 10.4614 421.536 11.7755C419.539 13.0896 417.986 15.018 416.876 17.5609C415.784 20.1037 415.238 23.2268 415.238 26.9301C415.238 30.6334 415.784 33.7565 416.876 36.2993C417.986 38.8421 419.539 40.7706 421.536 42.0846C423.533 43.3987 425.871 44.0558 428.55 44.0558C431.23 44.0558 433.568 43.3987 435.565 42.0846C437.561 40.7706 439.106 38.8421 440.198 36.2993C441.308 33.7565 441.862 30.6334 441.862 26.9301Z\" fill=\"black\"/>\\n<path d=\"M350.257 0.716797H362.673L374.628 23.2951H375.14L387.096 0.716797H399.512L380.388 34.6098V53.1434H369.38V34.6098L350.257 0.716797Z\" fill=\"black\"/>\\n<path d=\"M267.758 53.1434V0.716797H303.087V9.85561H278.843V22.3479H301.269V31.4867H278.843V44.0046H303.189V53.1434H267.758Z\" fill=\"black\"/>\\n<path d=\"M215.084 9.85561V0.716797H258.144V9.85561H242.092V53.1434H231.135V9.85561H215.084Z\" fill=\"black\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M198.893 41.1887H179.963L182.778 32.5363H196.084L189.642 12.6971L193.058 0.716797H196.58L214.653 53.1434H202.775L198.893 41.1887Z\" fill=\"black\"/>\\n<path d=\"M146.727 0.716797L159.399 40.5487H159.885L172.583 0.716797H184.871L166.797 53.1434H152.512L134.413 0.716797H146.727Z\" fill=\"black\"/>\\n<path d=\"M90.5903 53.1434V0.716797H125.919V9.85561H101.675V22.3479H124.101V31.4867H101.675V44.0046H126.021V53.1434H90.5903Z\" fill=\"black\"/>\\n<path d=\"M47.1646 53.1434V0.716797H58.2495V44.0046H80.7265V53.1434H47.1646Z\" fill=\"black\"/>\\n<path d=\"M0.5 53.1434V0.716797H35.8284V9.85561H11.5849V22.3479H34.0108V31.4867H11.5849V44.0046H35.9308V53.1434H0.5Z\" fill=\"black\"/>\\n</svg>\\n',withExternalLayout:true}),isDisplayed2()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1y3mhi7 hidden-72rtr7 hidden-7vl58a\",\"data-framer-name\":\"Elevate Your Creator\\u2028Journey with DRM\",fill:\"black\",intrinsicHeight:282,intrinsicWidth:576,name:\"Elevate Your Creator\\u2028Journey with DRM\",svg:'<svg width=\"576\" height=\"282\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M426.72 229.254h13.671l14.438 35.225h.615l14.438-35.225h13.671v52.427h-10.752v-34.123h-.435l-13.569 33.867h-7.321l-13.568-33.995h-.436v34.251H426.72v-52.427Zm-49.832 52.427v-52.427h20.685c3.959 0 7.338.709 10.137 2.125 2.816 1.4 4.958 3.388 6.426 5.965 1.485 2.56 2.227 5.572 2.227 9.036 0 3.482-.751 6.477-2.252 8.985-1.502 2.492-3.678 4.403-6.529 5.734-2.833 1.332-6.263 1.997-10.291 1.997h-13.85v-8.908h12.058c2.116 0 3.874-.29 5.274-.871 1.399-.58 2.44-1.45 3.123-2.611.7-1.16 1.05-2.602 1.05-4.326 0-1.741-.35-3.208-1.05-4.403-.683-1.195-1.732-2.099-3.149-2.713-1.399-.632-3.166-.948-5.299-.948h-7.475v43.365h-11.085Zm28.314-23.858 13.03 23.858h-12.237l-12.749-23.858h11.956Z\" fill=\"#000\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M321.917 281.681h18.585c5.325 0 9.899-1.05 13.722-3.149 3.84-2.099 6.784-5.111 8.832-9.036 2.065-3.925 3.098-8.618 3.098-14.079 0-5.445-1.033-10.121-3.098-14.029-2.048-3.908-4.975-6.903-8.781-8.985-3.806-2.099-8.345-3.149-13.619-3.149h-18.739v9.498h18.15c3.277 0 6.033.58 8.269 1.74 2.236 1.161 3.917 2.97 5.043 5.427 1.144 2.458 1.715 5.624 1.715 9.498 0 3.908-.571 7.099-1.715 9.574-1.126 2.457-2.816 4.275-5.069 5.452-2.235 1.161-4.992 1.741-8.269 1.741h-18.124v9.497Z\" fill=\"#000\"/><path d=\"M236.623 281.681v-52.427h11.085v21.631h22.503v-21.631h11.059v52.427h-11.059v-21.657h-22.503v21.657h-11.085Zm-52.674-43.288v-9.139h43.059v9.139h-16.051v43.288H200v-43.288h-16.051Zm-7.939-9.139v52.427h-11.085v-52.427h11.085Zm-68.434 52.427-15.001-52.427h12.109l8.678 36.428h.435l9.575-36.428h10.368l9.549 36.504h.461l8.678-36.504h6.49v19.387l-9.383 33.04h-10.803l-9.984-34.277h-.41l-9.958 34.277h-10.804Zm310.606-128.596h12.416l11.955 22.579h.512l11.955-22.579h12.417l-19.124 33.893v18.534h-11.008v-18.534l-19.123-33.893Zm-43.593 52.427v-52.427h35.329v9.139h-24.244v12.493H408.1v9.138h-22.426v12.518h24.346v9.139h-35.431Zm-11.682-52.427v52.427h-9.574l-22.81-32.997h-.384v32.997h-11.085v-52.427h9.728l22.631 32.972h.461v-32.972h11.033Zm-116.413 0h11.085v34.047c0 3.823-.913 7.168-2.74 10.035-1.809 2.867-4.343 5.103-7.603 6.707-3.26 1.587-7.057 2.38-11.392 2.38-4.352 0-8.158-.793-11.418-2.38-3.26-1.604-5.794-3.84-7.603-6.707-1.809-2.867-2.714-6.212-2.714-10.035v-34.047h11.085v33.1c0 1.997.435 3.771 1.306 5.324.887 1.553 2.133 2.774 3.738 3.661 1.604.888 3.473 1.331 5.606 1.331 2.15 0 4.019-.443 5.606-1.331 1.605-.887 2.842-2.108 3.712-3.661.888-1.553 1.332-3.327 1.332-5.324v-33.1Zm-43.119 26.214c0 5.717-1.083 10.581-3.251 14.591-2.15 4.011-5.086 7.074-8.806 9.19-3.704 2.099-7.868 3.149-12.493 3.149-4.66 0-8.841-1.058-12.545-3.174-3.703-2.117-6.63-5.18-8.78-9.19-2.151-4.011-3.226-8.866-3.226-14.566 0-5.717 1.075-10.581 3.226-14.592 2.15-4.01 5.077-7.065 8.78-9.164 3.704-2.116 7.885-3.174 12.545-3.174 4.625 0 8.789 1.058 12.493 3.174 3.72 2.099 6.656 5.154 8.806 9.164 2.168 4.011 3.251 8.875 3.251 14.592Zm-11.238 0c0-3.704-.555-6.827-1.664-9.369-1.093-2.543-2.637-4.472-4.634-5.786-1.997-1.314-4.335-1.971-7.014-1.971-2.68 0-5.018.657-7.015 1.971-1.997 1.314-3.55 3.243-4.659 5.786-1.092 2.542-1.639 5.665-1.639 9.369 0 3.703.547 6.826 1.639 9.369 1.109 2.543 2.662 4.471 4.659 5.785 1.997 1.314 4.335 1.971 7.015 1.971 2.679 0 5.017-.657 7.014-1.971 1.997-1.314 3.541-3.242 4.634-5.785 1.109-2.543 1.664-5.666 1.664-9.369Zm-59.587-26.214h10.957v36.556c0 3.379-.759 6.314-2.278 8.806-1.502 2.491-3.593 4.411-6.272 5.76-2.68 1.348-5.795 2.022-9.344 2.022-3.158 0-6.025-.555-8.602-1.664-2.56-1.126-4.591-2.833-6.093-5.12-1.502-2.304-2.244-5.196-2.227-8.678h11.033c.035 1.382.316 2.569.845 3.558a5.771 5.771 0 0 0 2.227 2.253c.956.512 2.083.768 3.38.768 1.365 0 2.517-.29 3.456-.87.955-.598 1.681-1.468 2.176-2.611.495-1.144.742-2.552.742-4.224v-36.556Z\" fill=\"#000\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M265.999 152.448v9.062h18.56c2.133 0 3.899.316 5.299.947 1.417.615 2.466 1.519 3.149 2.714.7 1.195 1.049 2.662 1.049 4.403 0 1.724-.349 3.166-1.049 4.326-.683 1.161-1.724 2.031-3.123 2.611-1.4.58-3.158.871-5.274.871h-3.881l14.377 27.493h12.237l-11.124-20.367c.16-.07.318-.141.474-.215 2.85-1.331 5.026-3.242 6.528-5.734 1.502-2.509 2.253-5.504 2.253-8.985 0-3.464-.742-6.477-2.227-9.036-1.468-2.577-3.61-4.566-6.426-5.965-2.799-1.417-6.178-2.125-10.137-2.125h-20.685Z\" fill=\"#000\"/><path d=\"M534.341 128.626V76.2h20.685c3.959 0 7.339.708 10.138 2.124 2.816 1.4 4.957 3.388 6.425 5.965 1.485 2.56 2.227 5.572 2.227 9.036 0 3.482-.75 6.477-2.252 8.986-1.502 2.491-3.678 4.403-6.528 5.734-2.834 1.331-6.264 1.996-10.292 1.996h-13.85v-8.908h12.058c2.116 0 3.874-.29 5.274-.87 1.399-.58 2.44-1.45 3.123-2.611.7-1.16 1.05-2.603 1.05-4.327 0-1.74-.35-3.208-1.05-4.403-.683-1.194-1.732-2.099-3.149-2.713-1.399-.632-3.166-.947-5.299-.947h-7.475v43.364h-11.085Zm28.314-23.858 13.03 23.858h-12.237l-12.749-23.858h11.956Zm-39.049-2.355c0 5.717-1.084 10.581-3.251 14.591-2.15 4.011-5.086 7.074-8.806 9.19-3.704 2.1-7.868 3.149-12.493 3.149-4.66 0-8.841-1.058-12.545-3.174-3.703-2.116-6.63-5.18-8.78-9.19-2.151-4.011-3.226-8.866-3.226-14.566 0-5.717 1.075-10.58 3.226-14.591 2.15-4.01 5.077-7.066 8.78-9.165 3.704-2.116 7.885-3.174 12.545-3.174 4.625 0 8.789 1.058 12.493 3.174 3.72 2.1 6.656 5.154 8.806 9.165 2.167 4.01 3.251 8.874 3.251 14.591Zm-11.238 0c0-3.703-.555-6.826-1.664-9.37-1.093-2.542-2.637-4.47-4.634-5.785-1.997-1.314-4.335-1.97-7.014-1.97-2.68 0-5.018.656-7.015 1.97-1.997 1.315-3.55 3.243-4.659 5.786-1.092 2.543-1.639 5.666-1.639 9.369 0 3.703.547 6.826 1.639 9.369 1.109 2.543 2.662 4.471 4.659 5.786 1.997 1.314 4.335 1.971 7.015 1.971 2.679 0 5.017-.657 7.014-1.971 1.997-1.315 3.541-3.243 4.634-5.786 1.109-2.543 1.664-5.666 1.664-9.369Zm-87.222-17.075V76.2h43.06v9.138h-16.052v43.288h-10.957V85.338h-16.051Zm-40.186 43.288h-11.879L391.18 76.2h14.285l18.074 52.426h-11.878L398.528 88.18h-.41l-13.158 40.446Zm-.743-20.607h28.058v8.653h-28.058v-8.653Zm-41.482 20.471V76.063h38.487l-3.158 9.139H353.82v12.492h19.914l-3.156 9.139H353.82v12.518h12.46l-3.212 9.139h-20.333Zm-47.83.136V76.2h20.685c3.96 0 7.339.708 10.138 2.124 2.816 1.4 4.958 3.388 6.426 5.965 1.485 2.56 2.227 5.572 2.227 9.036 0 3.482-.751 6.477-2.253 8.986-1.502 2.491-3.678 4.403-6.528 5.734-2.833 1.331-6.264 1.996-10.291 1.996h-13.85v-8.908h12.058c2.116 0 3.874-.29 5.273-.87 1.4-.58 2.441-1.45 3.124-2.611.699-1.16 1.049-2.603 1.049-4.327 0-1.74-.35-3.208-1.049-4.403-.683-1.194-1.733-2.099-3.149-2.713-1.4-.632-3.166-.947-5.3-.947h-7.475v43.364h-11.085Zm28.314-23.858 13.031 23.858h-12.237l-12.749-23.858h11.955Zm-38.786-10.214H273.22c-.204-1.45-.623-2.739-1.254-3.865a9.84 9.84 0 0 0-2.432-2.919c-.99-.802-2.133-1.416-3.431-1.843-1.28-.426-2.671-.64-4.172-.64-2.714 0-5.078.674-7.092 2.023-2.014 1.33-3.575 3.276-4.685 5.836-1.109 2.543-1.664 5.632-1.664 9.267 0 3.737.555 6.878 1.664 9.42 1.127 2.543 2.697 4.463 4.711 5.76 2.014 1.297 4.343 1.946 6.989 1.946 1.485 0 2.859-.197 4.121-.589 1.28-.393 2.415-.964 3.405-1.715a9.883 9.883 0 0 0 2.458-2.791c.666-1.092 1.126-2.338 1.382-3.737l11.213.051c-.29 2.407-1.015 4.728-2.176 6.963-1.143 2.219-2.688 4.207-4.633 5.965-1.929 1.74-4.233 3.123-6.913 4.147-2.662 1.007-5.674 1.51-9.036 1.51-4.677 0-8.858-1.058-12.545-3.174-3.669-2.116-6.57-5.18-8.704-9.19-2.116-4.011-3.174-8.866-3.174-14.566 0-5.717 1.075-10.58 3.226-14.591 2.15-4.01 5.068-7.066 8.755-9.165 3.686-2.116 7.834-3.174 12.442-3.174 3.037 0 5.854.427 8.448 1.28 2.611.853 4.924 2.099 6.937 3.737 2.014 1.622 3.653 3.61 4.916 5.965 1.28 2.355 2.099 5.051 2.457 8.09Z\" fill=\"#000\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M169.133 76.2v9.062h18.56c2.134 0 3.9.316 5.3.947 1.416.614 2.466 1.519 3.149 2.713.699 1.195 1.049 2.663 1.049 4.403 0 1.724-.35 3.166-1.049 4.327-.683 1.16-1.724 2.03-3.124 2.611-1.399.58-3.157.87-5.273.87h-3.881l14.377 27.493h12.237l-11.124-20.367c.16-.069.318-.141.474-.214 2.85-1.331 5.026-3.243 6.528-5.734 1.502-2.51 2.253-5.504 2.253-8.986 0-3.464-.742-6.476-2.227-9.036-1.468-2.577-3.61-4.565-6.426-5.965-2.799-1.416-6.178-2.124-10.138-2.124h-20.685Z\" fill=\"#000\"/><path d=\"M146.405 76.2h11.085v34.046c0 3.823-.913 7.168-2.739 10.035-1.81 2.867-4.344 5.103-7.604 6.707-3.26 1.587-7.057 2.381-11.392 2.381-4.352 0-8.158-.794-11.418-2.381-3.259-1.604-5.794-3.84-7.603-6.707-1.809-2.867-2.713-6.212-2.713-10.035V76.2h11.084v33.099c0 1.997.436 3.772 1.306 5.325.888 1.553 2.133 2.773 3.738 3.66 1.604.888 3.473 1.332 5.606 1.332 2.151 0 4.019-.444 5.607-1.332 1.604-.887 2.841-2.107 3.712-3.66.887-1.553 1.331-3.328 1.331-5.325v-33.1Zm-43.119 26.213c0 5.717-1.084 10.581-3.251 14.591-2.15 4.011-5.086 7.074-8.807 9.19-3.703 2.1-7.868 3.149-12.493 3.149-4.659 0-8.84-1.058-12.544-3.174-3.703-2.116-6.63-5.18-8.78-9.19-2.151-4.011-3.226-8.866-3.226-14.566 0-5.717 1.075-10.58 3.225-14.591 2.15-4.01 5.078-7.066 8.781-9.165 3.704-2.116 7.885-3.174 12.544-3.174 4.625 0 8.79 1.058 12.493 3.174 3.72 2.1 6.656 5.154 8.807 9.165 2.167 4.01 3.251 8.874 3.251 14.591Zm-11.239 0c0-3.703-.554-6.826-1.664-9.37-1.092-2.542-2.636-4.47-4.633-5.785-1.997-1.314-4.335-1.97-7.015-1.97-2.68 0-5.017.656-7.014 1.97-1.997 1.315-3.55 3.243-4.66 5.786-1.092 2.543-1.638 5.666-1.638 9.369 0 3.703.546 6.826 1.638 9.369 1.11 2.543 2.663 4.471 4.66 5.786 1.997 1.314 4.335 1.971 7.014 1.971 2.68 0 5.018-.657 7.015-1.971 1.996-1.315 3.541-3.243 4.633-5.786 1.11-2.543 1.664-5.666 1.664-9.369ZM.442 76.2h12.416l11.955 22.578h.512L37.281 76.2h12.416l-19.124 33.893v18.533H19.565v-18.533L.442 76.2Zm403.536-23.717V.056h35.328v9.139h-24.244v12.492h22.426v9.14h-22.426v12.517h24.346v9.139h-35.43ZM351.303 9.195V.056h43.06v9.139h-16.051v43.288h-10.957V9.195h-16.052Z\" fill=\"#000\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M335.112 40.528h-18.93l2.815-8.652h13.306l-6.442-19.84 3.416-11.98h3.522l18.074 52.427h-11.879l-3.882-11.955Z\" fill=\"#000\"/><path d=\"m282.946.056 12.672 39.832h.487L308.802.056h12.288l-18.073 52.427h-14.285L270.632.056h12.314ZM226.81 52.483V.056h35.328v9.139h-24.244v12.492h22.426v9.14h-22.426v12.517h24.346v9.139h-35.43Zm-43.426 0V.056h11.085v43.288h22.477v9.139h-33.562Zm-46.665 0V.056h35.329v9.139h-24.244v12.492h22.426v9.14h-22.426v12.517h24.346v9.139h-35.431Z\" fill=\"#000\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{pt3F4AErh:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-57fecd8c-d0d1-4790-b4a3-696f4f702033, rgb(28, 32, 40))\"},children:\"Powered by the DRM & MC Pay partnership\"})})},xzId7X5_T:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-57fecd8c-d0d1-4790-b4a3-696f4f702033, rgb(28, 32, 40))\"},children:\"Powered by the DRM & MC Pay partnership\"})})}},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-size\":\"24px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-57fecd8c-d0d1-4790-b4a3-696f4f702033, rgb(28, 32, 40))\"},children:\"Powered by the DRM & MC Pay partnership\"})}),className:\"framer-hdnfjr\",\"data-framer-name\":\"Easily and effectively monetize your app with Adskey by offering users\\u2028rewards for interacting with ads\",fonts:[\"Inter-Medium\"],name:\"Easily and effectively monetize your app with Adskey by offering users\\u2028rewards for interacting with ads\",verticalAlignment:\"center\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:true,children:overlay2=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{pt3F4AErh:{y:413},xzId7X5_T:{y:419}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:54,y:517,children:/*#__PURE__*/_jsxs(ContainerWithOptimizedAppearEffect,{animate:animation5,className:\"framer-kfxbf6-container\",\"data-framer-appear-id\":\"kfxbf6\",id:\"kfxbf6\",initial:animation6,optimized:true,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xzId7X5_T:{variant:\"Lbx2z0obn\"}},children:/*#__PURE__*/_jsx(DRMButtons,{aGInQ8yqs:\"12px 32px 12px 32px\",e_9K_n2W1:\"var(--token-3925fb8a-d62b-453e-b675-cdc563c5a26e, rgb(0, 0, 0))\",height:\"100%\",id:\"lzbXY_IWx\",j1DOsD4d3:j1DOsD4d3welu7j({overlay:overlay2}),layoutId:\"lzbXY_IWx\",M73giwIe7:\"rgb(255, 255, 255)\",Mx__Z5xAt:\"var(--token-80bde714-14bd-4dfe-a71f-db496cd95503, rgb(173, 255, 0))\",UCPnrSF2R:\"var(--token-1e0d3100-3129-48d5-9eb1-d8fdbef76552, rgb(255, 255, 255))\",variant:\"rgVuWySCH\",VuqYa0svz:true,width:\"100%\",XTJ6CH_H_:\"var(--token-3925fb8a-d62b-453e-b675-cdc563c5a26e, rgb(0, 0, 0))\",ymWO_NR6m:\"Get started\",ZBs2WBkve:\"var(--token-80bde714-14bd-4dfe-a71f-db496cd95503, rgb(173, 255, 0))\"})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay2.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[0,0,1,1],type:\"tween\"}},className:\"framer-7zss3h\",\"data-framer-portal-id\":\"kfxbf6\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[0,0,1,1],type:\"tween\"}},initial:{opacity:0}},\"VtPMaaZyr\"),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1e3,width:\"100vw\",y:0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1b8dh9q-container\",\"data-framer-portal-id\":\"kfxbf6\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{pt3F4AErh:{variant:\"nATCoEPXk\"},xzId7X5_T:{variant:\"pRVVxuEq2\"}},children:/*#__PURE__*/_jsx(DRMForm,{height:\"100%\",id:\"k6Iu0dxP6\",layoutId:\"k6Iu0dxP6\",nqkM2DFBa:nqkM2DFBa1wvko5h({overlay:overlay2}),style:{height:\"100%\",width:\"100%\"},variant:\"O9azcry8r\",width:\"100%\"})})})})]}),document.querySelector(\"#overlay\"))})})]})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16kejaw\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1azcxv2\",\"data-framer-name\":\"Vector 2257\",fill:\"black\",intrinsicHeight:409,intrinsicWidth:1440,name:\"Vector 2257\",svg:'<svg width=\"1440\" height=\"409\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M-114 51.892C-68.462 19.637 38.284-30.36 100.965 27.7c78.352 72.575 10.045 186.622-50.226 167.614-60.27-19.008-50.225-86.399 0-95.039 50.226-8.64 136.614-8.64 170.767 55.296 34.153 63.935-28.126 114.046 0 179.709s122.55 62.207 160.722 31.104C420.399 335.28 665.499 10.421 1033.15 19.06c367.65 8.64 347.56 219.453 321.44 254.013-26.11 34.559-90.4 93.311-146.66 62.207-56.25-31.104-52.23-112.318 26.12-126.142 78.35-13.824 170.77 6.912 178.8 93.31 8.04 86.399 48.22 126.143 255.15 95.039\" stroke=\"url(#a)\" stroke-opacity=\".24\" stroke-width=\"2\" stroke-dasharray=\"10 10\"/><defs><linearGradient id=\"a\" x1=\"-114\" y1=\"204.5\" x2=\"1668\" y2=\"204.5\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#6B6B6B\"/><stop offset=\".285\" stop-color=\"#6B6B6B\" stop-opacity=\".8\"/><stop offset=\".32\" stop-color=\"#6B6B6B\" stop-opacity=\"0\"/><stop offset=\".477\" stop-color=\"#6B6B6B\" stop-opacity=\"0\"/><stop offset=\".635\" stop-color=\"#6B6B6B\" stop-opacity=\".8\"/><stop offset=\"1\" stop-color=\"#6B6B6B\"/></linearGradient></defs></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{pt3F4AErh:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition(160),positionX:\"center\",positionY:\"center\",sizes:\"87px\",src:\"https://framerusercontent.com/images/wgSys6PLrzvJzipouD5Reuexg4.png\",srcSet:\"https://framerusercontent.com/images/wgSys6PLrzvJzipouD5Reuexg4.png?scale-down-to=512 512w,https://framerusercontent.com/images/wgSys6PLrzvJzipouD5Reuexg4.png 540w\"}},xzId7X5_T:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition(126),positionX:\"center\",positionY:\"center\",sizes:\"74px\",src:\"https://framerusercontent.com/images/wgSys6PLrzvJzipouD5Reuexg4.png\",srcSet:\"https://framerusercontent.com/images/wgSys6PLrzvJzipouD5Reuexg4.png?scale-down-to=512 512w,https://framerusercontent.com/images/wgSys6PLrzvJzipouD5Reuexg4.png 540w\"},transformTemplate:undefined}},children:/*#__PURE__*/_jsx(ImageWithOptimizedAppearEffect,{animate:animation7,background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition(194),positionX:\"center\",positionY:\"center\",sizes:\"146px\",src:\"https://framerusercontent.com/images/wgSys6PLrzvJzipouD5Reuexg4.png\",srcSet:\"https://framerusercontent.com/images/wgSys6PLrzvJzipouD5Reuexg4.png?scale-down-to=512 512w,https://framerusercontent.com/images/wgSys6PLrzvJzipouD5Reuexg4.png 540w\"},className:\"framer-1sobd9q\",\"data-framer-appear-id\":\"1sobd9q\",\"data-framer-name\":\"image 1674\",initial:animation8,name:\"image 1674\",optimized:true,transformTemplate:transformTemplate1})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{pt3F4AErh:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:864.8,intrinsicWidth:864.8,loading:getLoadingLazyAtYPosition(379),pixelHeight:1081,pixelWidth:1081,sizes:\"18.5401px\",src:\"https://framerusercontent.com/images/sAcAEL3hebGPuxM7y1Ia2Erk4.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/sAcAEL3hebGPuxM7y1Ia2Erk4.png?scale-down-to=512 512w,https://framerusercontent.com/images/sAcAEL3hebGPuxM7y1Ia2Erk4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/sAcAEL3hebGPuxM7y1Ia2Erk4.png 1081w\"}},xzId7X5_T:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:864.8,intrinsicWidth:864.8,loading:getLoadingLazyAtYPosition(387),pixelHeight:1081,pixelWidth:1081,sizes:\"16px\",src:\"https://framerusercontent.com/images/sAcAEL3hebGPuxM7y1Ia2Erk4.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/sAcAEL3hebGPuxM7y1Ia2Erk4.png?scale-down-to=512 512w,https://framerusercontent.com/images/sAcAEL3hebGPuxM7y1Ia2Erk4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/sAcAEL3hebGPuxM7y1Ia2Erk4.png 1081w\"}}},children:/*#__PURE__*/_jsx(ImageWithOptimizedAppearEffect,{animate:animation9,background:{alt:\"\",fit:\"fill\",intrinsicHeight:864.8,intrinsicWidth:864.8,loading:getLoadingLazyAtYPosition(514),pixelHeight:1081,pixelWidth:1081,sizes:\"31px\",src:\"https://framerusercontent.com/images/sAcAEL3hebGPuxM7y1Ia2Erk4.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/sAcAEL3hebGPuxM7y1Ia2Erk4.png?scale-down-to=512 512w,https://framerusercontent.com/images/sAcAEL3hebGPuxM7y1Ia2Erk4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/sAcAEL3hebGPuxM7y1Ia2Erk4.png 1081w\"},className:\"framer-bbr0a7\",\"data-framer-appear-id\":\"bbr0a7\",\"data-framer-name\":\"Image\",initial:animation8,name:\"Image\",optimized:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{pt3F4AErh:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition(375.96322131485084),positionX:\"center\",positionY:\"center\",sizes:\"86.7197px\",src:\"https://framerusercontent.com/images/Z7wLjHo7MJ4vJaylqXJ0NsZ8wa8.png\",srcSet:\"https://framerusercontent.com/images/Z7wLjHo7MJ4vJaylqXJ0NsZ8wa8.png?scale-down-to=512 512w,https://framerusercontent.com/images/Z7wLjHo7MJ4vJaylqXJ0NsZ8wa8.png 536w\"}},xzId7X5_T:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition(287.9586630403221),positionX:\"center\",positionY:\"center\",sizes:\"61px\",src:\"https://framerusercontent.com/images/Z7wLjHo7MJ4vJaylqXJ0NsZ8wa8.png\",srcSet:\"https://framerusercontent.com/images/Z7wLjHo7MJ4vJaylqXJ0NsZ8wa8.png?scale-down-to=512 512w,https://framerusercontent.com/images/Z7wLjHo7MJ4vJaylqXJ0NsZ8wa8.png 536w\"}}},children:/*#__PURE__*/_jsx(ImageWithOptimizedAppearEffect,{animate:animation10,background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition(418.99574073115014),positionX:\"center\",positionY:\"center\",sizes:\"145px\",src:\"https://framerusercontent.com/images/Z7wLjHo7MJ4vJaylqXJ0NsZ8wa8.png\",srcSet:\"https://framerusercontent.com/images/Z7wLjHo7MJ4vJaylqXJ0NsZ8wa8.png?scale-down-to=512 512w,https://framerusercontent.com/images/Z7wLjHo7MJ4vJaylqXJ0NsZ8wa8.png 536w\"},className:\"framer-1iynhqq\",\"data-framer-appear-id\":\"1iynhqq\",\"data-framer-name\":\"image 1675\",initial:animation8,name:\"image 1675\",optimized:true,style:{rotate:-15}})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{pt3F4AErh:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:864.8,intrinsicWidth:864.8,loading:getLoadingLazyAtYPosition(162),pixelHeight:1081,pixelWidth:1081,sizes:\"70.5719px\",src:\"https://framerusercontent.com/images/sAcAEL3hebGPuxM7y1Ia2Erk4.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/sAcAEL3hebGPuxM7y1Ia2Erk4.png?scale-down-to=512 512w,https://framerusercontent.com/images/sAcAEL3hebGPuxM7y1Ia2Erk4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/sAcAEL3hebGPuxM7y1Ia2Erk4.png 1081w\"}},xzId7X5_T:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:864.8,intrinsicWidth:864.8,loading:getLoadingLazyAtYPosition(113),pixelHeight:1081,pixelWidth:1081,sizes:\"59.5031px\",src:\"https://framerusercontent.com/images/sAcAEL3hebGPuxM7y1Ia2Erk4.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/sAcAEL3hebGPuxM7y1Ia2Erk4.png?scale-down-to=512 512w,https://framerusercontent.com/images/sAcAEL3hebGPuxM7y1Ia2Erk4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/sAcAEL3hebGPuxM7y1Ia2Erk4.png 1081w\"}}},children:/*#__PURE__*/_jsx(ImageWithOptimizedAppearEffect,{animate:animation11,background:{alt:\"\",fit:\"fill\",intrinsicHeight:864.8,intrinsicWidth:864.8,loading:getLoadingLazyAtYPosition(178),pixelHeight:1081,pixelWidth:1081,sizes:\"118px\",src:\"https://framerusercontent.com/images/sAcAEL3hebGPuxM7y1Ia2Erk4.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/sAcAEL3hebGPuxM7y1Ia2Erk4.png?scale-down-to=512 512w,https://framerusercontent.com/images/sAcAEL3hebGPuxM7y1Ia2Erk4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/sAcAEL3hebGPuxM7y1Ia2Erk4.png 1081w\"},className:\"framer-b9rfh0\",\"data-framer-appear-id\":\"b9rfh0\",\"data-framer-name\":\"Image\",initial:animation8,name:\"Image\",optimized:true})})]}),/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation12,className:\"framer-e3cehm\",\"data-framer-appear-id\":\"e3cehm\",initial:animation13,optimized:true,children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-140vh8a-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xzId7X5_T:{gap:8}},children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:16,height:\"100%\",hoverFactor:1,id:\"zVnrUMin0\",layoutId:\"zVnrUMin0\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:160,width:\"220px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1jqbcr5-container\",children:/*#__PURE__*/_jsx(DRMPlayers,{DPMILTv3Z:\"https://www.youtube.com/@AsimAzharMusicofficial\",eAnySZrID:\"Asim Azhar\",height:\"100%\",id:\"WcLrSjyZs\",layoutId:\"WcLrSjyZs\",nKQ1MSHF1:\"1.2M subscribers\",OCNhLCSpE:addImageAlt({src:\"https://framerusercontent.com/images/yWxIzgFnCewo62il2cpSWXAyFc.png\"},\"\"),style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:160,width:\"220px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-22exqy-container\",children:/*#__PURE__*/_jsx(DRMPlayers,{DPMILTv3Z:\"https://www.youtube.com/@RahimPardesi\",eAnySZrID:\"Rahim Pardesi\",height:\"100%\",id:\"GgVsF0XmI\",layoutId:\"GgVsF0XmI\",nKQ1MSHF1:\"3.25M subscribers\",OCNhLCSpE:addImageAlt({src:\"https://framerusercontent.com/images/ODfFjEkkHeGHsnCEK2xzfRV2V0I.png\"},\"\"),style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:160,width:\"220px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1rtdxr4-container\",children:/*#__PURE__*/_jsx(DRMPlayers,{DPMILTv3Z:\"https://www.youtube.com/@mominasmixedplate\",eAnySZrID:\"Momina's Mixed Plate\",height:\"100%\",id:\"gwuJduk7_\",layoutId:\"gwuJduk7_\",nKQ1MSHF1:\"92.9K subscribers\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:160,width:\"220px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1sxd2ia-container\",children:/*#__PURE__*/_jsx(DRMPlayers,{DPMILTv3Z:\"https://www.youtube.com/@ShoaibAkhtar100mph\",eAnySZrID:\"Shoaib Akhtar\",height:\"100%\",id:\"kftSXmVRJ\",layoutId:\"kftSXmVRJ\",nKQ1MSHF1:\"3.72M subscribers\",OCNhLCSpE:addImageAlt({src:\"https://framerusercontent.com/images/9HnBGMfigI18vNS3XFaZtGXOUz8.png\"},\"\"),style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:160,width:\"220px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-13go15v-container\",children:/*#__PURE__*/_jsx(DRMPlayers,{DPMILTv3Z:\"https://www.youtube.com/@JavedChaudhryOfficial\",eAnySZrID:\"Javed Chaudhry\",height:\"100%\",id:\"erE1azN7C\",layoutId:\"erE1azN7C\",nKQ1MSHF1:\"1.67M subscribers\",OCNhLCSpE:addImageAlt({src:\"https://framerusercontent.com/images/xgZBJyRrZpVCIwYRJ5XezbJb1A.png\"},\"\"),style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:160,width:\"220px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-157a5h3-container\",children:/*#__PURE__*/_jsx(DRMPlayers,{DPMILTv3Z:\"https://www.youtube.com/@zainababbasofficial\",eAnySZrID:\"Zainab Abbas\",height:\"100%\",id:\"DR7oc4nBP\",layoutId:\"DR7oc4nBP\",nKQ1MSHF1:\"95.1K subscribers\",OCNhLCSpE:addImageAlt({src:\"https://framerusercontent.com/images/IsfHTn9Xolbat6ZXw3OfumnRjXE.png\"},\"\"),style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:160,width:\"220px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1e14zbj-container\",children:/*#__PURE__*/_jsx(DRMPlayers,{DPMILTv3Z:\"https://www.youtube.com/somethinghaute\",eAnySZrID:\"Something Haute\",height:\"100%\",id:\"jvN0MQ95k\",layoutId:\"jvN0MQ95k\",nKQ1MSHF1:\"468K subscribers\",OCNhLCSpE:addImageAlt({src:\"https://framerusercontent.com/images/T05zQEHQJpJ3hn7LPQi07k9kHoE.png\"},\"\"),style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:160,width:\"220px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-xzhjcc-container\",children:/*#__PURE__*/_jsx(DRMPlayers,{DPMILTv3Z:\"https://www.youtube.com/@AftabIqbalOfficial\",eAnySZrID:\"Aftab Iqbal\",height:\"100%\",id:\"eODiEFM5e\",layoutId:\"eODiEFM5e\",nKQ1MSHF1:\"1.9M subscribers\",OCNhLCSpE:addImageAlt({src:\"https://framerusercontent.com/images/Wujzy8d2aYIxCw8ROpgx8mWPmg0.png\"},\"\"),style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:160,width:\"220px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1eh6slv-container\",children:/*#__PURE__*/_jsx(DRMPlayers,{DPMILTv3Z:\"https://www.youtube.com/channel/UCQHNQNFHiHJ288WZQna52Ww\",eAnySZrID:\"Nabeel Shaukat Ali\",height:\"100%\",id:\"finluQAts\",layoutId:\"finluQAts\",nKQ1MSHF1:\"812K subscribers\",OCNhLCSpE:addImageAlt({src:\"https://framerusercontent.com/images/pZrgMaTxyufbYZCEkcrEnDpe9GI.png\"},\"\"),style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:160,width:\"220px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1uyex2a-container\",children:/*#__PURE__*/_jsx(DRMPlayers,{DPMILTv3Z:\"https://www.youtube.com/@SalmanButtOfficial\",eAnySZrID:\"Salman Butt\",height:\"100%\",id:\"rD5rnrWwo\",layoutId:\"rD5rnrWwo\",nKQ1MSHF1:\"149K subscribers\",OCNhLCSpE:addImageAlt({src:\"https://framerusercontent.com/images/ckEQSRV6GuRaRjSkbkdTzb29YZM.png\"},\"\"),style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})],speed:25,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{pt3F4AErh:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-429c2cd1-72df-48ff-a053-3e4e536e2440, rgb(106, 106, 106))\",\"--framer-text-transform\":\"uppercase\"},children:\"Creators Trust Us  and come first in everything we do \"})})},xzId7X5_T:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-429c2cd1-72df-48ff-a053-3e4e536e2440, rgb(106, 106, 106))\",\"--framer-text-transform\":\"uppercase\"},children:[\"Creators Trust Us  and come first \",/*#__PURE__*/_jsx(\"br\",{}),\"in everything we do \"]})})}},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-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"100%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-429c2cd1-72df-48ff-a053-3e4e536e2440, rgb(106, 106, 106))\",\"--framer-text-transform\":\"uppercase\"},children:\"Creators Trust Us  and come first in everything we do \"})}),className:\"framer-k874xk\",\"data-framer-name\":\"Creators Trust Us and come first in everything we do\",fonts:[\"Inter-Medium\"],name:\"Creators Trust Us and come first in everything we do\",verticalAlignment:\"center\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-gp9k5x\",\"data-framer-name\":\"numbers\",id:elementId,name:\"numbers\",ref:ref2,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1xtg1de\",\"data-framer-name\":\"Frame 1321317379\",name:\"Frame 1321317379\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{pt3F4AErh:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1pxziw5\",\"data-styles-preset\":\"dx8nfbYmS\",children:\" DOT Republic Media\"})})},xzId7X5_T:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-2glifg\",\"data-styles-preset\":\"ya7EE3uJv\",children:\" DOT Republic Media\"})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition9},__framer__animateOnce:true,__framer__enter:animation14,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref2,target:\"animate\"}],__framer__threshold:1,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-16wibyn\",\"data-styles-preset\":\"QBj9BCX0r\",children:\" DOT Republic Media\"})}),className:\"framer-1w183t\",\"data-framer-name\":\"DOT Republic Media\",fonts:[\"Inter\"],name:\"DOT Republic Media\",verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{pt3F4AErh:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-v0r1a\",\"data-styles-preset\":\"Dyn3uEx28\",children:[\"Pakistani #1 \",/*#__PURE__*/_jsx(Link,{href:\"https://servicesdirectory.withyoutube.com/directory/dot-republic-media/\",nodeId:\"G8r_d_5ex\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-styles-preset-ra82wr\",\"data-styles-preset\":\"nam91LSV_\",children:\"YouTube Official Partner\"})}),\".\",/*#__PURE__*/_jsx(\"br\",{}),\"We boost your revenue while you create. Focus on content, let us handle the growth.\"]})})},xzId7X5_T:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-v0r1a\",\"data-styles-preset\":\"Dyn3uEx28\",style:{\"--framer-text-alignment\":\"center\"},children:[\"Pakistani #1 \",/*#__PURE__*/_jsx(Link,{href:\"https://servicesdirectory.withyoutube.com/directory/dot-republic-media/\",nodeId:\"G8r_d_5ex\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-styles-preset-ra82wr\",\"data-styles-preset\":\"nam91LSV_\",children:\"YouTube Official Partner\"})}),\".\",/*#__PURE__*/_jsx(\"br\",{}),\"We boost your revenue while you create. Focus on content, let us handle the growth.\"]})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition10},__framer__animateOnce:true,__framer__enter:animation14,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref2,target:\"animate\"}],__framer__threshold:1,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-f7gxl5\",\"data-styles-preset\":\"UAtxkrELx\",children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-57fecd8c-d0d1-4790-b4a3-696f4f702033, rgb(28, 32, 40))\"},children:\"Pakistani #1 \"}),/*#__PURE__*/_jsx(Link,{href:\"https://servicesdirectory.withyoutube.com/directory/dot-republic-media/\",nodeId:\"G8r_d_5ex\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-styles-preset-ra82wr\",\"data-styles-preset\":\"nam91LSV_\",children:/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-57fecd8c-d0d1-4790-b4a3-696f4f702033, rgb(28, 32, 40))\"},children:\"YouTube Official Partner\"})})}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-57fecd8c-d0d1-4790-b4a3-696f4f702033, rgb(28, 32, 40))\"},children:\".\"}),/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-57fecd8c-d0d1-4790-b4a3-696f4f702033, rgb(28, 32, 40))\"},children:\"We boost your revenue while you create. Focus on content, let us handle the growth.\"})]})}),className:\"framer-1nu6eof\",\"data-framer-name\":\"Pakistani #1 YouTube Official Partner.\\u2028We boost your revenue while you create. Focus on content, let us handle the growth.\",fonts:[\"Inter\"],name:\"Pakistani #1 YouTube Official Partner.\\u2028We boost your revenue while you create. Focus on content, let us handle the growth.\",verticalAlignment:\"center\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1y4evzq\",\"data-framer-name\":\"Frame 1321314454\",name:\"Frame 1321314454\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-i9gsyc\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition11},__framer__animateOnce:true,__framer__enter:animation15,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref2,target:\"animate\"}],__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-13q7g3y\",\"data-framer-name\":\"Frame 1321314470\",name:\"Frame 1321314470\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1kdd996\",\"data-framer-name\":\"Frame 1321317286\",name:\"Frame 1321317286\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{pt3F4AErh:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:320,intrinsicWidth:1183.2,loading:getLoadingLazyAtYPosition(1139),pixelHeight:400,pixelWidth:1479,sizes:\"152px\",src:\"https://framerusercontent.com/images/5Fval7GGNlEJOt7SQA3cYOSWWKA.png\",srcSet:\"https://framerusercontent.com/images/5Fval7GGNlEJOt7SQA3cYOSWWKA.png?scale-down-to=512 512w,https://framerusercontent.com/images/5Fval7GGNlEJOt7SQA3cYOSWWKA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/5Fval7GGNlEJOt7SQA3cYOSWWKA.png 1479w\"}},xzId7X5_T:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:320,intrinsicWidth:1183.2,loading:getLoadingLazyAtYPosition(1083.4),pixelHeight:400,pixelWidth:1479,sizes:\"152px\",src:\"https://framerusercontent.com/images/5Fval7GGNlEJOt7SQA3cYOSWWKA.png\",srcSet:\"https://framerusercontent.com/images/5Fval7GGNlEJOt7SQA3cYOSWWKA.png?scale-down-to=512 512w,https://framerusercontent.com/images/5Fval7GGNlEJOt7SQA3cYOSWWKA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/5Fval7GGNlEJOt7SQA3cYOSWWKA.png 1479w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:320,intrinsicWidth:1183.2,loading:getLoadingLazyAtYPosition(1435.4),pixelHeight:400,pixelWidth:1479,sizes:\"152px\",src:\"https://framerusercontent.com/images/5Fval7GGNlEJOt7SQA3cYOSWWKA.png\",srcSet:\"https://framerusercontent.com/images/5Fval7GGNlEJOt7SQA3cYOSWWKA.png?scale-down-to=512 512w,https://framerusercontent.com/images/5Fval7GGNlEJOt7SQA3cYOSWWKA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/5Fval7GGNlEJOt7SQA3cYOSWWKA.png 1479w\"},className:\"framer-te29ko\",\"data-framer-name\":\"Group 237877\",name:\"Group 237877\",transformTemplate:transformTemplate1})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xzId7X5_T:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-80bde714-14bd-4dfe-a71f-db496cd95503, rgb(173, 255, 0))\"},children:\"YouTube and Google official partner\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ii5scj\",\"data-styles-preset\":\"wjNpFc4yO\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-80bde714-14bd-4dfe-a71f-db496cd95503, rgb(173, 255, 0))\"},children:\"YouTube and Google official partner\"})}),className:\"framer-f7t34p\",\"data-framer-name\":\"YouTube and Google official partner\",fonts:[\"Inter\"],name:\"YouTube and Google official partner\",verticalAlignment:\"center\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition12},__framer__animateOnce:true,__framer__enter:animation15,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref2,target:\"animate\"}],__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1f39g9d\",\"data-framer-name\":\"Frame 1321314471\",name:\"Frame 1321314471\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xzId7X5_T:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\"},children:\"#1\"})}),fonts:[\"Inter-Bold\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-pi5few\",\"data-styles-preset\":\"e9Fvv4iGz\",style:{\"--framer-text-alignment\":\"center\"},children:\"#1\"})}),className:\"framer-jik8oj\",\"data-framer-name\":\"#1\",fonts:[\"Inter\"],name:\"#1\",verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xzId7X5_T:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(102, 102, 102)\"},children:\"YouTube partner in Pakistan\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ii5scj\",\"data-styles-preset\":\"wjNpFc4yO\",style:{\"--framer-text-alignment\":\"center\"},children:\"YouTube partner in Pakistan\"})}),className:\"framer-1auozl6\",\"data-framer-name\":\"YouTube partner\\u2028in Pakistan\",fonts:[\"Inter\"],name:\"YouTube partner\\u2028in Pakistan\",verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition13},__framer__animateOnce:true,__framer__enter:animation15,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref2,target:\"animate\"}],__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-10o7q86\",\"data-framer-name\":\"Frame 1321314468\",name:\"Frame 1321314468\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xzId7X5_T:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\"},children:\"$30M+\"})}),fonts:[\"Inter-Bold\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-pi5few\",\"data-styles-preset\":\"e9Fvv4iGz\",style:{\"--framer-text-alignment\":\"center\"},children:\"$30M+\"})}),className:\"framer-8jzh4o\",\"data-framer-name\":\"$30M+\",fonts:[\"Inter\"],name:\"$30M+\",verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xzId7X5_T:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(102, 102, 102)\"},children:\"Paid to Creators\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ii5scj\",\"data-styles-preset\":\"wjNpFc4yO\",style:{\"--framer-text-alignment\":\"center\"},children:\"Paid to Creators\"})}),className:\"framer-oplugp\",\"data-framer-name\":\"Paid to Creators\",fonts:[\"Inter\"],name:\"Paid to Creators\",verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-15ek61g\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition14},__framer__animateOnce:true,__framer__enter:animation15,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref2,target:\"animate\"}],__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-17qoyl7\",\"data-framer-name\":\"Frame 1321314465\",name:\"Frame 1321314465\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xzId7X5_T:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\"},children:\"500M+\"})}),fonts:[\"Inter-Bold\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-pi5few\",\"data-styles-preset\":\"e9Fvv4iGz\",style:{\"--framer-text-alignment\":\"center\"},children:\"500M+\"})}),className:\"framer-ft5pg3\",\"data-framer-name\":\"500M+\",fonts:[\"Inter\"],name:\"500M+\",verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xzId7X5_T:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(102, 102, 102)\"},children:\"Views per Month\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ii5scj\",\"data-styles-preset\":\"wjNpFc4yO\",style:{\"--framer-text-alignment\":\"center\"},children:\"Views per Month\"})}),className:\"framer-6amubf\",\"data-framer-name\":\"Views per Month\",fonts:[\"Inter\"],name:\"Views per Month\",verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition15},__framer__animateOnce:true,__framer__enter:animation15,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref2,target:\"animate\"}],__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-mduwbo\",\"data-framer-name\":\"Frame 1321314467\",name:\"Frame 1321314467\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xzId7X5_T:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\"},children:\"10+ Years\"})}),fonts:[\"Inter-Bold\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-pi5few\",\"data-styles-preset\":\"e9Fvv4iGz\",style:{\"--framer-text-alignment\":\"center\"},children:\"10+ Years\"})}),className:\"framer-mxdyxl\",\"data-framer-name\":\"10+ Years\",fonts:[\"Inter\"],name:\"10+ Years\",verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xzId7X5_T:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(102, 102, 102)\"},children:\"In a digital media industry\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ii5scj\",\"data-styles-preset\":\"wjNpFc4yO\",style:{\"--framer-text-alignment\":\"center\"},children:\"In a digital media industry\"})}),className:\"framer-1yrxxnw\",\"data-framer-name\":\"In a digital media industry\",fonts:[\"Inter\"],name:\"In a digital media industry\",verticalAlignment:\"top\",withExternalLayout:true})})]})]})]})]}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition16},__framer__animateOnce:true,__framer__enter:animation15,__framer__styleAppearEffectEnabled:true,__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-su3io7\",\"data-framer-name\":\"devider\",name:\"devider\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-11s3r10\",\"data-framer-name\":\"devider\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:22,intrinsicWidth:1215,name:\"devider\",svg:'<svg width=\"1215\" height=\"22\" viewBox=\"0 0 1215 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0.961914 0L11.8925 10.9297C11.9353 10.9725 11.9353 11.0275 11.8925 11.0703L0.961914 22M19.9635 0L30.8942 10.9297C30.9369 10.9725 30.9369 11.0275 30.8942 11.0703L19.9635 22M38.9652 0L49.8958 10.9297C49.9386 10.9725 49.9386 11.0275 49.8958 11.0703L38.9652 22M57.9668 0L68.8974 10.9297C68.9402 10.9725 68.9402 11.0275 68.8974 11.0703L57.9668 22M76.9684 0L87.899 10.9297C87.9418 10.9725 87.9418 11.0275 87.899 11.0703L76.9684 22M95.97 0L106.901 10.9297C106.943 10.9725 106.943 11.0275 106.901 11.0703L95.97 22M114.972 0L125.902 10.9297C125.945 10.9725 125.945 11.0275 125.902 11.0703L114.972 22M133.973 0L144.904 10.9297C144.947 10.9725 144.947 11.0275 144.904 11.0703L133.973 22M152.975 0L163.906 10.9297C163.948 10.9725 163.948 11.0275 163.906 11.0703L152.975 22M171.976 0L182.907 10.9297C182.95 10.9725 182.95 11.0275 182.907 11.0703L171.976 22M190.978 0L201.909 10.9297C201.952 10.9725 201.952 11.0275 201.909 11.0703L190.978 22M209.98 0L220.91 10.9297C220.953 10.9725 220.953 11.0275 220.91 11.0703L209.98 22M228.981 0L239.912 10.9297C239.955 10.9725 239.955 11.0275 239.912 11.0703L228.981 22M247.983 0L258.914 10.9297C258.956 10.9725 258.956 11.0275 258.914 11.0703L247.983 22M266.985 0L277.915 10.9297C277.958 10.9725 277.958 11.0275 277.915 11.0703L266.985 22M285.986 0L296.917 10.9297C296.96 10.9725 296.96 11.0275 296.917 11.0703L285.986 22M304.988 0L315.918 10.9297C315.961 10.9725 315.961 11.0275 315.918 11.0703L304.988 22M323.989 0L334.92 10.9297C334.963 10.9725 334.963 11.0275 334.92 11.0703L323.989 22M342.991 0L353.922 10.9297C353.964 10.9725 353.964 11.0275 353.922 11.0703L342.991 22M361.993 0L372.923 10.9297C372.966 10.9725 372.966 11.0275 372.923 11.0703L361.993 22M380.994 0L391.925 10.9297C391.968 10.9725 391.968 11.0275 391.925 11.0703L380.994 22M399.996 0L410.927 10.9297C410.969 10.9725 410.969 11.0275 410.927 11.0703L399.996 22M418.998 0L429.928 10.9297C429.971 10.9725 429.971 11.0275 429.928 11.0703L418.998 22M437.999 0L448.93 10.9297C448.973 10.9725 448.973 11.0275 448.93 11.0703L437.999 22\" stroke=\"url(#paint0_linear_9_2982)\" stroke-linecap=\"round\"/>\\n<path d=\"M595.962 2L607.885 9.29491C607.932 9.32347 607.992 9.32347 608.039 9.29491L619.962 2M595.962 12.6837L607.885 19.9786C607.932 20.0071 607.992 20.0071 608.039 19.9786L619.962 12.6837\" stroke=\"#6B6B79\" stroke-linecap=\"round\"/>\\n<path d=\"M1214.96 0L1204.03 10.9297C1203.99 10.9725 1203.99 11.0275 1204.03 11.0703L1214.96 22M1195.96 0L1185.03 10.9297C1184.99 10.9725 1184.99 11.0275 1185.03 11.0703L1195.96 22M1176.96 0L1166.03 10.9297C1165.99 10.9725 1165.99 11.0275 1166.03 11.0703L1176.96 22M1157.96 0L1147.03 10.9297C1146.98 10.9725 1146.98 11.0275 1147.03 11.0703L1157.96 22M1138.96 0L1128.02 10.9297C1127.98 10.9725 1127.98 11.0275 1128.02 11.0703L1138.96 22M1119.95 0L1109.02 10.9297C1108.98 10.9725 1108.98 11.0275 1109.02 11.0703L1119.95 22M1100.95 0L1090.02 10.9297C1089.98 10.9725 1089.98 11.0275 1090.02 11.0703L1100.95 22M1081.95 0L1071.02 10.9297C1070.98 10.9725 1070.98 11.0275 1071.02 11.0703L1081.95 22M1062.95 0L1052.02 10.9297C1051.98 10.9725 1051.98 11.0275 1052.02 11.0703L1062.95 22M1043.95 0L1033.02 10.9297C1032.97 10.9725 1032.97 11.0275 1033.02 11.0703L1043.95 22M1024.95 0L1014.02 10.9297C1013.97 10.9725 1013.97 11.0275 1014.02 11.0703L1024.95 22M1005.94 0L995.013 10.9297C994.971 10.9725 994.971 11.0275 995.013 11.0703L1005.94 22M986.942 0L976.012 10.9297C975.969 10.9725 975.969 11.0275 976.012 11.0703L986.942 22M967.941 0L957.01 10.9297C956.967 10.9725 956.967 11.0275 957.01 11.0703L967.941 22M948.939 0L938.009 10.9297C937.966 10.9725 937.966 11.0275 938.009 11.0703L948.939 22M929.938 0L919.007 10.9297C918.964 10.9725 918.964 11.0275 919.007 11.0703L929.938 22M910.936 0L900.005 10.9297C899.963 10.9725 899.963 11.0275 900.005 11.0703L910.936 22M891.934 0L881.004 10.9297C880.961 10.9725 880.961 11.0275 881.004 11.0703L891.934 22M872.933 0L862.002 10.9297C861.959 10.9725 861.959 11.0275 862.002 11.0703L872.933 22M853.931 0L843 10.9297C842.958 10.9725 842.958 11.0275 843 11.0703L853.931 22M834.929 0L823.999 10.9297C823.956 10.9725 823.956 11.0275 823.999 11.0703L834.929 22M815.928 0L804.997 10.9297C804.954 10.9725 804.954 11.0275 804.997 11.0703L815.928 22M796.926 0L785.996 10.9297C785.953 10.9725 785.953 11.0275 785.996 11.0703L796.926 22M777.925 0L766.994 10.9297C766.951 10.9725 766.951 11.0275 766.994 11.0703L777.925 22\" stroke=\"url(#paint1_linear_9_2982)\" stroke-linecap=\"round\"/>\\n<defs>\\n<linearGradient id=\"paint0_linear_9_2982\" x1=\"0.961914\" y1=\"11\" x2=\"448.962\" y2=\"11\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#6B6B79\" stop-opacity=\"0\"/>\\n<stop offset=\"1\" stop-color=\"#6B6B79\"/>\\n</linearGradient>\\n<linearGradient id=\"paint1_linear_9_2982\" x1=\"766.962\" y1=\"11\" x2=\"1214.96\" y2=\"11\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#6B6B79\"/>\\n<stop offset=\"1\" stop-color=\"#6B6B79\" stop-opacity=\"0\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-11gbvwn\",\"data-framer-name\":\"numbers\",id:elementId1,name:\"numbers\",ref:ref3,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1p4bmv2\",\"data-framer-name\":\"Frame 1321317379\",name:\"Frame 1321317379\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{pt3F4AErh:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1pxziw5\",\"data-styles-preset\":\"dx8nfbYmS\",children:\"Power Your Content with Our Services\"})})},xzId7X5_T:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-2glifg\",\"data-styles-preset\":\"ya7EE3uJv\",children:\"Power Your Content with Our Services\"})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition9},__framer__animateOnce:true,__framer__enter:animation14,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref3,target:\"animate\"}],__framer__threshold:1,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-16wibyn\",\"data-styles-preset\":\"QBj9BCX0r\",children:\"Power Your Content with Our Services\"})}),className:\"framer-1minxhs\",\"data-framer-name\":\"DOT Republic Media\",fonts:[\"Inter\"],name:\"DOT Republic Media\",verticalAlignment:\"center\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-as3ufl\",\"data-framer-name\":\"Cards Scroll area\",\"data-hide-scrollbars\":true,name:\"Cards Scroll area\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-14e7z9t\",\"data-framer-name\":\"Cards List\",\"data-hide-scrollbars\":true,name:\"Cards List\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{pt3F4AErh:{height:320,width:\"300px\",y:1845.2},xzId7X5_T:{height:328,width:\"288px\",y:1886.4}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:440,width:\"392px\",y:1993.8000000000002,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition17},__framer__animateOnce:true,__framer__enter:animation15,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref3,target:\"animate\"}],__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-cbl5fp-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{pt3F4AErh:{variant:\"oty6XV2tr\"},xzId7X5_T:{variant:\"oty6XV2tr\"}},children:/*#__PURE__*/_jsx(DRMServiceCard,{Bgj836IXS:\"\u041F\u0430\u043A\u0435\u0442\",cwzmh_uTV:addImageAlt({src:\"https://framerusercontent.com/images/Tj2uFMBOjFK2owf2myT7iKDJbk.png\",srcSet:\"https://framerusercontent.com/images/Tj2uFMBOjFK2owf2myT7iKDJbk.png?scale-down-to=512 512w,https://framerusercontent.com/images/Tj2uFMBOjFK2owf2myT7iKDJbk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Tj2uFMBOjFK2owf2myT7iKDJbk.png 1680w\"},\"\"),height:\"100%\",id:\"O8M0nLHKk\",Ite3bPd7F:false,kS1YWMCT8:\"Direct YouTube Support\",L7EOq9xiH:\"var(--token-1e0d3100-3129-48d5-9eb1-d8fdbef76552, rgb(255, 255, 255))\",layoutId:\"O8M0nLHKk\",qvq6LPS5d:\"Priority support, 24/7, thanks to our YouTube enterprise partnership\",RbyEajZuS:false,rf3U03m3D:\"\u0411\u043E\u043D\u0443\u0441 \u0437\u0430 \u043E\u0442\u043A\u0440\u044B\u0442\u0438\u0435 \u043A\u043E\u0448\u0435\u043B\u044C\u043A\u0430\",style:{height:\"100%\",width:\"100%\"},variant:\"J0KPQRZMh\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{pt3F4AErh:{height:320,width:\"300px\",y:1845.2},xzId7X5_T:{height:328,width:\"288px\",y:1886.4}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:440,width:\"392px\",y:1993.8000000000002,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition18},__framer__animateOnce:true,__framer__enter:animation15,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref3,target:\"animate\"}],__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-ecrga9-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{pt3F4AErh:{cwzmh_uTV:addImageAlt({src:\"https://framerusercontent.com/images/iNH9GOCT5yoZju868Wp4qcp99TI.png\",srcSet:\"https://framerusercontent.com/images/iNH9GOCT5yoZju868Wp4qcp99TI.png?scale-down-to=512 512w,https://framerusercontent.com/images/iNH9GOCT5yoZju868Wp4qcp99TI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/iNH9GOCT5yoZju868Wp4qcp99TI.png 1568w\"},\"\"),variant:\"oty6XV2tr\"},xzId7X5_T:{variant:\"oty6XV2tr\"}},children:/*#__PURE__*/_jsx(DRMServiceCard,{Bgj836IXS:\"\u041F\u0430\u043A\u0435\u0442\",cwzmh_uTV:addImageAlt({src:\"https://framerusercontent.com/images/otDZKz5zCofLHgPaTE6VjZiA4.png\",srcSet:\"https://framerusercontent.com/images/otDZKz5zCofLHgPaTE6VjZiA4.png?scale-down-to=512 512w,https://framerusercontent.com/images/otDZKz5zCofLHgPaTE6VjZiA4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/otDZKz5zCofLHgPaTE6VjZiA4.png 1568w\"},\"\"),height:\"100%\",id:\"ExCRNjJnV\",Ite3bPd7F:false,kS1YWMCT8:\"Channel Optimization\",L7EOq9xiH:\"var(--token-1e0d3100-3129-48d5-9eb1-d8fdbef76552, rgb(255, 255, 255))\",layoutId:\"ExCRNjJnV\",qvq6LPS5d:\"Full audit with key improvements for your channel\",RbyEajZuS:false,rf3U03m3D:\"\u0411\u043E\u043D\u0443\u0441 \u0437\u0430 \u043E\u0442\u043A\u0440\u044B\u0442\u0438\u0435 \u043A\u043E\u0448\u0435\u043B\u044C\u043A\u0430\",style:{height:\"100%\",width:\"100%\"},variant:\"J0KPQRZMh\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{pt3F4AErh:{height:320,width:\"300px\",y:1845.2},xzId7X5_T:{height:328,width:\"288px\",y:1886.4}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:440,width:\"392px\",y:1993.8000000000002,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:true,__framer__enter:animation15,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref3,target:\"animate\"}],__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-109gw13-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{pt3F4AErh:{variant:\"oty6XV2tr\"},xzId7X5_T:{variant:\"oty6XV2tr\"}},children:/*#__PURE__*/_jsx(DRMServiceCard,{Bgj836IXS:\"\u041F\u0430\u043A\u0435\u0442\",cwzmh_uTV:addImageAlt({src:\"https://framerusercontent.com/images/3dPlf0QdbEGoiCAaaL9HhEpZckI.png\",srcSet:\"https://framerusercontent.com/images/3dPlf0QdbEGoiCAaaL9HhEpZckI.png?scale-down-to=512 512w,https://framerusercontent.com/images/3dPlf0QdbEGoiCAaaL9HhEpZckI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/3dPlf0QdbEGoiCAaaL9HhEpZckI.png 1074w\"},\"\"),height:\"100%\",id:\"o4QWjqZ5B\",Ite3bPd7F:false,kS1YWMCT8:\"Rights Management\",L7EOq9xiH:\"var(--token-1e0d3100-3129-48d5-9eb1-d8fdbef76552, rgb(255, 255, 255))\",layoutId:\"o4QWjqZ5B\",qvq6LPS5d:\"Scan for unauthorized uploads, monetize them, block them, or redirect traffic to your channel\",RbyEajZuS:false,rf3U03m3D:\"\u0411\u043E\u043D\u0443\u0441 \u0437\u0430 \u043E\u0442\u043A\u0440\u044B\u0442\u0438\u0435 \u043A\u043E\u0448\u0435\u043B\u044C\u043A\u0430\",style:{height:\"100%\",width:\"100%\"},variant:\"J0KPQRZMh\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{pt3F4AErh:{height:320,width:\"300px\",y:1845.2},xzId7X5_T:{height:328,width:\"288px\",y:1886.4}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:440,width:\"392px\",y:1993.8000000000002,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition19},__framer__animateOnce:true,__framer__enter:animation15,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref3,target:\"animate\"}],__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-mpyoi5-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{pt3F4AErh:{cwzmh_uTV:addImageAlt({src:\"https://framerusercontent.com/images/9CLUPd9ggDUjiFqHL8zRj1YF5VQ.jpg\",srcSet:\"https://framerusercontent.com/images/9CLUPd9ggDUjiFqHL8zRj1YF5VQ.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/9CLUPd9ggDUjiFqHL8zRj1YF5VQ.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/9CLUPd9ggDUjiFqHL8zRj1YF5VQ.jpg 1312w\"},\"\"),variant:\"oty6XV2tr\"},xzId7X5_T:{cwzmh_uTV:addImageAlt({src:\"https://framerusercontent.com/images/9CLUPd9ggDUjiFqHL8zRj1YF5VQ.jpg\",srcSet:\"https://framerusercontent.com/images/9CLUPd9ggDUjiFqHL8zRj1YF5VQ.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/9CLUPd9ggDUjiFqHL8zRj1YF5VQ.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/9CLUPd9ggDUjiFqHL8zRj1YF5VQ.jpg 1312w\"},\"\"),variant:\"oty6XV2tr\"}},children:/*#__PURE__*/_jsx(DRMServiceCard,{Bgj836IXS:\"\u041F\u0430\u043A\u0435\u0442\",cwzmh_uTV:addImageAlt({src:\"https://framerusercontent.com/images/GRtkUj3QrFSUZUYhs9bOsWjY5M.jpg\",srcSet:\"https://framerusercontent.com/images/GRtkUj3QrFSUZUYhs9bOsWjY5M.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/GRtkUj3QrFSUZUYhs9bOsWjY5M.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/GRtkUj3QrFSUZUYhs9bOsWjY5M.jpg 1245w\"},\"\"),height:\"100%\",id:\"PAC2LAa3_\",Ite3bPd7F:false,kS1YWMCT8:\"Partner Manager\",L7EOq9xiH:\"var(--token-1e0d3100-3129-48d5-9eb1-d8fdbef76552, rgb(255, 255, 255))\",layoutId:\"PAC2LAa3_\",qvq6LPS5d:\"Get personal assistance on channel development\",RbyEajZuS:true,rf3U03m3D:\"Create. let us do the rest\",style:{height:\"100%\",width:\"100%\"},variant:\"J0KPQRZMh\",width:\"100%\"})})})})})]})}),isDisplayed3()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-12r1zez hidden-7vl58a hidden-xzzl4z\",style:{rotate:90}}),isDisplayed3()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-3tyfzu hidden-7vl58a hidden-xzzl4z\",style:{rotate:90}})]}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition20},__framer__animateOnce:true,__framer__enter:animation14,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref4,target:\"animate\"}],__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-dimfrb\",\"data-framer-name\":\"Revenue Boost Program\",id:elementId2,name:\"Revenue Boost Program\",ref:ref4,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{pt3F4AErh:{width:\"calc(100vw - 48px)\",y:2285.2},xzId7X5_T:{width:\"calc(100vw - 32px)\",y:2314.4}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:614,width:\"1224px\",y:2633.8,children:/*#__PURE__*/_jsx(Container,{className:\"framer-6rndc9-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{pt3F4AErh:{variant:\"U9GaCUgO6\"},xzId7X5_T:{variant:\"XT5w43Th0\"}},children:/*#__PURE__*/_jsx(DRMSlider,{aVo4bqLhx:addImageAlt({src:\"https://framerusercontent.com/images/l1SUqyfGPE8iHzi1f3svAloYKI.png\",srcSet:\"https://framerusercontent.com/images/l1SUqyfGPE8iHzi1f3svAloYKI.png?scale-down-to=512 512w,https://framerusercontent.com/images/l1SUqyfGPE8iHzi1f3svAloYKI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/l1SUqyfGPE8iHzi1f3svAloYKI.png 1200w\"},\"\"),ebao5kDkz:false,h0aBPZwLo:\"Ads Revenue boost\",height:\"100%\",id:\"YnB453iIi\",JujjGGfl5:\"Ads automation tool\",KdpJvdGLl:addImageAlt({src:\"https://framerusercontent.com/images/5XUBioWPa9at747hT0EQTEeFack.png\",srcSet:\"https://framerusercontent.com/images/5XUBioWPa9at747hT0EQTEeFack.png?scale-down-to=512 512w,https://framerusercontent.com/images/5XUBioWPa9at747hT0EQTEeFack.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/5XUBioWPa9at747hT0EQTEeFack.png 1200w\"},\"\"),kqWqfwhmB:\"Advanced tool to optimize Ads performance on your videos to increase earnings\",layoutId:\"YnB453iIi\",N0F5nEfLn:\"Multiply your Shorts earnings while promoting our music\",Nm_PHyNH2:\"Meta Distribution\",o5KObaNh5:\"New revenue stream\",style:{width:\"100%\"},TnQwMiCsf:\"Revenue Boost Program\",v6NrNvZno:true,variant:\"Muk3dI8Ob\",wDU9pGwtp:\"Shorts Pay+\",width:\"100%\",XZ4HBRkOw:\"Expand your audience and monetize new platforms\",zmt_2h4f_:\"Choose from over 10 different payment methods. Withdraw exactly how much you want, when you want, and how you want. Get advances or early payouts, and more\u2014all in one app\",ZULcJ9mS3:\"extra revenue\"})})})})})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition16},__framer__animateOnce:true,__framer__enter:animation15,__framer__styleAppearEffectEnabled:true,__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1ceyili\",\"data-framer-name\":\"devider\",name:\"devider\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-y01y8e\",\"data-framer-name\":\"devider\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:22,intrinsicWidth:1215,name:\"devider\",svg:'<svg width=\"1215\" height=\"22\" viewBox=\"0 0 1215 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0.961914 0L11.8925 10.9297C11.9353 10.9725 11.9353 11.0275 11.8925 11.0703L0.961914 22M19.9635 0L30.8942 10.9297C30.9369 10.9725 30.9369 11.0275 30.8942 11.0703L19.9635 22M38.9652 0L49.8958 10.9297C49.9386 10.9725 49.9386 11.0275 49.8958 11.0703L38.9652 22M57.9668 0L68.8974 10.9297C68.9402 10.9725 68.9402 11.0275 68.8974 11.0703L57.9668 22M76.9684 0L87.899 10.9297C87.9418 10.9725 87.9418 11.0275 87.899 11.0703L76.9684 22M95.97 0L106.901 10.9297C106.943 10.9725 106.943 11.0275 106.901 11.0703L95.97 22M114.972 0L125.902 10.9297C125.945 10.9725 125.945 11.0275 125.902 11.0703L114.972 22M133.973 0L144.904 10.9297C144.947 10.9725 144.947 11.0275 144.904 11.0703L133.973 22M152.975 0L163.906 10.9297C163.948 10.9725 163.948 11.0275 163.906 11.0703L152.975 22M171.976 0L182.907 10.9297C182.95 10.9725 182.95 11.0275 182.907 11.0703L171.976 22M190.978 0L201.909 10.9297C201.952 10.9725 201.952 11.0275 201.909 11.0703L190.978 22M209.98 0L220.91 10.9297C220.953 10.9725 220.953 11.0275 220.91 11.0703L209.98 22M228.981 0L239.912 10.9297C239.955 10.9725 239.955 11.0275 239.912 11.0703L228.981 22M247.983 0L258.914 10.9297C258.956 10.9725 258.956 11.0275 258.914 11.0703L247.983 22M266.985 0L277.915 10.9297C277.958 10.9725 277.958 11.0275 277.915 11.0703L266.985 22M285.986 0L296.917 10.9297C296.96 10.9725 296.96 11.0275 296.917 11.0703L285.986 22M304.988 0L315.918 10.9297C315.961 10.9725 315.961 11.0275 315.918 11.0703L304.988 22M323.989 0L334.92 10.9297C334.963 10.9725 334.963 11.0275 334.92 11.0703L323.989 22M342.991 0L353.922 10.9297C353.964 10.9725 353.964 11.0275 353.922 11.0703L342.991 22M361.993 0L372.923 10.9297C372.966 10.9725 372.966 11.0275 372.923 11.0703L361.993 22M380.994 0L391.925 10.9297C391.968 10.9725 391.968 11.0275 391.925 11.0703L380.994 22M399.996 0L410.927 10.9297C410.969 10.9725 410.969 11.0275 410.927 11.0703L399.996 22M418.998 0L429.928 10.9297C429.971 10.9725 429.971 11.0275 429.928 11.0703L418.998 22M437.999 0L448.93 10.9297C448.973 10.9725 448.973 11.0275 448.93 11.0703L437.999 22\" stroke=\"url(#paint0_linear_9_2982)\" stroke-linecap=\"round\"/>\\n<path d=\"M595.962 2L607.885 9.29491C607.932 9.32347 607.992 9.32347 608.039 9.29491L619.962 2M595.962 12.6837L607.885 19.9786C607.932 20.0071 607.992 20.0071 608.039 19.9786L619.962 12.6837\" stroke=\"#6B6B79\" stroke-linecap=\"round\"/>\\n<path d=\"M1214.96 0L1204.03 10.9297C1203.99 10.9725 1203.99 11.0275 1204.03 11.0703L1214.96 22M1195.96 0L1185.03 10.9297C1184.99 10.9725 1184.99 11.0275 1185.03 11.0703L1195.96 22M1176.96 0L1166.03 10.9297C1165.99 10.9725 1165.99 11.0275 1166.03 11.0703L1176.96 22M1157.96 0L1147.03 10.9297C1146.98 10.9725 1146.98 11.0275 1147.03 11.0703L1157.96 22M1138.96 0L1128.02 10.9297C1127.98 10.9725 1127.98 11.0275 1128.02 11.0703L1138.96 22M1119.95 0L1109.02 10.9297C1108.98 10.9725 1108.98 11.0275 1109.02 11.0703L1119.95 22M1100.95 0L1090.02 10.9297C1089.98 10.9725 1089.98 11.0275 1090.02 11.0703L1100.95 22M1081.95 0L1071.02 10.9297C1070.98 10.9725 1070.98 11.0275 1071.02 11.0703L1081.95 22M1062.95 0L1052.02 10.9297C1051.98 10.9725 1051.98 11.0275 1052.02 11.0703L1062.95 22M1043.95 0L1033.02 10.9297C1032.97 10.9725 1032.97 11.0275 1033.02 11.0703L1043.95 22M1024.95 0L1014.02 10.9297C1013.97 10.9725 1013.97 11.0275 1014.02 11.0703L1024.95 22M1005.94 0L995.013 10.9297C994.971 10.9725 994.971 11.0275 995.013 11.0703L1005.94 22M986.942 0L976.012 10.9297C975.969 10.9725 975.969 11.0275 976.012 11.0703L986.942 22M967.941 0L957.01 10.9297C956.967 10.9725 956.967 11.0275 957.01 11.0703L967.941 22M948.939 0L938.009 10.9297C937.966 10.9725 937.966 11.0275 938.009 11.0703L948.939 22M929.938 0L919.007 10.9297C918.964 10.9725 918.964 11.0275 919.007 11.0703L929.938 22M910.936 0L900.005 10.9297C899.963 10.9725 899.963 11.0275 900.005 11.0703L910.936 22M891.934 0L881.004 10.9297C880.961 10.9725 880.961 11.0275 881.004 11.0703L891.934 22M872.933 0L862.002 10.9297C861.959 10.9725 861.959 11.0275 862.002 11.0703L872.933 22M853.931 0L843 10.9297C842.958 10.9725 842.958 11.0275 843 11.0703L853.931 22M834.929 0L823.999 10.9297C823.956 10.9725 823.956 11.0275 823.999 11.0703L834.929 22M815.928 0L804.997 10.9297C804.954 10.9725 804.954 11.0275 804.997 11.0703L815.928 22M796.926 0L785.996 10.9297C785.953 10.9725 785.953 11.0275 785.996 11.0703L796.926 22M777.925 0L766.994 10.9297C766.951 10.9725 766.951 11.0275 766.994 11.0703L777.925 22\" stroke=\"url(#paint1_linear_9_2982)\" stroke-linecap=\"round\"/>\\n<defs>\\n<linearGradient id=\"paint0_linear_9_2982\" x1=\"0.961914\" y1=\"11\" x2=\"448.962\" y2=\"11\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#6B6B79\" stop-opacity=\"0\"/>\\n<stop offset=\"1\" stop-color=\"#6B6B79\"/>\\n</linearGradient>\\n<linearGradient id=\"paint1_linear_9_2982\" x1=\"766.962\" y1=\"11\" x2=\"1214.96\" y2=\"11\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#6B6B79\"/>\\n<stop offset=\"1\" stop-color=\"#6B6B79\" stop-opacity=\"0\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition21},__framer__animateOnce:true,__framer__enter:animation14,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref5,target:\"animate\"}],__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-4vozbu\",id:elementId3,ref:ref5,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-198kqpb\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-aqzz9p\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-15747p8\",\"data-framer-name\":\"Frame 30\",name:\"Frame 30\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1m6fr1f\",\"data-framer-name\":\"Vector 2258\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:534,intrinsicWidth:618,name:\"Vector 2258\",svg:'<svg width=\"618\" height=\"534\" viewBox=\"-1 -1 618 534\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M-0.444924 531.037C-0.939533 531.283 -1.14129 531.883 -0.895568 532.378C-0.649844 532.872 -0.0496849 533.074 0.444924 532.828L-0.444924 531.037ZM119.416 317.215L119.83 318.125L119.416 317.215ZM232.023 407.291L232.826 407.888L232.023 407.291ZM239.879 297.314L239.711 298.3L239.879 297.314ZM464.046 262.226L463.053 262.111L464.046 262.226ZM4.82777 530.502C5.30842 530.23 5.47755 529.62 5.20553 529.139C4.93351 528.658 4.32335 528.489 3.8427 528.761L4.82777 530.502ZM11.9583 523.571C11.5097 523.893 11.4073 524.518 11.7295 524.966C12.0517 525.415 12.6766 525.517 13.1251 525.195L11.9583 523.571ZM20.8078 519.033C21.22 518.665 21.256 518.033 20.8884 517.621C20.5207 517.209 19.8886 517.172 19.4765 517.54L20.8078 519.033ZM26.3474 510.762C25.9737 511.168 26.0003 511.801 26.4069 512.174C26.8136 512.548 27.4462 512.522 27.8199 512.115L26.3474 510.762ZM34.1404 504.573C34.4762 504.134 34.3928 503.507 33.9543 503.171C33.5157 502.835 32.8881 502.918 32.5524 503.357L34.1404 504.573ZM38.1152 495.445C37.8153 495.909 37.9481 496.528 38.4119 496.828C38.8756 497.128 39.4947 496.995 39.7946 496.531L38.1152 495.445ZM44.8355 488.1C45.1029 487.617 44.9279 487.008 44.4447 486.741C43.9615 486.473 43.353 486.648 43.0856 487.131L44.8355 488.1ZM47.5257 478.507C47.2869 479.005 47.497 479.603 47.995 479.842C48.493 480.08 49.0903 479.87 49.3291 479.372L47.5257 478.507ZM53.3463 470.423C53.5605 469.914 53.3214 469.328 52.8123 469.114C52.3033 468.9 51.717 469.139 51.5028 469.648L53.3463 470.423ZM55.084 460.612C54.8906 461.129 55.1531 461.706 55.6704 461.899C56.1877 462.092 56.7639 461.83 56.9573 461.313L55.084 460.612ZM60.229 452.089C60.4054 451.565 60.1241 450.998 59.6008 450.822C59.0774 450.645 58.5102 450.926 58.3338 451.45L60.229 452.089ZM61.3171 442.187C61.1543 442.715 61.4502 443.275 61.9779 443.437C62.5057 443.6 63.0654 443.304 63.2282 442.777L61.3171 442.187ZM66.0148 433.404C66.1673 432.873 65.8606 432.319 65.3298 432.166C64.799 432.014 64.245 432.32 64.0926 432.851L66.0148 433.404ZM66.7164 423.464C66.571 423.997 66.8851 424.547 67.4179 424.692C67.9507 424.838 68.5005 424.524 68.6459 423.991L66.7164 423.464ZM71.1775 414.557C71.319 414.023 71.0009 413.476 70.467 413.334C69.9331 413.193 69.3857 413.511 69.2442 414.045L71.1775 414.557ZM71.7323 404.61C71.5915 405.144 71.9103 405.691 72.4444 405.832C72.9784 405.973 73.5255 405.654 73.6663 405.12L71.7323 404.61ZM76.1712 395.698C76.3148 395.165 75.9989 394.616 75.4657 394.472C74.9324 394.329 74.3836 394.645 74.24 395.178L76.1712 395.698ZM76.8321 385.769C76.6816 386.3 76.9905 386.853 77.5219 387.003C78.0533 387.154 78.606 386.845 78.7565 386.314L76.8321 385.769ZM81.5059 376.958C81.6678 376.43 81.3709 375.871 80.8429 375.709C80.3149 375.547 79.7556 375.844 79.5937 376.372L81.5059 376.958ZM82.6087 367.046C82.4298 367.568 82.7083 368.137 83.2308 368.316C83.7533 368.495 84.3219 368.216 84.5008 367.694L82.6087 367.046ZM87.8457 358.582C88.0488 358.068 87.7969 357.487 87.2833 357.284C86.7697 357.081 86.1888 357.333 85.9858 357.847L87.8457 358.582ZM89.8664 348.848C89.6304 349.347 89.8439 349.943 90.3432 350.179C90.8426 350.415 91.4387 350.202 91.6746 349.702L89.8664 348.848ZM96.188 341.128C96.4684 340.652 96.3101 340.039 95.8343 339.759C95.3585 339.478 94.7455 339.637 94.465 340.112L96.188 341.128ZM99.9596 331.94C99.622 332.377 99.7027 333.005 100.14 333.342C100.577 333.68 101.205 333.599 101.543 333.162L99.9596 331.94ZM107.996 326.063C108.402 325.689 108.427 325.056 108.052 324.65C107.678 324.244 107.045 324.219 106.639 324.593L107.996 326.063ZM114.578 318.626C114.104 318.909 113.949 319.523 114.232 319.997C114.516 320.471 115.13 320.626 115.604 320.342L114.578 318.626ZM124.438 316.204C124.954 316.008 125.214 315.43 125.017 314.914C124.821 314.398 124.243 314.138 123.727 314.335L124.438 316.204ZM133.486 311.256C132.951 311.393 132.628 311.937 132.765 312.472C132.902 313.007 133.447 313.33 133.982 313.193L133.486 311.256ZM143.821 311.194C144.367 311.11 144.741 310.599 144.657 310.054C144.573 309.508 144.063 309.133 143.517 309.217L143.821 311.194ZM153.666 308.118C153.115 308.154 152.697 308.629 152.732 309.181C152.768 309.732 153.244 310.15 153.795 310.114L153.666 308.118ZM163.844 309.879C164.396 309.888 164.851 309.448 164.861 308.896C164.87 308.344 164.43 307.888 163.878 307.879L163.844 309.879ZM174.069 308.455C173.519 308.402 173.031 308.805 172.978 309.355C172.925 309.905 173.328 310.393 173.878 310.446L174.069 308.455ZM183.837 311.797C184.381 311.892 184.899 311.529 184.995 310.985C185.091 310.441 184.728 309.923 184.184 309.827L183.837 311.797ZM194.163 312.003C193.629 311.863 193.082 312.183 192.942 312.717C192.803 313.251 193.122 313.798 193.657 313.938L194.163 312.003ZM203.25 316.898C203.77 317.084 204.342 316.814 204.529 316.294C204.715 315.774 204.445 315.201 203.925 315.015L203.25 316.898ZM213.371 318.927C212.872 318.69 212.276 318.902 212.039 319.401C211.802 319.9 212.015 320.497 212.514 320.733L213.371 318.927ZM221.308 325.531C221.776 325.824 222.393 325.682 222.686 325.214C222.979 324.746 222.837 324.129 222.369 323.836L221.308 325.531ZM230.677 329.848C230.254 329.493 229.624 329.548 229.269 329.971C228.913 330.394 228.968 331.024 229.391 331.38L230.677 329.848ZM236.451 338.375C236.807 338.797 237.438 338.85 237.86 338.493C238.282 338.137 238.335 337.506 237.978 337.084L236.451 338.375ZM243.813 345.601C243.552 345.115 242.945 344.933 242.459 345.195C241.973 345.457 241.791 346.063 242.053 346.55L243.813 345.601ZM245.694 355.721C245.836 356.254 246.383 356.573 246.917 356.431C247.451 356.29 247.769 355.742 247.628 355.208L245.694 355.721ZM249.064 365.434C249.051 364.882 248.594 364.444 248.042 364.457C247.489 364.469 247.052 364.927 247.064 365.479L249.064 365.434ZM246.216 375.337C246.113 375.88 246.469 376.403 247.012 376.507C247.554 376.61 248.078 376.253 248.181 375.711L246.216 375.337ZM245.372 385.612C245.566 385.095 245.304 384.519 244.787 384.325C244.269 384.132 243.693 384.394 243.499 384.911L245.372 385.612ZM239.358 393.994C239.098 394.481 239.281 395.087 239.768 395.348C240.255 395.608 240.861 395.425 241.122 394.938L239.358 393.994ZM235.836 403.65C236.145 403.192 236.026 402.571 235.568 402.261C235.111 401.952 234.489 402.071 234.18 402.529L235.836 403.65ZM227.999 410.741C227.64 411.16 227.688 411.791 228.108 412.151C228.527 412.51 229.158 412.461 229.518 412.042L227.999 410.741ZM222.206 419.197C222.638 418.854 222.71 418.225 222.367 417.792C222.024 417.36 221.395 417.287 220.962 417.631L222.206 419.197ZM212.409 422.53C211.888 422.713 211.615 423.284 211.798 423.805C211.981 424.326 212.552 424.6 213.073 424.416L212.409 422.53ZM202.607 425.477C203.153 425.56 203.663 425.186 203.747 424.64C203.831 424.094 203.456 423.583 202.91 423.5L202.607 425.477ZM194.001 419.835C193.545 419.524 192.923 419.641 192.611 420.096C192.3 420.552 192.417 421.175 192.873 421.486L194.001 419.835ZM185.276 414.361C185.626 414.789 186.256 414.851 186.683 414.501C187.111 414.152 187.173 413.522 186.824 413.094L185.276 414.361ZM181.282 404.785C181.016 404.301 180.409 404.124 179.924 404.39C179.44 404.656 179.263 405.264 179.529 405.748L181.282 404.785ZM175.206 396.373C175.404 396.889 175.983 397.145 176.499 396.947C177.014 396.748 177.271 396.17 177.072 395.654L175.206 396.373ZM173.988 386.077C173.847 385.543 173.299 385.225 172.765 385.366C172.231 385.507 171.913 386.054 172.054 386.588L173.988 386.077ZM169.928 376.534C170.016 377.079 170.529 377.45 171.074 377.362C171.619 377.274 171.99 376.761 171.903 376.216L169.928 376.534ZM170.778 366.188C170.742 365.637 170.267 365.219 169.716 365.254C169.165 365.289 168.746 365.765 168.782 366.316L170.778 366.188ZM168.632 356.041C168.612 356.593 169.044 357.056 169.596 357.076C170.147 357.095 170.611 356.664 170.631 356.112L168.632 356.041ZM171.527 346.085C171.606 345.538 171.228 345.031 170.681 344.951C170.135 344.871 169.627 345.25 169.548 345.796L171.527 346.085ZM171.649 335.721C171.502 336.253 171.814 336.804 172.347 336.951C172.879 337.098 173.43 336.786 173.577 336.254L171.649 335.721ZM176.939 326.803C177.163 326.298 176.936 325.707 176.431 325.483C175.927 325.259 175.336 325.486 175.111 325.991L176.939 326.803ZM180.104 316.944C179.794 317.401 179.914 318.023 180.371 318.333C180.828 318.642 181.45 318.523 181.76 318.065L180.104 316.944ZM188.136 310.43C188.532 310.045 188.542 309.412 188.157 309.016C187.773 308.62 187.14 308.61 186.743 308.995L188.136 310.43ZM194.936 302.632C194.465 302.921 194.317 303.536 194.606 304.007C194.894 304.478 195.51 304.626 195.981 304.338L194.936 302.632ZM204.969 300.089C205.49 299.906 205.765 299.336 205.582 298.815C205.399 298.293 204.829 298.019 204.308 298.202L204.969 300.089ZM214.304 295.731C213.758 295.815 213.384 296.326 213.468 296.872C213.552 297.418 214.063 297.792 214.609 297.708L214.304 295.731ZM224.573 296.961C225.126 296.959 225.572 296.511 225.571 295.958C225.57 295.406 225.121 294.959 224.568 294.961L224.573 296.961ZM234.822 295.573C234.274 295.509 233.777 295.901 233.712 296.449C233.647 296.998 234.04 297.495 234.588 297.56L234.822 295.573ZM244.47 299.108C245.015 299.2 245.531 298.834 245.623 298.289C245.715 297.745 245.349 297.229 244.804 297.136L244.47 299.108ZM254.292 298.732C253.747 298.641 253.232 299.009 253.141 299.553C253.05 300.098 253.418 300.613 253.963 300.704L254.292 298.732ZM263.459 302.272C264.004 302.361 264.518 301.991 264.607 301.446C264.696 300.901 264.326 300.387 263.781 300.298L263.459 302.272ZM273.273 301.826C272.728 301.74 272.215 302.112 272.129 302.657C272.042 303.203 272.414 303.715 272.96 303.802L273.273 301.826ZM282.469 305.285C283.015 305.369 283.525 304.994 283.608 304.448C283.692 303.902 283.317 303.392 282.771 303.308L282.469 305.285ZM292.289 304.734C291.742 304.654 291.234 305.032 291.154 305.579C291.075 306.125 291.453 306.633 291.999 306.713L292.289 304.734ZM301.54 308.072C302.087 308.148 302.592 307.765 302.667 307.218C302.743 306.671 302.361 306.167 301.814 306.091L301.54 308.072ZM311.348 307.365C310.8 307.294 310.299 307.681 310.228 308.229C310.158 308.777 310.544 309.278 311.092 309.349L311.348 307.365ZM320.658 310.527C321.206 310.592 321.703 310.199 321.768 309.651C321.832 309.102 321.44 308.605 320.891 308.541L320.658 310.527ZM330.445 309.602C329.895 309.544 329.404 309.943 329.346 310.493C329.289 311.042 329.688 311.534 330.237 311.591L330.445 309.602ZM339.832 312.519C340.382 312.567 340.868 312.161 340.916 311.611C340.965 311.061 340.559 310.575 340.009 310.526L339.832 312.519ZM349.581 311.29C349.031 311.252 348.552 311.667 348.514 312.218C348.475 312.769 348.89 313.247 349.441 313.285L349.581 311.29ZM359.063 313.862C359.614 313.889 360.083 313.463 360.11 312.912C360.137 312.36 359.712 311.891 359.16 311.864L359.063 313.862ZM368.739 312.212C368.187 312.199 367.729 312.637 367.716 313.189C367.704 313.741 368.141 314.199 368.693 314.212L368.739 312.212ZM378.367 314.289C378.919 314.285 379.363 313.834 379.359 313.281C379.355 312.729 378.903 312.285 378.351 312.289L378.367 314.289ZM387.948 312.037C387.397 312.063 386.97 312.53 386.995 313.082C387.02 313.634 387.488 314.061 388.04 314.035L387.948 312.037ZM397.687 313.376C398.237 313.326 398.642 312.839 398.591 312.289C398.54 311.739 398.053 311.334 397.503 311.385L397.687 313.376ZM406.969 310.242C406.423 310.325 406.047 310.835 406.13 311.381C406.213 311.927 406.722 312.302 407.268 312.22L406.969 310.242ZM416.827 310.422C417.366 310.299 417.703 309.763 417.58 309.225C417.457 308.686 416.921 308.35 416.382 308.472L416.827 310.422ZM425.543 305.937C425.019 306.111 424.734 306.676 424.908 307.201C425.081 307.725 425.647 308.009 426.171 307.836L425.543 305.937ZM435.237 304.225C435.736 303.987 435.948 303.391 435.711 302.892C435.474 302.393 434.877 302.181 434.379 302.418L435.237 304.225ZM442.574 297.727C442.119 298.04 442.003 298.662 442.316 299.117C442.629 299.572 443.252 299.688 443.707 299.375L442.574 297.727ZM451.221 293.093C451.608 292.698 451.602 292.065 451.207 291.679C450.813 291.292 450.18 291.298 449.793 291.693L451.221 293.093ZM455.629 284.331C455.333 284.797 455.473 285.415 455.939 285.71C456.406 286.005 457.024 285.866 457.319 285.4L455.629 284.331ZM461.673 276.628C461.868 276.112 461.607 275.535 461.091 275.339C460.574 275.144 459.997 275.405 459.802 275.921L461.673 276.628ZM462.336 266.829C462.232 267.371 462.588 267.895 463.131 267.998C463.673 268.102 464.197 267.746 464.3 267.203L462.336 266.829ZM465.451 257.334C465.478 256.782 465.053 256.313 464.501 256.286C463.95 256.259 463.48 256.684 463.453 257.236L465.451 257.334ZM463.3 247.486C463.344 248.037 463.826 248.448 464.376 248.404C464.927 248.36 465.338 247.879 465.294 247.328L463.3 247.486ZM463.911 237.429C463.803 236.887 463.277 236.535 462.735 236.643C462.193 236.751 461.841 237.277 461.949 237.819L463.911 237.429ZM459.551 228.334C459.712 228.862 460.271 229.16 460.799 228.999C461.327 228.837 461.625 228.279 461.464 227.75L459.551 228.334ZM458.161 218.347C457.958 217.833 457.377 217.581 456.863 217.784C456.35 217.987 456.098 218.568 456.301 219.082L458.161 218.347ZM452.397 210.063C452.631 210.564 453.226 210.779 453.727 210.545C454.227 210.311 454.443 209.716 454.209 209.216L452.397 210.063ZM449.794 200.32C449.538 199.83 448.934 199.64 448.445 199.896C447.955 200.151 447.765 200.755 448.021 201.245L449.794 200.32ZM443.33 192.567C443.598 193.049 444.207 193.223 444.69 192.955C445.172 192.686 445.346 192.077 445.077 191.595L443.33 192.567ZM440.205 182.975C439.931 182.495 439.321 182.328 438.841 182.602C438.361 182.876 438.194 183.487 438.468 183.966L440.205 182.975ZM433.57 175.371C433.842 175.851 434.452 176.021 434.933 175.749C435.414 175.477 435.583 174.867 435.311 174.386L433.57 175.371ZM430.529 165.75C430.267 165.264 429.66 165.082 429.174 165.344C428.688 165.606 428.506 166.213 428.768 166.699L430.529 165.75ZM424.212 157.878C424.455 158.374 425.054 158.579 425.55 158.335C426.046 158.092 426.25 157.493 426.007 156.997L424.212 157.878ZM421.917 148.063C421.702 147.554 421.116 147.315 420.607 147.53C420.098 147.744 419.859 148.331 420.073 148.84L421.917 148.063ZM416.554 139.509C416.727 140.034 417.293 140.319 417.817 140.146C418.342 139.973 418.627 139.407 418.454 138.883L416.554 139.509ZM415.862 129.456C415.744 128.916 415.212 128.574 414.672 128.691C414.132 128.808 413.79 129.341 413.907 129.881L415.862 129.456ZM412.396 119.986C412.443 120.536 412.928 120.944 413.478 120.896C414.028 120.849 414.436 120.365 414.389 119.815L412.396 119.986ZM414.252 110.089C414.285 109.537 413.865 109.064 413.313 109.031C412.762 108.998 412.288 109.418 412.256 109.97L414.252 110.089ZM413.601 100.041C413.486 100.581 413.831 101.112 414.371 101.227C414.912 101.342 415.443 100.997 415.557 100.457L413.601 100.041ZM418.268 91.0913C418.458 90.5728 418.192 89.9983 417.673 89.8081C417.155 89.6179 416.581 89.8841 416.39 90.4026L418.268 91.0913ZM420.417 81.2726C420.163 81.7635 420.356 82.3666 420.847 82.6197C421.338 82.8727 421.941 82.6799 422.194 82.189L420.417 81.2726ZM427.21 73.6413C427.513 73.1799 427.385 72.5598 426.924 72.2563C426.462 71.9527 425.842 72.0807 425.539 72.542L427.21 73.6413ZM431.525 64.3199C431.18 64.7511 431.25 65.3804 431.681 65.7254C432.112 66.0705 432.741 66.0007 433.086 65.5695L431.525 64.3199ZM439.641 58.0496C440.021 57.6483 440.003 57.0154 439.602 56.636C439.201 56.2565 438.568 56.2743 438.188 56.6756L439.641 58.0496ZM445.427 49.5722C445.019 49.9445 444.99 50.577 445.363 50.9849C445.735 51.3928 446.368 51.4216 446.776 51.0493L445.427 49.5722ZM454.391 44.5522C454.822 44.2076 454.893 43.5783 454.548 43.1468C454.203 42.7153 453.574 42.6449 453.143 42.9895L454.391 44.5522ZM461.246 36.9091C460.795 37.2275 460.687 37.8514 461.006 38.3027C461.324 38.754 461.948 38.8618 462.399 38.5434L461.246 36.9091ZM470.738 32.9993C471.206 32.706 471.348 32.0889 471.054 31.6209C470.761 31.153 470.144 31.0114 469.676 31.3047L470.738 32.9993ZM478.387 26.1495C477.905 26.4188 477.733 27.028 478.002 27.5102C478.271 27.9924 478.881 28.165 479.363 27.8957L478.387 26.1495ZM488.23 23.2187C488.725 22.9726 488.926 22.3723 488.68 21.8778C488.434 21.3834 487.833 21.1821 487.339 21.4281L488.23 23.2187ZM496.496 17.1293C495.991 17.3527 495.762 17.9432 495.986 18.4483C496.209 18.9534 496.8 19.1818 497.305 18.9585L496.496 17.1293ZM506.568 15.1063C507.082 14.9056 507.336 14.3257 507.136 13.8112C506.935 13.2967 506.355 13.0424 505.841 13.2432L506.568 15.1063ZM515.346 9.77258C514.823 9.95054 514.544 10.5186 514.722 11.0415C514.9 11.5643 515.468 11.8439 515.991 11.6659L515.346 9.77258ZM525.55 8.64711C526.08 8.49262 526.385 7.93754 526.23 7.4073C526.076 6.87707 525.521 6.57246 524.99 6.72696L525.55 8.64711ZM534.759 4.12251C534.222 4.25229 533.892 4.79267 534.022 5.32949C534.151 5.86631 534.692 6.19629 535.229 6.06651L534.759 4.12251ZM545.042 3.94707C545.585 3.84411 545.941 3.32078 545.838 2.77818C545.735 2.23557 545.212 1.87917 544.669 1.98213L545.042 3.94707ZM554.66 0.363366C554.112 0.436417 553.728 0.939419 553.801 1.48685C553.874 2.03428 554.377 2.41884 554.924 2.34579L554.66 0.363366ZM564.881 1.32763C565.432 1.28934 565.848 0.811656 565.809 0.260701C565.771 -0.290255 565.293 -0.705848 564.742 -0.667552L564.881 1.32763ZM574.887 -0.996824C574.335 -1.00086 573.884 -0.556423 573.88 -0.00415301C573.876 0.548117 574.32 0.99909 574.872 1.00312L574.887 -0.996824ZM584.838 1.54649C585.387 1.60521 585.88 1.20764 585.939 0.658483C585.998 0.109329 585.6 -0.383452 585.051 -0.442175L584.838 1.54649ZM595.096 1.29923C594.56 1.16496 594.017 1.4904 593.883 2.02612C593.748 2.56184 594.074 3.10496 594.61 3.23923L595.096 1.29923ZM603.872 6.56366C604.366 6.80959 604.966 6.60808 605.212 6.11357C605.458 5.61907 605.257 5.01883 604.762 4.77289L603.872 6.56366ZM613.162 10.8437C612.785 10.4406 612.152 10.42 611.749 10.7975C611.346 11.1751 611.325 11.8079 611.703 12.211L613.162 10.8437ZM0.444924 532.828C1.9391 532.086 3.39971 531.31 4.82777 530.502L3.8427 528.761C2.44587 529.552 1.01702 530.311 -0.444924 531.037L0.444924 532.828ZM13.1251 525.195C15.8139 523.264 18.3717 521.206 20.8078 519.033L19.4765 517.54C17.0913 519.668 14.5883 521.682 11.9583 523.571L13.1251 525.195ZM27.8199 512.115C30.038 509.702 32.1416 507.184 34.1404 504.573L32.5524 503.357C30.588 505.923 28.5228 508.395 26.3474 510.762L27.8199 512.115ZM39.7946 496.531C41.5637 493.795 43.2409 490.981 44.8355 488.1L43.0856 487.131C41.5115 489.976 39.8576 492.75 38.1152 495.445L39.7946 496.531ZM49.3291 479.372C50.7352 476.44 52.0715 473.453 53.3463 470.423L51.5028 469.648C50.2395 472.65 48.9166 475.607 47.5257 478.507L49.3291 479.372ZM56.9573 461.313C58.096 458.267 59.184 455.189 60.229 452.089L58.3338 451.45C57.2949 454.532 56.2143 457.589 55.084 460.612L56.9573 461.313ZM63.2282 442.777C64.1888 439.663 65.1151 436.535 66.0148 433.404L64.0926 432.851C63.1959 435.972 62.2733 439.087 61.3171 442.187L63.2282 442.777ZM68.6459 423.991C69.5062 420.838 70.3475 417.69 71.1775 414.557L69.2442 414.045C68.4149 417.175 67.5749 420.318 66.7164 423.464L68.6459 423.991ZM73.6663 405.12C74.5018 401.95 75.3339 398.807 76.1712 395.698L74.24 395.178C73.4013 398.292 72.5681 401.44 71.7323 404.61L73.6663 405.12ZM78.7565 386.314C79.6548 383.14 80.568 380.018 81.5059 376.958L79.5937 376.372C78.6508 379.448 77.7335 382.585 76.8321 385.769L78.7565 386.314ZM84.5008 367.694C85.5723 364.565 86.6833 361.523 87.8457 358.582L85.9858 357.847C84.8103 360.821 83.6886 363.892 82.6087 367.046L84.5008 367.694ZM91.6746 349.702C93.0964 346.694 94.5956 343.829 96.188 341.128L94.465 340.112C92.8377 342.873 91.3105 345.792 89.8664 348.848L91.6746 349.702ZM101.543 333.162C103.552 330.56 105.696 328.186 107.996 326.063L106.639 324.593C104.248 326.8 102.03 329.259 99.9596 331.94L101.543 333.162ZM115.604 320.342C116.964 319.529 118.371 318.789 119.83 318.125L119.002 316.305C117.474 317 116 317.775 114.578 318.626L115.604 320.342ZM119.83 318.125C121.332 317.441 122.869 316.801 124.438 316.204L123.727 314.335C122.119 314.946 120.543 315.603 119.002 316.305L119.83 318.125ZM133.982 313.193C137.182 312.374 140.47 311.709 143.821 311.194L143.517 309.217C140.105 309.741 136.752 310.419 133.486 311.256L133.982 313.193ZM153.795 310.114C157.12 309.899 160.477 309.821 163.844 309.879L163.878 307.879C160.458 307.821 157.046 307.899 153.666 308.118L153.795 310.114ZM173.878 310.446C177.221 310.766 180.549 311.218 183.837 311.797L184.184 309.827C180.843 309.239 177.464 308.781 174.069 308.455L173.878 310.446ZM193.657 313.938C196.93 314.794 200.137 315.782 203.25 316.898L203.925 315.015C200.754 313.879 197.492 312.874 194.163 312.003L193.657 313.938ZM212.514 320.733C215.591 322.194 218.533 323.795 221.308 325.531L222.369 323.836C219.523 322.056 216.514 320.419 213.371 318.927L212.514 320.733ZM229.391 331.38C231.99 333.561 234.355 335.895 236.451 338.375L237.978 337.084C235.804 334.51 233.356 332.096 230.677 329.848L229.391 331.38ZM242.053 346.55C243.616 349.453 244.844 352.511 245.694 355.721L247.628 355.208C246.736 351.841 245.448 348.637 243.813 345.601L242.053 346.55ZM247.064 365.479C247.135 368.64 246.864 371.927 246.216 375.337L248.181 375.711C248.854 372.169 249.138 368.741 249.064 365.434L247.064 365.479ZM243.499 384.911C242.395 387.859 241.021 390.888 239.358 393.994L241.122 394.938C242.823 391.759 244.235 388.65 245.372 385.612L243.499 384.911ZM234.18 402.529C233.249 403.904 232.263 405.293 231.221 406.695L232.826 407.888C233.885 406.463 234.888 405.05 235.836 403.65L234.18 402.529ZM231.221 406.695C230.143 408.145 229.068 409.493 227.999 410.741L229.518 412.042C230.619 410.756 231.722 409.373 232.826 407.888L231.221 406.695ZM220.962 417.631C218.033 419.956 215.174 421.556 212.409 422.53L213.073 424.416C216.079 423.358 219.131 421.638 222.206 419.197L220.962 417.631ZM202.91 423.5C199.809 423.024 196.826 421.766 194.001 419.835L192.873 421.486C195.906 423.56 199.167 424.949 202.607 425.477L202.91 423.5ZM186.824 413.094C184.829 410.658 182.973 407.866 181.282 404.785L179.529 405.748C181.271 408.921 183.193 411.817 185.276 414.361L186.824 413.094ZM177.072 395.654C175.898 392.607 174.865 389.4 173.988 386.077L172.054 386.588C172.949 389.977 174.004 393.255 175.206 396.373L177.072 395.654ZM171.903 376.216C171.372 372.921 170.993 369.566 170.778 366.188L168.782 366.316C169.001 369.757 169.388 373.176 169.928 376.534L171.903 376.216ZM170.631 356.112C170.751 352.739 171.046 349.384 171.527 346.085L169.548 345.796C169.056 349.171 168.755 352.599 168.632 356.041L170.631 356.112ZM173.577 336.254C174.481 332.986 175.597 329.822 176.939 326.803L175.111 325.991C173.727 329.107 172.577 332.365 171.649 335.721L173.577 336.254ZM181.76 318.065C183.628 315.306 185.749 312.746 188.136 310.43L186.743 308.995C184.252 311.411 182.044 314.078 180.104 316.944L181.76 318.065ZM195.981 304.338C198.722 302.659 201.713 301.23 204.969 300.089L204.308 298.202C200.92 299.388 197.8 300.878 194.936 302.632L195.981 304.338ZM214.609 297.708C217.734 297.226 221.053 296.969 224.573 296.961L224.568 294.961C220.954 294.97 217.534 295.234 214.304 295.731L214.609 297.708ZM234.588 297.56C236.257 297.756 237.965 298.002 239.711 298.3L240.047 296.328C238.268 296.025 236.527 295.774 234.822 295.573L234.588 297.56ZM239.711 298.3C241.301 298.571 242.887 298.84 244.47 299.108L244.804 297.136C243.222 296.868 241.636 296.599 240.047 296.328L239.711 298.3ZM253.963 300.704C257.144 301.235 260.31 301.758 263.459 302.272L263.781 300.298C260.635 299.784 257.471 299.262 254.292 298.732L253.963 300.704ZM272.96 303.802C276.149 304.308 279.32 304.803 282.469 305.285L282.771 303.308C279.626 302.826 276.46 302.332 273.273 301.826L272.96 303.802ZM291.999 306.713C295.204 307.182 298.385 307.636 301.54 308.072L301.814 306.091C298.665 305.655 295.489 305.203 292.289 304.734L291.999 306.713ZM311.092 309.349C314.312 309.763 317.501 310.157 320.658 310.527L320.891 308.541C317.742 308.171 314.56 307.778 311.348 307.365L311.092 309.349ZM330.237 311.591C333.474 311.928 336.673 312.238 339.832 312.519L340.009 310.526C336.861 310.247 333.672 309.938 330.445 309.602L330.237 311.591ZM349.441 313.285C352.697 313.515 355.905 313.708 359.063 313.862L359.16 311.864C356.018 311.711 352.824 311.519 349.581 311.29L349.441 313.285ZM368.693 314.212C371.981 314.287 375.206 314.315 378.367 314.289L378.351 312.289C375.213 312.314 372.008 312.288 368.739 312.212L368.693 314.212ZM388.04 314.035C391.339 313.884 394.556 313.666 397.687 313.376L397.503 311.385C394.405 311.672 391.219 311.888 387.948 312.037L388.04 314.035ZM407.268 312.22C410.571 311.72 413.76 311.123 416.827 310.422L416.382 308.472C413.367 309.161 410.227 309.749 406.969 310.242L407.268 312.22ZM426.171 307.836C429.361 306.78 432.387 305.58 435.237 304.225L434.379 302.418C431.61 303.734 428.662 304.905 425.543 305.937L426.171 307.836ZM443.707 299.375C446.448 297.49 448.958 295.401 451.221 293.093L449.793 291.693C447.625 293.903 445.215 295.911 442.574 297.727L443.707 299.375ZM457.319 285.4C459.028 282.697 460.483 279.776 461.673 276.628L459.802 275.921C458.659 278.947 457.263 281.745 455.629 284.331L457.319 285.4ZM464.3 267.203C464.601 265.628 464.847 264.008 465.04 262.34L463.053 262.111C462.866 263.732 462.626 265.304 462.336 266.829L464.3 267.203ZM465.04 262.34C465.234 260.66 465.37 258.991 465.451 257.334L463.453 257.236C463.374 258.85 463.242 260.475 463.053 262.111L465.04 262.34ZM465.294 247.328C465.029 243.984 464.558 240.686 463.911 237.429L461.949 237.819C462.582 241.005 463.042 244.225 463.3 247.486L465.294 247.328ZM461.464 227.75C460.498 224.582 459.387 221.449 458.161 218.347L456.301 219.082C457.51 222.14 458.602 225.222 459.551 228.334L461.464 227.75ZM454.209 209.216C452.811 206.228 451.33 203.264 449.794 200.32L448.021 201.245C449.546 204.169 451.014 207.107 452.397 210.063L454.209 209.216ZM445.077 191.595C443.473 188.71 441.839 185.837 440.205 182.975L438.468 183.966C440.102 186.827 441.73 189.692 443.33 192.567L445.077 191.595ZM435.311 174.386C433.682 171.504 432.079 168.628 430.529 165.75L428.768 166.699C430.327 169.593 431.938 172.482 433.57 175.371L435.311 174.386ZM426.007 156.997C424.548 154.026 423.175 151.05 421.917 148.063L420.073 148.84C421.349 151.868 422.739 154.879 424.212 157.878L426.007 156.997ZM418.454 138.883C417.423 135.759 416.549 132.619 415.862 129.456L413.907 129.881C414.611 133.119 415.505 136.326 416.554 139.509L418.454 138.883ZM414.389 119.815C414.113 116.604 414.057 113.365 414.252 110.089L412.256 109.97C412.054 113.347 412.113 116.684 412.396 119.986L414.389 119.815ZM415.557 100.457C416.213 97.3755 417.108 94.2552 418.268 91.0913L416.39 90.4026C415.198 93.654 414.277 96.8653 413.601 100.041L415.557 100.457ZM422.194 82.189C422.932 80.7576 423.726 79.3166 424.579 77.8656L422.855 76.8521C421.984 78.3342 421.172 79.8076 420.417 81.2726L422.194 82.189ZM424.579 77.8656C425.417 76.4407 426.294 75.0325 427.21 73.6413L425.539 72.542C424.605 73.9607 423.71 75.3975 422.855 76.8521L424.579 77.8656ZM433.086 65.5695C435.146 62.9959 437.335 60.4886 439.641 58.0496L438.188 56.6756C435.846 59.1525 433.62 61.7012 431.525 64.3199L433.086 65.5695ZM446.776 51.0493C449.221 48.8168 451.764 46.6506 454.391 44.5522L453.143 42.9895C450.483 45.114 447.907 47.3088 445.427 49.5722L446.776 51.0493ZM462.399 38.5434C465.114 36.6284 467.897 34.7798 470.738 32.9993L469.676 31.3047C466.806 33.1038 463.992 34.9724 461.246 36.9091L462.399 38.5434ZM479.363 27.8957C482.278 26.2677 485.237 24.7082 488.23 23.2187L487.339 21.4281C484.318 22.9315 481.331 24.5057 478.387 26.1495L479.363 27.8957ZM497.305 18.9585C500.374 17.6014 503.465 16.3169 506.568 15.1063L505.841 13.2432C502.711 14.4643 499.592 15.7602 496.496 17.1293L497.305 18.9585ZM515.991 11.6659C519.182 10.5796 522.373 9.5728 525.55 8.64711L524.99 6.72696C521.785 7.66098 518.566 8.67673 515.346 9.77258L515.991 11.6659ZM535.229 6.06651C538.534 5.26746 541.81 4.56037 545.042 3.94707L544.669 1.98213C541.404 2.60176 538.095 3.31587 534.759 4.12251L535.229 6.06651ZM554.924 2.34579C558.319 1.89272 561.645 1.5526 564.881 1.32763L564.742 -0.667552C561.462 -0.439499 558.094 -0.0949747 554.66 0.363366L554.924 2.34579ZM574.872 1.00312C578.349 1.02851 581.68 1.20873 584.838 1.54649L585.051 -0.442175C581.82 -0.787674 578.422 -0.971009 574.887 -0.996824L574.872 1.00312ZM594.61 3.23923C598.04 4.09889 601.143 5.20666 603.872 6.56366L604.762 4.77289C601.883 3.34102 598.64 2.18755 595.096 1.29923L594.61 3.23923ZM611.703 12.211C612.813 13.3965 613.762 14.677 614.541 16.0541L616.282 15.0699C615.421 13.5476 614.376 12.1394 613.162 10.8437L611.703 12.211Z\" fill=\"url(#paint0_linear_13_8361)\" fill-opacity=\"0.4\"/>\\n<defs>\\n<linearGradient id=\"paint0_linear_13_8361\" x1=\"-211.5\" y1=\"625.5\" x2=\"528.001\" y2=\"21.0007\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"white\"/>\\n<stop offset=\"0.193858\" stop-color=\"white\" stop-opacity=\"0\"/>\\n<stop offset=\"1\" stop-color=\"white\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-11d52p7\",\"data-framer-name\":\"Vector 2259\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:402,intrinsicWidth:344,name:\"Vector 2259\",svg:'<svg width=\"344\" height=\"402\" viewBox=\"-1 -1 344 402\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M285.162 137.385L284.401 136.736L285.162 137.385ZM73.2142 392.646C73.2023 393.198 73.6402 393.656 74.1923 393.668C74.7445 393.68 75.2018 393.242 75.2138 392.689L73.2142 392.646ZM261.822 3.97569C262.226 4.35204 262.859 4.32946 263.235 3.92526C263.612 3.52106 263.589 2.8883 263.185 2.51195L261.822 3.97569ZM270.153 9.47131C269.776 9.0682 269.143 9.04747 268.74 9.42499C268.337 9.80252 268.316 10.4353 268.693 10.8385L270.153 9.47131ZM275.1 18.1279C275.452 18.5539 276.082 18.6144 276.508 18.2629C276.934 17.9114 276.995 17.2811 276.643 16.8551L275.1 18.1279ZM282.658 24.6281C282.334 24.1808 281.708 24.081 281.261 24.405C280.814 24.729 280.714 25.3543 281.038 25.8015L282.658 24.6281ZM286.472 33.8403C286.766 34.308 287.383 34.4489 287.85 34.1551C288.318 33.8612 288.459 33.2439 288.165 32.7763L286.472 33.8403ZM293.103 41.2882C292.844 40.8007 292.238 40.6159 291.751 40.8755C291.263 41.1351 291.079 41.7407 291.338 42.2282L293.103 41.2882ZM295.555 50.951C295.775 51.4576 296.364 51.6898 296.87 51.4698C297.377 51.2497 297.609 50.6607 297.389 50.1542L295.555 50.951ZM300.917 59.3574C300.743 58.8333 300.177 58.5494 299.652 58.7233C299.128 58.8973 298.844 59.4632 299.018 59.9874L300.917 59.3574ZM301.606 69.2988C301.726 69.8378 302.26 70.1773 302.799 70.057C303.338 69.9367 303.678 69.4022 303.558 68.8632L301.606 69.2988ZM305.17 78.6067C305.111 78.0575 304.619 77.6599 304.07 77.7186C303.52 77.7772 303.123 78.27 303.181 78.8192L305.17 78.6067ZM303.615 88.4458C303.605 88.998 304.045 89.4538 304.597 89.4638C305.149 89.4738 305.605 89.0343 305.615 88.4821L303.615 88.4458ZM304.784 98.34C304.867 97.794 304.492 97.284 303.946 97.2009C303.4 97.1177 302.89 97.493 302.807 98.039L304.784 98.34ZM300.714 107.436C300.557 107.965 300.86 108.522 301.39 108.678C301.919 108.834 302.475 108.532 302.632 108.002L300.714 107.436ZM299.201 117.286C299.426 116.782 299.199 116.19 298.695 115.965C298.191 115.74 297.599 115.966 297.374 116.471L299.201 117.286ZM292.91 124.992C292.625 125.465 292.776 126.08 293.249 126.365C293.722 126.651 294.337 126.499 294.622 126.026L292.91 124.992ZM289.044 134.177C289.381 133.739 289.298 133.111 288.86 132.775C288.422 132.438 287.794 132.521 287.458 132.959L289.044 134.177ZM280.99 140.605C280.617 141.013 280.646 141.646 281.054 142.018C281.462 142.39 282.095 142.361 282.467 141.954L280.99 140.605ZM275.207 149.379C275.607 148.998 275.622 148.365 275.241 147.965C274.859 147.565 274.226 147.551 273.827 147.932L275.207 149.379ZM266.144 154.76C265.719 155.112 265.659 155.742 266.011 156.168C266.363 156.593 266.993 156.653 267.419 156.301L266.144 154.76ZM259.166 162.639C259.616 162.319 259.721 161.694 259.401 161.245C259.081 160.795 258.456 160.69 258.006 161.01L259.166 162.639ZM249.441 166.648C248.969 166.934 248.818 167.549 249.105 168.021C249.391 168.493 250.006 168.644 250.478 168.357L249.441 166.648ZM241.377 173.425C241.869 173.175 242.065 172.572 241.815 172.08C241.565 171.588 240.963 171.392 240.47 171.642L241.377 173.425ZM231.161 175.939C230.651 176.151 230.41 176.737 230.622 177.247C230.834 177.756 231.419 177.998 231.929 177.786L231.161 175.939ZM222.167 181.404C222.692 181.232 222.979 180.668 222.807 180.143C222.636 179.618 222.072 179.331 221.547 179.502L222.167 181.404ZM211.668 182.281C211.131 182.408 210.798 182.947 210.925 183.484C211.053 184.022 211.591 184.354 212.129 184.227L211.668 182.281ZM201.892 186.18C202.439 186.101 202.818 185.594 202.739 185.048C202.66 184.501 202.153 184.122 201.606 184.201L201.892 186.18ZM191.421 185.169C190.869 185.193 190.442 185.66 190.466 186.212C190.49 186.764 190.957 187.192 191.509 187.167L191.421 185.169ZM181.055 187.029C181.606 187.07 182.085 186.657 182.126 186.106C182.168 185.556 181.754 185.076 181.204 185.035L181.055 187.029ZM171.137 183.542C170.6 183.417 170.062 183.752 169.937 184.29C169.812 184.828 170.147 185.365 170.684 185.49L171.137 183.542ZM160.726 182.021C161.221 182.267 161.821 182.065 162.066 181.57C162.312 181.075 162.11 180.475 161.615 180.23L160.726 182.021ZM153.77 174.292C153.42 173.865 152.789 173.803 152.362 174.153C151.935 174.504 151.873 175.134 152.223 175.561L153.77 174.292ZM148.513 165.438C148.511 165.99 148.958 166.439 149.51 166.441C150.063 166.442 150.511 165.995 150.513 165.443L148.513 165.438ZM153.236 156.648C153.559 156.199 153.456 155.574 153.008 155.252C152.559 154.93 151.934 155.032 151.612 155.481L153.236 156.648ZM159.9 149.945C159.367 150.089 159.051 150.637 159.194 151.171C159.337 151.704 159.886 152.02 160.419 151.877L159.9 149.945ZM169.461 151.459C170.009 151.527 170.508 151.138 170.577 150.59C170.645 150.042 170.256 149.542 169.708 149.474L169.461 151.459ZM179.108 151.763C178.587 151.58 178.016 151.854 177.833 152.375C177.65 152.896 177.923 153.467 178.445 153.65L179.108 151.763ZM186.988 157.429C187.476 157.689 188.081 157.504 188.341 157.016C188.6 156.528 188.415 155.923 187.927 155.663L186.988 157.429ZM196.113 160.718C195.663 160.399 195.039 160.506 194.72 160.957C194.401 161.408 194.508 162.032 194.958 162.351L196.113 160.718ZM202.263 168.217C202.672 168.589 203.304 168.559 203.676 168.15C204.047 167.741 204.017 167.109 203.609 166.737L202.263 168.217ZM210.296 173.65C209.939 173.228 209.308 173.176 208.887 173.533C208.466 173.89 208.413 174.521 208.77 174.942L210.296 173.65ZM214.27 182.485C214.56 182.955 215.176 183.101 215.646 182.811C216.116 182.521 216.262 181.904 215.972 181.435L214.27 182.485ZM220.312 190.067C220.11 189.553 219.53 189.299 219.016 189.5C218.502 189.701 218.248 190.281 218.449 190.796L220.312 190.067ZM220.889 199.724C220.974 200.27 221.485 200.644 222.031 200.559C222.577 200.474 222.95 199.963 222.865 199.417L220.889 199.724ZM223.169 209.123C223.222 208.573 222.818 208.085 222.269 208.033C221.719 207.98 221.231 208.384 221.178 208.933L223.169 209.123ZM219.155 217.917C218.968 218.436 219.238 219.009 219.758 219.196C220.277 219.383 220.85 219.113 221.037 218.594L219.155 217.917ZM216.747 227.29C217.042 226.824 216.903 226.206 216.437 225.911C215.97 225.615 215.352 225.754 215.057 226.221L216.747 227.29ZM209.166 233.936C208.802 234.351 208.843 234.983 209.258 235.347C209.673 235.712 210.305 235.671 210.669 235.256L209.166 233.936ZM203.455 242.605C203.861 242.231 203.888 241.599 203.514 241.192C203.14 240.786 202.508 240.759 202.101 241.133L203.455 242.605ZM194.367 247.659C193.931 247.998 193.853 248.627 194.193 249.062C194.533 249.498 195.161 249.575 195.597 249.236L194.367 247.659ZM187.31 255.3C187.764 254.986 187.878 254.363 187.564 253.908C187.25 253.454 186.627 253.34 186.173 253.654L187.31 255.3ZM177.701 259.254C177.235 259.55 177.097 260.168 177.394 260.634C177.69 261.1 178.308 261.238 178.774 260.941L177.701 259.254ZM170.077 266.329C170.549 266.043 170.699 265.428 170.413 264.955C170.127 264.483 169.512 264.333 169.039 264.619L170.077 266.329ZM160.3 269.866C159.826 270.15 159.671 270.764 159.954 271.238C160.237 271.712 160.851 271.867 161.325 271.583L160.3 269.866ZM152.58 276.834C153.053 276.547 153.203 275.932 152.917 275.46C152.631 274.988 152.016 274.837 151.544 275.123L152.58 276.834ZM142.847 280.496C142.381 280.791 142.241 281.409 142.537 281.876C142.832 282.342 143.449 282.481 143.916 282.186L142.847 280.496ZM135.397 287.747C135.855 287.438 135.975 286.816 135.665 286.359C135.356 285.901 134.734 285.781 134.277 286.091L135.397 287.747ZM125.91 292.005C125.466 292.334 125.373 292.96 125.702 293.404C126.031 293.847 126.657 293.941 127.101 293.612L125.91 292.005ZM119.112 299.868C119.537 299.515 119.595 298.885 119.243 298.46C118.89 298.035 118.259 297.976 117.834 298.329L119.112 299.868ZM110.152 305.14C109.751 305.52 109.735 306.153 110.115 306.554C110.496 306.954 111.129 306.97 111.529 306.59L110.152 305.14ZM104.459 313.835C104.829 313.425 104.796 312.792 104.386 312.423C103.975 312.053 103.343 312.086 102.973 312.496L104.459 313.835ZM96.4223 320.419C96.0895 320.86 96.1769 321.487 96.6175 321.82C97.0582 322.153 97.6853 322.066 98.0182 321.625L96.4223 320.419ZM92.2986 329.969C92.5892 329.5 92.4441 328.884 91.9744 328.593C91.5048 328.302 90.8884 328.447 90.5979 328.917L92.2986 329.969ZM85.6127 337.9C85.368 338.395 85.5709 338.995 86.066 339.24C86.5611 339.484 87.1609 339.281 87.4056 338.786L85.6127 337.9ZM83.3584 348.05C83.5556 347.534 83.2974 346.956 82.7815 346.759C82.2657 346.561 81.6876 346.82 81.4903 347.335L83.3584 348.05ZM78.2472 357.12C78.0968 357.652 78.4057 358.204 78.9371 358.355C79.4685 358.505 80.0212 358.196 80.1716 357.665L78.2472 357.12ZM77.8317 367.477C77.938 366.935 77.5848 366.41 77.0428 366.303C76.5009 366.197 75.9754 366.55 75.8691 367.092L77.8317 367.477ZM74.2785 377.227C74.2129 377.775 74.6043 378.273 75.1527 378.339C75.701 378.404 76.1988 378.013 76.2644 377.464L74.2785 377.227ZM75.4035 387.554C75.4325 387.002 75.0088 386.532 74.4573 386.503C73.9058 386.474 73.4352 386.897 73.4062 387.449L75.4035 387.554ZM258.23 0.75823C259.4 1.76409 260.6 2.83773 261.822 3.97569L263.185 2.51195C261.944 1.35662 260.724 0.265375 259.534 -0.75823L258.23 0.75823ZM268.693 10.8385C270.824 13.1129 272.972 15.5482 275.1 18.1279L276.643 16.8551C274.488 14.2425 272.311 11.7758 270.153 9.47131L268.693 10.8385ZM281.038 25.8015C282.906 28.3794 284.727 31.0631 286.472 33.8403L288.165 32.7763C286.396 29.9599 284.55 27.2398 282.658 24.6281L281.038 25.8015ZM291.338 42.2282C292.848 45.0646 294.262 47.9758 295.555 50.951L297.389 50.1542C296.075 47.1274 294.637 44.1684 293.103 41.2882L291.338 42.2282ZM299.018 59.9874C300.032 63.0434 300.903 66.1507 301.606 69.2988L303.558 68.8632C302.839 65.6454 301.951 62.4733 300.917 59.3574L299.018 59.9874ZM303.181 78.8192C303.522 82.0016 303.674 85.2138 303.615 88.4458L305.615 88.4821C305.675 85.1631 305.519 81.8678 305.17 78.6067L303.181 78.8192ZM302.807 98.039C302.331 101.164 301.64 104.299 300.714 107.436L302.632 108.002C303.584 104.777 304.295 101.553 304.784 98.34L302.807 98.039ZM297.374 116.471C296.103 119.317 294.621 122.16 292.91 124.992L294.622 126.026C296.375 123.125 297.896 120.209 299.201 117.286L297.374 116.471ZM287.458 132.959C286.489 134.222 285.47 135.481 284.401 136.736L285.924 138.033C287.014 136.752 288.054 135.467 289.044 134.177L287.458 132.959ZM284.401 136.736C283.276 138.056 282.139 139.346 280.99 140.605L282.467 141.954C283.632 140.677 284.784 139.371 285.924 138.033L284.401 136.736ZM273.827 147.932C271.306 150.337 268.742 152.612 266.144 154.76L267.419 156.301C270.052 154.123 272.652 151.817 275.207 149.379L273.827 147.932ZM258.006 161.01C255.173 163.027 252.314 164.904 249.441 166.648L250.478 168.357C253.393 166.589 256.293 164.685 259.166 162.639L258.006 161.01ZM240.47 171.642C237.364 173.222 234.256 174.652 231.161 175.939L231.929 177.786C235.071 176.48 238.225 175.028 241.377 173.425L240.47 171.642ZM221.547 179.502C218.212 180.589 214.913 181.513 211.668 182.281L212.129 184.227C215.428 183.446 218.78 182.508 222.167 181.404L221.547 179.502ZM201.606 184.201C198.106 184.706 194.701 185.025 191.421 185.169L191.509 187.167C194.858 187.02 198.328 186.695 201.892 186.18L201.606 184.201ZM181.204 185.035C177.602 184.767 174.23 184.261 171.137 183.542L170.684 185.49C173.887 186.235 177.361 186.754 181.055 187.029L181.204 185.035ZM161.615 180.23C158.287 178.577 155.64 176.573 153.77 174.292L152.223 175.561C154.313 178.108 157.207 180.274 160.726 182.021L161.615 180.23ZM150.513 165.443C150.517 163.921 150.767 162.315 151.292 160.632L149.382 160.037C148.803 161.894 148.518 163.698 148.513 165.438L150.513 165.443ZM151.292 160.632C151.771 159.093 152.43 157.771 153.236 156.648L151.612 155.481C150.67 156.792 149.92 158.31 149.382 160.037L151.292 160.632ZM160.419 151.877C163.053 151.169 166.115 151.042 169.461 151.459L169.708 149.474C166.175 149.034 162.844 149.155 159.9 149.945L160.419 151.877ZM178.445 153.65C181.251 154.636 184.124 155.906 186.988 157.429L187.927 155.663C184.982 154.097 182.017 152.785 179.108 151.763L178.445 153.65ZM194.958 162.351C197.479 164.134 199.932 166.098 202.263 168.217L203.609 166.737C201.216 164.562 198.699 162.547 196.113 160.718L194.958 162.351ZM208.77 174.942C210.798 177.337 212.649 179.859 214.27 182.485L215.972 181.435C214.294 178.717 212.384 176.114 210.296 173.65L208.77 174.942ZM218.449 190.796C219.584 193.699 220.416 196.684 220.889 199.724L222.865 199.417C222.368 196.221 221.496 193.095 220.312 190.067L218.449 190.796ZM221.178 208.933C220.896 211.901 220.239 214.903 219.155 217.917L221.037 218.594C222.178 215.423 222.871 212.257 223.169 209.123L221.178 208.933ZM215.057 226.221C214.248 227.498 213.354 228.775 212.37 230.05L213.953 231.272C214.974 229.95 215.904 228.622 216.747 227.29L215.057 226.221ZM212.37 230.05C211.347 231.375 210.278 232.67 209.166 233.936L210.669 235.256C211.808 233.959 212.903 232.632 213.953 231.272L212.37 230.05ZM202.101 241.133C199.652 243.384 197.067 245.552 194.367 247.659L195.597 249.236C198.333 247.101 200.961 244.898 203.455 242.605L202.101 241.133ZM186.173 253.654C183.424 255.553 180.594 257.414 177.701 259.254L178.774 260.941C181.684 259.091 184.536 257.216 187.31 255.3L186.173 253.654ZM169.039 264.619C166.159 266.366 163.241 268.109 160.3 269.866L161.325 271.583C164.266 269.827 167.19 268.08 170.077 266.329L169.039 264.619ZM151.544 275.123C148.643 276.881 145.739 278.667 142.847 280.496L143.916 282.186C146.794 280.367 149.687 278.588 152.58 276.834L151.544 275.123ZM134.277 286.091C131.454 288.001 128.66 289.967 125.91 292.005L127.101 293.612C129.824 291.593 132.595 289.643 135.397 287.747L134.277 286.091ZM117.834 298.329C115.208 300.509 112.642 302.775 110.152 305.14L111.529 306.59C113.984 304.258 116.517 302.022 119.112 299.868L117.834 298.329ZM102.973 312.496C100.696 315.023 98.5068 317.66 96.4223 320.419L98.0182 321.625C100.066 318.914 102.218 316.322 104.459 313.835L102.973 312.496ZM90.5979 328.917C88.8234 331.785 87.1574 334.775 85.6127 337.9L87.4056 338.786C88.9217 335.719 90.5569 332.784 92.2986 329.969L90.5979 328.917ZM81.4903 347.335C80.2914 350.471 79.207 353.729 78.2472 357.12L80.1716 357.665C81.1153 354.331 82.1809 351.129 83.3584 348.05L81.4903 347.335ZM75.8691 367.092C75.2292 370.356 74.6967 373.732 74.2785 377.227L76.2644 377.464C76.6767 374.018 77.2016 370.691 77.8317 367.477L75.8691 367.092ZM73.4062 387.449C73.3166 389.155 73.2524 390.887 73.2142 392.646L75.2138 392.689C75.2515 390.951 75.3149 389.239 75.4035 387.554L73.4062 387.449Z\" fill=\"url(#paint0_linear_13_8362)\" fill-opacity=\"0.4\"/>\\n<defs>\\n<linearGradient id=\"paint0_linear_13_8362\" x1=\"88\" y1=\"340.5\" x2=\"409.5\" y2=\"-23.4997\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"white\" stop-opacity=\"0\"/>\\n<stop offset=\"0.506\" stop-color=\"white\"/>\\n<stop offset=\"1\" stop-color=\"white\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{pt3F4AErh:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition(3239.041725423417),positionX:\"center\",positionY:\"center\",sizes:\"66px\",src:\"https://framerusercontent.com/images/XmTixyIfmKnAXDnuIjjFm1sdRU.png\",srcSet:\"https://framerusercontent.com/images/XmTixyIfmKnAXDnuIjjFm1sdRU.png 468w\"}},xzId7X5_T:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition(3169.456335651236),positionX:\"center\",positionY:\"center\",sizes:\"56.4118px\",src:\"https://framerusercontent.com/images/XmTixyIfmKnAXDnuIjjFm1sdRU.png\",srcSet:\"https://framerusercontent.com/images/XmTixyIfmKnAXDnuIjjFm1sdRU.png 468w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition(3637.7176594142406),positionX:\"center\",positionY:\"center\",sizes:\"116.4052px\",src:\"https://framerusercontent.com/images/XmTixyIfmKnAXDnuIjjFm1sdRU.png\",srcSet:\"https://framerusercontent.com/images/XmTixyIfmKnAXDnuIjjFm1sdRU.png 468w\"},className:\"framer-1b910v7\",\"data-framer-name\":\"image 1676\",name:\"image 1676\",style:{rotate:25}})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{pt3F4AErh:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(3308.2),src:\"https://framerusercontent.com/images/fErBHgxk6Ro6XhY1IfzRpPro.png\"}},xzId7X5_T:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(3362.4),src:\"https://framerusercontent.com/images/fErBHgxk6Ro6XhY1IfzRpPro.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(3762.8),src:\"https://framerusercontent.com/images/fErBHgxk6Ro6XhY1IfzRpPro.png\"},className:\"framer-1ungnzi\",\"data-framer-name\":\"Rectangle\",name:\"Rectangle\"})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{pt3F4AErh:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-1pxziw5\",\"data-styles-preset\":\"dx8nfbYmS\",style:{\"--framer-text-color\":\"var(--token-80bde714-14bd-4dfe-a71f-db496cd95503, rgb(173, 255, 0))\"},children:[\"Monetizing Large Content\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-1e0d3100-3129-48d5-9eb1-d8fdbef76552, rgb(255, 255, 255))\"},children:\" libraries on YouTube\"})]})})},xzId7X5_T:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-2glifg\",\"data-styles-preset\":\"ya7EE3uJv\",style:{\"--framer-text-color\":\"var(--token-80bde714-14bd-4dfe-a71f-db496cd95503, rgb(173, 255, 0))\"},children:[\"Monetizing Large Content\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-1e0d3100-3129-48d5-9eb1-d8fdbef76552, rgb(255, 255, 255))\"},children:\" libraries on YouTube\"})]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{className:\"framer-styles-preset-16wibyn\",\"data-styles-preset\":\"QBj9BCX0r\",style:{\"--framer-text-color\":\"var(--token-80bde714-14bd-4dfe-a71f-db496cd95503, rgb(173, 255, 0))\"},children:[\"Monetizing Large Content\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-1e0d3100-3129-48d5-9eb1-d8fdbef76552, rgb(255, 255, 255))\"},children:\" libraries on YouTube\"})]})}),className:\"framer-cyrndb\",\"data-framer-name\":\"Get more out of your\\xa0content\",fonts:[\"Inter\"],name:\"Get more out of your\\xa0content\",verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{pt3F4AErh:{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-line-height\":\"120%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-f6af3b12-db6a-4e0d-8861-5bd59035481d, rgb(250, 250, 252))\"},children:\"Developing strategies for sustainable growth and revenue with minimum guarantee offer\"})}),fonts:[\"Inter-Medium\"]},xzId7X5_T:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ii5scj\",\"data-styles-preset\":\"wjNpFc4yO\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-f6af3b12-db6a-4e0d-8861-5bd59035481d, rgb(250, 250, 252))\"},children:\"Developing strategies for sustainable growth and revenue with minimum guarantee offer\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-f7gxl5\",\"data-styles-preset\":\"UAtxkrELx\",style:{\"--framer-text-color\":\"var(--token-f6af3b12-db6a-4e0d-8861-5bd59035481d, rgb(250, 250, 252))\"},children:\"Developing strategies for sustainable growth and revenue with minimum guarantee offer\"})}),className:\"framer-1x0rrg\",\"data-framer-name\":\"Need money to grow your channel? The \u201CAdvances for All\u201D project gives you such an opportunity!\",fonts:[\"Inter\"],name:\"Need money to grow your channel? The \u201CAdvances for All\u201D project gives you such an opportunity!\",verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:true,children:overlay3=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{pt3F4AErh:{y:3404.2},xzId7X5_T:{y:3357.8}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:54,y:3913.2000000000003,children:/*#__PURE__*/_jsxs(Container,{className:\"framer-1otsy3a-container\",id:\"1otsy3a\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{pt3F4AErh:{variant:\"Lbx2z0obn\"},xzId7X5_T:{variant:\"Lbx2z0obn\"}},children:/*#__PURE__*/_jsx(DRMButtons,{aGInQ8yqs:\"12px 32px 12px 32px\",e_9K_n2W1:\"var(--token-1e0d3100-3129-48d5-9eb1-d8fdbef76552, rgb(255, 255, 255))\",height:\"100%\",id:\"gxF8qBZAa\",j1DOsD4d3:j1DOsD4d3welu7j({overlay:overlay3}),layoutId:\"gxF8qBZAa\",M73giwIe7:\"var(--token-80bde714-14bd-4dfe-a71f-db496cd95503, rgb(173, 255, 0))\",Mx__Z5xAt:\"var(--token-4a37d03b-292a-4f1d-b60d-fbdb936ec64d, rgb(126, 185, 2))\",UCPnrSF2R:\"var(--token-3925fb8a-d62b-453e-b675-cdc563c5a26e, rgb(0, 0, 0))\",variant:\"rgVuWySCH\",VuqYa0svz:true,width:\"100%\",XTJ6CH_H_:\"var(--token-3925fb8a-d62b-453e-b675-cdc563c5a26e, rgb(0, 0, 0))\",ymWO_NR6m:\"Learn more\",ZBs2WBkve:\"var(--token-80bde714-14bd-4dfe-a71f-db496cd95503, rgb(173, 255, 0))\"})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay3.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[0,0,1,1],type:\"tween\"}},className:\"framer-121vm7x\",\"data-framer-portal-id\":\"1otsy3a\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[0,0,1,1],type:\"tween\"}},initial:{opacity:0}},\"YDn3WGgKv\"),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1e3,width:\"100vw\",y:0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-emstzr-container\",\"data-framer-portal-id\":\"1otsy3a\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{pt3F4AErh:{variant:\"nATCoEPXk\"},xzId7X5_T:{variant:\"pRVVxuEq2\"}},children:/*#__PURE__*/_jsx(DRMForm,{height:\"100%\",id:\"Atv5IFgLP\",layoutId:\"Atv5IFgLP\",nqkM2DFBa:nqkM2DFBa1wvko5h({overlay:overlay3}),style:{height:\"100%\",width:\"100%\"},variant:\"O9azcry8r\",width:\"100%\"})})})})]}),document.querySelector(\"#overlay\"))})})]})})})})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-cosmve\",\"data-framer-name\":\"Tools\",id:elementId4,name:\"Tools\",ref:ref6,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1kfygyt\",\"data-framer-name\":\"Frame 1321317379\",name:\"Frame 1321317379\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{pt3F4AErh:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1pxziw5\",\"data-styles-preset\":\"dx8nfbYmS\",children:\"Unlock Advanced Financial Tools\"})})},xzId7X5_T:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-2glifg\",\"data-styles-preset\":\"ya7EE3uJv\",children:\"Unlock Advanced Financial Tools\"})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition9},__framer__animateOnce:true,__framer__enter:animation14,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref6,target:\"animate\"}],__framer__threshold:1,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-16wibyn\",\"data-styles-preset\":\"QBj9BCX0r\",children:\"Unlock Advanced Financial Tools\"})}),className:\"framer-c1vn9j\",\"data-framer-name\":\"DOT Republic Media\",fonts:[\"Inter\"],name:\"DOT Republic Media\",verticalAlignment:\"center\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-10u9fqm\",\"data-framer-name\":\"Cards Scroll area\",\"data-hide-scrollbars\":true,name:\"Cards Scroll area\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1lfpnwu\",\"data-framer-name\":\"Cards List\",\"data-hide-scrollbars\":true,name:\"Cards List\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{pt3F4AErh:{height:320,width:\"300px\",y:3706.2},xzId7X5_T:{height:328,width:\"calc(100vw - 32px)\",y:3630.2000000000003}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:440,width:\"392px\",y:4373.6,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition17},__framer__animateOnce:true,__framer__enter:animation15,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref6,target:\"animate\"}],__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-h2zq8c-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{pt3F4AErh:{variant:\"oty6XV2tr\"},xzId7X5_T:{variant:\"oty6XV2tr\"}},children:/*#__PURE__*/_jsx(DRMServiceCard,{Bgj836IXS:\"\u041F\u0430\u043A\u0435\u0442\",cwzmh_uTV:addImageAlt({src:\"https://framerusercontent.com/images/7LrwetpwQmpzOuAqFxso8p8fk.png\",srcSet:\"https://framerusercontent.com/images/7LrwetpwQmpzOuAqFxso8p8fk.png?scale-down-to=512 512w,https://framerusercontent.com/images/7LrwetpwQmpzOuAqFxso8p8fk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/7LrwetpwQmpzOuAqFxso8p8fk.png 1164w\"},\"\"),height:\"100%\",id:\"szEFbsrHx\",Ite3bPd7F:false,kS1YWMCT8:\"Advance funding\",L7EOq9xiH:\"var(--token-1e0d3100-3129-48d5-9eb1-d8fdbef76552, rgb(255, 255, 255))\",layoutId:\"szEFbsrHx\",qvq6LPS5d:\"Get funding with upfront advances, receive up to 10x your monthly income while retaining your copyrights\",RbyEajZuS:true,rf3U03m3D:\"large advances\",style:{height:\"100%\",width:\"100%\"},variant:\"J0KPQRZMh\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{pt3F4AErh:{height:320,width:\"300px\",y:3706.2},xzId7X5_T:{height:328,width:\"calc(100vw - 32px)\",y:3966.2000000000003}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:440,width:\"392px\",y:4373.6,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition18},__framer__animateOnce:true,__framer__enter:animation15,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref6,target:\"animate\"}],__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-hvdnq1-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{pt3F4AErh:{variant:\"oty6XV2tr\"},xzId7X5_T:{variant:\"oty6XV2tr\"}},children:/*#__PURE__*/_jsx(DRMServiceCard,{Bgj836IXS:\"\u041F\u0430\u043A\u0435\u0442\",cwzmh_uTV:addImageAlt({src:\"https://framerusercontent.com/images/2FSLWGaboVQjrH9TlMikNH4EA.png\",srcSet:\"https://framerusercontent.com/images/2FSLWGaboVQjrH9TlMikNH4EA.png?scale-down-to=512 512w,https://framerusercontent.com/images/2FSLWGaboVQjrH9TlMikNH4EA.png 984w\"},\"\"),height:\"100%\",id:\"PH_x2q2_5\",Ite3bPd7F:false,kS1YWMCT8:\"Many ways to withdraw\",L7EOq9xiH:\"var(--token-1e0d3100-3129-48d5-9eb1-d8fdbef76552, rgb(255, 255, 255))\",layoutId:\"PH_x2q2_5\",qvq6LPS5d:\"Receive money using 10+ payment methods and 80+ currencies \u2014 whatever is convenient for you!\",RbyEajZuS:true,rf3U03m3D:\"Transfers in PKR, INR, USD, to cards, PayPal and much more\",style:{height:\"100%\",width:\"100%\"},variant:\"J0KPQRZMh\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{pt3F4AErh:{height:320,width:\"300px\",y:3706.2},xzId7X5_T:{height:328,width:\"calc(100vw - 32px)\",y:4302.200000000001}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:440,width:\"392px\",y:4373.6,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:true,__framer__enter:animation15,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref6,target:\"animate\"}],__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-l526vb-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{pt3F4AErh:{variant:\"oty6XV2tr\"},xzId7X5_T:{variant:\"oty6XV2tr\"}},children:/*#__PURE__*/_jsx(DRMServiceCard,{Bgj836IXS:\"\u041F\u0430\u043A\u0435\u0442\",cwzmh_uTV:addImageAlt({src:\"https://framerusercontent.com/images/oWW9WF1YUZrgyE6XdYvTigOPw.png\",srcSet:\"https://framerusercontent.com/images/oWW9WF1YUZrgyE6XdYvTigOPw.png?scale-down-to=512 512w,https://framerusercontent.com/images/oWW9WF1YUZrgyE6XdYvTigOPw.png 1011w\"},\"\"),height:\"100%\",id:\"RynnyKzFj\",Ite3bPd7F:false,kS1YWMCT8:\"Get paid today\",L7EOq9xiH:\"var(--token-1e0d3100-3129-48d5-9eb1-d8fdbef76552, rgb(255, 255, 255))\",layoutId:\"RynnyKzFj\",qvq6LPS5d:\"Express Payouts allow you to withdraw your money every day based on YouTube Analytics\",RbyEajZuS:true,rf3U03m3D:\"Forget about 45-60 days\",style:{height:\"100%\",width:\"100%\"},variant:\"J0KPQRZMh\",width:\"100%\"})})})})})]})})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition22},__framer__animateOnce:true,__framer__enter:animation16,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref7,target:\"animate\"}],__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-aavbs6\",\"data-framer-name\":\"security\",id:elementId5,name:\"security\",ref:ref7,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{pt3F4AErh:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-1pxziw5\",\"data-styles-preset\":\"dx8nfbYmS\",style:{\"--framer-text-alignment\":\"left\"},children:[\"Ensuring\",/*#__PURE__*/_jsx(\"br\",{}),\"the Security of Your Income \"]})})},xzId7X5_T:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-2glifg\",\"data-styles-preset\":\"ya7EE3uJv\",children:[\"Ensuring\",/*#__PURE__*/_jsx(\"br\",{}),\"the Security of Your Income \"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{className:\"framer-styles-preset-16wibyn\",\"data-styles-preset\":\"QBj9BCX0r\",style:{\"--framer-text-alignment\":\"left\"},children:[\"Ensuring\",/*#__PURE__*/_jsx(\"br\",{}),\"the Security of Your Income \"]})}),className:\"framer-egrlxs\",\"data-framer-name\":\"Ensuring\\u2028the Security of Your Income\",fonts:[\"Inter\"],name:\"Ensuring\\u2028the Security of Your Income\",verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xzId7X5_T:{style:{rotate:10}}},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-7xfkqy\",\"data-framer-name\":\"Frame\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:221,intrinsicWidth:234,name:\"Frame\",svg:'<svg width=\"234\" height=\"221\" viewBox=\"0 0 234 221\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_9_2595)\">\\n<path d=\"M39.5601 146.217C32.6914 132.907 29.6927 117.356 31.1567 101.908C31.8837 94.1802 33.2779 85.1544 38.8069 79.1286C43.8601 73.6274 51.1283 73.1408 57.568 74.7889C65.2151 76.7461 72.0523 81.3614 78.3061 85.9666C85.6308 91.3667 92.3785 97.5213 99.4444 103.273C102.827 106.027 106.256 108.838 109.995 111.081C112.998 112.897 116.47 114.112 120.033 112.632C126.482 109.97 128.507 101.233 128.888 95.0609C129.436 86.3597 128.037 77.769 126.043 69.4972C124.049 61.2254 121.381 53.3994 117.96 45.838C111.419 31.356 101.664 14.8682 85.3649 11.0044C81.9573 10.1957 77.9594 10.1186 74.8308 12.3354C71.7023 14.5522 70.3714 17.985 69.9901 21.5232C69.1223 29.4999 72.6235 37.1984 76.334 43.6954C80.4394 50.8611 85.7148 57.2009 91.3443 63.1017C96.9738 69.0025 102.937 74.4081 109.265 79.4249C134.894 99.7325 165.968 112.689 198.665 117.025C202.747 117.564 206.855 117.973 210.976 118.273C212.077 118.355 213.103 119.444 213.538 120.401C213.854 121.109 213.994 122.322 212.864 122.265C195.762 121.357 178.927 117.849 162.957 112.258C146.988 106.667 131.533 98.8058 117.579 89.0511C103.626 79.2965 90.7171 67.7896 80.2553 54.2581C75.0343 47.4985 70.6146 40.021 67.8099 31.7737C65.6056 25.3027 64.5528 15.8877 69.882 10.1624C75.723 3.8764 85.1832 6.78104 91.3614 9.8033C99.1314 13.6213 105.389 20.0136 110.443 27.0208C120.484 40.9209 127.118 58.0205 130.644 75.1555C132.348 83.4525 133.523 92.2267 132.292 100.856C131.388 107.231 128.211 115.283 121.349 117.017C117.468 117.992 113.646 116.546 110.422 114.666C106.596 112.428 103.075 109.589 99.62 106.82C92.3033 100.942 85.3766 94.5447 77.8533 88.9338C71.5959 84.268 64.4742 79.3593 56.5464 78.0767C53.2816 77.5467 49.8711 77.6725 46.6997 79.0728C42.8342 80.7746 40.07 84.2851 38.3388 88.1429C34.9253 95.757 34.2 104.744 34.3082 112.827C34.4164 120.911 35.726 128.628 38.1649 136.048C39.3526 139.666 40.8595 143.145 42.5833 146.495C42.9421 147.2 42.9396 148.222 41.9477 148.252C40.9558 148.281 39.9622 147.051 39.5405 146.249L39.5601 146.217Z\" fill=\"black\"/>\\n<path d=\"M186.378 104.558C196.475 109.203 206.582 113.854 216.296 119.271C217.088 119.718 219.709 123.082 217.316 123.137C210.953 123.291 204.581 123.748 198.224 124.535C191.866 125.323 185.623 126.722 179.293 127.687C177.837 127.912 174.788 124.355 176.661 123.789C182.922 121.918 189.556 121.083 195.959 120.309C202.363 119.536 208.873 119.077 215.332 118.923L216.353 122.788C206.959 117.54 197.195 113 187.422 108.497C186.369 108.005 185.291 107.089 185.026 105.856C184.821 104.925 185.371 104.081 186.375 104.542L186.378 104.558Z\" fill=\"black\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_9_2595\">\\n<rect width=\"185.632\" height=\"144.117\" fill=\"white\" transform=\"matrix(0.850127 0.526578 0.526578 -0.850127 0 122.518)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-xzkhfm\",\"data-framer-name\":\"Frame 1321314451\",name:\"Frame 1321314451\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-194neqt\",\"data-framer-name\":\"Frame 1321314450\",name:\"Frame 1321314450\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-foraym\",\"data-framer-name\":\"Union\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:48,intrinsicWidth:48,name:\"Union\",svg:'<svg width=\"48\" height=\"48\" viewBox=\"0 0 48 48\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M13.0169 1.62712H34.9831C41.2735 1.62712 46.3729 6.72652 46.3729 13.0169V34.9831C46.3729 41.2735 41.2735 46.3729 34.9831 46.3729H13.0169C6.72652 46.3729 1.62712 41.2735 1.62712 34.9831V13.0169C1.62712 6.72652 6.72652 1.62712 13.0169 1.62712ZM0 13.0169C0 5.82789 5.82789 0 13.0169 0H34.9831C42.1721 0 48 5.82789 48 13.0169V34.9831C48 42.1721 42.1721 48 34.9831 48H13.0169C5.82789 48 0 42.1721 0 34.9831V13.0169ZM11.4719 14.4078C14.5426 10.9197 19.0374 8.70659 24.056 8.70659C29.0746 8.70659 33.5694 10.9197 36.6401 14.4078C37.0256 14.8457 36.9831 15.513 36.5453 15.8985C36.1074 16.2839 35.44 16.2414 35.0546 15.8036C32.3655 12.749 28.4389 10.819 24.056 10.819C19.6731 10.819 15.7465 12.749 13.0574 15.8036C12.672 16.2414 12.0046 16.2839 11.5668 15.8985C11.1289 15.513 11.0865 14.8457 11.4719 14.4078ZM24.0585 12.9313C16.4786 12.9313 10.3336 19.0785 10.3336 26.6618C10.3336 28.3013 10.5171 29.8967 10.8538 31.4325C10.9788 32.0023 11.5419 32.3629 12.1117 32.238C12.6815 32.1131 13.0421 31.5499 12.9172 30.9801C12.6118 29.5868 12.446 28.1431 12.446 26.6618C12.446 20.2443 17.646 15.0437 24.0585 15.0437C30.4711 15.0437 35.671 20.2443 35.671 26.6618C35.671 28.4122 34.2524 29.8304 32.5039 29.8304C30.7553 29.8304 29.3367 28.4122 29.3367 26.6618C29.3367 23.7453 26.9727 21.3809 24.0571 21.3809C21.1415 21.3809 18.7776 23.7453 18.7776 26.6618C18.7776 31.5834 21.3686 35.8976 25.2529 38.32C25.7479 38.6286 26.3993 38.4776 26.708 37.9827C27.0167 37.4877 26.8657 36.8362 26.3707 36.5276C23.0785 34.4745 20.8899 30.8236 20.8899 26.6618C20.8899 24.9115 22.3086 23.4933 24.0571 23.4933C25.8056 23.4933 27.2243 24.9115 27.2243 26.6618C27.2243 29.5784 29.5882 31.9428 32.5039 31.9428C35.4195 31.9428 37.7834 29.5784 37.7834 26.6618C37.7834 19.0785 31.6385 12.9313 24.0585 12.9313ZM24.0544 19.2684C19.974 19.2684 16.6653 22.5777 16.6653 26.6618C16.6653 30.0409 17.7248 33.1682 19.5272 35.7403C19.8619 36.218 19.746 36.8766 19.2683 37.2114C18.7906 37.5461 18.132 37.4302 17.7972 36.9525C15.755 34.038 14.5529 30.4901 14.5529 26.6618C14.5529 21.412 18.8065 17.1561 24.0544 17.1561C29.3023 17.1561 33.5559 21.412 33.5559 26.6618C33.5559 27.2451 33.0831 27.718 32.4997 27.718C31.9164 27.718 31.4436 27.2451 31.4436 26.6618C31.4436 22.5777 28.1348 19.2684 24.0544 19.2684ZM24.0573 25.6058C24.6406 25.6058 25.1135 26.0787 25.1135 26.662C25.1135 30.7461 28.4222 34.0553 32.5026 34.0553C32.5762 34.0553 32.6335 34.0515 32.7191 34.0457H32.7191C32.7674 34.0424 32.8247 34.0386 32.8989 34.0344C33.4813 34.0021 33.9797 34.448 34.0121 35.0304C34.0444 35.6128 33.5985 36.1112 33.0161 36.1436C32.9937 36.1448 32.9649 36.1467 32.9315 36.149C32.8179 36.1566 32.6509 36.1677 32.5026 36.1677C27.2547 36.1677 23.0011 31.9118 23.0011 26.662C23.0011 26.0787 23.474 25.6058 24.0573 25.6058Z\" fill=\"#7EB902\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1jnicrh\",\"data-framer-name\":\"Frame 1321314462\",name:\"Frame 1321314462\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{pt3F4AErh:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1c8jer0\",\"data-styles-preset\":\"LhlMUVcJY\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-57fecd8c-d0d1-4790-b4a3-696f4f702033, rgb(28, 32, 40))\"},children:\"2FA\"})})},xzId7X5_T:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1c8jer0\",\"data-styles-preset\":\"LhlMUVcJY\",style:{\"--framer-text-color\":\"var(--token-57fecd8c-d0d1-4790-b4a3-696f4f702033, rgb(28, 32, 40))\"},children:\"2FA\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-pi5few\",\"data-styles-preset\":\"e9Fvv4iGz\",style:{\"--framer-text-color\":\"var(--token-57fecd8c-d0d1-4790-b4a3-696f4f702033, rgb(28, 32, 40))\"},children:\"2FA\"})}),className:\"framer-u68sex\",\"data-framer-name\":\"2FA\",fonts:[\"Inter\"],name:\"2FA\",verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{pt3F4AErh:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ii5scj\",\"data-styles-preset\":\"wjNpFc4yO\",style:{\"--framer-text-color\":\"var(--token-429c2cd1-72df-48ff-a053-3e4e536e2440, rgb(106, 106, 106))\"},children:\"Simple and secure multi-factor authentication to verify every transaction\"})})},xzId7X5_T:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ii5scj\",\"data-styles-preset\":\"wjNpFc4yO\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-429c2cd1-72df-48ff-a053-3e4e536e2440, rgb(106, 106, 106))\"},children:\"Simple and secure multi-factor authentication to verify every transaction\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-v0r1a\",\"data-styles-preset\":\"Dyn3uEx28\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-429c2cd1-72df-48ff-a053-3e4e536e2440, rgb(106, 106, 106))\"},children:\"Simple and secure multi-factor authentication to verify every transaction\"})}),className:\"framer-1a94kzz\",\"data-framer-name\":\"Simple and secure multi-factor authentication to verify every transaction\",fonts:[\"Inter\"],name:\"Simple and secure multi-factor authentication to verify every transaction\",verticalAlignment:\"center\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1reoer8\",\"data-framer-name\":\"Frame 1321314450\",name:\"Frame 1321314450\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1diey0j\",\"data-framer-name\":\"Union\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:48,intrinsicWidth:48,name:\"Union\",svg:'<svg width=\"48\" height=\"48\" viewBox=\"0 0 48 48\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M34.9831 1.62712H13.0169C6.72652 1.62712 1.62712 6.72652 1.62712 13.0169V34.9831C1.62712 41.2735 6.72652 46.3729 13.0169 46.3729H34.9831C41.2735 46.3729 46.3729 41.2735 46.3729 34.9831V13.0169C46.3729 6.72652 41.2735 1.62712 34.9831 1.62712ZM13.0169 0C5.82789 0 0 5.82789 0 13.0169V34.9831C0 42.1721 5.82789 48 13.0169 48H34.9831C42.1721 48 48 42.1721 48 34.9831V13.0169C48 5.82789 42.1721 0 34.9831 0H13.0169ZM16.7972 21.2589C15.7725 21.2589 14.943 22.0884 14.943 23.1131V34.98C14.943 36.0047 15.7725 36.8342 16.7972 36.8342H31.6309C32.6556 36.8342 33.4851 36.0047 33.4851 34.98V23.1131C33.4851 22.0884 32.6556 21.2589 31.6309 21.2589H16.7972ZM12.7179 23.1131C12.7179 20.8595 14.5436 19.0338 16.7972 19.0338H17.1683V15.6962C17.1683 11.805 20.3231 8.6502 24.2143 8.6502C28.1055 8.6502 31.2603 11.805 31.2603 15.6962V19.0338H31.6309C33.8844 19.0338 35.7102 20.8595 35.7102 23.1131V34.98C35.7102 37.2336 33.8844 39.0593 31.6309 39.0593H16.7972C14.5436 39.0593 12.7179 37.2336 12.7179 34.98V23.1131ZM29.0352 19.0338V15.6962C29.0352 13.0339 26.8766 10.8753 24.2143 10.8753C21.5519 10.8753 19.3933 13.0339 19.3933 15.6962V19.0338H29.0352ZM25.3266 29.1199C25.4913 29.0247 25.6465 28.9066 25.7874 28.7657C26.6564 27.8967 26.6564 26.4879 25.7874 25.619C24.9185 24.75 23.5097 24.75 22.6407 25.619C21.7718 26.4879 21.7718 27.8967 22.6407 28.7657C22.7817 28.9066 22.9368 29.0247 23.1015 29.1199V32.1468C23.1015 32.7612 23.5996 33.2593 24.2141 33.2593C24.8285 33.2593 25.3266 32.7612 25.3266 32.1468V29.1199Z\" fill=\"#7EB902\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-wa3c6a\",\"data-framer-name\":\"Frame 1321314461\",name:\"Frame 1321314461\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{pt3F4AErh:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1c8jer0\",\"data-styles-preset\":\"LhlMUVcJY\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-57fecd8c-d0d1-4790-b4a3-696f4f702033, rgb(28, 32, 40))\"},children:\"KYC\"})})},xzId7X5_T:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1c8jer0\",\"data-styles-preset\":\"LhlMUVcJY\",style:{\"--framer-text-color\":\"var(--token-57fecd8c-d0d1-4790-b4a3-696f4f702033, rgb(28, 32, 40))\"},children:\"KYC\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-pi5few\",\"data-styles-preset\":\"e9Fvv4iGz\",style:{\"--framer-text-color\":\"var(--token-57fecd8c-d0d1-4790-b4a3-696f4f702033, rgb(28, 32, 40))\"},children:\"KYC\"})}),className:\"framer-1chx8jn\",\"data-framer-name\":\"KYC\",fonts:[\"Inter\"],name:\"KYC\",verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{pt3F4AErh:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ii5scj\",\"data-styles-preset\":\"wjNpFc4yO\",style:{\"--framer-text-color\":\"var(--token-429c2cd1-72df-48ff-a053-3e4e536e2440, rgb(106, 106, 106))\"},children:\"We keep your money safe and free of fraud\"})})},xzId7X5_T:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ii5scj\",\"data-styles-preset\":\"wjNpFc4yO\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-429c2cd1-72df-48ff-a053-3e4e536e2440, rgb(106, 106, 106))\"},children:\"We keep your money safe and free of fraud\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-v0r1a\",\"data-styles-preset\":\"Dyn3uEx28\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-429c2cd1-72df-48ff-a053-3e4e536e2440, rgb(106, 106, 106))\"},children:\"We keep your money safe and free of fraud\"})}),className:\"framer-4s9dvf\",\"data-framer-name\":\"We keep your money safe and free of fraud\",fonts:[\"Inter\"],name:\"We keep your money safe and free of fraud\",verticalAlignment:\"center\",withExternalLayout:true})})]})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-hdlppj\",\"data-framer-name\":\"DRM/footer\",name:\"DRM/footer\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-13gcyib\",\"data-framer-name\":\"Frame 20\",name:\"Frame 20\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{pt3F4AErh:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1,intrinsicWidth:1224,loading:getLoadingLazyAtYPosition(4586.2),positionX:\"center\",positionY:\"center\",sizes:\"1224px\",src:\"https://framerusercontent.com/images/GPrZqOXoDzjTBZdgtxyjnCxA3Y.svg\",srcSet:\"https://framerusercontent.com/images/GPrZqOXoDzjTBZdgtxyjnCxA3Y.svg?scale-down-to=512 512w,https://framerusercontent.com/images/GPrZqOXoDzjTBZdgtxyjnCxA3Y.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/GPrZqOXoDzjTBZdgtxyjnCxA3Y.svg 1224w\"}},xzId7X5_T:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1,intrinsicWidth:1224,loading:getLoadingLazyAtYPosition(5324.6),positionX:\"center\",positionY:\"center\",sizes:\"1224px\",src:\"https://framerusercontent.com/images/GPrZqOXoDzjTBZdgtxyjnCxA3Y.svg\",srcSet:\"https://framerusercontent.com/images/GPrZqOXoDzjTBZdgtxyjnCxA3Y.svg?scale-down-to=512 512w,https://framerusercontent.com/images/GPrZqOXoDzjTBZdgtxyjnCxA3Y.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/GPrZqOXoDzjTBZdgtxyjnCxA3Y.svg 1224w\"}}},children:/*#__PURE__*/_jsxs(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1,intrinsicWidth:1224,loading:getLoadingLazyAtYPosition(5612),positionX:\"center\",positionY:\"center\",sizes:\"1224px\",src:\"https://framerusercontent.com/images/GPrZqOXoDzjTBZdgtxyjnCxA3Y.svg\",srcSet:\"https://framerusercontent.com/images/GPrZqOXoDzjTBZdgtxyjnCxA3Y.svg?scale-down-to=512 512w,https://framerusercontent.com/images/GPrZqOXoDzjTBZdgtxyjnCxA3Y.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/GPrZqOXoDzjTBZdgtxyjnCxA3Y.svg 1224w\"},className:\"framer-1g5k594\",\"data-framer-name\":\"Frame 30\",name:\"Frame 30\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-uhdkfp\",\"data-framer-name\":\"Vector 2258\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:534,intrinsicWidth:618,name:\"Vector 2258\",svg:'<svg width=\"618\" height=\"534\" viewBox=\"-1 -1 618 534\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M-0.444924 531.037C-0.939533 531.283 -1.14129 531.883 -0.895568 532.378C-0.649844 532.872 -0.0496849 533.074 0.444924 532.828L-0.444924 531.037ZM119.416 317.215L119.83 318.125L119.416 317.215ZM232.023 407.291L232.826 407.888L232.023 407.291ZM239.879 297.314L239.711 298.3L239.879 297.314ZM464.046 262.226L463.053 262.111L464.046 262.226ZM4.82777 530.502C5.30842 530.23 5.47755 529.62 5.20553 529.139C4.93351 528.658 4.32335 528.489 3.8427 528.761L4.82777 530.502ZM11.9583 523.571C11.5097 523.893 11.4073 524.518 11.7295 524.966C12.0517 525.415 12.6766 525.517 13.1251 525.195L11.9583 523.571ZM20.8078 519.033C21.22 518.665 21.256 518.033 20.8884 517.621C20.5207 517.209 19.8886 517.172 19.4765 517.54L20.8078 519.033ZM26.3474 510.762C25.9737 511.168 26.0003 511.801 26.4069 512.174C26.8136 512.548 27.4462 512.522 27.8199 512.115L26.3474 510.762ZM34.1404 504.573C34.4762 504.134 34.3928 503.507 33.9543 503.171C33.5157 502.835 32.8881 502.918 32.5524 503.357L34.1404 504.573ZM38.1152 495.445C37.8153 495.909 37.9481 496.528 38.4119 496.828C38.8756 497.128 39.4947 496.995 39.7946 496.531L38.1152 495.445ZM44.8355 488.1C45.1029 487.617 44.9279 487.008 44.4447 486.741C43.9615 486.473 43.353 486.648 43.0856 487.131L44.8355 488.1ZM47.5257 478.507C47.2869 479.005 47.497 479.603 47.995 479.842C48.493 480.08 49.0903 479.87 49.3291 479.372L47.5257 478.507ZM53.3463 470.423C53.5605 469.914 53.3214 469.328 52.8123 469.114C52.3033 468.9 51.717 469.139 51.5028 469.648L53.3463 470.423ZM55.084 460.612C54.8906 461.129 55.1531 461.706 55.6704 461.899C56.1877 462.092 56.7639 461.83 56.9573 461.313L55.084 460.612ZM60.229 452.089C60.4054 451.565 60.1241 450.998 59.6008 450.822C59.0774 450.645 58.5102 450.926 58.3338 451.45L60.229 452.089ZM61.3171 442.187C61.1543 442.715 61.4502 443.275 61.9779 443.437C62.5057 443.6 63.0654 443.304 63.2282 442.777L61.3171 442.187ZM66.0148 433.404C66.1673 432.873 65.8606 432.319 65.3298 432.166C64.799 432.014 64.245 432.32 64.0926 432.851L66.0148 433.404ZM66.7164 423.464C66.571 423.997 66.8851 424.547 67.4179 424.692C67.9507 424.838 68.5005 424.524 68.6459 423.991L66.7164 423.464ZM71.1775 414.557C71.319 414.023 71.0009 413.476 70.467 413.334C69.9331 413.193 69.3857 413.511 69.2442 414.045L71.1775 414.557ZM71.7323 404.61C71.5915 405.144 71.9103 405.691 72.4444 405.832C72.9784 405.973 73.5255 405.654 73.6663 405.12L71.7323 404.61ZM76.1712 395.698C76.3148 395.165 75.9989 394.616 75.4657 394.472C74.9324 394.329 74.3836 394.645 74.24 395.178L76.1712 395.698ZM76.8321 385.769C76.6816 386.3 76.9905 386.853 77.5219 387.003C78.0533 387.154 78.606 386.845 78.7565 386.314L76.8321 385.769ZM81.5059 376.958C81.6678 376.43 81.3709 375.871 80.8429 375.709C80.3149 375.547 79.7556 375.844 79.5937 376.372L81.5059 376.958ZM82.6087 367.046C82.4298 367.568 82.7083 368.137 83.2308 368.316C83.7533 368.495 84.3219 368.216 84.5008 367.694L82.6087 367.046ZM87.8457 358.582C88.0488 358.068 87.7969 357.487 87.2833 357.284C86.7697 357.081 86.1888 357.333 85.9858 357.847L87.8457 358.582ZM89.8664 348.848C89.6304 349.347 89.8439 349.943 90.3432 350.179C90.8426 350.415 91.4387 350.202 91.6746 349.702L89.8664 348.848ZM96.188 341.128C96.4684 340.652 96.3101 340.039 95.8343 339.759C95.3585 339.478 94.7455 339.637 94.465 340.112L96.188 341.128ZM99.9596 331.94C99.622 332.377 99.7027 333.005 100.14 333.342C100.577 333.68 101.205 333.599 101.543 333.162L99.9596 331.94ZM107.996 326.063C108.402 325.689 108.427 325.056 108.052 324.65C107.678 324.244 107.045 324.219 106.639 324.593L107.996 326.063ZM114.578 318.626C114.104 318.909 113.949 319.523 114.232 319.997C114.516 320.471 115.13 320.626 115.604 320.342L114.578 318.626ZM124.438 316.204C124.954 316.008 125.214 315.43 125.017 314.914C124.821 314.398 124.243 314.138 123.727 314.335L124.438 316.204ZM133.486 311.256C132.951 311.393 132.628 311.937 132.765 312.472C132.902 313.007 133.447 313.33 133.982 313.193L133.486 311.256ZM143.821 311.194C144.367 311.11 144.741 310.599 144.657 310.054C144.573 309.508 144.063 309.133 143.517 309.217L143.821 311.194ZM153.666 308.118C153.115 308.154 152.697 308.629 152.732 309.181C152.768 309.732 153.244 310.15 153.795 310.114L153.666 308.118ZM163.844 309.879C164.396 309.888 164.851 309.448 164.861 308.896C164.87 308.344 164.43 307.888 163.878 307.879L163.844 309.879ZM174.069 308.455C173.519 308.402 173.031 308.805 172.978 309.355C172.925 309.905 173.328 310.393 173.878 310.446L174.069 308.455ZM183.837 311.797C184.381 311.892 184.899 311.529 184.995 310.985C185.091 310.441 184.728 309.923 184.184 309.827L183.837 311.797ZM194.163 312.003C193.629 311.863 193.082 312.183 192.942 312.717C192.803 313.251 193.122 313.798 193.657 313.938L194.163 312.003ZM203.25 316.898C203.77 317.084 204.342 316.814 204.529 316.294C204.715 315.774 204.445 315.201 203.925 315.015L203.25 316.898ZM213.371 318.927C212.872 318.69 212.276 318.902 212.039 319.401C211.802 319.9 212.015 320.497 212.514 320.733L213.371 318.927ZM221.308 325.531C221.776 325.824 222.393 325.682 222.686 325.214C222.979 324.746 222.837 324.129 222.369 323.836L221.308 325.531ZM230.677 329.848C230.254 329.493 229.624 329.548 229.269 329.971C228.913 330.394 228.968 331.024 229.391 331.38L230.677 329.848ZM236.451 338.375C236.807 338.797 237.438 338.85 237.86 338.493C238.282 338.137 238.335 337.506 237.978 337.084L236.451 338.375ZM243.813 345.601C243.552 345.115 242.945 344.933 242.459 345.195C241.973 345.457 241.791 346.063 242.053 346.55L243.813 345.601ZM245.694 355.721C245.836 356.254 246.383 356.573 246.917 356.431C247.451 356.29 247.769 355.742 247.628 355.208L245.694 355.721ZM249.064 365.434C249.051 364.882 248.594 364.444 248.042 364.457C247.489 364.469 247.052 364.927 247.064 365.479L249.064 365.434ZM246.216 375.337C246.113 375.88 246.469 376.403 247.012 376.507C247.554 376.61 248.078 376.253 248.181 375.711L246.216 375.337ZM245.372 385.612C245.566 385.095 245.304 384.519 244.787 384.325C244.269 384.132 243.693 384.394 243.499 384.911L245.372 385.612ZM239.358 393.994C239.098 394.481 239.281 395.087 239.768 395.348C240.255 395.608 240.861 395.425 241.122 394.938L239.358 393.994ZM235.836 403.65C236.145 403.192 236.026 402.571 235.568 402.261C235.111 401.952 234.489 402.071 234.18 402.529L235.836 403.65ZM227.999 410.741C227.64 411.16 227.688 411.791 228.108 412.151C228.527 412.51 229.158 412.461 229.518 412.042L227.999 410.741ZM222.206 419.197C222.638 418.854 222.71 418.225 222.367 417.792C222.024 417.36 221.395 417.287 220.962 417.631L222.206 419.197ZM212.409 422.53C211.888 422.713 211.615 423.284 211.798 423.805C211.981 424.326 212.552 424.6 213.073 424.416L212.409 422.53ZM202.607 425.477C203.153 425.56 203.663 425.186 203.747 424.64C203.831 424.094 203.456 423.583 202.91 423.5L202.607 425.477ZM194.001 419.835C193.545 419.524 192.923 419.641 192.611 420.096C192.3 420.552 192.417 421.175 192.873 421.486L194.001 419.835ZM185.276 414.361C185.626 414.789 186.256 414.851 186.683 414.501C187.111 414.152 187.173 413.522 186.824 413.094L185.276 414.361ZM181.282 404.785C181.016 404.301 180.409 404.124 179.924 404.39C179.44 404.656 179.263 405.264 179.529 405.748L181.282 404.785ZM175.206 396.373C175.404 396.889 175.983 397.145 176.499 396.947C177.014 396.748 177.271 396.17 177.072 395.654L175.206 396.373ZM173.988 386.077C173.847 385.543 173.299 385.225 172.765 385.366C172.231 385.507 171.913 386.054 172.054 386.588L173.988 386.077ZM169.928 376.534C170.016 377.079 170.529 377.45 171.074 377.362C171.619 377.274 171.99 376.761 171.903 376.216L169.928 376.534ZM170.778 366.188C170.742 365.637 170.267 365.219 169.716 365.254C169.165 365.289 168.746 365.765 168.782 366.316L170.778 366.188ZM168.632 356.041C168.612 356.593 169.044 357.056 169.596 357.076C170.147 357.095 170.611 356.664 170.631 356.112L168.632 356.041ZM171.527 346.085C171.606 345.538 171.228 345.031 170.681 344.951C170.135 344.871 169.627 345.25 169.548 345.796L171.527 346.085ZM171.649 335.721C171.502 336.253 171.814 336.804 172.347 336.951C172.879 337.098 173.43 336.786 173.577 336.254L171.649 335.721ZM176.939 326.803C177.163 326.298 176.936 325.707 176.431 325.483C175.927 325.259 175.336 325.486 175.111 325.991L176.939 326.803ZM180.104 316.944C179.794 317.401 179.914 318.023 180.371 318.333C180.828 318.642 181.45 318.523 181.76 318.065L180.104 316.944ZM188.136 310.43C188.532 310.045 188.542 309.412 188.157 309.016C187.773 308.62 187.14 308.61 186.743 308.995L188.136 310.43ZM194.936 302.632C194.465 302.921 194.317 303.536 194.606 304.007C194.894 304.478 195.51 304.626 195.981 304.338L194.936 302.632ZM204.969 300.089C205.49 299.906 205.765 299.336 205.582 298.815C205.399 298.293 204.829 298.019 204.308 298.202L204.969 300.089ZM214.304 295.731C213.758 295.815 213.384 296.326 213.468 296.872C213.552 297.418 214.063 297.792 214.609 297.708L214.304 295.731ZM224.573 296.961C225.126 296.959 225.572 296.511 225.571 295.958C225.57 295.406 225.121 294.959 224.568 294.961L224.573 296.961ZM234.822 295.573C234.274 295.509 233.777 295.901 233.712 296.449C233.647 296.998 234.04 297.495 234.588 297.56L234.822 295.573ZM244.47 299.108C245.015 299.2 245.531 298.834 245.623 298.289C245.715 297.745 245.349 297.229 244.804 297.136L244.47 299.108ZM254.292 298.732C253.747 298.641 253.232 299.009 253.141 299.553C253.05 300.098 253.418 300.613 253.963 300.704L254.292 298.732ZM263.459 302.272C264.004 302.361 264.518 301.991 264.607 301.446C264.696 300.901 264.326 300.387 263.781 300.298L263.459 302.272ZM273.273 301.826C272.728 301.74 272.215 302.112 272.129 302.657C272.042 303.203 272.414 303.715 272.96 303.802L273.273 301.826ZM282.469 305.285C283.015 305.369 283.525 304.994 283.608 304.448C283.692 303.902 283.317 303.392 282.771 303.308L282.469 305.285ZM292.289 304.734C291.742 304.654 291.234 305.032 291.154 305.579C291.075 306.125 291.453 306.633 291.999 306.713L292.289 304.734ZM301.54 308.072C302.087 308.148 302.592 307.765 302.667 307.218C302.743 306.671 302.361 306.167 301.814 306.091L301.54 308.072ZM311.348 307.365C310.8 307.294 310.299 307.681 310.228 308.229C310.158 308.777 310.544 309.278 311.092 309.349L311.348 307.365ZM320.658 310.527C321.206 310.592 321.703 310.199 321.768 309.651C321.832 309.102 321.44 308.605 320.891 308.541L320.658 310.527ZM330.445 309.602C329.895 309.544 329.404 309.943 329.346 310.493C329.289 311.042 329.688 311.534 330.237 311.591L330.445 309.602ZM339.832 312.519C340.382 312.567 340.868 312.161 340.916 311.611C340.965 311.061 340.559 310.575 340.009 310.526L339.832 312.519ZM349.581 311.29C349.031 311.252 348.552 311.667 348.514 312.218C348.475 312.769 348.89 313.247 349.441 313.285L349.581 311.29ZM359.063 313.862C359.614 313.889 360.083 313.463 360.11 312.912C360.137 312.36 359.712 311.891 359.16 311.864L359.063 313.862ZM368.739 312.212C368.187 312.199 367.729 312.637 367.716 313.189C367.704 313.741 368.141 314.199 368.693 314.212L368.739 312.212ZM378.367 314.289C378.919 314.285 379.363 313.834 379.359 313.281C379.355 312.729 378.903 312.285 378.351 312.289L378.367 314.289ZM387.948 312.037C387.397 312.063 386.97 312.53 386.995 313.082C387.02 313.634 387.488 314.061 388.04 314.035L387.948 312.037ZM397.687 313.376C398.237 313.326 398.642 312.839 398.591 312.289C398.54 311.739 398.053 311.334 397.503 311.385L397.687 313.376ZM406.969 310.242C406.423 310.325 406.047 310.835 406.13 311.381C406.213 311.927 406.722 312.302 407.268 312.22L406.969 310.242ZM416.827 310.422C417.366 310.299 417.703 309.763 417.58 309.225C417.457 308.686 416.921 308.35 416.382 308.472L416.827 310.422ZM425.543 305.937C425.019 306.111 424.734 306.676 424.908 307.201C425.081 307.725 425.647 308.009 426.171 307.836L425.543 305.937ZM435.237 304.225C435.736 303.987 435.948 303.391 435.711 302.892C435.474 302.393 434.877 302.181 434.379 302.418L435.237 304.225ZM442.574 297.727C442.119 298.04 442.003 298.662 442.316 299.117C442.629 299.572 443.252 299.688 443.707 299.375L442.574 297.727ZM451.221 293.093C451.608 292.698 451.602 292.065 451.207 291.679C450.813 291.292 450.18 291.298 449.793 291.693L451.221 293.093ZM455.629 284.331C455.333 284.797 455.473 285.415 455.939 285.71C456.406 286.005 457.024 285.866 457.319 285.4L455.629 284.331ZM461.673 276.628C461.868 276.112 461.607 275.535 461.091 275.339C460.574 275.144 459.997 275.405 459.802 275.921L461.673 276.628ZM462.336 266.829C462.232 267.371 462.588 267.895 463.131 267.998C463.673 268.102 464.197 267.746 464.3 267.203L462.336 266.829ZM465.451 257.334C465.478 256.782 465.053 256.313 464.501 256.286C463.95 256.259 463.48 256.684 463.453 257.236L465.451 257.334ZM463.3 247.486C463.344 248.037 463.826 248.448 464.376 248.404C464.927 248.36 465.338 247.879 465.294 247.328L463.3 247.486ZM463.911 237.429C463.803 236.887 463.277 236.535 462.735 236.643C462.193 236.751 461.841 237.277 461.949 237.819L463.911 237.429ZM459.551 228.334C459.712 228.862 460.271 229.16 460.799 228.999C461.327 228.837 461.625 228.279 461.464 227.75L459.551 228.334ZM458.161 218.347C457.958 217.833 457.377 217.581 456.863 217.784C456.35 217.987 456.098 218.568 456.301 219.082L458.161 218.347ZM452.397 210.063C452.631 210.564 453.226 210.779 453.727 210.545C454.227 210.311 454.443 209.716 454.209 209.216L452.397 210.063ZM449.794 200.32C449.538 199.83 448.934 199.64 448.445 199.896C447.955 200.151 447.765 200.755 448.021 201.245L449.794 200.32ZM443.33 192.567C443.598 193.049 444.207 193.223 444.69 192.955C445.172 192.686 445.346 192.077 445.077 191.595L443.33 192.567ZM440.205 182.975C439.931 182.495 439.321 182.328 438.841 182.602C438.361 182.876 438.194 183.487 438.468 183.966L440.205 182.975ZM433.57 175.371C433.842 175.851 434.452 176.021 434.933 175.749C435.414 175.477 435.583 174.867 435.311 174.386L433.57 175.371ZM430.529 165.75C430.267 165.264 429.66 165.082 429.174 165.344C428.688 165.606 428.506 166.213 428.768 166.699L430.529 165.75ZM424.212 157.878C424.455 158.374 425.054 158.579 425.55 158.335C426.046 158.092 426.25 157.493 426.007 156.997L424.212 157.878ZM421.917 148.063C421.702 147.554 421.116 147.315 420.607 147.53C420.098 147.744 419.859 148.331 420.073 148.84L421.917 148.063ZM416.554 139.509C416.727 140.034 417.293 140.319 417.817 140.146C418.342 139.973 418.627 139.407 418.454 138.883L416.554 139.509ZM415.862 129.456C415.744 128.916 415.212 128.574 414.672 128.691C414.132 128.808 413.79 129.341 413.907 129.881L415.862 129.456ZM412.396 119.986C412.443 120.536 412.928 120.944 413.478 120.896C414.028 120.849 414.436 120.365 414.389 119.815L412.396 119.986ZM414.252 110.089C414.285 109.537 413.865 109.064 413.313 109.031C412.762 108.998 412.288 109.418 412.256 109.97L414.252 110.089ZM413.601 100.041C413.486 100.581 413.831 101.112 414.371 101.227C414.912 101.342 415.443 100.997 415.557 100.457L413.601 100.041ZM418.268 91.0913C418.458 90.5728 418.192 89.9983 417.673 89.8081C417.155 89.6179 416.581 89.8841 416.39 90.4026L418.268 91.0913ZM420.417 81.2726C420.163 81.7635 420.356 82.3666 420.847 82.6197C421.338 82.8727 421.941 82.6799 422.194 82.189L420.417 81.2726ZM427.21 73.6413C427.513 73.1799 427.385 72.5598 426.924 72.2563C426.462 71.9527 425.842 72.0807 425.539 72.542L427.21 73.6413ZM431.525 64.3199C431.18 64.7511 431.25 65.3804 431.681 65.7254C432.112 66.0705 432.741 66.0007 433.086 65.5695L431.525 64.3199ZM439.641 58.0496C440.021 57.6483 440.003 57.0154 439.602 56.636C439.201 56.2565 438.568 56.2743 438.188 56.6756L439.641 58.0496ZM445.427 49.5722C445.019 49.9445 444.99 50.577 445.363 50.9849C445.735 51.3928 446.368 51.4216 446.776 51.0493L445.427 49.5722ZM454.391 44.5522C454.822 44.2076 454.893 43.5783 454.548 43.1468C454.203 42.7153 453.574 42.6449 453.143 42.9895L454.391 44.5522ZM461.246 36.9091C460.795 37.2275 460.687 37.8514 461.006 38.3027C461.324 38.754 461.948 38.8618 462.399 38.5434L461.246 36.9091ZM470.738 32.9993C471.206 32.706 471.348 32.0889 471.054 31.6209C470.761 31.153 470.144 31.0114 469.676 31.3047L470.738 32.9993ZM478.387 26.1495C477.905 26.4188 477.733 27.028 478.002 27.5102C478.271 27.9924 478.881 28.165 479.363 27.8957L478.387 26.1495ZM488.23 23.2187C488.725 22.9726 488.926 22.3723 488.68 21.8778C488.434 21.3834 487.833 21.1821 487.339 21.4281L488.23 23.2187ZM496.496 17.1293C495.991 17.3527 495.762 17.9432 495.986 18.4483C496.209 18.9534 496.8 19.1818 497.305 18.9585L496.496 17.1293ZM506.568 15.1063C507.082 14.9056 507.336 14.3257 507.136 13.8112C506.935 13.2967 506.355 13.0424 505.841 13.2432L506.568 15.1063ZM515.346 9.77258C514.823 9.95054 514.544 10.5186 514.722 11.0415C514.9 11.5643 515.468 11.8439 515.991 11.6659L515.346 9.77258ZM525.55 8.64711C526.08 8.49262 526.385 7.93754 526.23 7.4073C526.076 6.87707 525.521 6.57246 524.99 6.72696L525.55 8.64711ZM534.759 4.12251C534.222 4.25229 533.892 4.79267 534.022 5.32949C534.151 5.86631 534.692 6.19629 535.229 6.06651L534.759 4.12251ZM545.042 3.94707C545.585 3.84411 545.941 3.32078 545.838 2.77818C545.735 2.23557 545.212 1.87917 544.669 1.98213L545.042 3.94707ZM554.66 0.363366C554.112 0.436417 553.728 0.939419 553.801 1.48685C553.874 2.03428 554.377 2.41884 554.924 2.34579L554.66 0.363366ZM564.881 1.32763C565.432 1.28934 565.848 0.811656 565.809 0.260701C565.771 -0.290255 565.293 -0.705848 564.742 -0.667552L564.881 1.32763ZM574.887 -0.996824C574.335 -1.00086 573.884 -0.556423 573.88 -0.00415301C573.876 0.548117 574.32 0.99909 574.872 1.00312L574.887 -0.996824ZM584.838 1.54649C585.387 1.60521 585.88 1.20764 585.939 0.658483C585.998 0.109329 585.6 -0.383452 585.051 -0.442175L584.838 1.54649ZM595.096 1.29923C594.56 1.16496 594.017 1.4904 593.883 2.02612C593.748 2.56184 594.074 3.10496 594.61 3.23923L595.096 1.29923ZM603.872 6.56366C604.366 6.80959 604.966 6.60808 605.212 6.11357C605.458 5.61907 605.257 5.01883 604.762 4.77289L603.872 6.56366ZM613.162 10.8437C612.785 10.4406 612.152 10.42 611.749 10.7975C611.346 11.1751 611.325 11.8079 611.703 12.211L613.162 10.8437ZM0.444924 532.828C1.9391 532.086 3.39971 531.31 4.82777 530.502L3.8427 528.761C2.44587 529.552 1.01702 530.311 -0.444924 531.037L0.444924 532.828ZM13.1251 525.195C15.8139 523.264 18.3717 521.206 20.8078 519.033L19.4765 517.54C17.0913 519.668 14.5883 521.682 11.9583 523.571L13.1251 525.195ZM27.8199 512.115C30.038 509.702 32.1416 507.184 34.1404 504.573L32.5524 503.357C30.588 505.923 28.5228 508.395 26.3474 510.762L27.8199 512.115ZM39.7946 496.531C41.5637 493.795 43.2409 490.981 44.8355 488.1L43.0856 487.131C41.5115 489.976 39.8576 492.75 38.1152 495.445L39.7946 496.531ZM49.3291 479.372C50.7352 476.44 52.0715 473.453 53.3463 470.423L51.5028 469.648C50.2395 472.65 48.9166 475.607 47.5257 478.507L49.3291 479.372ZM56.9573 461.313C58.096 458.267 59.184 455.189 60.229 452.089L58.3338 451.45C57.2949 454.532 56.2143 457.589 55.084 460.612L56.9573 461.313ZM63.2282 442.777C64.1888 439.663 65.1151 436.535 66.0148 433.404L64.0926 432.851C63.1959 435.972 62.2733 439.087 61.3171 442.187L63.2282 442.777ZM68.6459 423.991C69.5062 420.838 70.3475 417.69 71.1775 414.557L69.2442 414.045C68.4149 417.175 67.5749 420.318 66.7164 423.464L68.6459 423.991ZM73.6663 405.12C74.5018 401.95 75.3339 398.807 76.1712 395.698L74.24 395.178C73.4013 398.292 72.5681 401.44 71.7323 404.61L73.6663 405.12ZM78.7565 386.314C79.6548 383.14 80.568 380.018 81.5059 376.958L79.5937 376.372C78.6508 379.448 77.7335 382.585 76.8321 385.769L78.7565 386.314ZM84.5008 367.694C85.5723 364.565 86.6833 361.523 87.8457 358.582L85.9858 357.847C84.8103 360.821 83.6886 363.892 82.6087 367.046L84.5008 367.694ZM91.6746 349.702C93.0964 346.694 94.5956 343.829 96.188 341.128L94.465 340.112C92.8377 342.873 91.3105 345.792 89.8664 348.848L91.6746 349.702ZM101.543 333.162C103.552 330.56 105.696 328.186 107.996 326.063L106.639 324.593C104.248 326.8 102.03 329.259 99.9596 331.94L101.543 333.162ZM115.604 320.342C116.964 319.529 118.371 318.789 119.83 318.125L119.002 316.305C117.474 317 116 317.775 114.578 318.626L115.604 320.342ZM119.83 318.125C121.332 317.441 122.869 316.801 124.438 316.204L123.727 314.335C122.119 314.946 120.543 315.603 119.002 316.305L119.83 318.125ZM133.982 313.193C137.182 312.374 140.47 311.709 143.821 311.194L143.517 309.217C140.105 309.741 136.752 310.419 133.486 311.256L133.982 313.193ZM153.795 310.114C157.12 309.899 160.477 309.821 163.844 309.879L163.878 307.879C160.458 307.821 157.046 307.899 153.666 308.118L153.795 310.114ZM173.878 310.446C177.221 310.766 180.549 311.218 183.837 311.797L184.184 309.827C180.843 309.239 177.464 308.781 174.069 308.455L173.878 310.446ZM193.657 313.938C196.93 314.794 200.137 315.782 203.25 316.898L203.925 315.015C200.754 313.879 197.492 312.874 194.163 312.003L193.657 313.938ZM212.514 320.733C215.591 322.194 218.533 323.795 221.308 325.531L222.369 323.836C219.523 322.056 216.514 320.419 213.371 318.927L212.514 320.733ZM229.391 331.38C231.99 333.561 234.355 335.895 236.451 338.375L237.978 337.084C235.804 334.51 233.356 332.096 230.677 329.848L229.391 331.38ZM242.053 346.55C243.616 349.453 244.844 352.511 245.694 355.721L247.628 355.208C246.736 351.841 245.448 348.637 243.813 345.601L242.053 346.55ZM247.064 365.479C247.135 368.64 246.864 371.927 246.216 375.337L248.181 375.711C248.854 372.169 249.138 368.741 249.064 365.434L247.064 365.479ZM243.499 384.911C242.395 387.859 241.021 390.888 239.358 393.994L241.122 394.938C242.823 391.759 244.235 388.65 245.372 385.612L243.499 384.911ZM234.18 402.529C233.249 403.904 232.263 405.293 231.221 406.695L232.826 407.888C233.885 406.463 234.888 405.05 235.836 403.65L234.18 402.529ZM231.221 406.695C230.143 408.145 229.068 409.493 227.999 410.741L229.518 412.042C230.619 410.756 231.722 409.373 232.826 407.888L231.221 406.695ZM220.962 417.631C218.033 419.956 215.174 421.556 212.409 422.53L213.073 424.416C216.079 423.358 219.131 421.638 222.206 419.197L220.962 417.631ZM202.91 423.5C199.809 423.024 196.826 421.766 194.001 419.835L192.873 421.486C195.906 423.56 199.167 424.949 202.607 425.477L202.91 423.5ZM186.824 413.094C184.829 410.658 182.973 407.866 181.282 404.785L179.529 405.748C181.271 408.921 183.193 411.817 185.276 414.361L186.824 413.094ZM177.072 395.654C175.898 392.607 174.865 389.4 173.988 386.077L172.054 386.588C172.949 389.977 174.004 393.255 175.206 396.373L177.072 395.654ZM171.903 376.216C171.372 372.921 170.993 369.566 170.778 366.188L168.782 366.316C169.001 369.757 169.388 373.176 169.928 376.534L171.903 376.216ZM170.631 356.112C170.751 352.739 171.046 349.384 171.527 346.085L169.548 345.796C169.056 349.171 168.755 352.599 168.632 356.041L170.631 356.112ZM173.577 336.254C174.481 332.986 175.597 329.822 176.939 326.803L175.111 325.991C173.727 329.107 172.577 332.365 171.649 335.721L173.577 336.254ZM181.76 318.065C183.628 315.306 185.749 312.746 188.136 310.43L186.743 308.995C184.252 311.411 182.044 314.078 180.104 316.944L181.76 318.065ZM195.981 304.338C198.722 302.659 201.713 301.23 204.969 300.089L204.308 298.202C200.92 299.388 197.8 300.878 194.936 302.632L195.981 304.338ZM214.609 297.708C217.734 297.226 221.053 296.969 224.573 296.961L224.568 294.961C220.954 294.97 217.534 295.234 214.304 295.731L214.609 297.708ZM234.588 297.56C236.257 297.756 237.965 298.002 239.711 298.3L240.047 296.328C238.268 296.025 236.527 295.774 234.822 295.573L234.588 297.56ZM239.711 298.3C241.301 298.571 242.887 298.84 244.47 299.108L244.804 297.136C243.222 296.868 241.636 296.599 240.047 296.328L239.711 298.3ZM253.963 300.704C257.144 301.235 260.31 301.758 263.459 302.272L263.781 300.298C260.635 299.784 257.471 299.262 254.292 298.732L253.963 300.704ZM272.96 303.802C276.149 304.308 279.32 304.803 282.469 305.285L282.771 303.308C279.626 302.826 276.46 302.332 273.273 301.826L272.96 303.802ZM291.999 306.713C295.204 307.182 298.385 307.636 301.54 308.072L301.814 306.091C298.665 305.655 295.489 305.203 292.289 304.734L291.999 306.713ZM311.092 309.349C314.312 309.763 317.501 310.157 320.658 310.527L320.891 308.541C317.742 308.171 314.56 307.778 311.348 307.365L311.092 309.349ZM330.237 311.591C333.474 311.928 336.673 312.238 339.832 312.519L340.009 310.526C336.861 310.247 333.672 309.938 330.445 309.602L330.237 311.591ZM349.441 313.285C352.697 313.515 355.905 313.708 359.063 313.862L359.16 311.864C356.018 311.711 352.824 311.519 349.581 311.29L349.441 313.285ZM368.693 314.212C371.981 314.287 375.206 314.315 378.367 314.289L378.351 312.289C375.213 312.314 372.008 312.288 368.739 312.212L368.693 314.212ZM388.04 314.035C391.339 313.884 394.556 313.666 397.687 313.376L397.503 311.385C394.405 311.672 391.219 311.888 387.948 312.037L388.04 314.035ZM407.268 312.22C410.571 311.72 413.76 311.123 416.827 310.422L416.382 308.472C413.367 309.161 410.227 309.749 406.969 310.242L407.268 312.22ZM426.171 307.836C429.361 306.78 432.387 305.58 435.237 304.225L434.379 302.418C431.61 303.734 428.662 304.905 425.543 305.937L426.171 307.836ZM443.707 299.375C446.448 297.49 448.958 295.401 451.221 293.093L449.793 291.693C447.625 293.903 445.215 295.911 442.574 297.727L443.707 299.375ZM457.319 285.4C459.028 282.697 460.483 279.776 461.673 276.628L459.802 275.921C458.659 278.947 457.263 281.745 455.629 284.331L457.319 285.4ZM464.3 267.203C464.601 265.628 464.847 264.008 465.04 262.34L463.053 262.111C462.866 263.732 462.626 265.304 462.336 266.829L464.3 267.203ZM465.04 262.34C465.234 260.66 465.37 258.991 465.451 257.334L463.453 257.236C463.374 258.85 463.242 260.475 463.053 262.111L465.04 262.34ZM465.294 247.328C465.029 243.984 464.558 240.686 463.911 237.429L461.949 237.819C462.582 241.005 463.042 244.225 463.3 247.486L465.294 247.328ZM461.464 227.75C460.498 224.582 459.387 221.449 458.161 218.347L456.301 219.082C457.51 222.14 458.602 225.222 459.551 228.334L461.464 227.75ZM454.209 209.216C452.811 206.228 451.33 203.264 449.794 200.32L448.021 201.245C449.546 204.169 451.014 207.107 452.397 210.063L454.209 209.216ZM445.077 191.595C443.473 188.71 441.839 185.837 440.205 182.975L438.468 183.966C440.102 186.827 441.73 189.692 443.33 192.567L445.077 191.595ZM435.311 174.386C433.682 171.504 432.079 168.628 430.529 165.75L428.768 166.699C430.327 169.593 431.938 172.482 433.57 175.371L435.311 174.386ZM426.007 156.997C424.548 154.026 423.175 151.05 421.917 148.063L420.073 148.84C421.349 151.868 422.739 154.879 424.212 157.878L426.007 156.997ZM418.454 138.883C417.423 135.759 416.549 132.619 415.862 129.456L413.907 129.881C414.611 133.119 415.505 136.326 416.554 139.509L418.454 138.883ZM414.389 119.815C414.113 116.604 414.057 113.365 414.252 110.089L412.256 109.97C412.054 113.347 412.113 116.684 412.396 119.986L414.389 119.815ZM415.557 100.457C416.213 97.3755 417.108 94.2552 418.268 91.0913L416.39 90.4026C415.198 93.654 414.277 96.8653 413.601 100.041L415.557 100.457ZM422.194 82.189C422.932 80.7576 423.726 79.3166 424.579 77.8656L422.855 76.8521C421.984 78.3342 421.172 79.8076 420.417 81.2726L422.194 82.189ZM424.579 77.8656C425.417 76.4407 426.294 75.0325 427.21 73.6413L425.539 72.542C424.605 73.9607 423.71 75.3975 422.855 76.8521L424.579 77.8656ZM433.086 65.5695C435.146 62.9959 437.335 60.4886 439.641 58.0496L438.188 56.6756C435.846 59.1525 433.62 61.7012 431.525 64.3199L433.086 65.5695ZM446.776 51.0493C449.221 48.8168 451.764 46.6506 454.391 44.5522L453.143 42.9895C450.483 45.114 447.907 47.3088 445.427 49.5722L446.776 51.0493ZM462.399 38.5434C465.114 36.6284 467.897 34.7798 470.738 32.9993L469.676 31.3047C466.806 33.1038 463.992 34.9724 461.246 36.9091L462.399 38.5434ZM479.363 27.8957C482.278 26.2677 485.237 24.7082 488.23 23.2187L487.339 21.4281C484.318 22.9315 481.331 24.5057 478.387 26.1495L479.363 27.8957ZM497.305 18.9585C500.374 17.6014 503.465 16.3169 506.568 15.1063L505.841 13.2432C502.711 14.4643 499.592 15.7602 496.496 17.1293L497.305 18.9585ZM515.991 11.6659C519.182 10.5796 522.373 9.5728 525.55 8.64711L524.99 6.72696C521.785 7.66098 518.566 8.67673 515.346 9.77258L515.991 11.6659ZM535.229 6.06651C538.534 5.26746 541.81 4.56037 545.042 3.94707L544.669 1.98213C541.404 2.60176 538.095 3.31587 534.759 4.12251L535.229 6.06651ZM554.924 2.34579C558.319 1.89272 561.645 1.5526 564.881 1.32763L564.742 -0.667552C561.462 -0.439499 558.094 -0.0949747 554.66 0.363366L554.924 2.34579ZM574.872 1.00312C578.349 1.02851 581.68 1.20873 584.838 1.54649L585.051 -0.442175C581.82 -0.787674 578.422 -0.971009 574.887 -0.996824L574.872 1.00312ZM594.61 3.23923C598.04 4.09889 601.143 5.20666 603.872 6.56366L604.762 4.77289C601.883 3.34102 598.64 2.18755 595.096 1.29923L594.61 3.23923ZM611.703 12.211C612.813 13.3965 613.762 14.677 614.541 16.0541L616.282 15.0699C615.421 13.5476 614.376 12.1394 613.162 10.8437L611.703 12.211Z\" fill=\"url(#paint0_linear_106_7281)\" fill-opacity=\"0.4\"/>\\n<defs>\\n<linearGradient id=\"paint0_linear_106_7281\" x1=\"-211.5\" y1=\"625.5\" x2=\"528.001\" y2=\"21.0007\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"white\"/>\\n<stop offset=\"0.193858\" stop-color=\"white\" stop-opacity=\"0\"/>\\n<stop offset=\"1\" stop-color=\"white\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1un6xmt\",\"data-framer-name\":\"Vector 2259\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:591,intrinsicWidth:507,name:\"Vector 2259\",svg:'<svg width=\"507\" height=\"591\" viewBox=\"-1 -1 507 591\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M420.595 202.689L419.834 202.04L420.595 202.689ZM221.921 236.507L220.967 236.209L221.921 236.507ZM108.75 578.843C108.738 579.395 109.176 579.852 109.728 579.864C110.28 579.876 110.737 579.438 110.749 578.886L108.75 578.843ZM384.784 4.15532C385.193 4.52658 385.825 4.4961 386.197 4.08722C386.568 3.67834 386.537 3.04591 386.128 2.67465L384.784 4.15532ZM393.094 9.31723C392.703 8.92681 392.07 8.92698 391.679 9.31761C391.289 9.70824 391.289 10.3414 391.68 10.7318L393.094 9.31723ZM398.291 17.6375C398.664 18.0446 399.297 18.072 399.704 17.6988C400.111 17.3256 400.138 16.693 399.765 16.2859L398.291 17.6375ZM406.131 23.5288C405.775 23.1064 405.144 23.0525 404.722 23.4084C404.299 23.7643 404.245 24.3951 404.601 24.8175L406.131 23.5288ZM410.606 32.251C410.944 32.6877 411.572 32.7678 412.009 32.4297C412.445 32.0917 412.525 31.4636 412.187 31.0269L410.606 32.251ZM417.924 38.7717C417.605 38.321 416.981 38.2145 416.53 38.5337C416.08 38.8529 415.973 39.4771 416.292 39.9277L417.924 38.7717ZM421.648 47.8493C421.947 48.3136 422.566 48.4475 423.03 48.1484C423.494 47.8493 423.628 47.2305 423.329 46.7662L421.648 47.8493ZM428.361 54.9847C428.083 54.507 427.471 54.3446 426.994 54.6219C426.516 54.8992 426.354 55.5112 426.631 55.9888L428.361 54.9847ZM431.223 64.3621C431.476 64.8529 432.079 65.0453 432.57 64.7919C433.061 64.5385 433.253 63.9352 433 63.4445L431.223 64.3621ZM437.202 72.133C436.975 71.6296 436.383 71.4055 435.879 71.6326C435.376 71.8596 435.152 72.4518 435.379 72.9552L437.202 72.133ZM439.053 81.7565C439.25 82.2721 439.829 82.5296 440.344 82.3318C440.86 82.1339 441.118 81.5555 440.92 81.0399L439.053 81.7565ZM444.103 90.1584C443.937 89.6316 443.376 89.3386 442.849 89.5042C442.322 89.6698 442.029 90.2311 442.195 90.758L444.103 90.1584ZM444.748 99.9381C444.878 100.475 445.419 100.805 445.955 100.675C446.492 100.545 446.822 100.005 446.692 99.4681L444.748 99.9381ZM448.625 108.939C448.535 108.394 448.02 108.026 447.475 108.116C446.93 108.207 446.562 108.722 446.652 109.266L448.625 108.939ZM447.847 118.707C447.895 119.257 448.38 119.664 448.93 119.617C449.48 119.569 449.888 119.084 449.84 118.534L447.847 118.707ZM450.278 128.205C450.276 127.653 449.827 127.207 449.274 127.208C448.722 127.21 448.276 127.659 448.278 128.212L450.278 128.205ZM447.898 137.703C447.852 138.253 448.26 138.737 448.811 138.783C449.361 138.829 449.845 138.421 449.891 137.87L447.898 137.703ZM448.649 147.469C448.745 146.925 448.381 146.407 447.837 146.312C447.293 146.216 446.775 146.58 446.679 147.124L448.649 147.469ZM444.613 156.403C444.469 156.936 444.784 157.486 445.317 157.63C445.85 157.774 446.399 157.459 446.543 156.926L444.613 156.403ZM443.59 166.157C443.782 165.639 443.518 165.064 443 164.872C442.482 164.68 441.906 164.945 441.715 165.463L443.59 166.157ZM438.036 174.211C437.801 174.71 438.014 175.306 438.514 175.542C439.013 175.778 439.609 175.564 439.845 175.065L438.036 174.211ZM435.359 183.624C435.635 183.146 435.471 182.534 434.993 182.258C434.515 181.982 433.903 182.146 433.627 182.624L435.359 183.624ZM428.555 190.668C428.243 191.124 428.359 191.746 428.815 192.058C429.27 192.371 429.893 192.254 430.205 191.799L428.555 190.668ZM424.461 199.566C424.805 199.133 424.733 198.504 424.301 198.161C423.869 197.817 423.24 197.889 422.896 198.321L424.461 199.566ZM416.488 205.879C416.12 206.291 416.156 206.924 416.568 207.291C416.98 207.659 417.613 207.623 417.98 207.21L416.488 205.879ZM411.025 214.66C411.411 214.265 411.404 213.632 411.009 213.246C410.614 212.86 409.981 212.867 409.595 213.262L411.025 214.66ZM402.37 220.316C401.966 220.692 401.944 221.325 402.321 221.729C402.697 222.133 403.33 222.155 403.734 221.779L402.37 220.316ZM396.117 228.549C396.539 228.192 396.591 227.561 396.234 227.139C395.877 226.718 395.246 226.666 394.824 227.023L396.117 228.549ZM386.968 233.365C386.53 233.701 386.447 234.329 386.784 234.767C387.12 235.205 387.748 235.287 388.186 234.95L386.968 233.365ZM379.943 240.973C380.396 240.658 380.509 240.035 380.194 239.581C379.879 239.127 379.256 239.015 378.802 239.33L379.943 240.973ZM370.36 244.888C369.891 245.18 369.748 245.797 370.04 246.265C370.333 246.734 370.95 246.877 371.418 246.585L370.36 244.888ZM362.629 251.769C363.112 251.501 363.285 250.892 363.016 250.409C362.748 249.927 362.139 249.753 361.656 250.022L362.629 251.769ZM352.71 254.715C352.215 254.959 352.011 255.558 352.255 256.054C352.499 256.549 353.099 256.753 353.594 256.509L352.71 254.715ZM344.333 260.785C344.84 260.566 345.074 259.978 344.856 259.471C344.637 258.963 344.049 258.73 343.541 258.948L344.333 260.785ZM334.17 262.704C333.652 262.896 333.388 263.472 333.58 263.989C333.772 264.507 334.347 264.771 334.865 264.579L334.17 262.704ZM325.194 267.876C325.721 267.712 326.015 267.152 325.851 266.624C325.687 266.097 325.127 265.803 324.599 265.967L325.194 267.876ZM314.867 268.706C314.331 268.841 314.007 269.384 314.141 269.92C314.276 270.455 314.82 270.78 315.355 270.645L314.867 268.706ZM305.377 272.855C305.919 272.752 306.275 272.228 306.171 271.686C306.067 271.143 305.544 270.787 305.001 270.891L305.377 272.855ZM295.036 272.485C294.488 272.556 294.101 273.057 294.172 273.604C294.242 274.152 294.743 274.539 295.291 274.469L295.036 272.485ZM285.139 275.438C285.691 275.404 286.11 274.929 286.076 274.378C286.042 273.827 285.567 273.408 285.016 273.442L285.139 275.438ZM274.922 273.699C274.37 273.692 273.916 274.134 273.91 274.687C273.903 275.239 274.345 275.692 274.898 275.699L274.922 273.699ZM264.67 275.152C265.22 275.206 265.709 274.803 265.762 274.254C265.816 273.704 265.413 273.215 264.864 273.162L264.67 275.152ZM254.926 271.7C254.385 271.591 253.858 271.941 253.748 272.483C253.639 273.024 253.99 273.551 254.531 273.66L254.926 271.7ZM244.619 271.009C245.141 271.188 245.71 270.91 245.889 270.387C246.068 269.865 245.789 269.296 245.266 269.117L244.619 271.009ZM236.143 265.091C235.662 264.819 235.052 264.99 234.781 265.471C234.51 265.952 234.68 266.562 235.161 266.833L236.143 265.091ZM226.846 260.615C227.234 261.008 227.867 261.012 228.26 260.623C228.653 260.235 228.657 259.602 228.269 259.209L226.846 260.615ZM222.964 251.124C222.771 250.606 222.195 250.343 221.677 250.537C221.16 250.73 220.897 251.306 221.09 251.823L222.964 251.124ZM219.862 241.371C219.8 241.92 220.195 242.415 220.744 242.477C221.293 242.539 221.788 242.145 221.85 241.596L219.862 241.371ZM224.724 232.494C224.997 232.014 224.829 231.403 224.349 231.131C223.868 230.858 223.258 231.026 222.985 231.506L224.724 232.494ZM230.077 224.196C229.605 224.482 229.453 225.097 229.739 225.569C230.025 226.042 230.64 226.194 231.112 225.908L230.077 224.196ZM239.942 222.923C240.489 222.846 240.87 222.341 240.793 221.794C240.716 221.247 240.211 220.866 239.664 220.943L239.942 222.923ZM249.682 220.888C249.133 220.828 248.639 221.224 248.579 221.773C248.519 222.322 248.915 222.816 249.464 222.876L249.682 220.888ZM258.889 224.752C259.421 224.901 259.973 224.591 260.122 224.059C260.271 223.527 259.961 222.975 259.429 222.826L258.889 224.752ZM268.792 226.104C268.282 225.891 267.696 226.132 267.484 226.642C267.271 227.152 267.512 227.737 268.022 227.95L268.792 226.104ZM276.767 232.138C277.253 232.4 277.86 232.219 278.122 231.733C278.385 231.247 278.204 230.641 277.718 230.378L276.767 232.138ZM286.187 235.463C285.727 235.158 285.106 235.284 284.801 235.745C284.496 236.205 284.622 236.826 285.083 237.131L286.187 235.463ZM292.941 242.833C293.374 243.177 294.003 243.104 294.346 242.671C294.689 242.238 294.616 241.609 294.184 241.266L292.941 242.833ZM301.655 247.731C301.254 247.352 300.621 247.37 300.242 247.772C299.862 248.174 299.881 248.806 300.282 249.186L301.655 247.731ZM307.03 256.155C307.395 256.569 308.027 256.609 308.441 256.243C308.855 255.878 308.895 255.246 308.529 254.832L307.03 256.155ZM314.701 262.556C314.379 262.107 313.754 262.005 313.306 262.328C312.857 262.65 312.755 263.275 313.078 263.724L314.701 262.556ZM318.291 271.882C318.561 272.364 319.171 272.535 319.652 272.265C320.134 271.995 320.305 271.385 320.035 270.904L318.291 271.882ZM324.331 279.832C324.124 279.32 323.542 279.072 323.03 279.278C322.517 279.484 322.269 280.067 322.475 280.579L324.331 279.832ZM325.42 289.757C325.549 290.294 326.088 290.626 326.625 290.497C327.163 290.368 327.494 289.829 327.365 289.292L325.42 289.757ZM328.886 299.121C328.848 298.57 328.37 298.154 327.819 298.192C327.268 298.231 326.853 298.708 326.891 299.259L328.886 299.121ZM326.713 308.846C326.654 309.395 327.051 309.888 327.6 309.947C328.149 310.007 328.642 309.61 328.701 309.06L326.713 308.846ZM326.754 318.829C326.909 318.299 326.606 317.743 326.076 317.588C325.545 317.433 324.99 317.737 324.835 318.267L326.754 318.829ZM321.373 327.231C321.134 327.729 321.342 328.327 321.84 328.566C322.337 328.806 322.935 328.597 323.175 328.1L321.373 327.231ZM318.235 336.671C318.544 336.212 318.423 335.591 317.965 335.282C317.507 334.974 316.885 335.095 316.577 335.553L318.235 336.671ZM310.684 343.277C310.328 343.699 310.383 344.33 310.806 344.686C311.229 345.041 311.859 344.986 312.215 344.563L310.684 343.277ZM305.626 351.817C306.012 351.422 306.005 350.789 305.61 350.403C305.215 350.017 304.582 350.024 304.196 350.419L305.626 351.817ZM297.215 357.103C296.804 357.473 296.771 358.105 297.14 358.515C297.509 358.926 298.142 358.959 298.552 358.59L297.215 357.103ZM291.1 364.932C291.53 364.585 291.597 363.955 291.25 363.525C290.903 363.096 290.273 363.029 289.843 363.375L291.1 364.932ZM282.169 369.292C281.725 369.62 281.631 370.246 281.959 370.69C282.287 371.135 282.913 371.229 283.357 370.901L282.169 369.292ZM275.404 376.557C275.859 376.244 275.975 375.622 275.662 375.167C275.349 374.711 274.727 374.596 274.272 374.908L275.404 376.557ZM266.202 380.291C265.738 380.591 265.607 381.211 265.907 381.674C266.208 382.137 266.827 382.269 267.291 381.968L266.202 380.291ZM259.064 387.194C259.533 386.902 259.676 386.286 259.384 385.817C259.092 385.348 258.475 385.205 258.006 385.497L259.064 387.194ZM249.726 390.581C249.254 390.868 249.103 391.483 249.39 391.955C249.676 392.427 250.291 392.578 250.763 392.292L249.726 390.581ZM242.422 397.312C242.896 397.028 243.051 396.414 242.767 395.94C242.483 395.466 241.869 395.312 241.395 395.595L242.422 397.312ZM233.044 400.587C232.57 400.871 232.416 401.485 232.699 401.959C232.983 402.433 233.597 402.587 234.071 402.304L233.044 400.587ZM225.736 407.314C226.209 407.028 226.36 406.413 226.074 405.94C225.788 405.468 225.173 405.317 224.701 405.603L225.736 407.314ZM216.392 410.685C215.923 410.976 215.778 411.592 216.069 412.062C216.359 412.531 216.976 412.676 217.445 412.385L216.392 410.685ZM209.225 417.561C209.69 417.263 209.825 416.644 209.527 416.179C209.229 415.715 208.611 415.579 208.146 415.877L209.225 417.561ZM199.99 421.219C199.531 421.527 199.409 422.148 199.716 422.607C200.024 423.066 200.645 423.188 201.104 422.881L199.99 421.219ZM193.111 428.383C193.562 428.064 193.669 427.44 193.35 426.989C193.031 426.538 192.406 426.431 191.956 426.75L193.111 428.383ZM184.076 432.507C183.635 432.84 183.548 433.467 183.88 433.908C184.213 434.349 184.84 434.436 185.281 434.104L184.076 432.507ZM177.648 440.077C178.077 439.729 178.142 439.099 177.794 438.671C177.446 438.242 176.816 438.177 176.387 438.525L177.648 440.077ZM168.93 444.834C168.515 445.199 168.476 445.831 168.841 446.246C169.207 446.66 169.839 446.699 170.253 446.334L168.93 444.834ZM163.137 452.899C163.534 452.515 163.545 451.882 163.161 451.485C162.777 451.088 162.144 451.077 161.747 451.461L163.137 452.899ZM154.886 458.425C154.509 458.828 154.529 459.461 154.932 459.838C155.335 460.216 155.968 460.195 156.346 459.792L154.886 458.425ZM149.925 467.024C150.281 466.601 150.226 465.97 149.803 465.615C149.38 465.259 148.749 465.314 148.394 465.737L149.925 467.024ZM142.317 473.4C141.987 473.843 142.077 474.469 142.52 474.8C142.962 475.13 143.589 475.04 143.92 474.597L142.317 473.4ZM138.369 482.506C138.673 482.044 138.545 481.424 138.084 481.121C137.622 480.817 137.002 480.945 136.699 481.406L138.369 482.506ZM131.574 489.738C131.299 490.217 131.465 490.828 131.944 491.103C132.423 491.378 133.034 491.212 133.309 490.733L131.574 489.738ZM128.764 499.257C129.008 498.762 128.805 498.162 128.31 497.917C127.815 497.673 127.215 497.876 126.971 498.371L128.764 499.257ZM122.904 507.274C122.69 507.783 122.929 508.369 123.438 508.584C123.947 508.798 124.533 508.558 124.748 508.049L122.904 507.274ZM121.265 517.082C121.448 516.561 121.174 515.99 120.653 515.807C120.132 515.623 119.561 515.897 119.378 516.418L121.265 517.082ZM116.392 525.759C116.239 526.29 116.545 526.844 117.076 526.997C117.606 527.15 118.161 526.844 118.314 526.313L116.392 525.759ZM115.898 535.637C116.022 535.099 115.686 534.562 115.148 534.438C114.61 534.314 114.073 534.65 113.949 535.188L115.898 535.637ZM112.004 544.744C111.908 545.288 112.271 545.807 112.815 545.904C113.358 546 113.877 545.637 113.974 545.093L112.004 544.744ZM112.515 554.674C112.585 554.126 112.198 553.625 111.65 553.555C111.102 553.485 110.601 553.872 110.531 554.42L112.515 554.674ZM109.504 564.202C109.458 564.753 109.868 565.236 110.418 565.281C110.969 565.327 111.452 564.917 111.497 564.367L109.504 564.202ZM110.905 573.953C110.928 573.401 110.499 572.935 109.947 572.912C109.395 572.889 108.929 573.318 108.906 573.87L110.905 573.953ZM381.217 1.002C382.387 2.0079 383.577 3.05953 384.784 4.15532L386.128 2.67465C384.909 1.56704 383.705 0.503471 382.521 -0.514456L381.217 1.002ZM391.68 10.7318C393.862 12.9125 396.072 15.2172 398.291 17.6375L399.765 16.2859C397.526 13.8442 395.296 11.5185 393.094 9.31723L391.68 10.7318ZM404.601 24.8175C406.616 27.2087 408.623 29.6887 410.606 32.251L412.187 31.0269C410.187 28.4422 408.163 25.9407 406.131 23.5288L404.601 24.8175ZM416.292 39.9277C418.116 42.5017 419.905 45.1441 421.648 47.8493L423.329 46.7662C421.57 44.0355 419.764 41.3689 417.924 38.7717L416.292 39.9277ZM426.631 55.9888C428.221 58.7275 429.755 61.5202 431.223 64.3621L433 63.4445C431.517 60.5723 429.966 57.7507 428.361 54.9847L426.631 55.9888ZM435.379 72.9552C436.683 75.8477 437.911 78.783 439.053 81.7565L440.92 81.0399C439.764 78.0293 438.521 75.0588 437.202 72.133L435.379 72.9552ZM442.195 90.758C443.147 93.7866 444.001 96.8481 444.748 99.9381L446.692 99.4681C445.934 96.3328 445.067 93.228 444.103 90.1584L442.195 90.758ZM446.652 109.266C447.171 112.391 447.573 115.54 447.847 118.707L449.84 118.534C449.561 115.313 449.152 112.113 448.625 108.939L446.652 109.266ZM448.278 128.212C448.288 131.362 448.165 134.528 447.898 137.703L449.891 137.87C450.163 134.636 450.288 131.412 450.278 128.205L448.278 128.212ZM446.679 147.124C446.138 150.212 445.452 153.307 444.613 156.403L446.543 156.926C447.398 153.771 448.097 150.617 448.649 147.469L446.679 147.124ZM441.715 165.463C440.635 168.381 439.412 171.298 438.036 174.211L439.845 175.065C441.245 172.1 442.491 169.129 443.59 166.157L441.715 165.463ZM433.627 182.624C432.075 185.313 430.387 187.995 428.555 190.668L430.205 191.799C432.065 189.083 433.781 186.358 435.359 183.624L433.627 182.624ZM422.896 198.321C421.908 199.563 420.888 200.803 419.834 202.04L421.356 203.337C422.424 202.083 423.459 200.826 424.461 199.566L422.896 198.321ZM419.834 202.04C418.727 203.34 417.611 204.619 416.488 205.879L417.98 207.21C419.114 205.939 420.239 204.648 421.356 203.337L419.834 202.04ZM409.595 213.262C407.215 215.695 404.806 218.046 402.37 220.316L403.734 221.779C406.192 219.488 408.623 217.116 411.025 214.66L409.595 213.262ZM394.824 227.023C392.228 229.223 389.607 231.336 386.968 233.365L388.186 234.95C390.851 232.903 393.496 230.77 396.117 228.549L394.824 227.023ZM378.802 239.33C376.002 241.273 373.186 243.125 370.36 244.888L371.418 246.585C374.272 244.804 377.116 242.935 379.943 240.973L378.802 239.33ZM361.656 250.022C358.678 251.681 355.694 253.244 352.71 254.715L353.594 256.509C356.608 255.023 359.622 253.444 362.629 251.769L361.656 250.022ZM343.541 258.948C340.408 260.299 337.281 261.55 334.17 262.704L334.865 264.579C338.009 263.413 341.168 262.149 344.333 260.785L343.541 258.948ZM324.599 265.967C321.327 266.985 318.081 267.897 314.867 268.706L315.355 270.645C318.604 269.828 321.887 268.906 325.194 267.876L324.599 265.967ZM305.001 270.891C301.627 271.536 298.302 272.066 295.036 272.485L295.291 274.469C298.597 274.044 301.963 273.508 305.377 272.855L305.001 270.891ZM285.016 273.442C281.56 273.655 278.19 273.738 274.922 273.699L274.898 275.699C278.216 275.739 281.635 275.654 285.139 275.438L285.016 273.442ZM264.864 273.162C261.39 272.824 258.07 272.334 254.926 271.7L254.531 273.66C257.746 274.309 261.133 274.809 264.67 275.152L264.864 273.162ZM245.266 269.117C241.908 267.967 238.855 266.619 236.143 265.091L235.161 266.833C237.992 268.428 241.16 269.825 244.619 271.009L245.266 269.117ZM228.269 259.209C225.844 256.755 224.055 254.048 222.964 251.124L221.09 251.823C222.293 255.044 224.248 257.986 226.846 260.615L228.269 259.209ZM221.85 241.596C222.025 240.047 222.363 238.449 222.876 236.804L220.967 236.209C220.419 237.967 220.053 239.689 219.862 241.371L221.85 241.596ZM222.876 236.804C223.37 235.22 223.99 233.786 224.724 232.494L222.985 231.506C222.176 232.931 221.5 234.497 220.967 236.209L222.876 236.804ZM231.112 225.908C233.646 224.376 236.62 223.391 239.942 222.923L239.664 220.943C236.122 221.441 232.881 222.501 230.077 224.196L231.112 225.908ZM249.464 222.876C252.478 223.208 255.638 223.84 258.889 224.752L259.429 222.826C256.087 221.889 252.819 221.233 249.682 220.888L249.464 222.876ZM268.022 227.95C270.923 229.16 273.85 230.561 276.767 232.138L277.718 230.378C274.745 228.772 271.757 227.341 268.792 226.104L268.022 227.95ZM285.083 237.131C287.751 238.897 290.38 240.803 292.941 242.833L294.184 241.266C291.578 239.2 288.903 237.261 286.187 235.463L285.083 237.131ZM300.282 249.186C302.633 251.405 304.891 253.732 307.03 256.155L308.529 254.832C306.349 252.362 304.049 249.991 301.655 247.731L300.282 249.186ZM313.078 263.724C314.976 266.363 316.723 269.086 318.291 271.882L320.035 270.904C318.428 268.039 316.641 265.252 314.701 262.556L313.078 263.724ZM322.475 280.579C323.684 283.581 324.675 286.645 325.42 289.757L327.365 289.292C326.596 286.078 325.573 282.92 324.331 279.832L322.475 280.579ZM326.891 299.259C327.111 302.423 327.061 305.623 326.713 308.846L328.701 309.06C329.063 305.717 329.114 302.399 328.886 299.121L326.891 299.259ZM324.835 318.267C323.963 321.246 322.817 324.238 321.373 327.231L323.175 328.1C324.665 325.009 325.851 321.916 326.754 318.829L324.835 318.267ZM316.577 335.553C315.683 336.879 314.727 338.204 313.706 339.527L315.289 340.749C316.336 339.393 317.317 338.033 318.235 336.671L316.577 335.553ZM313.706 339.527C312.727 340.796 311.719 342.045 310.684 343.277L312.215 344.563C313.267 343.311 314.292 342.04 315.289 340.749L313.706 339.527ZM304.196 350.419C301.961 352.705 299.63 354.93 297.215 357.103L298.552 358.59C300.997 356.391 303.358 354.136 305.626 351.817L304.196 350.419ZM289.843 363.375C287.353 365.386 284.793 367.355 282.169 369.292L283.357 370.901C286.001 368.949 288.585 366.962 291.1 364.932L289.843 363.375ZM274.272 374.908C271.629 376.724 268.936 378.515 266.202 380.291L267.291 381.968C270.038 380.185 272.745 378.383 275.404 376.557L274.272 374.908ZM258.006 385.497C255.276 387.198 252.513 388.891 249.726 390.581L250.763 392.292C253.556 390.598 256.325 388.901 259.064 387.194L258.006 385.497ZM241.395 395.595C238.623 397.254 235.842 398.913 233.044 400.587L234.071 402.304C236.863 400.633 239.654 398.969 242.422 397.312L241.395 395.595ZM224.701 405.603C221.932 407.278 219.16 408.971 216.392 410.685L217.445 412.385C220.206 410.675 222.972 408.987 225.736 407.314L224.701 405.603ZM208.146 415.877C205.415 417.628 202.694 419.407 199.99 421.219L201.104 422.881C203.795 421.077 206.504 419.305 209.225 417.561L208.146 415.877ZM191.956 426.75C189.304 428.628 186.675 430.545 184.076 432.507L185.281 434.104C187.863 432.155 190.475 430.25 193.111 428.383L191.956 426.75ZM176.387 438.525C173.863 440.575 171.375 442.677 168.93 444.834L170.253 446.334C172.677 444.195 175.144 442.112 177.648 440.077L176.387 438.525ZM161.747 451.461C159.41 453.719 157.121 456.038 154.886 458.425L156.346 459.792C158.557 457.431 160.823 455.135 163.137 452.899L161.747 451.461ZM148.394 465.737C146.308 468.22 144.28 470.772 142.317 473.4L143.92 474.597C145.859 472.001 147.863 469.478 149.925 467.024L148.394 465.737ZM136.699 481.406C134.922 484.106 133.212 486.882 131.574 489.738L133.309 490.733C134.927 487.913 136.615 485.172 138.369 482.506L136.699 481.406ZM126.971 498.371C125.543 501.259 124.186 504.226 122.904 507.274L124.748 508.049C126.013 505.038 127.354 502.109 128.764 499.257L126.971 498.371ZM119.378 516.418C118.31 519.454 117.313 522.566 116.392 525.759L118.314 526.313C119.224 523.157 120.209 520.081 121.265 517.082L119.378 516.418ZM113.949 535.188C113.231 538.3 112.582 541.485 112.004 544.744L113.974 545.093C114.546 541.867 115.188 538.716 115.898 535.637L113.949 535.188ZM110.531 554.42C110.122 557.612 109.779 560.872 109.504 564.202L111.497 564.367C111.77 561.066 112.11 557.835 112.515 554.674L110.531 554.42ZM108.906 573.87C108.838 575.511 108.786 577.169 108.75 578.843L110.749 578.886C110.785 577.225 110.837 575.581 110.905 573.953L108.906 573.87Z\" fill=\"url(#paint0_linear_106_7282)\" fill-opacity=\"0.4\"/>\\n<defs>\\n<linearGradient id=\"paint0_linear_106_7282\" x1=\"130.064\" y1=\"501.992\" x2=\"603.815\" y2=\"-34.3846\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"white\" stop-opacity=\"0\"/>\\n<stop offset=\"0.506\" stop-color=\"white\"/>\\n<stop offset=\"1\" stop-color=\"white\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1i0v6ij\",\"data-framer-name\":\"Frame 1321314675\",name:\"Frame 1321314675\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1oapaoh\",\"data-framer-name\":\"Frame 19\",name:\"Frame 19\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-184kjol\",\"data-framer-name\":\"Discover\\u2028DRM Solutions\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:156,intrinsicWidth:692,name:\"Discover\\u2028DRM Solutions\",svg:'<svg width=\"692\" height=\"156\" viewBox=\"0 0 692 156\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M679.003 113.528C678.776 111.237 677.8 109.456 676.077 108.188C674.353 106.919 672.014 106.284 669.06 106.284C667.052 106.284 665.357 106.568 663.974 107.136C662.592 107.686 661.531 108.453 660.793 109.438C660.073 110.422 659.713 111.54 659.713 112.79C659.675 113.831 659.893 114.741 660.367 115.517C660.859 116.294 661.531 116.966 662.384 117.534C663.236 118.083 664.221 118.566 665.338 118.983C666.456 119.381 667.649 119.722 668.918 120.006L674.145 121.256C676.683 121.824 679.012 122.581 681.134 123.528C683.255 124.475 685.092 125.64 686.645 127.023C688.198 128.405 689.401 130.034 690.253 131.909C691.124 133.784 691.569 135.934 691.588 138.358C691.569 141.919 690.66 145.006 688.861 147.619C687.081 150.214 684.505 152.231 681.134 153.67C677.781 155.091 673.738 155.801 669.003 155.801C664.306 155.801 660.215 155.081 656.73 153.642C653.264 152.203 650.556 150.072 648.605 147.25C646.673 144.409 645.66 140.896 645.565 136.71H657.469C657.601 138.661 658.16 140.29 659.145 141.597C660.149 142.884 661.484 143.86 663.151 144.523C664.836 145.167 666.74 145.489 668.861 145.489C670.944 145.489 672.753 145.186 674.287 144.58C675.84 143.973 677.043 143.131 677.895 142.051C678.747 140.972 679.173 139.731 679.173 138.33C679.173 137.023 678.785 135.924 678.009 135.034C677.251 134.144 676.134 133.386 674.656 132.761C673.198 132.136 671.408 131.568 669.287 131.057L662.952 129.466C658.046 128.273 654.173 126.407 651.332 123.869C648.492 121.331 647.081 117.913 647.099 113.614C647.081 110.091 648.018 107.013 649.912 104.381C651.825 101.748 654.448 99.6932 657.781 98.2159C661.115 96.7386 664.903 96 669.145 96C673.463 96 677.232 96.7386 680.452 98.2159C683.69 99.6932 686.209 101.748 688.009 104.381C689.808 107.013 690.736 110.062 690.793 113.528H679.003Z\" fill=\"white\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M634.077 154.977V96.7954H621.833V133.386H621.321L596.208 96.7954H585.412L598.139 118.358L623.452 154.977H634.077Z\" fill=\"white\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M597.713 142.5H585.412V154.977H597.713V142.5Z\" fill=\"white\"/>\\n<path d=\"M582.909 125.886C582.909 132.231 581.707 137.629 579.302 142.08C576.915 146.53 573.658 149.93 569.529 152.278C565.419 154.608 560.798 155.773 555.665 155.773C550.495 155.773 545.855 154.598 541.745 152.25C537.635 149.902 534.387 146.502 532 142.051C529.614 137.6 528.421 132.212 528.421 125.886C528.421 119.542 529.614 114.144 532 109.693C534.387 105.242 537.635 101.852 541.745 99.5227C545.855 97.1742 550.495 96 555.665 96C560.798 96 565.419 97.1742 569.529 99.5227C573.658 101.852 576.915 105.242 579.302 109.693C581.707 114.144 582.909 119.542 582.909 125.886ZM570.438 125.886C570.438 121.777 569.822 118.311 568.591 115.489C567.379 112.667 565.665 110.527 563.449 109.068C561.233 107.61 558.639 106.881 555.665 106.881C552.692 106.881 550.097 107.61 547.881 109.068C545.665 110.527 543.942 112.667 542.711 115.489C541.499 118.311 540.892 121.777 540.892 125.886C540.892 129.996 541.499 133.462 542.711 136.284C543.942 139.106 545.665 141.246 547.881 142.705C550.097 144.163 552.692 144.892 555.665 144.892C558.639 144.892 561.233 144.163 563.449 142.705C565.665 141.246 567.379 139.106 568.591 136.284C569.822 133.462 570.438 129.996 570.438 125.886Z\" fill=\"white\"/>\\n<path d=\"M516.122 96.7954V154.977H503.821V96.7954H516.122Z\" fill=\"white\"/>\\n<path d=\"M444.968 106.937V96.7954H492.752V106.937H474.94V154.977H462.781V106.937H444.968Z\" fill=\"white\"/>\\n<path d=\"M421.562 97.7954H433.863V134.58C433.863 138.822 432.85 142.534 430.823 145.716C428.816 148.898 426.003 151.379 422.386 153.159C418.768 154.92 414.554 155.801 409.744 155.801C404.914 155.801 400.691 154.92 397.073 153.159C393.456 151.379 390.643 148.898 388.636 145.716C386.628 142.534 385.625 138.822 385.625 134.58V96.7954H397.926V133.528C397.926 135.744 398.409 137.714 399.375 139.437C400.359 141.161 401.742 142.515 403.522 143.5C405.303 144.485 407.376 144.977 409.744 144.977C412.13 144.977 414.204 144.485 415.965 143.5C417.746 142.515 419.119 141.161 420.085 139.437C421.07 137.714 421.562 135.744 421.562 133.528V97.7954Z\" fill=\"white\"/>\\n<path d=\"M337.034 154.977V96.7954H349.335V144.835H374.279V154.977H337.034Z\" fill=\"white\"/>\\n<path d=\"M324.722 125.886C324.722 132.231 323.519 137.629 321.114 142.08C318.728 146.53 315.47 149.93 311.341 152.278C307.231 154.608 302.61 155.773 297.478 155.773C292.307 155.773 287.667 154.598 283.557 152.25C279.447 149.902 276.199 146.502 273.813 142.051C271.427 137.6 270.233 132.212 270.233 125.886C270.233 119.542 271.427 114.144 273.813 109.693C276.199 105.242 279.447 101.852 283.557 99.5227C287.667 97.1742 292.307 96 297.478 96C302.61 96 307.231 97.1742 311.341 99.5227C315.47 101.852 318.728 105.242 321.114 109.693C323.519 114.144 324.722 119.542 324.722 125.886ZM312.25 125.886C312.25 121.777 311.635 118.311 310.404 115.489C309.192 112.667 307.478 110.527 305.262 109.068C303.046 107.61 300.451 106.881 297.478 106.881C294.504 106.881 291.91 107.61 289.694 109.068C287.478 110.527 285.754 112.667 284.523 115.489C283.311 118.311 282.705 121.777 282.705 125.886C282.705 129.996 283.311 133.462 284.523 136.284C285.754 139.106 287.478 141.246 289.694 142.705C291.91 144.163 294.504 144.892 297.478 144.892C300.451 144.892 303.046 144.163 305.262 142.705C307.478 141.246 309.192 139.106 310.404 136.284C311.635 133.462 312.25 129.996 312.25 125.886Z\" fill=\"white\"/>\\n<path d=\"M247.196 113.528C246.969 111.237 245.994 109.456 244.27 108.188C242.547 106.919 240.208 106.284 237.253 106.284C235.246 106.284 233.55 106.568 232.168 107.136C230.785 107.686 229.725 108.453 228.986 109.438C228.266 110.422 227.907 111.54 227.907 112.79C227.869 113.831 228.086 114.741 228.56 115.517C229.052 116.294 229.725 116.966 230.577 117.534C231.429 118.083 232.414 118.566 233.532 118.983C234.649 119.381 235.842 119.722 237.111 120.006L242.338 121.256C244.876 121.824 247.206 122.581 249.327 123.528C251.448 124.475 253.285 125.64 254.838 127.023C256.391 128.405 257.594 130.034 258.446 131.909C259.318 133.784 259.763 135.934 259.781 138.358C259.763 141.919 258.854 145.006 257.054 147.619C255.274 150.214 252.698 152.231 249.327 153.67C245.975 155.091 241.931 155.801 237.196 155.801C232.499 155.801 228.408 155.081 224.924 153.642C221.458 152.203 218.749 150.072 216.799 147.25C214.867 144.409 213.853 140.896 213.759 136.71H225.662C225.795 138.661 226.353 140.29 227.338 141.597C228.342 142.884 229.677 143.86 231.344 144.523C233.03 145.167 234.933 145.489 237.054 145.489C239.138 145.489 240.946 145.186 242.48 144.58C244.033 143.973 245.236 143.131 246.088 142.051C246.941 140.972 247.367 139.731 247.367 138.33C247.367 137.023 246.978 135.924 246.202 135.034C245.444 134.144 244.327 133.386 242.85 132.761C241.391 132.136 239.602 131.568 237.48 131.057L231.145 129.466C226.24 128.273 222.367 126.407 219.526 123.869C216.685 121.331 215.274 117.913 215.293 113.614C215.274 110.091 216.211 107.013 218.105 104.381C220.018 101.748 222.641 99.6932 225.975 98.2159C229.308 96.7386 233.096 96 237.338 96C241.656 96 245.425 96.7386 248.645 98.2159C251.884 99.6932 254.403 101.748 256.202 104.381C258.001 107.013 258.929 110.062 258.986 113.528H247.196Z\" fill=\"white\"/>\\n<path d=\"M117.515 96.7954H132.686L148.708 135.886H149.39L165.413 96.7954H180.583V154.977H168.651V117.108H168.169L153.112 154.693H144.987L129.93 116.966H129.447V154.977H117.515V96.7954Z\" fill=\"white\"/>\\n<path d=\"M21.0371 154.977H0.412109V96.7954H21.2076C27.0598 96.7954 32.0977 97.9602 36.3212 100.29C40.5447 102.6 43.7928 105.924 46.0655 110.261C48.3572 114.598 49.503 119.788 49.503 125.83C49.503 131.89 48.3572 137.098 46.0655 141.455C43.7928 145.811 40.5257 149.153 36.2644 151.483C32.0219 153.812 26.9462 154.977 21.0371 154.977ZM12.7132 144.437H20.5257C24.1621 144.437 27.2208 143.794 29.7019 142.506C32.2019 141.199 34.0769 139.182 35.3269 136.455C36.5958 133.708 37.2303 130.167 37.2303 125.83C37.2303 121.53 36.5958 118.017 35.3269 115.29C34.0769 112.562 32.2113 110.555 29.7303 109.267C27.2492 107.979 24.1905 107.335 20.5541 107.335H12.7132V144.437Z\" fill=\"white\"/>\\n<path d=\"M510.597 58.9772V0.79541H533.551C537.945 0.79541 541.695 1.5814 544.801 3.15337C547.926 4.7064 550.303 6.91284 551.932 9.77269C553.58 12.6136 554.404 15.9564 554.404 19.8011C554.404 23.6647 553.57 26.9886 551.904 29.7727C550.237 32.5378 547.822 34.659 544.659 36.1363C541.515 37.6136 537.708 38.3522 533.239 38.3522H517.869V28.4659H531.25C533.599 28.4659 535.549 28.1439 537.102 27.5C538.655 26.856 539.811 25.8901 540.568 24.6022C541.345 23.3144 541.733 21.714 541.733 19.8011C541.733 17.8693 541.345 16.2405 540.568 14.9147C539.811 13.589 538.646 12.5852 537.074 11.9034C535.521 11.2026 533.561 10.8522 531.193 10.8522H522.898V58.9772H510.597ZM542.017 32.5L556.477 58.9772H542.898L528.75 32.5H542.017Z\" fill=\"white\"/>\\n<path d=\"M458.412 58.9772V0.79541H497.617V10.9375H470.713V24.8011H495.6V34.9431H470.713V48.8352H497.73V58.9772H458.412Z\" fill=\"white\"/>\\n<path d=\"M415.939 0.79541L430.002 45H430.542L444.632 0.79541V42L438.212 58.9772H422.36L402.274 0.79541H415.939Z\" fill=\"white\"/>\\n<path d=\"M396.397 29.8864C396.397 36.2311 395.194 41.6288 392.789 46.0795C390.403 50.5303 387.145 53.9299 383.016 56.2784C378.906 58.608 374.285 59.7727 369.152 59.7727C363.982 59.7727 359.342 58.5985 355.232 56.25C351.122 53.9015 347.874 50.5019 345.488 46.0511C343.101 41.6004 341.908 36.2121 341.908 29.8864C341.908 23.5417 343.101 18.1439 345.488 13.6932C347.874 9.24243 351.122 5.85227 355.232 3.52273C359.342 1.17425 363.982 0 369.152 0C374.285 0 378.906 1.17425 383.016 3.52273C387.145 5.85227 390.403 9.24243 392.789 13.6932C395.194 18.1439 396.397 23.5417 396.397 29.8864ZM383.925 29.8864C383.925 25.7765 383.31 22.3106 382.079 19.4886C380.866 16.6667 379.152 14.5265 376.937 13.0682C374.721 11.6099 372.126 10.8807 369.152 10.8807C366.179 10.8807 363.584 11.6099 361.368 13.0682C359.152 14.5265 357.429 16.6667 356.198 19.4886C354.986 22.3106 354.38 25.7765 354.38 29.8864C354.38 33.9962 354.986 37.4621 356.198 40.2841C357.429 43.1061 359.152 45.2462 361.368 46.7045C363.584 48.1629 366.179 48.892 369.152 48.892C372.126 48.892 374.721 48.1629 376.937 46.7045C379.152 45.2462 380.866 43.1061 382.079 40.2841C383.31 37.4621 383.925 33.9962 383.925 29.8864Z\" fill=\"white\"/>\\n<path d=\"M330.91 21.1648H318.466C318.239 19.5549 317.775 18.125 317.074 16.875C316.374 15.6061 315.474 14.5265 314.376 13.6364C313.277 12.7462 312.008 12.0644 310.569 11.5909C309.148 11.1174 307.605 10.8807 305.938 10.8807C302.927 10.8807 300.304 11.6288 298.069 13.125C295.834 14.6023 294.101 16.7614 292.87 19.6023C291.639 22.4242 291.023 25.8523 291.023 29.8864C291.023 34.0341 291.639 37.5189 292.87 40.3409C294.12 43.1629 295.862 45.2936 298.097 46.733C300.332 48.1724 302.917 48.892 305.853 48.892C307.501 48.892 309.025 48.6742 310.427 48.2386C311.847 47.803 313.107 47.1686 314.205 46.3352C315.304 45.483 316.213 44.4508 316.932 43.2386C317.671 42.0265 318.182 40.6439 318.466 39.0909L330.91 39.1477C330.588 41.8182 329.783 44.3939 328.495 46.875C327.226 49.3371 325.512 51.5436 323.353 53.4943C321.213 55.4261 318.656 56.9602 315.682 58.0966C312.728 59.214 309.385 59.7727 305.654 59.7727C300.465 59.7727 295.824 58.5985 291.734 56.25C287.662 53.9015 284.442 50.5019 282.074 46.0511C279.726 41.6004 278.552 36.2121 278.552 29.8864C278.552 23.5417 279.745 18.1439 282.131 13.6932C284.518 9.24243 287.756 5.85227 291.847 3.52273C295.938 1.17425 300.54 0 305.654 0C309.025 0 312.15 0.473486 315.029 1.42046C317.927 2.36743 320.493 3.75 322.728 5.56818C324.963 7.36742 326.781 9.57386 328.182 12.1875C329.603 14.8011 330.512 17.7936 330.91 21.1648Z\" fill=\"white\"/>\\n<path d=\"M255.515 17.5284C255.288 15.2367 254.313 13.4564 252.589 12.1875C250.866 10.9186 248.527 10.2841 245.572 10.2841C243.564 10.2841 241.869 10.5682 240.487 11.1364C239.104 11.6856 238.044 12.4527 237.305 13.4375C236.585 14.4223 236.225 15.5398 236.225 16.7898C236.187 17.8314 236.405 18.7405 236.879 19.517C237.371 20.2936 238.044 20.9659 238.896 21.5341C239.748 22.0833 240.733 22.5663 241.85 22.983C242.968 23.3807 244.161 23.7216 245.43 24.0057L250.657 25.2557C253.195 25.8239 255.525 26.5814 257.646 27.5284C259.767 28.4754 261.604 29.6402 263.157 31.0227C264.71 32.4053 265.913 34.0341 266.765 35.9091C267.636 37.7841 268.081 39.9337 268.1 42.358C268.081 45.9186 267.172 49.0057 265.373 51.6193C263.593 54.214 261.017 56.2311 257.646 57.6705C254.294 59.0909 250.25 59.8011 245.515 59.8011C240.818 59.8011 236.727 59.0814 233.242 57.642C229.776 56.2027 227.068 54.072 225.117 51.25C223.186 48.4091 222.172 44.8958 222.078 40.7102H233.981C234.114 42.661 234.672 44.2898 235.657 45.5966C236.661 46.8845 237.996 47.8599 239.663 48.5227C241.348 49.1667 243.252 49.4886 245.373 49.4886C247.456 49.4886 249.265 49.1856 250.799 48.5795C252.352 47.9735 253.555 47.1307 254.407 46.0511C255.259 44.9716 255.686 43.7311 255.686 42.3295C255.686 41.0227 255.297 39.9242 254.521 39.0341C253.763 38.1439 252.646 37.3864 251.169 36.7614C249.71 36.1364 247.92 35.5682 245.799 35.0568L239.464 33.4659C234.559 32.2727 230.686 30.4072 227.845 27.8693C225.004 25.3314 223.593 21.9129 223.612 17.6136C223.593 14.0909 224.53 11.0133 226.424 8.38069C228.337 5.74811 230.96 3.69319 234.294 2.21591C237.627 0.738639 241.415 0 245.657 0C249.975 0 253.744 0.738639 256.964 2.21591C260.203 3.69319 262.722 5.74811 264.521 8.38069C266.32 11.0133 267.248 14.0625 267.305 17.5284H255.515Z\" fill=\"white\"/>\\n<path d=\"M210.632 0.79541V58.9772H198.331V0.79541H210.632Z\" fill=\"white\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M137.412 59.1477H158.026C163.932 59.1477 169.005 57.9836 173.245 55.6555C177.504 53.3273 180.77 49.9864 183.041 45.6329C185.332 41.2794 186.477 36.0741 186.477 30.0171C186.477 23.979 185.332 18.7926 183.041 14.458C180.77 10.1234 177.523 6.80152 173.302 4.49227C169.081 2.16409 164.046 1 158.196 1H137.412V11.5336H149.707H157.543C161.178 11.5336 164.235 12.1772 166.715 13.4643C169.194 14.7514 171.059 16.7578 172.308 19.4835C173.576 22.2092 174.211 25.7204 174.211 30.0171C174.211 34.3517 173.576 37.8912 172.308 40.6358C171.059 43.3615 169.185 45.3774 166.686 46.6834C164.206 47.9706 161.149 48.6141 157.515 48.6141H149.707H137.412V59.1477Z\" fill=\"white\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M58.4121 97V107.051H70.7066H78.9977C81.3639 107.051 83.323 107.401 84.8752 108.101C86.4464 108.783 87.6105 109.786 88.3677 111.111C89.1438 112.436 89.5318 114.064 89.5318 115.995C89.5318 117.906 89.1438 119.506 88.3677 120.793C87.6105 122.08 86.4558 123.045 84.9036 123.689C83.3514 124.332 81.4017 124.654 79.0545 124.654H74.75L90.696 155.148H104.268L91.9304 132.558C92.1078 132.481 92.2831 132.402 92.4564 132.32C95.6176 130.844 98.0311 128.724 99.6969 125.96C101.363 123.178 102.196 119.856 102.196 115.995C102.196 112.152 101.372 108.811 99.7253 105.972C98.0974 103.114 95.7217 100.909 92.5984 99.3566C89.494 97.7855 85.746 97 81.3544 97H58.4121Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:true,children:overlay4=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{pt3F4AErh:{y:4810.2},xzId7X5_T:{y:5465.6}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:54,y:5881,children:/*#__PURE__*/_jsxs(Container,{className:\"framer-no8vtu-container\",id:\"no8vtu\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xzId7X5_T:{variant:\"Lbx2z0obn\"}},children:/*#__PURE__*/_jsx(DRMButtons,{aGInQ8yqs:\"12px 32px 12px 32px\",e_9K_n2W1:\"var(--token-1e0d3100-3129-48d5-9eb1-d8fdbef76552, rgb(255, 255, 255))\",height:\"100%\",id:\"bQFQ70nwP\",j1DOsD4d3:j1DOsD4d3welu7j({overlay:overlay4}),layoutId:\"bQFQ70nwP\",M73giwIe7:\"var(--token-80bde714-14bd-4dfe-a71f-db496cd95503, rgb(173, 255, 0))\",Mx__Z5xAt:\"var(--token-4a37d03b-292a-4f1d-b60d-fbdb936ec64d, rgb(126, 185, 2))\",UCPnrSF2R:\"var(--token-3925fb8a-d62b-453e-b675-cdc563c5a26e, rgb(0, 0, 0))\",variant:\"rgVuWySCH\",VuqYa0svz:true,width:\"100%\",XTJ6CH_H_:\"var(--token-3925fb8a-d62b-453e-b675-cdc563c5a26e, rgb(0, 0, 0))\",ymWO_NR6m:\"Get started\",ZBs2WBkve:\"var(--token-80bde714-14bd-4dfe-a71f-db496cd95503, rgb(173, 255, 0))\"})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay4.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[0,0,1,1],type:\"tween\"}},className:\"framer-1d4kfy1\",\"data-framer-portal-id\":\"no8vtu\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[0,0,1,1],type:\"tween\"}},initial:{opacity:0}},\"VHmxCTRtQ\"),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1e3,width:\"100vw\",y:0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-t2ck8b-container\",\"data-framer-portal-id\":\"no8vtu\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{pt3F4AErh:{variant:\"nATCoEPXk\"},xzId7X5_T:{variant:\"pRVVxuEq2\"}},children:/*#__PURE__*/_jsx(DRMForm,{height:\"100%\",id:\"mjtF3brpB\",layoutId:\"mjtF3brpB\",nqkM2DFBa:nqkM2DFBa1wvko5h({overlay:overlay4}),style:{height:\"100%\",width:\"100%\"},variant:\"O9azcry8r\",width:\"100%\"})})})})]}),document.querySelector(\"#overlay\"))})})]})})})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-14vd783\",\"data-border\":true,\"data-framer-name\":\"Frame 1321314521\",name:\"Frame 1321314521\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1oh6tyc\",\"data-framer-name\":\"Frame 1321314521\",name:\"Frame 1321314521\",children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"augiA20Il\"},nodeId:\"vDwpVbzfq\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{pt3F4AErh:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(4964.2),sizes:\"88px\",src:\"https://framerusercontent.com/images/PYcl3iVXfise60YXNO0dtPBSAME.png\",srcSet:\"https://framerusercontent.com/images/PYcl3iVXfise60YXNO0dtPBSAME.png?scale-down-to=512 512w,https://framerusercontent.com/images/PYcl3iVXfise60YXNO0dtPBSAME.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/PYcl3iVXfise60YXNO0dtPBSAME.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/PYcl3iVXfise60YXNO0dtPBSAME.png 2093w\"}},xzId7X5_T:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(5607.6),sizes:\"82px\",src:\"https://framerusercontent.com/images/PYcl3iVXfise60YXNO0dtPBSAME.png\",srcSet:\"https://framerusercontent.com/images/PYcl3iVXfise60YXNO0dtPBSAME.png?scale-down-to=512 512w,https://framerusercontent.com/images/PYcl3iVXfise60YXNO0dtPBSAME.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/PYcl3iVXfise60YXNO0dtPBSAME.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/PYcl3iVXfise60YXNO0dtPBSAME.png 2093w\"}}},children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(6055),sizes:\"110px\",src:\"https://framerusercontent.com/images/PYcl3iVXfise60YXNO0dtPBSAME.png\",srcSet:\"https://framerusercontent.com/images/PYcl3iVXfise60YXNO0dtPBSAME.png?scale-down-to=512 512w,https://framerusercontent.com/images/PYcl3iVXfise60YXNO0dtPBSAME.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/PYcl3iVXfise60YXNO0dtPBSAME.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/PYcl3iVXfise60YXNO0dtPBSAME.png 2093w\"},className:\"framer-tgddgo framer-lux5qc\",\"data-framer-name\":\"image 22\",name:\"image 22\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xzId7X5_T:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"rgba(255, 255, 255, 0.7)\"},children:\"Dot Republic Media \\xa9 2024\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"rgba(255, 255, 255, 0.9)\"},children:\"Dot Republic Media \\xa9 2024\"})}),className:\"framer-hc8ze2\",\"data-framer-name\":\"Dot Republic Media \\xa9 2024\",fonts:[\"Inter\"],name:\"Dot Republic Media \\xa9 2024\",verticalAlignment:\"center\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-125l0mq\",\"data-framer-name\":\"Frame 1321314518\",name:\"Frame 1321314518\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"PTXLG3O4u\"},implicitPathVariables:undefined},{href:{webPageId:\"PTXLG3O4u\"},implicitPathVariables:undefined},{href:{webPageId:\"PTXLG3O4u\"},implicitPathVariables:undefined}],children:resolvedLinks9=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{pt3F4AErh:{width:undefined,y:5054.2},xzId7X5_T:{width:undefined,y:5686.6}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:21,width:\"max((100vw - 232px) / 4, 1px)\",y:6055,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1l1z9sb-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{pt3F4AErh:{LY5g3M3vs:resolvedLinks9[1]},xzId7X5_T:{LY5g3M3vs:resolvedLinks9[2]}},children:/*#__PURE__*/_jsx(DRMMenu,{height:\"100%\",id:\"gTyXEfQXR\",layoutId:\"gTyXEfQXR\",LY5g3M3vs:resolvedLinks9[0],rpXnzFsMx:\"MC Pay\",style:{width:\"100%\"},uoY6SfCrd:false,variant:\"U2YL0eKxq\",VkijJC07h:\"var(--token-80bde714-14bd-4dfe-a71f-db496cd95503, rgb(173, 255, 0))\",wFIMggBrX:\"var(--token-f6af3b12-db6a-4e0d-8861-5bd59035481d, rgb(250, 250, 252))\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"qptEHPWId\"},implicitPathVariables:undefined},{href:{webPageId:\"qptEHPWId\"},implicitPathVariables:undefined},{href:{webPageId:\"qptEHPWId\"},implicitPathVariables:undefined}],children:resolvedLinks10=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{pt3F4AErh:{width:undefined,y:5083.2},xzId7X5_T:{width:undefined,y:5717.6}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:21,width:\"max((100vw - 232px) / 4, 1px)\",y:6088,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1me2uft-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{pt3F4AErh:{LY5g3M3vs:resolvedLinks10[1]},xzId7X5_T:{LY5g3M3vs:resolvedLinks10[2]}},children:/*#__PURE__*/_jsx(DRMMenu,{height:\"100%\",id:\"x8dkAi_uw\",layoutId:\"x8dkAi_uw\",LY5g3M3vs:resolvedLinks10[0],rpXnzFsMx:\"Services\",style:{width:\"100%\"},uoY6SfCrd:false,variant:\"U2YL0eKxq\",VkijJC07h:\"var(--token-80bde714-14bd-4dfe-a71f-db496cd95503, rgb(173, 255, 0))\",wFIMggBrX:\"var(--token-f6af3b12-db6a-4e0d-8861-5bd59035481d, rgb(250, 250, 252))\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"r3MAk2kAR\"},implicitPathVariables:undefined},{href:{webPageId:\"r3MAk2kAR\"},implicitPathVariables:undefined},{href:{webPageId:\"r3MAk2kAR\"},implicitPathVariables:undefined}],children:resolvedLinks11=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{pt3F4AErh:{width:undefined,y:5112.2},xzId7X5_T:{width:undefined,y:5748.6}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:21,width:\"max((100vw - 232px) / 4, 1px)\",y:6121,children:/*#__PURE__*/_jsx(Container,{className:\"framer-48ih15-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{pt3F4AErh:{LY5g3M3vs:resolvedLinks11[1]},xzId7X5_T:{LY5g3M3vs:resolvedLinks11[2]}},children:/*#__PURE__*/_jsx(DRMMenu,{height:\"100%\",id:\"wpc1e2Wv3\",layoutId:\"wpc1e2Wv3\",LY5g3M3vs:resolvedLinks11[0],rpXnzFsMx:\"For business\",style:{width:\"100%\"},uoY6SfCrd:false,variant:\"U2YL0eKxq\",VkijJC07h:\"var(--token-80bde714-14bd-4dfe-a71f-db496cd95503, rgb(173, 255, 0))\",wFIMggBrX:\"var(--token-f6af3b12-db6a-4e0d-8861-5bd59035481d, rgb(250, 250, 252))\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"QPxdX8f9N\"},implicitPathVariables:undefined},{href:{webPageId:\"QPxdX8f9N\"},implicitPathVariables:undefined},{href:{webPageId:\"QPxdX8f9N\"},implicitPathVariables:undefined}],children:resolvedLinks12=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{pt3F4AErh:{width:undefined,y:5141.2},xzId7X5_T:{width:undefined,y:5779.6}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:21,width:\"max((100vw - 232px) / 4, 1px)\",y:6154,children:/*#__PURE__*/_jsx(Container,{className:\"framer-h45bdk-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{pt3F4AErh:{LY5g3M3vs:resolvedLinks12[1]},xzId7X5_T:{LY5g3M3vs:resolvedLinks12[2]}},children:/*#__PURE__*/_jsx(DRMMenu,{height:\"100%\",id:\"cIKJYtTH6\",layoutId:\"cIKJYtTH6\",LY5g3M3vs:resolvedLinks12[0],rpXnzFsMx:\"About\",style:{width:\"100%\"},uoY6SfCrd:false,variant:\"U2YL0eKxq\",VkijJC07h:\"var(--token-80bde714-14bd-4dfe-a71f-db496cd95503, rgb(173, 255, 0))\",wFIMggBrX:\"var(--token-f6af3b12-db6a-4e0d-8861-5bd59035481d, rgb(250, 250, 252))\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"WZg36nrrf\"},implicitPathVariables:undefined},{href:{webPageId:\"WZg36nrrf\"},implicitPathVariables:undefined},{href:{webPageId:\"WZg36nrrf\"},implicitPathVariables:undefined}],children:resolvedLinks13=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{pt3F4AErh:{width:undefined,y:5170.2},xzId7X5_T:{width:undefined,y:5810.6}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:21,width:\"max((100vw - 232px) / 4, 1px)\",y:6187,children:/*#__PURE__*/_jsx(Container,{className:\"framer-156cvuz-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{pt3F4AErh:{LY5g3M3vs:resolvedLinks13[1]},xzId7X5_T:{LY5g3M3vs:resolvedLinks13[2]}},children:/*#__PURE__*/_jsx(DRMMenu,{height:\"100%\",id:\"V_vBlw883\",layoutId:\"V_vBlw883\",LY5g3M3vs:resolvedLinks13[0],rpXnzFsMx:\"Privacy Policy\",style:{width:\"100%\"},uoY6SfCrd:false,variant:\"U2YL0eKxq\",VkijJC07h:\"var(--token-80bde714-14bd-4dfe-a71f-db496cd95503, rgb(173, 255, 0))\",wFIMggBrX:\"var(--token-f6af3b12-db6a-4e0d-8861-5bd59035481d, rgb(250, 250, 252))\",width:\"100%\"})})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-dbzgni\",\"data-framer-name\":\"Frame 1321314522\",name:\"Frame 1321314522\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-yhwf6i\",\"data-framer-name\":\"Frame 1321317422\",name:\"Frame 1321317422\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xzId7X5_T:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgba(255, 255, 255, 0.9)\"},children:\"Mail: \"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"rgba(255, 255, 255, 0.9)\"},children:\"Mail: \"})}),className:\"framer-22xkg\",\"data-framer-name\":\"Mail:\",fonts:[\"Inter-SemiBold\"],name:\"Mail:\",verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{pt3F4AErh:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgba(255, 255, 255, 0.7)\"},children:/*#__PURE__*/_jsx(Link,{href:\"mailto:info@dotrepublicmedia.com\",nodeId:\"JOcqdUFv7\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-styles-preset-15e800l\",\"data-styles-preset\":\"sly0QttF8\",children:\"info@dotrepublicmedia.com\"})})})})},xzId7X5_T:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgba(255, 255, 255, 0.7)\"},children:/*#__PURE__*/_jsx(Link,{href:\"mailto:info@dotrepublicmedia.com\",nodeId:\"JOcqdUFv7\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-styles-preset-15e800l\",\"data-styles-preset\":\"sly0QttF8\",children:\"info@dotrepublicmedia.com\"})})})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"rgba(255, 255, 255, 0.7)\"},children:/*#__PURE__*/_jsx(Link,{href:\"mailto:info@dotrepublicmedia.com\",nodeId:\"JOcqdUFv7\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-styles-preset-15e800l\",\"data-styles-preset\":\"sly0QttF8\",children:\"info@dotrepublicmedia.com\"})})})}),className:\"framer-kaeqfu\",\"data-framer-name\":\"info@dotrepublicmedia.com\",fonts:[\"Inter\"],name:\"info@dotrepublicmedia.com\",verticalAlignment:\"center\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-17fcg15\",\"data-framer-name\":\"Frame 1321317423\",name:\"Frame 1321317423\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xzId7X5_T:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgba(255, 255, 255, 0.9)\"},children:\"Phone:\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"rgba(255, 255, 255, 0.9)\"},children:\"Phone:\"})}),className:\"framer-hfvpmm\",\"data-framer-name\":\"Phone:\",fonts:[\"Inter-SemiBold\"],name:\"Phone:\",verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{pt3F4AErh:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgba(255, 255, 255, 0.7)\"},children:/*#__PURE__*/_jsx(Link,{href:\"tel:+92(42)35870530-31\",nodeId:\"uGewqrgUP\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-styles-preset-15e800l\",\"data-styles-preset\":\"sly0QttF8\",children:\"+92(42)35870530-31\"})})})})},xzId7X5_T:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgba(255, 255, 255, 0.7)\"},children:/*#__PURE__*/_jsx(Link,{href:\"tel:+92(42)35870530-31\",nodeId:\"uGewqrgUP\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-styles-preset-15e800l\",\"data-styles-preset\":\"sly0QttF8\",children:\"+92(42)35870530-31\"})})})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"rgba(255, 255, 255, 0.7)\"},children:/*#__PURE__*/_jsx(Link,{href:\"tel:+92(42)35870530-31\",nodeId:\"uGewqrgUP\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-styles-preset-15e800l\",\"data-styles-preset\":\"sly0QttF8\",children:\"+92(42)35870530-31\"})})})}),className:\"framer-1oprzx5\",\"data-framer-name\":\"+92(42)35870530-31\",fonts:[\"Inter\"],name:\"+92(42)35870530-31\",verticalAlignment:\"center\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-iwt1yu\",\"data-framer-name\":\"Frame 1321314519\",name:\"Frame 1321314519\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1pgrry3\",\"data-framer-name\":\"Frame 1321317421\",name:\"Frame 1321317421\",children:[/*#__PURE__*/_jsx(Link,{href:\"https://x.com/dot_republic?s=11&t=eqytHD4HiJaJyvjEwVL2Sw&mx=2\",nodeId:\"ukzDaSsFi\",openInNewTab:true,children:/*#__PURE__*/_jsxs(\"a\",{className:\"framer-bs3qah framer-lux5qc\",\"data-framer-name\":\"twitter\",name:\"twitter\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-37kl2c\",\"data-framer-name\":\"bg\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:33,intrinsicWidth:33,name:\"bg\",svg:'<svg width=\"33\" height=\"33\" viewBox=\"0 0 33 33\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M27.2002 0.801147H5.2002C2.43877 0.801147 0.200195 3.03972 0.200195 5.80115V27.8011C0.200195 30.5626 2.43877 32.8011 5.2002 32.8011H27.2002C29.9616 32.8011 32.2002 30.5626 32.2002 27.8011V5.80115C32.2002 3.03972 29.9616 0.801147 27.2002 0.801147Z\" fill=\"#A7DD34\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-r15ty7\",\"data-framer-name\":\"twitter\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:14,intrinsicWidth:17,name:\"twitter\",svg:'<svg width=\"17\" height=\"14\" viewBox=\"0 0 17 14\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M16.2002 1.80115C15.6002 2.10115 15.0002 2.20115 14.3002 2.30115C15.0002 1.90115 15.5002 1.30115 15.7002 0.501147C15.1002 0.901147 14.4002 1.10115 13.6002 1.30115C13.0002 0.701147 12.1002 0.301147 11.2002 0.301147C9.10019 0.301147 7.5002 2.30115 8.0002 4.30115C5.3002 4.20115 2.9002 2.90115 1.2002 0.901148C0.300195 2.40115 0.800195 4.30115 2.2002 5.30115C1.7002 5.30115 1.2002 5.10115 0.700195 4.90115C0.700195 6.40115 1.8002 7.80115 3.3002 8.20115C2.8002 8.30115 2.3002 8.40115 1.8002 8.30115C2.2002 9.60115 3.4002 10.6011 4.9002 10.6011C3.7002 11.5011 1.9002 12.0011 0.200195 11.8011C1.7002 12.7011 3.4002 13.3011 5.2002 13.3011C11.3002 13.3011 14.7002 8.20115 14.5002 3.50115C15.2002 3.10115 15.8002 2.50115 16.2002 1.80115Z\" fill=\"black\"/>\\n</svg>\\n',withExternalLayout:true})]})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.instagram.com/dotrepublicmedia_mcn/\",nodeId:\"VxOPn1gx2\",children:/*#__PURE__*/_jsxs(\"a\",{className:\"framer-fdp8bh framer-lux5qc\",\"data-framer-name\":\"instagram\",name:\"instagram\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-j345id\",\"data-framer-name\":\"bg\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:33,intrinsicWidth:33,name:\"bg\",svg:'<svg width=\"33\" height=\"33\" viewBox=\"0 0 33 33\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M27.2002 0.801147H5.2002C2.43877 0.801147 0.200195 3.03972 0.200195 5.80115V27.8011C0.200195 30.5626 2.43877 32.8011 5.2002 32.8011H27.2002C29.9616 32.8011 32.2002 30.5626 32.2002 27.8011V5.80115C32.2002 3.03972 29.9616 0.801147 27.2002 0.801147Z\" fill=\"#A7DD34\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1mfzffj\",\"data-framer-name\":\"instagram\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:18,intrinsicWidth:18,name:\"instagram\",svg:'<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M9.20039 2.0011C11.4004 2.0011 11.7004 2.0011 12.6004 2.0011C13.4004 2.0011 13.8004 2.2011 14.1004 2.3011C14.5004 2.5011 14.8004 2.6011 15.1004 2.9011C15.4004 3.2011 15.6004 3.5011 15.7004 3.9011C15.8004 4.2011 15.9004 4.6011 16.0004 5.4011C16.0004 6.3011 16.0004 6.5011 16.0004 8.8011C16.0004 11.1011 16.0004 11.3011 16.0004 12.2011C16.0004 13.0011 15.8004 13.4011 15.7004 13.7011C15.5004 14.1011 15.4004 14.4011 15.1004 14.7011C14.8004 15.0011 14.5004 15.2011 14.1004 15.3011C13.8004 15.4011 13.4004 15.5011 12.6004 15.6011C11.7004 15.6011 11.5004 15.6011 9.20039 15.6011C6.90039 15.6011 6.70039 15.6011 5.80039 15.6011C5.00039 15.6011 4.60039 15.4011 4.30039 15.3011C3.90039 15.1011 3.60039 15.0011 3.30039 14.7011C3.00039 14.4011 2.80039 14.1011 2.70039 13.7011C2.60039 13.4011 2.50039 13.0011 2.40039 12.2011C2.40039 11.3011 2.40039 11.1011 2.40039 8.8011C2.40039 6.5011 2.40039 6.3011 2.40039 5.4011C2.40039 4.6011 2.60039 4.2011 2.70039 3.9011C2.90039 3.5011 3.00039 3.2011 3.30039 2.9011C3.60039 2.6011 3.90039 2.4011 4.30039 2.3011C4.60039 2.2011 5.00039 2.1011 5.80039 2.0011C6.70039 2.0011 7.00039 2.0011 9.20039 2.0011ZM9.20039 0.501099C6.90039 0.501099 6.70039 0.501099 5.80039 0.501099C4.90039 0.501099 4.30039 0.701099 3.80039 0.901099C3.30039 1.1011 2.80039 1.4011 2.30039 1.9011C1.80039 2.4011 1.60039 2.8011 1.30039 3.4011C1.10039 3.9011 1.00039 4.5011 0.900391 5.4011C0.900391 6.3011 0.900391 6.6011 0.900391 8.8011C0.900391 11.1011 0.900391 11.3011 0.900391 12.2011C0.900391 13.1011 1.10039 13.7011 1.30039 14.2011C1.50039 14.7011 1.80039 15.2011 2.30039 15.7011C2.80039 16.2011 3.20039 16.4011 3.80039 16.7011C4.30039 16.9011 4.90039 17.0011 5.80039 17.1011C6.70039 17.1011 7.00039 17.1011 9.20039 17.1011C11.4004 17.1011 11.7004 17.1011 12.6004 17.1011C13.5004 17.1011 14.1004 16.9011 14.6004 16.7011C15.1004 16.5011 15.6004 16.2011 16.1004 15.7011C16.6004 15.2011 16.8004 14.8011 17.1004 14.2011C17.3004 13.7011 17.4004 13.1011 17.5004 12.2011C17.5004 11.3011 17.5004 11.0011 17.5004 8.8011C17.5004 6.6011 17.5004 6.3011 17.5004 5.4011C17.5004 4.5011 17.3004 3.9011 17.1004 3.4011C16.9004 2.9011 16.6004 2.4011 16.1004 1.9011C15.6004 1.4011 15.2004 1.2011 14.6004 0.901099C14.1004 0.701099 13.5004 0.601099 12.6004 0.501099C11.7004 0.501099 11.5004 0.501099 9.20039 0.501099Z\" fill=\"black\"/>\\n<path d=\"M9.20039 4.5011C6.80039 4.5011 4.90039 6.4011 4.90039 8.8011C4.90039 11.2011 6.80039 13.1011 9.20039 13.1011C11.6004 13.1011 13.5004 11.2011 13.5004 8.8011C13.5004 6.4011 11.6004 4.5011 9.20039 4.5011ZM9.20039 11.6011C7.70039 11.6011 6.40039 10.4011 6.40039 8.8011C6.40039 7.3011 7.60039 6.0011 9.20039 6.0011C10.7004 6.0011 12.0004 7.2011 12.0004 8.8011C12.0004 10.3011 10.7004 11.6011 9.20039 11.6011Z\" fill=\"black\"/>\\n<path d=\"M13.6004 5.4011C14.1527 5.4011 14.6004 4.95338 14.6004 4.4011C14.6004 3.84881 14.1527 3.4011 13.6004 3.4011C13.0481 3.4011 12.6004 3.84881 12.6004 4.4011C12.6004 4.95338 13.0481 5.4011 13.6004 5.4011Z\" fill=\"black\"/>\\n</svg>\\n',withExternalLayout:true})]})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.linkedin.com/company/dot-republic-media/\",nodeId:\"OrtKF2tCX\",children:/*#__PURE__*/_jsxs(\"a\",{className:\"framer-1dtsiqz framer-lux5qc\",\"data-framer-name\":\"linkedin\",name:\"linkedin\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-9z5r6x\",\"data-framer-name\":\"bg\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:33,intrinsicWidth:33,name:\"bg\",svg:'<svg width=\"33\" height=\"33\" viewBox=\"0 0 33 33\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M27.2002 0.801147H5.2002C2.43877 0.801147 0.200195 3.03972 0.200195 5.80115V27.8011C0.200195 30.5626 2.43877 32.8011 5.2002 32.8011H27.2002C29.9616 32.8011 32.2002 30.5626 32.2002 27.8011V5.80115C32.2002 3.03972 29.9616 0.801147 27.2002 0.801147Z\" fill=\"#A7DD34\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-16t5n7m\",\"data-framer-name\":\"linkedin\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:17,intrinsicWidth:17,name:\"linkedin\",svg:'<svg width=\"17\" height=\"17\" viewBox=\"0 0 17 17\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M3.8002 16.8011H0.400192V6.10115H3.8002V16.8011ZM2.1002 4.60115C1.0002 4.60115 0.200195 3.80115 0.200195 2.70115C0.200195 1.60115 1.1002 0.801147 2.1002 0.801147C3.2002 0.801147 4.0002 1.60115 4.0002 2.70115C4.0002 3.80115 3.2002 4.60115 2.1002 4.60115ZM16.2002 16.8011H12.8002V11.0011C12.8002 9.30115 12.1002 8.80115 11.1002 8.80115C10.1002 8.80115 9.10019 9.60115 9.10019 11.1011V16.8011H5.7002V6.10115H8.90019V7.60115C9.20019 6.90115 10.4002 5.80115 12.1002 5.80115C14.0002 5.80115 16.0002 6.90115 16.0002 10.2011V16.8011H16.2002Z\" fill=\"black\"/>\\n</svg>\\n',withExternalLayout:true})]})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{pt3F4AErh:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"130%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgba(255, 255, 255, 0.7)\"},children:\"P. O. Box 390667, Dubai World Central, Aviation City, Dubai, UAE\"})})},xzId7X5_T:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"130%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgba(255, 255, 255, 0.7)\"},children:\"P. O. Box 390667, Dubai World Central, Aviation City, Dubai, UAE\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"rgba(255, 255, 255, 0.7)\"},children:\"P. O. Box 390667, Dubai World Central, Aviation City, Dubai, UAE\"})}),className:\"framer-1dd2teq\",\"data-framer-name\":\"P. O. Box 390667, Dubai World Central, Aviation City, Dubai, UAE\",fonts:[\"Inter\"],name:\"P. O. Box 390667, Dubai World Central, Aviation City, Dubai, UAE\",verticalAlignment:\"center\",withExternalLayout:true})})]})]})]})]}),/*#__PURE__*/_jsx(\"div\",{className:cx(serializationHash,...sharedStyleClassNames),id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",`.${metadata.bodyClassName}-framer-1B44b { background: var(--token-f6af3b12-db6a-4e0d-8861-5bd59035481d, rgb(250, 250, 252)) /* {\"name\":\"BG\"} */; }`,\".framer-1B44b.framer-lux5qc, .framer-1B44b .framer-lux5qc { display: block; }\",\".framer-1B44b.framer-72rtr7 { align-content: center; align-items: center; background-color: var(--token-f6af3b12-db6a-4e0d-8861-5bd59035481d, #fafafc); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 150px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1440px; }\",\".framer-1B44b .framer-1wx8h4h { -webkit-backdrop-filter: blur(20px); align-content: center; align-items: center; backdrop-filter: blur(20px); background-color: rgba(250, 250, 252, 0.8); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 128px; height: min-content; justify-content: center; left: 0px; overflow: visible; padding: 8px 0px 8px 0px; position: fixed; right: 0px; top: 0px; z-index: 2; }\",\".framer-1B44b .framer-ky0zir { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: hidden; padding: 0px; position: relative; width: 1224px; }\",\".framer-1B44b .framer-1jtvkbi { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 47px; justify-content: center; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: 104px; }\",\".framer-1B44b .framer-8yc6bj, .framer-1B44b .framer-1wvh0fk { aspect-ratio: 2.63265306122449 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 39px); position: relative; width: 101px; }\",\".framer-1B44b .framer-1pmws8l { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-1B44b .framer-u86wu2-container, .framer-1B44b .framer-1nik8wn-container, .framer-1B44b .framer-crv501-container, .framer-1B44b .framer-pq33l3-container, .framer-1B44b .framer-1wkcxp8-container, .framer-1B44b .framer-rn6w72-container, .framer-1B44b .framer-1bjamzy-container, .framer-1B44b .framer-1x7jkpl-container, .framer-1B44b .framer-114ei3r-container, .framer-1B44b .framer-hvg36j-container, .framer-1B44b .framer-kfxbf6-container, .framer-1B44b .framer-1otsy3a-container, .framer-1B44b .framer-no8vtu-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-1B44b .framer-tnobr1 { 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: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-1B44b .framer-1cgo3yz, .framer-1B44b .framer-7zss3h, .framer-1B44b .framer-121vm7x, .framer-1B44b .framer-1d4kfy1 { background-color: rgba(0, 0, 0, 0.8); inset: 0px; position: fixed; user-select: none; z-index: 5; }\",\".framer-1B44b .framer-k8uqkj-container, .framer-1B44b .framer-1b8dh9q-container, .framer-1B44b .framer-emstzr-container, .framer-1B44b .framer-t2ck8b-container { bottom: 0px; flex: none; left: 0px; position: fixed; right: 0px; top: 0px; z-index: 5; }\",\".framer-1B44b .framer-1c4y1xb, .framer-1B44b .framer-11caog7 { align-content: center; align-items: center; border-bottom-left-radius: 6px; border-bottom-right-radius: 6px; border-top-left-radius: 6px; border-top-right-radius: 6px; cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-1B44b .framer-1w7lkit, .framer-1B44b .framer-1y0514 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 32px); position: relative; width: 32px; }\",\".framer-1B44b .framer-13mtgg1 { background-color: rgba(0, 0, 0, 0.8); inset: 0px; position: fixed; user-select: none; z-index: 1; }\",\".framer-1B44b .framer-12qf64u { align-content: flex-start; align-items: flex-start; background-color: var(--token-f6af3b12-db6a-4e0d-8861-5bd59035481d, #fafafc); bottom: 0px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; justify-content: flex-start; left: 0px; overflow: hidden; padding: 0px; position: fixed; right: 0px; top: 0px; z-index: 6; }\",\".framer-1B44b .framer-18vh25x { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 12px 16px 12px 16px; position: relative; width: 100%; }\",\".framer-1B44b .framer-5r7pob { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 47px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 104px; }\",\".framer-1B44b .framer-tt89iu-container { flex: none; height: 28px; position: relative; width: 28px; }\",\".framer-1B44b .framer-7qdngp { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; height: 1px; justify-content: space-between; overflow: hidden; padding: 24px 20px 24px 20px; position: relative; width: 100%; }\",\".framer-1B44b .framer-2tw5xg { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-1B44b .framer-a34t4j { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-1B44b .framer-f2vnkb-container, .framer-1B44b .framer-bkkcm2-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-1B44b .framer-p2vkt { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: 100vh; justify-content: flex-start; overflow: visible; padding: 160px 0px 0px 0px; position: relative; width: 1224px; }\",\".framer-1B44b .framer-14ogscg { 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: visible; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-1B44b .framer-ikm385 { align-content: center; align-items: center; 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-1B44b .framer-130k0ml { flex: none; height: 149px; position: relative; width: 926px; }\",\".framer-1B44b .framer-1y3mhi7 { aspect-ratio: 2.0425531914893615 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 151px); position: relative; width: 309px; }\",\".framer-1B44b .framer-hdnfjr { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 707px; word-break: break-word; word-wrap: break-word; }\",\".framer-1B44b .framer-16kejaw, .framer-1B44b .framer-15747p8 { flex: none; height: 1px; overflow: visible; position: relative; width: 100%; }\",\".framer-1B44b .framer-1azcxv2 { aspect-ratio: 3.5207823960880194 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 500px); left: 55%; position: absolute; top: -492px; transform: translateX(-50%); width: 1759px; }\",\".framer-1B44b .framer-1sobd9q { aspect-ratio: 1.1946902654867257 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 122px); left: 98%; position: absolute; top: -417px; transform: translateX(-50%); width: 146px; }\",\".framer-1B44b .framer-bbr0a7 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 31px); overflow: visible; position: absolute; right: -11px; top: -97px; width: 31px; }\",\".framer-1B44b .framer-1iynhqq { aspect-ratio: 1.333333282554245 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 109px); left: -69px; position: absolute; top: -192px; width: 145px; }\",\".framer-1B44b .framer-b9rfh0 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 118px); left: -162px; overflow: visible; position: absolute; top: -433px; width: 118px; }\",\".framer-1B44b .framer-e3cehm, .framer-1B44b .framer-aqzz9p { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-1B44b .framer-140vh8a-container { flex: none; height: 160px; position: relative; width: 1440px; }\",\".framer-1B44b .framer-1jqbcr5-container, .framer-1B44b .framer-22exqy-container, .framer-1B44b .framer-1rtdxr4-container, .framer-1B44b .framer-1sxd2ia-container, .framer-1B44b .framer-13go15v-container, .framer-1B44b .framer-157a5h3-container, .framer-1B44b .framer-1e14zbj-container, .framer-1B44b .framer-xzhjcc-container, .framer-1B44b .framer-1eh6slv-container, .framer-1B44b .framer-1uyex2a-container { height: 160px; position: relative; width: 220px; }\",\".framer-1B44b .framer-k874xk, .framer-1B44b .framer-1w183t, .framer-1B44b .framer-1nu6eof, .framer-1B44b .framer-jik8oj, .framer-1B44b .framer-8jzh4o, .framer-1B44b .framer-ft5pg3, .framer-1B44b .framer-mxdyxl, .framer-1B44b .framer-1minxhs, .framer-1B44b .framer-cyrndb, .framer-1B44b .framer-c1vn9j, .framer-1B44b .framer-u68sex, .framer-1B44b .framer-1a94kzz, .framer-1B44b .framer-1chx8jn, .framer-1B44b .framer-4s9dvf, .framer-1B44b .framer-1dd2teq { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-1B44b .framer-gp9k5x, .framer-1B44b .framer-dimfrb { 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: 1224px; }\",\".framer-1B44b .framer-1xtg1de { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-1B44b .framer-1y4evzq, .framer-1B44b .framer-1lfpnwu { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-1B44b .framer-i9gsyc { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-1B44b .framer-13q7g3y { align-content: center; align-items: center; background-color: var(--token-3925fb8a-d62b-453e-b675-cdc563c5a26e, #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: column; flex-wrap: nowrap; gap: 4px; height: 133px; justify-content: flex-start; overflow: visible; padding: 24px 16px 24px 16px; position: relative; width: 1px; }\",\".framer-1B44b .framer-1kdd996 { flex: none; height: 42px; overflow: visible; position: relative; width: 160px; }\",\".framer-1B44b .framer-te29ko { aspect-ratio: 3.6975000000000002 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 42px); left: 50%; overflow: visible; position: absolute; top: -1px; transform: translateX(-50%); width: 152px; }\",\".framer-1B44b .framer-f7t34p { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 194px; word-break: break-word; word-wrap: break-word; }\",\".framer-1B44b .framer-1f39g9d, .framer-1B44b .framer-10o7q86, .framer-1B44b .framer-17qoyl7, .framer-1B44b .framer-mduwbo { align-content: center; align-items: center; background-color: #ffffff; 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: column; flex-wrap: nowrap; gap: 4px; height: 133px; justify-content: flex-start; overflow: visible; padding: 24px 16px 24px 16px; position: relative; width: 1px; }\",\".framer-1B44b .framer-1auozl6 { --framer-paragraph-spacing: 0px; flex: none; height: 44px; position: relative; white-space: pre-wrap; width: 138px; word-break: break-word; word-wrap: break-word; }\",\".framer-1B44b .framer-oplugp, .framer-1B44b .framer-6amubf { --framer-paragraph-spacing: 0px; flex: 1 0 0px; height: 1px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-1B44b .framer-15ek61g { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 475px; }\",\".framer-1B44b .framer-1yrxxnw { --framer-paragraph-spacing: 0px; flex: none; height: 47px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-1B44b .framer-su3io7, .framer-1B44b .framer-1ceyili { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1224px; }\",\".framer-1B44b .framer-11s3r10, .framer-1B44b .framer-y01y8e { flex: 1 0 0px; height: 22px; position: relative; width: 1px; }\",\".framer-1B44b .framer-11gbvwn { 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 0px 50px 0px; position: relative; width: 1440px; }\",\".framer-1B44b .framer-1p4bmv2, .framer-1B44b .framer-1kfygyt { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1224px; }\",\".framer-1B44b .framer-as3ufl { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: auto; padding: 0px 100px 0px 100px; position: relative; width: 1440px; }\",\".framer-1B44b .framer-14e7z9t { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-1B44b .framer-cbl5fp-container, .framer-1B44b .framer-ecrga9-container, .framer-1B44b .framer-109gw13-container, .framer-1B44b .framer-mpyoi5-container, .framer-1B44b .framer-h2zq8c-container, .framer-1B44b .framer-hvdnq1-container, .framer-1B44b .framer-l526vb-container { flex: none; height: 440px; position: relative; width: 392px; }\",\".framer-1B44b .framer-12r1zez { background: linear-gradient(180deg, rgba(250, 250, 252, 0) 0%, rgb(250, 250, 252) 100%); flex: none; height: 160px; left: -178px; overflow: hidden; position: absolute; top: 343px; width: 513px; z-index: 1; }\",\".framer-1B44b .framer-3tyfzu { background: linear-gradient(180deg, #fafafc 0%, rgba(250, 250, 252, 0) 100%); flex: none; height: 160px; overflow: hidden; position: absolute; right: -182px; top: 343px; width: 513px; z-index: 1; }\",\".framer-1B44b .framer-6rndc9-container, .framer-1B44b .framer-1l1z9sb-container, .framer-1B44b .framer-1me2uft-container, .framer-1B44b .framer-48ih15-container, .framer-1B44b .framer-h45bdk-container, .framer-1B44b .framer-156cvuz-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-1B44b .framer-4vozbu { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-1B44b .framer-198kqpb { align-content: center; align-items: center; background-color: var(--token-3925fb8a-d62b-453e-b675-cdc563c5a26e, #000000); border-bottom-left-radius: 32px; border-bottom-right-radius: 32px; border-top-left-radius: 32px; border-top-right-radius: 32px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: flex-end; overflow: hidden; padding: 80px; position: relative; width: 1224px; will-change: var(--framer-will-change-override, transform); }\",\".framer-1B44b .framer-1m6fr1f { bottom: -474px; flex: none; position: absolute; right: -121px; top: -1px; width: 551px; }\",\".framer-1B44b .framer-11d52p7 { bottom: -251px; flex: none; left: -176px; position: absolute; top: -150px; width: 344px; }\",\".framer-1B44b .framer-1b910v7 { aspect-ratio: 0.8954248865022247 / 1; bottom: -117px; flex: none; position: absolute; right: -57px; top: -12px; width: var(--framer-aspect-ratio-supported, 116px); }\",\".framer-1B44b .framer-1ungnzi { bottom: -425px; flex: none; height: 313px; left: -200px; position: absolute; width: 301px; }\",\".framer-1B44b .framer-1x0rrg { flex: none; height: auto; overflow: hidden; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-1B44b .framer-cosmve { 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: 50px 0px 50px 0px; position: relative; width: 1300px; }\",\".framer-1B44b .framer-10u9fqm { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: auto; padding: 0px 38px 0px 38px; position: relative; width: 100%; }\",\".framer-1B44b .framer-aavbs6 { 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: flex-end; overflow: visible; padding: 0px 0px 50px 0px; position: relative; width: 1224px; }\",\".framer-1B44b .framer-egrlxs { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 600px; word-break: break-word; word-wrap: break-word; }\",\".framer-1B44b .framer-7xfkqy { flex: none; height: 221px; left: 345px; position: absolute; top: -113px; width: 234px; z-index: 1; }\",\".framer-1B44b .framer-xzkhfm { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-1B44b .framer-194neqt, .framer-1B44b .framer-1reoer8 { 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: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-1B44b .framer-foraym, .framer-1B44b .framer-1diey0j { flex: none; height: 48px; position: relative; width: 48px; }\",\".framer-1B44b .framer-1jnicrh { 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: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-1B44b .framer-wa3c6a { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-1B44b .framer-hdlppj { align-content: center; align-items: center; background-color: #000000; border-top-left-radius: 100px; border-top-right-radius: 100px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 80px 80px 40px 80px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-1B44b .framer-13gcyib { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1224px; }\",\".framer-1B44b .framer-1g5k594 { flex: none; height: 1px; position: relative; width: 1224px; }\",\".framer-1B44b .framer-uhdkfp { flex: none; height: 534px; position: absolute; right: -201px; top: -69px; width: 618px; }\",\".framer-1B44b .framer-1un6xmt { flex: none; height: 591px; left: -220px; position: absolute; top: -180px; width: 507px; }\",\".framer-1B44b .framer-1i0v6ij { 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-1B44b .framer-1oapaoh { align-content: center; align-items: center; 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-1B44b .framer-184kjol { flex: none; height: 156px; position: relative; width: 692px; }\",\".framer-1B44b .framer-14vd783 { --border-bottom-width: 0px; --border-color: rgba(255, 255, 255, 0.2); --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 40px 0px 40px 0px; position: relative; width: 100%; }\",\".framer-1B44b .framer-1oh6tyc { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-1B44b .framer-tgddgo { aspect-ratio: 2.619047619047619 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 42px); position: relative; text-decoration: none; width: 110px; }\",\".framer-1B44b .framer-hc8ze2, .framer-1B44b .framer-22xkg, .framer-1B44b .framer-kaeqfu, .framer-1B44b .framer-hfvpmm, .framer-1B44b .framer-1oprzx5 { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-1B44b .framer-125l0mq, .framer-1B44b .framer-dbzgni { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-1B44b .framer-yhwf6i, .framer-1B44b .framer-17fcg15 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-1B44b .framer-iwt1yu { align-content: flex-start; align-items: flex-start; 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-1B44b .framer-1pgrry3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-1B44b .framer-bs3qah, .framer-1B44b .framer-fdp8bh, .framer-1B44b .framer-1dtsiqz { flex: none; height: 32px; overflow: visible; position: relative; text-decoration: none; width: 32px; }\",\".framer-1B44b .framer-37kl2c, .framer-1B44b .framer-j345id, .framer-1B44b .framer-9z5r6x { bottom: 1px; flex: none; left: 0px; position: absolute; right: 1px; top: 0px; }\",\".framer-1B44b .framer-r15ty7 { bottom: 10px; flex: none; left: 8px; position: absolute; right: 9px; top: 9px; }\",\".framer-1B44b .framer-1mfzffj { bottom: 8px; flex: none; left: 7px; position: absolute; right: 8px; top: 7px; }\",\".framer-1B44b .framer-16t5n7m { bottom: 9px; flex: none; left: 8px; position: absolute; right: 9px; top: 8px; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-1B44b.framer-72rtr7, .framer-1B44b .framer-1wx8h4h, .framer-1B44b .framer-1jtvkbi, .framer-1B44b .framer-1pmws8l, .framer-1B44b .framer-tnobr1, .framer-1B44b .framer-1c4y1xb, .framer-1B44b .framer-12qf64u, .framer-1B44b .framer-5r7pob, .framer-1B44b .framer-11caog7, .framer-1B44b .framer-2tw5xg, .framer-1B44b .framer-a34t4j, .framer-1B44b .framer-p2vkt, .framer-1B44b .framer-14ogscg, .framer-1B44b .framer-ikm385, .framer-1B44b .framer-e3cehm, .framer-1B44b .framer-gp9k5x, .framer-1B44b .framer-1xtg1de, .framer-1B44b .framer-1y4evzq, .framer-1B44b .framer-i9gsyc, .framer-1B44b .framer-13q7g3y, .framer-1B44b .framer-1f39g9d, .framer-1B44b .framer-10o7q86, .framer-1B44b .framer-15ek61g, .framer-1B44b .framer-17qoyl7, .framer-1B44b .framer-mduwbo, .framer-1B44b .framer-su3io7, .framer-1B44b .framer-11gbvwn, .framer-1B44b .framer-1p4bmv2, .framer-1B44b .framer-as3ufl, .framer-1B44b .framer-14e7z9t, .framer-1B44b .framer-dimfrb, .framer-1B44b .framer-1ceyili, .framer-1B44b .framer-4vozbu, .framer-1B44b .framer-198kqpb, .framer-1B44b .framer-aqzz9p, .framer-1B44b .framer-cosmve, .framer-1B44b .framer-1kfygyt, .framer-1B44b .framer-10u9fqm, .framer-1B44b .framer-1lfpnwu, .framer-1B44b .framer-aavbs6, .framer-1B44b .framer-xzkhfm, .framer-1B44b .framer-194neqt, .framer-1B44b .framer-1jnicrh, .framer-1B44b .framer-1reoer8, .framer-1B44b .framer-wa3c6a, .framer-1B44b .framer-hdlppj, .framer-1B44b .framer-13gcyib, .framer-1B44b .framer-1i0v6ij, .framer-1B44b .framer-1oapaoh, .framer-1B44b .framer-14vd783, .framer-1B44b .framer-1oh6tyc, .framer-1B44b .framer-125l0mq, .framer-1B44b .framer-dbzgni, .framer-1B44b .framer-yhwf6i, .framer-1B44b .framer-17fcg15, .framer-1B44b .framer-iwt1yu, .framer-1B44b .framer-1pgrry3 { gap: 0px; } .framer-1B44b.framer-72rtr7 > * { margin: 0px; margin-bottom: calc(150px / 2); margin-top: calc(150px / 2); } .framer-1B44b.framer-72rtr7 > :first-child, .framer-1B44b .framer-12qf64u > :first-child, .framer-1B44b .framer-2tw5xg > :first-child, .framer-1B44b .framer-p2vkt > :first-child, .framer-1B44b .framer-14ogscg > :first-child, .framer-1B44b .framer-ikm385 > :first-child, .framer-1B44b .framer-e3cehm > :first-child, .framer-1B44b .framer-gp9k5x > :first-child, .framer-1B44b .framer-1xtg1de > :first-child, .framer-1B44b .framer-13q7g3y > :first-child, .framer-1B44b .framer-1f39g9d > :first-child, .framer-1B44b .framer-10o7q86 > :first-child, .framer-1B44b .framer-17qoyl7 > :first-child, .framer-1B44b .framer-mduwbo > :first-child, .framer-1B44b .framer-11gbvwn > :first-child, .framer-1B44b .framer-1p4bmv2 > :first-child, .framer-1B44b .framer-as3ufl > :first-child, .framer-1B44b .framer-dimfrb > :first-child, .framer-1B44b .framer-198kqpb > :first-child, .framer-1B44b .framer-aqzz9p > :first-child, .framer-1B44b .framer-cosmve > :first-child, .framer-1B44b .framer-1kfygyt > :first-child, .framer-1B44b .framer-10u9fqm > :first-child, .framer-1B44b .framer-xzkhfm > :first-child, .framer-1B44b .framer-1jnicrh > :first-child, .framer-1B44b .framer-wa3c6a > :first-child, .framer-1B44b .framer-hdlppj > :first-child, .framer-1B44b .framer-13gcyib > :first-child, .framer-1B44b .framer-1i0v6ij > :first-child, .framer-1B44b .framer-1oapaoh > :first-child, .framer-1B44b .framer-1oh6tyc > :first-child, .framer-1B44b .framer-125l0mq > :first-child, .framer-1B44b .framer-dbzgni > :first-child, .framer-1B44b .framer-yhwf6i > :first-child, .framer-1B44b .framer-17fcg15 > :first-child, .framer-1B44b .framer-iwt1yu > :first-child { margin-top: 0px; } .framer-1B44b.framer-72rtr7 > :last-child, .framer-1B44b .framer-12qf64u > :last-child, .framer-1B44b .framer-2tw5xg > :last-child, .framer-1B44b .framer-p2vkt > :last-child, .framer-1B44b .framer-14ogscg > :last-child, .framer-1B44b .framer-ikm385 > :last-child, .framer-1B44b .framer-e3cehm > :last-child, .framer-1B44b .framer-gp9k5x > :last-child, .framer-1B44b .framer-1xtg1de > :last-child, .framer-1B44b .framer-13q7g3y > :last-child, .framer-1B44b .framer-1f39g9d > :last-child, .framer-1B44b .framer-10o7q86 > :last-child, .framer-1B44b .framer-17qoyl7 > :last-child, .framer-1B44b .framer-mduwbo > :last-child, .framer-1B44b .framer-11gbvwn > :last-child, .framer-1B44b .framer-1p4bmv2 > :last-child, .framer-1B44b .framer-as3ufl > :last-child, .framer-1B44b .framer-dimfrb > :last-child, .framer-1B44b .framer-198kqpb > :last-child, .framer-1B44b .framer-aqzz9p > :last-child, .framer-1B44b .framer-cosmve > :last-child, .framer-1B44b .framer-1kfygyt > :last-child, .framer-1B44b .framer-10u9fqm > :last-child, .framer-1B44b .framer-xzkhfm > :last-child, .framer-1B44b .framer-1jnicrh > :last-child, .framer-1B44b .framer-wa3c6a > :last-child, .framer-1B44b .framer-hdlppj > :last-child, .framer-1B44b .framer-13gcyib > :last-child, .framer-1B44b .framer-1i0v6ij > :last-child, .framer-1B44b .framer-1oapaoh > :last-child, .framer-1B44b .framer-1oh6tyc > :last-child, .framer-1B44b .framer-125l0mq > :last-child, .framer-1B44b .framer-dbzgni > :last-child, .framer-1B44b .framer-yhwf6i > :last-child, .framer-1B44b .framer-17fcg15 > :last-child, .framer-1B44b .framer-iwt1yu > :last-child { margin-bottom: 0px; } .framer-1B44b .framer-1wx8h4h > * { margin: 0px; margin-left: calc(128px / 2); margin-right: calc(128px / 2); } .framer-1B44b .framer-1wx8h4h > :first-child, .framer-1B44b .framer-1jtvkbi > :first-child, .framer-1B44b .framer-1pmws8l > :first-child, .framer-1B44b .framer-tnobr1 > :first-child, .framer-1B44b .framer-1c4y1xb > :first-child, .framer-1B44b .framer-5r7pob > :first-child, .framer-1B44b .framer-11caog7 > :first-child, .framer-1B44b .framer-a34t4j > :first-child, .framer-1B44b .framer-1y4evzq > :first-child, .framer-1B44b .framer-i9gsyc > :first-child, .framer-1B44b .framer-15ek61g > :first-child, .framer-1B44b .framer-su3io7 > :first-child, .framer-1B44b .framer-14e7z9t > :first-child, .framer-1B44b .framer-1ceyili > :first-child, .framer-1B44b .framer-4vozbu > :first-child, .framer-1B44b .framer-1lfpnwu > :first-child, .framer-1B44b .framer-aavbs6 > :first-child, .framer-1B44b .framer-194neqt > :first-child, .framer-1B44b .framer-1reoer8 > :first-child, .framer-1B44b .framer-14vd783 > :first-child, .framer-1B44b .framer-1pgrry3 > :first-child { margin-left: 0px; } .framer-1B44b .framer-1wx8h4h > :last-child, .framer-1B44b .framer-1jtvkbi > :last-child, .framer-1B44b .framer-1pmws8l > :last-child, .framer-1B44b .framer-tnobr1 > :last-child, .framer-1B44b .framer-1c4y1xb > :last-child, .framer-1B44b .framer-5r7pob > :last-child, .framer-1B44b .framer-11caog7 > :last-child, .framer-1B44b .framer-a34t4j > :last-child, .framer-1B44b .framer-1y4evzq > :last-child, .framer-1B44b .framer-i9gsyc > :last-child, .framer-1B44b .framer-15ek61g > :last-child, .framer-1B44b .framer-su3io7 > :last-child, .framer-1B44b .framer-14e7z9t > :last-child, .framer-1B44b .framer-1ceyili > :last-child, .framer-1B44b .framer-4vozbu > :last-child, .framer-1B44b .framer-1lfpnwu > :last-child, .framer-1B44b .framer-aavbs6 > :last-child, .framer-1B44b .framer-194neqt > :last-child, .framer-1B44b .framer-1reoer8 > :last-child, .framer-1B44b .framer-14vd783 > :last-child, .framer-1B44b .framer-1pgrry3 > :last-child { margin-right: 0px; } .framer-1B44b .framer-1jtvkbi > *, .framer-1B44b .framer-5r7pob > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-1B44b .framer-1pmws8l > * { margin: 0px; margin-left: calc(48px / 2); margin-right: calc(48px / 2); } .framer-1B44b .framer-tnobr1 > *, .framer-1B44b .framer-aavbs6 > *, .framer-1B44b .framer-194neqt > *, .framer-1B44b .framer-1reoer8 > *, .framer-1B44b .framer-1pgrry3 > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-1B44b .framer-1c4y1xb > *, .framer-1B44b .framer-11caog7 > *, .framer-1B44b .framer-su3io7 > *, .framer-1B44b .framer-1ceyili > *, .framer-1B44b .framer-4vozbu > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-1B44b .framer-12qf64u > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-1B44b .framer-2tw5xg > *, .framer-1B44b .framer-e3cehm > *, .framer-1B44b .framer-1xtg1de > *, .framer-1B44b .framer-1p4bmv2 > *, .framer-1B44b .framer-aqzz9p > *, .framer-1B44b .framer-1kfygyt > *, .framer-1B44b .framer-1oh6tyc > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-1B44b .framer-a34t4j > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-1B44b .framer-p2vkt > *, .framer-1B44b .framer-14ogscg > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-1B44b .framer-ikm385 > *, .framer-1B44b .framer-iwt1yu > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-1B44b .framer-gp9k5x > *, .framer-1B44b .framer-11gbvwn > *, .framer-1B44b .framer-dimfrb > *, .framer-1B44b .framer-cosmve > *, .framer-1B44b .framer-1i0v6ij > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } .framer-1B44b .framer-1y4evzq > *, .framer-1B44b .framer-i9gsyc > *, .framer-1B44b .framer-15ek61g > *, .framer-1B44b .framer-14e7z9t > *, .framer-1B44b .framer-1lfpnwu > *, .framer-1B44b .framer-14vd783 > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-1B44b .framer-13q7g3y > *, .framer-1B44b .framer-1f39g9d > *, .framer-1B44b .framer-10o7q86 > *, .framer-1B44b .framer-17qoyl7 > *, .framer-1B44b .framer-mduwbo > *, .framer-1B44b .framer-1jnicrh > *, .framer-1B44b .framer-wa3c6a > *, .framer-1B44b .framer-yhwf6i > *, .framer-1B44b .framer-17fcg15 > * { margin: 0px; margin-bottom: calc(4px / 2); margin-top: calc(4px / 2); } .framer-1B44b .framer-as3ufl > *, .framer-1B44b .framer-10u9fqm > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-1B44b .framer-198kqpb > *, .framer-1B44b .framer-13gcyib > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-1B44b .framer-xzkhfm > *, .framer-1B44b .framer-1oapaoh > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-1B44b .framer-hdlppj > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } .framer-1B44b .framer-125l0mq > *, .framer-1B44b .framer-dbzgni > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } }\",`@media (min-width: 768px) and (max-width: 1439px) { .${metadata.bodyClassName}-framer-1B44b { background: var(--token-f6af3b12-db6a-4e0d-8861-5bd59035481d, rgb(250, 250, 252)) /* {\"name\":\"BG\"} */; } .framer-1B44b.framer-72rtr7 { gap: 120px; width: 768px; } .framer-1B44b .framer-1wx8h4h { padding: 8px 24px 8px 24px; } .framer-1B44b .framer-ky0zir, .framer-1B44b .framer-egrlxs { flex: 1 0 0px; width: 1px; } .framer-1B44b .framer-1jtvkbi { height: 41px; width: 68px; } .framer-1B44b .framer-8yc6bj { height: var(--framer-aspect-ratio-supported, 29px); width: 77px; } .framer-1B44b .framer-1pmws8l, .framer-1B44b .framer-ikm385, .framer-1B44b .framer-1lfpnwu { gap: 16px; } .framer-1B44b .framer-tnobr1, .framer-1B44b .framer-1xtg1de { gap: 8px; } .framer-1B44b .framer-p2vkt { gap: 32px; height: min-content; padding: 140px 24px 0px 24px; width: 100%; } .framer-1B44b .framer-14ogscg { gap: 32px; } .framer-1B44b .framer-130k0ml { height: 105px; width: 653px; } .framer-1B44b .framer-hdnfjr, .framer-1B44b .framer-f7t34p, .framer-1B44b .framer-13gcyib { width: 100%; } .framer-1B44b .framer-1azcxv2 { height: var(--framer-aspect-ratio-supported, 299px); left: 54%; top: -322px; width: 1052px; } .framer-1B44b .framer-1sobd9q { height: var(--framer-aspect-ratio-supported, 73px); left: 98%; top: -339px; width: 87px; } .framer-1B44b .framer-bbr0a7 { height: var(--framer-aspect-ratio-supported, 19px); right: -4px; top: -120px; width: 19px; } .framer-1B44b .framer-1iynhqq { height: var(--framer-aspect-ratio-supported, 65px); left: -22px; top: -123px; width: 87px; } .framer-1B44b .framer-b9rfh0 { height: var(--framer-aspect-ratio-supported, 71px); left: -68px; top: -337px; width: 71px; } .framer-1B44b .framer-gp9k5x { gap: 40px; padding: 0px 24px 0px 24px; width: 100%; } .framer-1B44b .framer-1y4evzq { flex-direction: column; gap: 16px; } .framer-1B44b .framer-i9gsyc { align-content: flex-start; align-items: flex-start; flex: none; gap: 16px; width: 100%; } .framer-1B44b .framer-13q7g3y, .framer-1B44b .framer-17qoyl7, .framer-1B44b .framer-mduwbo { height: min-content; } .framer-1B44b .framer-te29ko { height: var(--framer-aspect-ratio-supported, 41px); } .framer-1B44b .framer-1f39g9d, .framer-1B44b .framer-10o7q86 { align-self: stretch; height: auto; } .framer-1B44b .framer-1auozl6 { height: auto; width: 100%; } .framer-1B44b .framer-oplugp, .framer-1B44b .framer-6amubf { flex: none; height: auto; } .framer-1B44b .framer-15ek61g { gap: 16px; width: 100%; } .framer-1B44b .framer-1yrxxnw { height: auto; } .framer-1B44b .framer-su3io7, .framer-1B44b .framer-as3ufl, .framer-1B44b .framer-dimfrb, .framer-1B44b .framer-1ceyili, .framer-1B44b .framer-aavbs6 { padding: 0px 24px 0px 24px; width: 100%; } .framer-1B44b .framer-11s3r10, .framer-1B44b .framer-y01y8e { height: 16px; } .framer-1B44b .framer-11gbvwn, .framer-1B44b .framer-cosmve { gap: 40px; padding: 0px; width: 100%; } .framer-1B44b .framer-1p4bmv2, .framer-1B44b .framer-1kfygyt { gap: 8px; padding: 0px 24px 0px 24px; width: 100%; } .framer-1B44b .framer-14e7z9t { gap: 16px; order: 0; } .framer-1B44b .framer-cbl5fp-container, .framer-1B44b .framer-ecrga9-container, .framer-1B44b .framer-109gw13-container, .framer-1B44b .framer-h2zq8c-container, .framer-1B44b .framer-hvdnq1-container, .framer-1B44b .framer-l526vb-container { height: 320px; width: 300px; } .framer-1B44b .framer-mpyoi5-container { align-self: stretch; height: auto; width: 300px; } .framer-1B44b .framer-4vozbu, .framer-1B44b .framer-10u9fqm { padding: 0px 24px 0px 24px; } .framer-1B44b .framer-198kqpb { border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; flex: 1 0 0px; gap: 32px; padding: 40px; width: 1px; } .framer-1B44b .framer-1m6fr1f { bottom: -334px; height: 233px; right: -101px; top: unset; width: 270px; } .framer-1B44b .framer-11d52p7 { bottom: -161px; left: -154px; top: -73px; width: 201px; } .framer-1B44b .framer-1b910v7 { bottom: -116px; height: var(--framer-aspect-ratio-supported, 74px); right: -54px; top: unset; width: 66px; } .framer-1B44b .framer-1ungnzi { bottom: -363px; height: 251px; left: -140px; width: 241px; } .framer-1B44b .framer-7xfkqy { height: 120px; left: 252px; top: -63px; width: 127px; } .framer-1B44b .framer-xzkhfm { gap: 24px; } .framer-1B44b .framer-194neqt, .framer-1B44b .framer-1reoer8 { gap: 12px; } .framer-1B44b .framer-foraym, .framer-1B44b .framer-1diey0j { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 40px); width: 40px; } .framer-1B44b .framer-hdlppj { border-top-left-radius: 60px; border-top-right-radius: 60px; gap: 60px; padding: 48px 48px 24px 48px; } .framer-1B44b .framer-uhdkfp { height: 296px; right: 185px; top: 100px; width: 342px; } .framer-1B44b .framer-1un6xmt { height: 371px; left: 89px; top: -70px; width: 318px; } .framer-1B44b .framer-1i0v6ij { gap: 48px; } .framer-1B44b .framer-184kjol { height: 127px; width: 563px; } .framer-1B44b .framer-14vd783 { flex-direction: column; } .framer-1B44b .framer-1oh6tyc, .framer-1B44b .framer-125l0mq { align-content: center; align-items: center; flex: none; gap: 8px; width: 100%; } .framer-1B44b .framer-tgddgo { height: var(--framer-aspect-ratio-supported, 34px); width: 88px; } .framer-1B44b .framer-1l1z9sb-container, .framer-1B44b .framer-1me2uft-container, .framer-1B44b .framer-48ih15-container, .framer-1B44b .framer-h45bdk-container, .framer-1B44b .framer-156cvuz-container { width: auto; } .framer-1B44b .framer-dbzgni { flex: none; gap: 16px; justify-content: center; width: 100%; } .framer-1B44b .framer-yhwf6i, .framer-1B44b .framer-17fcg15 { align-content: center; align-items: center; width: 100%; } .framer-1B44b .framer-iwt1yu { align-content: center; align-items: center; flex: none; gap: 16px; width: 100%; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-1B44b.framer-72rtr7, .framer-1B44b .framer-1pmws8l, .framer-1B44b .framer-tnobr1, .framer-1B44b .framer-p2vkt, .framer-1B44b .framer-14ogscg, .framer-1B44b .framer-ikm385, .framer-1B44b .framer-gp9k5x, .framer-1B44b .framer-1xtg1de, .framer-1B44b .framer-1y4evzq, .framer-1B44b .framer-i9gsyc, .framer-1B44b .framer-15ek61g, .framer-1B44b .framer-11gbvwn, .framer-1B44b .framer-1p4bmv2, .framer-1B44b .framer-14e7z9t, .framer-1B44b .framer-198kqpb, .framer-1B44b .framer-cosmve, .framer-1B44b .framer-1kfygyt, .framer-1B44b .framer-1lfpnwu, .framer-1B44b .framer-xzkhfm, .framer-1B44b .framer-194neqt, .framer-1B44b .framer-1reoer8, .framer-1B44b .framer-hdlppj, .framer-1B44b .framer-1i0v6ij, .framer-1B44b .framer-14vd783, .framer-1B44b .framer-1oh6tyc, .framer-1B44b .framer-125l0mq, .framer-1B44b .framer-dbzgni, .framer-1B44b .framer-iwt1yu { gap: 0px; } .framer-1B44b.framer-72rtr7 > * { margin: 0px; margin-bottom: calc(120px / 2); margin-top: calc(120px / 2); } .framer-1B44b.framer-72rtr7 > :first-child, .framer-1B44b .framer-p2vkt > :first-child, .framer-1B44b .framer-14ogscg > :first-child, .framer-1B44b .framer-ikm385 > :first-child, .framer-1B44b .framer-gp9k5x > :first-child, .framer-1B44b .framer-1xtg1de > :first-child, .framer-1B44b .framer-1y4evzq > :first-child, .framer-1B44b .framer-11gbvwn > :first-child, .framer-1B44b .framer-1p4bmv2 > :first-child, .framer-1B44b .framer-198kqpb > :first-child, .framer-1B44b .framer-cosmve > :first-child, .framer-1B44b .framer-1kfygyt > :first-child, .framer-1B44b .framer-xzkhfm > :first-child, .framer-1B44b .framer-hdlppj > :first-child, .framer-1B44b .framer-1i0v6ij > :first-child, .framer-1B44b .framer-14vd783 > :first-child, .framer-1B44b .framer-1oh6tyc > :first-child, .framer-1B44b .framer-125l0mq > :first-child, .framer-1B44b .framer-dbzgni > :first-child, .framer-1B44b .framer-iwt1yu > :first-child { margin-top: 0px; } .framer-1B44b.framer-72rtr7 > :last-child, .framer-1B44b .framer-p2vkt > :last-child, .framer-1B44b .framer-14ogscg > :last-child, .framer-1B44b .framer-ikm385 > :last-child, .framer-1B44b .framer-gp9k5x > :last-child, .framer-1B44b .framer-1xtg1de > :last-child, .framer-1B44b .framer-1y4evzq > :last-child, .framer-1B44b .framer-11gbvwn > :last-child, .framer-1B44b .framer-1p4bmv2 > :last-child, .framer-1B44b .framer-198kqpb > :last-child, .framer-1B44b .framer-cosmve > :last-child, .framer-1B44b .framer-1kfygyt > :last-child, .framer-1B44b .framer-xzkhfm > :last-child, .framer-1B44b .framer-hdlppj > :last-child, .framer-1B44b .framer-1i0v6ij > :last-child, .framer-1B44b .framer-14vd783 > :last-child, .framer-1B44b .framer-1oh6tyc > :last-child, .framer-1B44b .framer-125l0mq > :last-child, .framer-1B44b .framer-dbzgni > :last-child, .framer-1B44b .framer-iwt1yu > :last-child { margin-bottom: 0px; } .framer-1B44b .framer-1pmws8l > *, .framer-1B44b .framer-i9gsyc > *, .framer-1B44b .framer-15ek61g > *, .framer-1B44b .framer-14e7z9t > *, .framer-1B44b .framer-1lfpnwu > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-1B44b .framer-1pmws8l > :first-child, .framer-1B44b .framer-tnobr1 > :first-child, .framer-1B44b .framer-i9gsyc > :first-child, .framer-1B44b .framer-15ek61g > :first-child, .framer-1B44b .framer-14e7z9t > :first-child, .framer-1B44b .framer-1lfpnwu > :first-child, .framer-1B44b .framer-194neqt > :first-child, .framer-1B44b .framer-1reoer8 > :first-child { margin-left: 0px; } .framer-1B44b .framer-1pmws8l > :last-child, .framer-1B44b .framer-tnobr1 > :last-child, .framer-1B44b .framer-i9gsyc > :last-child, .framer-1B44b .framer-15ek61g > :last-child, .framer-1B44b .framer-14e7z9t > :last-child, .framer-1B44b .framer-1lfpnwu > :last-child, .framer-1B44b .framer-194neqt > :last-child, .framer-1B44b .framer-1reoer8 > :last-child { margin-right: 0px; } .framer-1B44b .framer-tnobr1 > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-1B44b .framer-p2vkt > *, .framer-1B44b .framer-14ogscg > *, .framer-1B44b .framer-198kqpb > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-1B44b .framer-ikm385 > *, .framer-1B44b .framer-1y4evzq > *, .framer-1B44b .framer-dbzgni > *, .framer-1B44b .framer-iwt1yu > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-1B44b .framer-gp9k5x > *, .framer-1B44b .framer-11gbvwn > *, .framer-1B44b .framer-cosmve > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-1B44b .framer-1xtg1de > *, .framer-1B44b .framer-1p4bmv2 > *, .framer-1B44b .framer-1kfygyt > *, .framer-1B44b .framer-1oh6tyc > *, .framer-1B44b .framer-125l0mq > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-1B44b .framer-xzkhfm > *, .framer-1B44b .framer-14vd783 > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-1B44b .framer-194neqt > *, .framer-1B44b .framer-1reoer8 > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } .framer-1B44b .framer-hdlppj > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-1B44b .framer-1i0v6ij > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } }}`,`@media (max-width: 767px) { .${metadata.bodyClassName}-framer-1B44b { background: var(--token-f6af3b12-db6a-4e0d-8861-5bd59035481d, rgb(250, 250, 252)) /* {\"name\":\"BG\"} */; } .framer-1B44b.framer-72rtr7 { gap: 100px; width: 360px; } .framer-1B44b .framer-1wx8h4h, .framer-1B44b .framer-18vh25x { padding: 6px 16px 6px 16px; } .framer-1B44b .framer-ky0zir { flex: 1 0 0px; width: 1px; } .framer-1B44b .framer-1jtvkbi { height: 34px; width: 76px; } .framer-1B44b .framer-8yc6bj, .framer-1B44b .framer-1wvh0fk { height: var(--framer-aspect-ratio-supported, 30px); width: 81px; } .framer-1B44b .framer-5r7pob { cursor: pointer; height: 34px; text-decoration: none; width: 76px; } .framer-1B44b .framer-2tw5xg, .framer-1B44b .framer-1bjamzy-container, .framer-1B44b .framer-1x7jkpl-container, .framer-1B44b .framer-114ei3r-container, .framer-1B44b .framer-hvg36j-container, .framer-1B44b .framer-hdnfjr, .framer-1B44b .framer-f7t34p, .framer-1B44b .framer-egrlxs { width: 100%; } .framer-1B44b .framer-p2vkt { gap: 32px; height: min-content; padding: 120px 16px 0px 16px; width: 100%; } .framer-1B44b .framer-14ogscg, .framer-1B44b .framer-1i0v6ij { gap: 24px; } .framer-1B44b .framer-ikm385 { gap: 16px; } .framer-1B44b .framer-1azcxv2 { height: var(--framer-aspect-ratio-supported, 172px); left: 53%; top: -362px; width: 605px; } .framer-1B44b .framer-1sobd9q { height: var(--framer-aspect-ratio-supported, 62px); left: unset; right: -28px; top: -379px; transform: unset; width: 74px; } .framer-1B44b .framer-bbr0a7 { height: var(--framer-aspect-ratio-supported, 16px); right: 5px; top: -118px; width: 16px; } .framer-1B44b .framer-1iynhqq { height: var(--framer-aspect-ratio-supported, 46px); left: -37px; top: -217px; width: 61px; } .framer-1B44b .framer-b9rfh0 { height: var(--framer-aspect-ratio-supported, 60px); left: -36px; top: -392px; width: 60px; } .framer-1B44b .framer-e3cehm, .framer-1B44b .framer-1xtg1de, .framer-1B44b .framer-aqzz9p { gap: 8px; } .framer-1B44b .framer-gp9k5x { gap: 32px; padding: 0px 16px 0px 16px; width: 100%; } .framer-1B44b .framer-1y4evzq, .framer-1B44b .framer-1lfpnwu { flex-direction: column; gap: 8px; } .framer-1B44b .framer-i9gsyc { align-content: unset; align-items: unset; display: grid; flex: none; gap: 8px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(2, minmax(50px, 1fr)); grid-template-rows: repeat(2, minmax(0, 1fr)); width: 100%; } .framer-1B44b .framer-13q7g3y { align-self: start; flex: none; grid-column: auto / span 2; height: 100%; justify-self: start; width: 100%; } .framer-1B44b .framer-te29ko { height: var(--framer-aspect-ratio-supported, 41px); top: -5px; } .framer-1B44b .framer-1f39g9d { align-self: start; flex: none; height: min-content; justify-self: start; width: 100%; } .framer-1B44b .framer-1auozl6 { height: auto; width: 100%; } .framer-1B44b .framer-10o7q86 { align-self: start; flex: none; height: 100%; justify-self: start; width: 100%; } .framer-1B44b .framer-oplugp, .framer-1B44b .framer-6amubf { flex: none; height: auto; } .framer-1B44b .framer-15ek61g { align-content: flex-start; align-items: flex-start; gap: 8px; width: 100%; } .framer-1B44b .framer-17qoyl7 { align-self: stretch; height: auto; } .framer-1B44b .framer-mduwbo { height: min-content; } .framer-1B44b .framer-1yrxxnw { height: auto; } .framer-1B44b .framer-su3io7, .framer-1B44b .framer-as3ufl, .framer-1B44b .framer-dimfrb, .framer-1B44b .framer-1ceyili { padding: 0px 16px 0px 16px; width: 100%; } .framer-1B44b .framer-11s3r10, .framer-1B44b .framer-y01y8e { height: 10px; } .framer-1B44b .framer-11gbvwn, .framer-1B44b .framer-cosmve { gap: 32px; padding: 0px; width: 100%; } .framer-1B44b .framer-1p4bmv2, .framer-1B44b .framer-1kfygyt { gap: 8px; padding: 0px 16px 0px 16px; width: 100%; } .framer-1B44b .framer-14e7z9t { gap: 8px; order: 0; } .framer-1B44b .framer-cbl5fp-container, .framer-1B44b .framer-ecrga9-container, .framer-1B44b .framer-109gw13-container, .framer-1B44b .framer-mpyoi5-container { height: 328px; width: 288px; } .framer-1B44b .framer-4vozbu, .framer-1B44b .framer-10u9fqm { padding: 0px 16px 0px 16px; } .framer-1B44b .framer-198kqpb { border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; flex: 1 0 0px; gap: 28px; padding: 40px 32px 48px 32px; width: 1px; } .framer-1B44b .framer-1m6fr1f { bottom: -395px; height: 222px; right: -61px; top: unset; width: 257px; } .framer-1B44b .framer-11d52p7 { bottom: -169px; left: -128px; top: -73px; width: 208px; } .framer-1B44b .framer-1b910v7 { bottom: -53px; right: -41px; top: -9px; width: var(--framer-aspect-ratio-supported, 56px); } .framer-1B44b .framer-1ungnzi { bottom: -376px; height: 193px; left: -135px; width: 186px; } .framer-1B44b .framer-h2zq8c-container, .framer-1B44b .framer-hvdnq1-container, .framer-1B44b .framer-l526vb-container { height: 328px; width: 100%; } .framer-1B44b .framer-aavbs6 { flex-direction: column; gap: 32px; padding: 0px 16px 0px 16px; width: 100%; } .framer-1B44b .framer-7xfkqy { height: 128px; left: -35px; top: 90px; width: 136px; } .framer-1B44b .framer-xzkhfm { flex: none; gap: 24px; width: 100%; } .framer-1B44b .framer-194neqt, .framer-1B44b .framer-1reoer8 { align-content: center; align-items: center; flex-direction: column; gap: 12px; } .framer-1B44b .framer-1jnicrh, .framer-1B44b .framer-wa3c6a { flex: none; width: 100%; } .framer-1B44b .framer-hdlppj { border-top-left-radius: 32px; border-top-right-radius: 32px; gap: 24px; padding: 32px 32px 16px 32px; } .framer-1B44b .framer-13gcyib { padding: 0px 0px 24px 0px; width: 100%; } .framer-1B44b .framer-uhdkfp { height: 180px; right: 387px; top: 103px; width: 209px; } .framer-1B44b .framer-1un6xmt { height: 206px; left: 360px; top: -67px; width: 177px; } .framer-1B44b .framer-184kjol { height: 68px; width: 302px; } .framer-1B44b .framer-14vd783 { align-content: center; align-items: center; flex-direction: column; gap: 16px; padding: 40px 0px 20px 0px; } .framer-1B44b .framer-1oh6tyc, .framer-1B44b .framer-iwt1yu { align-content: center; align-items: center; flex: none; gap: 8px; width: 100%; } .framer-1B44b .framer-tgddgo { height: var(--framer-aspect-ratio-supported, 32px); width: 82px; } .framer-1B44b .framer-125l0mq { align-content: center; align-items: center; flex: none; gap: 10px; width: 100%; } .framer-1B44b .framer-1l1z9sb-container, .framer-1B44b .framer-1me2uft-container, .framer-1B44b .framer-48ih15-container, .framer-1B44b .framer-h45bdk-container, .framer-1B44b .framer-156cvuz-container { width: auto; } .framer-1B44b .framer-dbzgni { align-content: center; align-items: center; flex: none; width: 100%; } .framer-1B44b .framer-yhwf6i, .framer-1B44b .framer-17fcg15 { align-content: center; align-items: center; gap: 0px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-1B44b.framer-72rtr7, .framer-1B44b .framer-p2vkt, .framer-1B44b .framer-14ogscg, .framer-1B44b .framer-ikm385, .framer-1B44b .framer-e3cehm, .framer-1B44b .framer-gp9k5x, .framer-1B44b .framer-1xtg1de, .framer-1B44b .framer-1y4evzq, .framer-1B44b .framer-i9gsyc, .framer-1B44b .framer-15ek61g, .framer-1B44b .framer-11gbvwn, .framer-1B44b .framer-1p4bmv2, .framer-1B44b .framer-14e7z9t, .framer-1B44b .framer-198kqpb, .framer-1B44b .framer-aqzz9p, .framer-1B44b .framer-cosmve, .framer-1B44b .framer-1kfygyt, .framer-1B44b .framer-1lfpnwu, .framer-1B44b .framer-aavbs6, .framer-1B44b .framer-xzkhfm, .framer-1B44b .framer-194neqt, .framer-1B44b .framer-1reoer8, .framer-1B44b .framer-hdlppj, .framer-1B44b .framer-1i0v6ij, .framer-1B44b .framer-14vd783, .framer-1B44b .framer-1oh6tyc, .framer-1B44b .framer-125l0mq, .framer-1B44b .framer-yhwf6i, .framer-1B44b .framer-17fcg15, .framer-1B44b .framer-iwt1yu { gap: 0px; } .framer-1B44b.framer-72rtr7 > * { margin: 0px; margin-bottom: calc(100px / 2); margin-top: calc(100px / 2); } .framer-1B44b.framer-72rtr7 > :first-child, .framer-1B44b .framer-p2vkt > :first-child, .framer-1B44b .framer-14ogscg > :first-child, .framer-1B44b .framer-ikm385 > :first-child, .framer-1B44b .framer-e3cehm > :first-child, .framer-1B44b .framer-gp9k5x > :first-child, .framer-1B44b .framer-1xtg1de > :first-child, .framer-1B44b .framer-1y4evzq > :first-child, .framer-1B44b .framer-11gbvwn > :first-child, .framer-1B44b .framer-1p4bmv2 > :first-child, .framer-1B44b .framer-198kqpb > :first-child, .framer-1B44b .framer-aqzz9p > :first-child, .framer-1B44b .framer-cosmve > :first-child, .framer-1B44b .framer-1kfygyt > :first-child, .framer-1B44b .framer-1lfpnwu > :first-child, .framer-1B44b .framer-aavbs6 > :first-child, .framer-1B44b .framer-xzkhfm > :first-child, .framer-1B44b .framer-194neqt > :first-child, .framer-1B44b .framer-1reoer8 > :first-child, .framer-1B44b .framer-hdlppj > :first-child, .framer-1B44b .framer-1i0v6ij > :first-child, .framer-1B44b .framer-14vd783 > :first-child, .framer-1B44b .framer-1oh6tyc > :first-child, .framer-1B44b .framer-125l0mq > :first-child, .framer-1B44b .framer-yhwf6i > :first-child, .framer-1B44b .framer-17fcg15 > :first-child, .framer-1B44b .framer-iwt1yu > :first-child { margin-top: 0px; } .framer-1B44b.framer-72rtr7 > :last-child, .framer-1B44b .framer-p2vkt > :last-child, .framer-1B44b .framer-14ogscg > :last-child, .framer-1B44b .framer-ikm385 > :last-child, .framer-1B44b .framer-e3cehm > :last-child, .framer-1B44b .framer-gp9k5x > :last-child, .framer-1B44b .framer-1xtg1de > :last-child, .framer-1B44b .framer-1y4evzq > :last-child, .framer-1B44b .framer-11gbvwn > :last-child, .framer-1B44b .framer-1p4bmv2 > :last-child, .framer-1B44b .framer-198kqpb > :last-child, .framer-1B44b .framer-aqzz9p > :last-child, .framer-1B44b .framer-cosmve > :last-child, .framer-1B44b .framer-1kfygyt > :last-child, .framer-1B44b .framer-1lfpnwu > :last-child, .framer-1B44b .framer-aavbs6 > :last-child, .framer-1B44b .framer-xzkhfm > :last-child, .framer-1B44b .framer-194neqt > :last-child, .framer-1B44b .framer-1reoer8 > :last-child, .framer-1B44b .framer-hdlppj > :last-child, .framer-1B44b .framer-1i0v6ij > :last-child, .framer-1B44b .framer-14vd783 > :last-child, .framer-1B44b .framer-1oh6tyc > :last-child, .framer-1B44b .framer-125l0mq > :last-child, .framer-1B44b .framer-yhwf6i > :last-child, .framer-1B44b .framer-17fcg15 > :last-child, .framer-1B44b .framer-iwt1yu > :last-child { margin-bottom: 0px; } .framer-1B44b .framer-p2vkt > *, .framer-1B44b .framer-gp9k5x > *, .framer-1B44b .framer-11gbvwn > *, .framer-1B44b .framer-cosmve > *, .framer-1B44b .framer-aavbs6 > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-1B44b .framer-14ogscg > *, .framer-1B44b .framer-xzkhfm > *, .framer-1B44b .framer-hdlppj > *, .framer-1B44b .framer-1i0v6ij > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-1B44b .framer-ikm385 > *, .framer-1B44b .framer-14vd783 > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-1B44b .framer-e3cehm > *, .framer-1B44b .framer-1xtg1de > *, .framer-1B44b .framer-1y4evzq > *, .framer-1B44b .framer-1p4bmv2 > *, .framer-1B44b .framer-aqzz9p > *, .framer-1B44b .framer-1kfygyt > *, .framer-1B44b .framer-1lfpnwu > *, .framer-1B44b .framer-1oh6tyc > *, .framer-1B44b .framer-iwt1yu > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-1B44b .framer-i9gsyc > *, .framer-1B44b .framer-i9gsyc > :first-child, .framer-1B44b .framer-i9gsyc > :last-child { margin: 0px; } .framer-1B44b .framer-15ek61g > *, .framer-1B44b .framer-14e7z9t > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-1B44b .framer-15ek61g > :first-child, .framer-1B44b .framer-14e7z9t > :first-child { margin-left: 0px; } .framer-1B44b .framer-15ek61g > :last-child, .framer-1B44b .framer-14e7z9t > :last-child { margin-right: 0px; } .framer-1B44b .framer-198kqpb > * { margin: 0px; margin-bottom: calc(28px / 2); margin-top: calc(28px / 2); } .framer-1B44b .framer-194neqt > *, .framer-1B44b .framer-1reoer8 > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-1B44b .framer-125l0mq > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-1B44b .framer-yhwf6i > *, .framer-1B44b .framer-17fcg15 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } }}`,...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,...sharedStyle7.css,...sharedStyle8.css,...sharedStyle9.css,'.framer-1B44b[data-hide-scrollbars=\"true\"]::-webkit-scrollbar, .framer-1B44b [data-hide-scrollbars=\"true\"]::-webkit-scrollbar { width: 0px; height: 0px; }','.framer-1B44b[data-hide-scrollbars=\"true\"]::-webkit-scrollbar-thumb, .framer-1B44b [data-hide-scrollbars=\"true\"]::-webkit-scrollbar-thumb { background: transparent; }','.framer-1B44b[data-border=\"true\"]::after, .framer-1B44b [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; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 5893\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"pt3F4AErh\":{\"layout\":[\"fixed\",\"auto\"]},\"xzId7X5_T\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-1B44b\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:5893,width:1440};addFonts(FrameraugiA20Il,[{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/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:\"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:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/hyOgCu0Xnghbimh0pE8QTvtt2AU.woff2\",weight:\"600\"},{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/NeGmSOXrPBfEFIy5YZeHq17LEDA.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/oYaAX5himiTPYuN8vLWnqBbfD2s.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/lEJLP4R0yuCaMCjSXYHtJw72M.woff2\",weight:\"600\"},{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/cRJyLNuTJR5jbyKzGi33wU9cqIQ.woff2\",weight:\"600\"},{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/1ZFS7N918ojhhd0nQWdj3jz4w.woff2\",weight:\"600\"},{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/A0Wcc7NgXMjUuFdquHDrIZpzZw0.woff2\",weight:\"600\"}]},...DRMMenuFonts,...DRMButtonsFonts,...DRMFormFonts,...MaterialFonts,...DRMPlayersFonts,...TickerFonts,...DRMServiceCardFonts,...DRMSliderFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts),...getFontsFromSharedStyle(sharedStyle7.fonts),...getFontsFromSharedStyle(sharedStyle8.fonts),...getFontsFromSharedStyle(sharedStyle9.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"5893\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"pt3F4AErh\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"xzId7X5_T\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerResponsiveScreen\":\"\",\"framerIntrinsicWidth\":\"1440\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["noopReturn", "t", "e", "t", "velocityPerSecond", "calcBezier", "t", "n", "e", "i", "binarySubdivide", "r", "c", "u", "a", "s", "cubicBezier", "o", "noopReturn", "getTForX", "l", "cubicBezier", "__rest", "e", "t", "r", "n", "o", "n", "e", "t", "r", "n", "calcGeneratorVelocity", "t", "s", "r", "a", "velocityPerSecond", "calcDampingRatio", "e", "hasReachedTarget", "spring", "o", "i", "h", "u", "d", "f", "l", "g", "glide", "c", "isOutOfBounds", "nearestBoundary", "m", "calcDelta", "calcLatest", "applyFriction", "p", "M", "checkCatchBoundary", "pregenerateKeyframes", "noopReturn", "W", "L", "D", "e", "M", "noopReturn", "k", "asTransformCssVar", "B", "L", "W", "t", "j", "B", "testAnimation", "e", "C", "$", "R", "resolveElements", "e", "t", "n", "createGeneratorEasing", "e", "t", "n", "o", "getGenerator", "i", "s", "r", "a", "getKeyframes", "pregenerateKeyframes", "c", "isNumberOrNull", "l", "f", "u", "d", "calcGeneratorVelocity", "g", "m", "N", "spring", "F", "glide", "U", "inView$1", "resolveElements", "onIntersectionChange", "q", "K", "getElementSize", "notifyTarget", "notifyAll", "createResizeObserver", "resizeElement", "G", "_", "createWindowResizeHandler", "window", "resizeWindow", "resize", "dispatchPointerEvent", "e", "t", "n", "dispatchViewEvent", "se", "o", "i", "s", "__rest", "inView$1", "mouseEvent", "re", "ae", "onPointerUp", "window", "onPointerDown", "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", "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", "enabledGestures", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "toResponsiveImage", "value", "transition1", "transformTemplate1", "_", "t", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "image", "link2", "name1", "number", "width", "props", "_ref", "_ref1", "_ref2", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "eAnySZrID", "nKQ1MSHF1", "DPMILTv3Z", "OCNhLCSpE", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "isDisplayed", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "u", "Image2", "getLoadingLazyAtYPosition", "cx", "RichText2", "SVG", "css", "FramerrHVrp6RoP", "withCSS", "rHVrp6RoP_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "DRMMenuFonts", "getFonts", "qcFdnCXKa_default", "DRMButtonsFonts", "I91Fv9nfm_default", "DRMFormFonts", "mgnpehJXQ_default", "MaterialFonts", "Icon", "MotionDivWithOptimizedAppearEffect", "withOptimizedAppearEffect", "motion", "ContainerWithOptimizedAppearEffect", "Container", "ImageWithOptimizedAppearEffect", "Image2", "DRMPlayersFonts", "rHVrp6RoP_default", "TickerFonts", "Ticker", "RichTextWithFX", "withFX", "RichText2", "MotionDivWithFX", "DRMServiceCardFonts", "mkW3QwEuk_default", "ContainerWithFX", "DRMSliderFonts", "HHMMcm9oA_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "Overlay", "children", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "transition1", "animation", "animation1", "animation2", "transition2", "animation3", "animation4", "transition3", "animation5", "animation6", "transformTemplate1", "_", "t", "transition4", "animation7", "animation8", "transition5", "animation9", "transition6", "animation10", "transition7", "animation11", "transition8", "animation12", "animation13", "addImageAlt", "image", "alt", "animation14", "transition9", "transition10", "animation15", "transition11", "transition12", "transition13", "transition14", "transition15", "transition16", "transition17", "transition18", "transition19", "transition20", "transition21", "animation16", "transition22", "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", "activeVariantCallback", "delay", "useActiveVariantCallback", "j1DOsD4d3welu7j", "overlay", "paginationInfo", "args", "nqkM2DFBa1wvko5h", "onTapwelu7j", "onTap1wvko5h", "b6QKjjnGz1wvko5h", "ref1", "pe", "isDisplayed", "router", "useRouter", "isDisplayed1", "isDisplayed2", "elementId", "useRouteElementId", "ref2", "elementId1", "ref3", "isDisplayed3", "ref4", "elementId2", "ref5", "elementId3", "elementId4", "ref6", "ref7", "elementId5", "defaultLayoutId", "ae", "sharedStyleClassNames", "useCustomCursors", "p", "GeneratedComponentContext", "u", "LayoutGroup", "cx", "Link", "PropertyOverrides2", "getLoadingLazyAtYPosition", "ResolveLinks", "resolvedLinks", "ComponentViewportProvider", "resolvedLinks1", "resolvedLinks2", "resolvedLinks3", "l", "AnimatePresence", "Ga", "x", "overlay1", "SVG", "resolvedLinks4", "resolvedLinks5", "resolvedLinks6", "resolvedLinks7", "resolvedLinks8", "overlay2", "overlay3", "overlay4", "resolvedLinks9", "resolvedLinks10", "resolvedLinks11", "resolvedLinks12", "resolvedLinks13", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
