-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
69 lines (50 loc) · 184 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
<!DOCTYPE html>
<!-- saved from url=(0041)https://massive-number-496753.framer.app/ -->
<html><script type="text/javascript">(()=>{"use strict";var e={269:function(e,t,n){var i=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:!0});const r=i(n(187)),s=n(987);class Provider extends r.default{constructor(e){super(),this.promises={},this.attemptedSubscriptions=new Set,this.subscriptions=[],this.checkConnectionRunning=!1,this.nextId=1,this.connected=!1,this.accounts=[],this.selectedAddress=void 0,this.coinbase=void 0,this.enable=this.enable.bind(this),this.doSend=this.doSend.bind(this),this.send=this.send.bind(this),this.sendBatch=this.sendBatch.bind(this),this.subscribe=this.subscribe.bind(this),this.unsubscribe=this.unsubscribe.bind(this),this.resumeSubscriptions=this.resumeSubscriptions.bind(this),this.sendAsync=this.sendAsync.bind(this),this.sendAsyncBatch=this.sendAsyncBatch.bind(this),this.isConnected=this.isConnected.bind(this),this.close=this.close.bind(this),this.request=this.request.bind(this),this.connection=e,this.on("connect",this.resumeSubscriptions),this.connection.on("connect",(()=>this.checkConnection(1e3))),this.connection.on("close",(()=>{this.connected=!1,this.attemptedSubscriptions.clear(),this.emit("close"),this.emit("disconnect")})),this.connection.on("payload",(e=>{const{id:t,method:n,error:i,result:r}=e;if(void 0!==t){if(this.promises[t]){const n=this.promises[t].method;if(n&&["eth_accounts","eth_requestAccounts"].includes(n)){const e=r||[];this.accounts=e,this.selectedAddress=e[0],this.coinbase=e[0]}e.error?this.promises[t].reject(i):this.promises[t].resolve(r),delete this.promises[t]}}else n&&n.indexOf("_subscription")>-1&&(this.emit(e.params.subscription,e.params.result),this.emit(n,e.params),this.emit("message",{type:e.method,data:{subscription:e.params.subscription,result:e.params.result}}),this.emit("data",e))})),this.on("newListener",(e=>{Object.keys(this.eventHandlers).includes(e)&&!this.attemptedSubscription(e)&&this.connected&&(this.startSubscription(e),"networkChanged"===e&&console.warn("The networkChanged event is being deprecated, use chainChanged instead"))})),this.eventHandlers={networkChanged:e=>{this.networkVersion="string"==typeof e?parseInt(e):e,this.emit("networkChanged",this.networkVersion)},chainChanged:e=>{this.providerChainId=e,this.manualChainId||this.emit("chainChanged",e)},chainsChanged:e=>{this.emit("chainsChanged",e)},accountsChanged:e=>{this.selectedAddress=e[0],this.emit("accountsChanged",e)},assetsChanged:e=>{this.emit("assetsChanged",e)}}}get chainId(){return this.manualChainId||this.providerChainId}async checkConnection(e=4e3){if(!this.checkConnectionRunning&&!this.connected){clearTimeout(this.checkConnectionTimer),this.checkConnectionTimer=void 0,this.checkConnectionRunning=!0;try{this.networkVersion=await this.doSend("net_version",[],void 0,!1),this.providerChainId=await this.doSend("eth_chainId",[],void 0,!1),this.connected=!0}catch(t){this.checkConnectionTimer=setTimeout((()=>this.checkConnection()),e),this.connected=!1}finally{this.checkConnectionRunning=!1,this.connected&&this.emit("connect",{chainId:this.providerChainId})}}}attemptedSubscription(e){return this.attemptedSubscriptions.has(e)}setSubscriptionAttempted(e){this.attemptedSubscriptions.add(e)}async startSubscription(e){console.debug(`starting subscription for ${e} events`),this.setSubscriptionAttempted(e);try{const t=await this.subscribe("eth_subscribe",e);this.on(t,this.eventHandlers[e])}catch(t){console.warn(`Unable to subscribe to ${e}`,t)}}resumeSubscriptions(){Object.keys(this.eventHandlers).forEach((e=>{this.listenerCount(e)&&!this.attemptedSubscription(e)&&this.startSubscription(e)}))}async enable(){const e=await this.doSend("eth_accounts");if(e.length>0)return this.accounts=e,this.selectedAddress=e[0],this.coinbase=e[0],this.emit("enable"),e;{const e=new Error("User Denied Full Provider");throw e.code="4001",e}}doSend(e,t=[],n=this.manualChainId,i=!0){const sendFn=(i,r)=>{const o="object"==typeof e?e.method:e,c="object"==typeof e?e.params:t,a="object"==typeof e&&e.chainId||n;if(!o)return r(new Error("Method is not a valid string."));try{const e=(0,s.create)(o,c,this.nextId++,a);this.promises[e.id]={resolve:e=>i(e),reject:r,method:e.method},this.connection.send(e)}catch(e){r(e)}};return this.connected||!i?new Promise(sendFn):new Promise(((e,t)=>{const resolveSend=()=>(clearTimeout(n),e(new Promise(sendFn))),n=setTimeout((()=>{this.off("connect",resolveSend),t(new Error("Not connected"))}),5e3);this.once("connect",resolveSend)}))}async send(e,t){if("string"==typeof e&&(!t||Array.isArray(t))){const n=t;return this.doSend(e,n)}if(e&&"object"==typeof e&&"function"==typeof t){const n=t;return this.sendAsync(e,n)}return this.request(e)}sendBatch(e){return Promise.all(e.map((e=>this.doSend(e.method,e.params))))}async subscribe(e,t,n=[]){const i=await this.doSend(e,[t,...n]);return this.subscriptions.push(i),i}async unsubscribe(e,t){const n=await this.doSend(e,[t]);if(n)return this.subscriptions=this.subscriptions.filter((e=>e!==t)),this.removeAllListeners(t),n}async sendAsync(e,t){if(!t||"function"!=typeof t)return new Error("Invalid or undefined callback provided to sendAsync");if(!e)return t(new Error("Invalid Payload"));if(Array.isArray(e)){const n=e.map((e=>({...e,jsonrpc:"2.0"}))),i=t;return this.sendAsyncBatch(n,i)}{const n={...e,jsonrpc:"2.0"},i=t;try{const e=await this.doSend(n.method,n.params);i(null,{id:n.id,jsonrpc:n.jsonrpc,result:e})}catch(e){i(e)}}}async sendAsyncBatch(e,t){try{const n=await this.sendBatch(e);t(null,n.map(((t,n)=>({id:e[n].id,jsonrpc:e[n].jsonrpc,result:t}))))}catch(e){t(e)}}isConnected(){return this.connected}close(){this.connection&&this.connection.close&&this.connection.close(),this.off("connect",this.resumeSubscriptions),this.connected=!1;const e=new Error("Provider closed, subscription lost, please subscribe again.");this.subscriptions.forEach((t=>this.emit(t,e))),this.subscriptions=[],this.manualChainId=void 0,this.providerChainId=void 0,this.networkVersion=void 0,this.selectedAddress=void 0,this.coinbase=void 0}async request(e){return this.doSend(e.method,e.params,e.chainId)}setChain(e){"number"==typeof e&&(e="0x"+e.toString(16));const t=e!==this.chainId;this.manualChainId=e,t&&this.emit("chainChanged",this.chainId)}}t.default=Provider},987:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.create=void 0,t.create=function create(e,t=[],n,i){const r={id:n,method:e,params:t,jsonrpc:"2.0"};if(i&&(r.chainId=i),"eth_sendTransaction"===r.method){const e=function isChainMismatch(e){if("eth_sendTransaction"!==e.method)return!1;const t=e.params[0]||{},n=t.chainId;return"chainId"in t&&parseInt(n)!==parseInt(e.chainId||n)}(r);if(e)throw new Error(`Payload chainId (${e}) inconsistent with specified target chainId: ${i}`);return function updatePayloadChain(e){const t=e.params[0]||{};return{...e,params:[{...t,chainId:t.chainId||e.chainId},...e.params.slice(1)]}}(r)}return r}},187:e=>{var t,n="object"==typeof Reflect?Reflect:null,i=n&&"function"==typeof n.apply?n.apply:function ReflectApply(e,t,n){return Function.prototype.apply.call(e,t,n)};t=n&&"function"==typeof n.ownKeys?n.ownKeys:Object.getOwnPropertySymbols?function ReflectOwnKeys(e){return Object.getOwnPropertyNames(e).concat(Object.getOwnPropertySymbols(e))}:function ReflectOwnKeys(e){return Object.getOwnPropertyNames(e)};var r=Number.isNaN||function NumberIsNaN(e){return e!=e};function EventEmitter(){EventEmitter.init.call(this)}e.exports=EventEmitter,e.exports.once=function once(e,t){return new Promise((function(n,i){function errorListener(n){e.removeListener(t,resolver),i(n)}function resolver(){"function"==typeof e.removeListener&&e.removeListener("error",errorListener),n([].slice.call(arguments))}eventTargetAgnosticAddListener(e,t,resolver,{once:!0}),"error"!==t&&function addErrorHandlerIfEventEmitter(e,t,n){"function"==typeof e.on&&eventTargetAgnosticAddListener(e,"error",t,n)}(e,errorListener,{once:!0})}))},EventEmitter.EventEmitter=EventEmitter,EventEmitter.prototype._events=void 0,EventEmitter.prototype._eventsCount=0,EventEmitter.prototype._maxListeners=void 0;var s=10;function checkListener(e){if("function"!=typeof e)throw new TypeError('The "listener" argument must be of type Function. Received type '+typeof e)}function _getMaxListeners(e){return void 0===e._maxListeners?EventEmitter.defaultMaxListeners:e._maxListeners}function _addListener(e,t,n,i){var r,s,o;if(checkListener(n),void 0===(s=e._events)?(s=e._events=Object.create(null),e._eventsCount=0):(void 0!==s.newListener&&(e.emit("newListener",t,n.listener?n.listener:n),s=e._events),o=s[t]),void 0===o)o=s[t]=n,++e._eventsCount;else if("function"==typeof o?o=s[t]=i?[n,o]:[o,n]:i?o.unshift(n):o.push(n),(r=_getMaxListeners(e))>0&&o.length>r&&!o.warned){o.warned=!0;var c=new Error("Possible EventEmitter memory leak detected. "+o.length+" "+String(t)+" listeners added. Use emitter.setMaxListeners() to increase limit");c.name="MaxListenersExceededWarning",c.emitter=e,c.type=t,c.count=o.length,function ProcessEmitWarning(e){console&&console.warn&&console.warn(e)}(c)}return e}function onceWrapper(){if(!this.fired)return this.target.removeListener(this.type,this.wrapFn),this.fired=!0,0===arguments.length?this.listener.call(this.target):this.listener.apply(this.target,arguments)}function _onceWrap(e,t,n){var i={fired:!1,wrapFn:void 0,target:e,type:t,listener:n},r=onceWrapper.bind(i);return r.listener=n,i.wrapFn=r,r}function _listeners(e,t,n){var i=e._events;if(void 0===i)return[];var r=i[t];return void 0===r?[]:"function"==typeof r?n?[r.listener||r]:[r]:n?function unwrapListeners(e){for(var t=new Array(e.length),n=0;n<t.length;++n)t[n]=e[n].listener||e[n];return t}(r):arrayClone(r,r.length)}function listenerCount(e){var t=this._events;if(void 0!==t){var n=t[e];if("function"==typeof n)return 1;if(void 0!==n)return n.length}return 0}function arrayClone(e,t){for(var n=new Array(t),i=0;i<t;++i)n[i]=e[i];return n}function eventTargetAgnosticAddListener(e,t,n,i){if("function"==typeof e.on)i.once?e.once(t,n):e.on(t,n);else{if("function"!=typeof e.addEventListener)throw new TypeError('The "emitter" argument must be of type EventEmitter. Received type '+typeof e);e.addEventListener(t,(function wrapListener(r){i.once&&e.removeEventListener(t,wrapListener),n(r)}))}}Object.defineProperty(EventEmitter,"defaultMaxListeners",{enumerable:!0,get:function(){return s},set:function(e){if("number"!=typeof e||e<0||r(e))throw new RangeError('The value of "defaultMaxListeners" is out of range. It must be a non-negative number. Received '+e+".");s=e}}),EventEmitter.init=function(){void 0!==this._events&&this._events!==Object.getPrototypeOf(this)._events||(this._events=Object.create(null),this._eventsCount=0),this._maxListeners=this._maxListeners||void 0},EventEmitter.prototype.setMaxListeners=function setMaxListeners(e){if("number"!=typeof e||e<0||r(e))throw new RangeError('The value of "n" is out of range. It must be a non-negative number. Received '+e+".");return this._maxListeners=e,this},EventEmitter.prototype.getMaxListeners=function getMaxListeners(){return _getMaxListeners(this)},EventEmitter.prototype.emit=function emit(e){for(var t=[],n=1;n<arguments.length;n++)t.push(arguments[n]);var r="error"===e,s=this._events;if(void 0!==s)r=r&&void 0===s.error;else if(!r)return!1;if(r){var o;if(t.length>0&&(o=t[0]),o instanceof Error)throw o;var c=new Error("Unhandled error."+(o?" ("+o.message+")":""));throw c.context=o,c}var a=s[e];if(void 0===a)return!1;if("function"==typeof a)i(a,this,t);else{var d=a.length,h=arrayClone(a,d);for(n=0;n<d;++n)i(h[n],this,t)}return!0},EventEmitter.prototype.addListener=function addListener(e,t){return _addListener(this,e,t,!1)},EventEmitter.prototype.on=EventEmitter.prototype.addListener,EventEmitter.prototype.prependListener=function prependListener(e,t){return _addListener(this,e,t,!0)},EventEmitter.prototype.once=function once(e,t){return checkListener(t),this.on(e,_onceWrap(this,e,t)),this},EventEmitter.prototype.prependOnceListener=function prependOnceListener(e,t){return checkListener(t),this.prependListener(e,_onceWrap(this,e,t)),this},EventEmitter.prototype.removeListener=function removeListener(e,t){var n,i,r,s,o;if(checkListener(t),void 0===(i=this._events))return this;if(void 0===(n=i[e]))return this;if(n===t||n.listener===t)0==--this._eventsCount?this._events=Object.create(null):(delete i[e],i.removeListener&&this.emit("removeListener",e,n.listener||t));else if("function"!=typeof n){for(r=-1,s=n.length-1;s>=0;s--)if(n[s]===t||n[s].listener===t){o=n[s].listener,r=s;break}if(r<0)return this;0===r?n.shift():function spliceOne(e,t){for(;t+1<e.length;t++)e[t]=e[t+1];e.pop()}(n,r),1===n.length&&(i[e]=n[0]),void 0!==i.removeListener&&this.emit("removeListener",e,o||t)}return this},EventEmitter.prototype.off=EventEmitter.prototype.removeListener,EventEmitter.prototype.removeAllListeners=function removeAllListeners(e){var t,n,i;if(void 0===(n=this._events))return this;if(void 0===n.removeListener)return 0===arguments.length?(this._events=Object.create(null),this._eventsCount=0):void 0!==n[e]&&(0==--this._eventsCount?this._events=Object.create(null):delete n[e]),this;if(0===arguments.length){var r,s=Object.keys(n);for(i=0;i<s.length;++i)"removeListener"!==(r=s[i])&&this.removeAllListeners(r);return this.removeAllListeners("removeListener"),this._events=Object.create(null),this._eventsCount=0,this}if("function"==typeof(t=n[e]))this.removeListener(e,t);else if(void 0!==t)for(i=t.length-1;i>=0;i--)this.removeListener(e,t[i]);return this},EventEmitter.prototype.listeners=function listeners(e){return _listeners(this,e,!0)},EventEmitter.prototype.rawListeners=function rawListeners(e){return _listeners(this,e,!1)},EventEmitter.listenerCount=function(e,t){return"function"==typeof e.listenerCount?e.listenerCount(t):listenerCount.call(e,t)},EventEmitter.prototype.listenerCount=listenerCount,EventEmitter.prototype.eventNames=function eventNames(){return this._eventsCount>0?t(this._events):[]}}},t={};function __webpack_require__(n){var i=t[n];if(void 0!==i)return i.exports;var r=t[n]={exports:{}};return e[n].call(r.exports,r,r.exports,__webpack_require__),r.exports}__webpack_require__.n=e=>{var t=e&&e.__esModule?()=>e.default:()=>e;return __webpack_require__.d(t,{a:t}),t},__webpack_require__.d=(e,t)=>{for(var n in t)__webpack_require__.o(t,n)&&!__webpack_require__.o(e,n)&&Object.defineProperty(e,n,{enumerable:!0,get:t[n]})},__webpack_require__.o=(e,t)=>Object.prototype.hasOwnProperty.call(e,t),(()=>{var e=__webpack_require__(187),t=__webpack_require__.n(e),n=__webpack_require__(269),i=__webpack_require__.n(n);function setProvider(){Object.getOwnPropertyDescriptor(window,"ethereum")?.configurable?Object.defineProperty(window,"ethereum",{value:r,writable:!0,configurable:!0,enumerable:!0}):window.ethereum=r}class ExtensionProvider extends(i()){doSend(e,t,n,i){if(!i&&("eth_chainId"===e||"net_version"===e)){const n={jsonrpc:"2.0",id:this.nextId++,method:e,params:t,__extensionConnecting:!0};return new Promise(((t,i)=>{this.promises[n.id]={resolve:t,reject:i,method:e},this.connection.send(n)}))}return super.doSend(e,t,n,i)}}class Connection extends(t()){constructor(){super(),window.addEventListener("message",(e=>{if(e&&e.source===window&&e.data){const{type:t}=e.data;"eth:payload"===t&&this.emit("payload",e.data.payload),"eth:event"===t&&this.emit(e.data.event,...e.data.args)}})),setTimeout((()=>this.emit("connect")),0)}send(e){window.postMessage({type:"eth:send",payload:e},window.location.origin)}}let r,s=window.localStorage.getItem("__frameAppearAsMM__");try{s=JSON.parse(s)}catch(e){s=!1}if(s){class MetaMaskProvider extends ExtensionProvider{}try{r=new MetaMaskProvider(new Connection),r.isMetaMask=!0,r._metamask={isUnlocked:()=>new Promise((e=>e(!0)))},r.setMaxListeners(0)}catch(e){console.error("Frame Error:",e)}}else{class FrameProvider extends ExtensionProvider{}try{r=new FrameProvider(new Connection),r.isFrame=!0,r.setMaxListeners(0)}catch(e){console.error("Frame Error:",e)}}setProvider(),function shimWeb3(e,t){let n=!1;if(!window.web3){const i=t?"__isMetaMaskShim__":"__isFrameShim__",r={currentProvider:e};Object.defineProperty(r,i,{value:!0,enumerable:!0,configurable:!1,writable:!1});const s=new Proxy(r,{get:(e,t,...r)=>("currentProvider"!==t||n?"currentProvider"!==t&&t!==i&&console.error(`You are requesting the "${t}" property of window.web3 which no longer supported; use window.ethereum instead.`):(n=!0,console.warn("You are accessing the Frame window.web3.currentProvider shim. This property is deprecated; use window.ethereum instead.")),Reflect.get(e,t,...r)),set:(...e)=>(console.warn("You are accessing the Frame window.web3 shim. This object is deprecated; use window.ethereum instead."),Reflect.set(...e))});Object.defineProperty(window,"web3",{value:s,enumerable:!1,configurable:!0,writable:!0})}}(window.ethereum,s);const o={getChainId:async()=>({chainId:await window.ethereum.doSend("eth_chainId",[],void 0,!1)})};document.addEventListener("readystatechange",(e=>{"interactive"===document.readyState&&setProvider()})),window.addEventListener("message",(async e=>{if(e&&e.source===window&&e.data&&"embedded:action"===e.data.type&&window.self===window.top&&e.data.action){const t=e.data.action;if(o[t.type]){const e={method:"embedded_action_res",params:[t,await o[t.type](t)]};window.postMessage({type:"eth:send",payload:e},window.location.origin)}else console.warn(`Could not find embedded action ${t.type}`)}}))})()})();</script><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<!-- End of headStart -->
<meta name="viewport" content="width=device-width">
<meta name="generator" content="Framer 78001ac">
<title>Coria Pay - Landing</title>
<meta name="description" content="UPI credit line for your crypto">
<meta name="framer-search-index" content="https://framerusercontent.com/sites/3K8TSzAKsfZ8OI7i2qkiH6/searchIndex-ll9liqed.n4.json">
<link rel="icon" href="https://framerusercontent.com/sites/icons/default-favicon.v3.png">
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website">
<meta property="og:title" content="Coria Pay - Landing">
<meta property="og:description" content="UPI credit line for your crypto">
<!-- Twitter -->
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="Coria Pay - Landing">
<meta name="twitter:description" content="UPI credit line for your crypto">
<link href="https://fonts.gstatic.com/" rel="preconnect" crossorigin=""><link rel="canonical" href="https://massive-number-496753.framer.app/"><link rel="modulepreload" href="https://framerusercontent.com/sites/3K8TSzAKsfZ8OI7i2qkiH6/chunk-V47XY3QZ.mjs">
<link rel="modulepreload" href="https://framerusercontent.com/sites/3K8TSzAKsfZ8OI7i2qkiH6/chunk-ELYU6EKT.mjs">
<link rel="modulepreload" href="https://framerusercontent.com/sites/3K8TSzAKsfZ8OI7i2qkiH6/dBrhWwXs6JJuQtyS9pUXY6UbHa7dFVYogau6MfmcQ6c.BOQF7CHI.mjs">
<link rel="modulepreload" href="https://framerusercontent.com/sites/3K8TSzAKsfZ8OI7i2qkiH6/chunk-NJ235ST6.mjs">
<link rel="modulepreload" href="https://framerusercontent.com/sites/3K8TSzAKsfZ8OI7i2qkiH6/chunk-2KFKRIPK.mjs">
<link rel="modulepreload" href="https://framerusercontent.com/sites/3K8TSzAKsfZ8OI7i2qkiH6/chunk-AXWHWOFJ.mjs">
<link rel="modulepreload" href="https://framerusercontent.com/sites/3K8TSzAKsfZ8OI7i2qkiH6/chunk-UDC2IEIF.mjs">
<link rel="modulepreload" href="https://framerusercontent.com/sites/3K8TSzAKsfZ8OI7i2qkiH6/chunk-QXJRBYRV.mjs">
<link rel="modulepreload" href="https://framerusercontent.com/sites/3K8TSzAKsfZ8OI7i2qkiH6/chunk-YYJ24H5R.mjs">
<link rel="modulepreload" href="https://framerusercontent.com/sites/3K8TSzAKsfZ8OI7i2qkiH6/chunk-42U43NKG.mjs"><style data-framer-css-ssr-minified="" data-framer-components="framer-JXxo1 framer-8vrbp">html,body,#main{height:100%;margin:0;padding:0;box-sizing:border-box}:root{-webkit-font-smoothing:antialiased}*{box-sizing:border-box;-webkit-font-smoothing:inherit}h1,h2,h3,h4,h5,h6,p,figure{margin:0}body,input,textarea,select,button{font-size:12px;font-family:sans-serif}body{--token-5e960dff-6b90-4f0b-adb8-66611c7c3a86: rgb(87, 87, 87);--token-1d11e7c9-c5f2-405f-a513-4875194544c6: rgb(250, 249, 251);--token-cdf74645-5375-453d-83b0-a5d9ebf3a499: rgb(0, 122, 255);--token-88df606f-5878-4d12-aef5-80c1b2572188: rgb(255, 129, 22);--token-ff3bb76a-6ec0-4534-a512-77f06d5eaa3d: rgb(250, 245, 255);--token-1a5aa905-75a8-43dc-a9c8-5a9b6e98a9c2: rgb(0, 0, 0);--token-892e5b83-1349-4fe0-a72b-644287e4db25: rgb(255, 255, 255)}#__framer-badge-container{position:fixed;bottom:0;padding:20px;width:100%;display:flex;justify-content:right;pointer-events:none;z-index:314159}.__framer-badge{pointer-events:auto}@font-face{font-family:Outfit;font-style:normal;font-weight:400;font-display:swap;src:url(https://fonts.gstatic.com/s/outfit/v11/QGYvz_MVcBeNP4NJuktqQ4E.woff2) format("woff2");unicode-range:U+0100-02AF,U+0304,U+0308,U+0329,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20CF,U+2113,U+2C60-2C7F,U+A720-A7FF}@font-face{font-family:Outfit;font-style:normal;font-weight:400;font-display:swap;src:url(https://fonts.gstatic.com/s/outfit/v11/QGYvz_MVcBeNP4NJtEtq.woff2) format("woff2");unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}@font-face{font-family:Outfit;font-style:normal;font-weight:700;font-display:swap;src:url(https://fonts.gstatic.com/s/outfit/v11/QGYvz_MVcBeNP4NJuktqQ4E.woff2) format("woff2");unicode-range:U+0100-02AF,U+0304,U+0308,U+0329,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20CF,U+2113,U+2C60-2C7F,U+A720-A7FF}@font-face{font-family:Outfit;font-style:normal;font-weight:700;font-display:swap;src:url(https://fonts.gstatic.com/s/outfit/v11/QGYvz_MVcBeNP4NJtEtq.woff2) format("woff2");unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}@font-face{font-family:Outfit;font-style:normal;font-weight:500;font-display:block;src:url(https://fonts.gstatic.com/s/outfit/v11/QGYvz_MVcBeNP4NJuktqQ4E.woff2) format("woff2");unicode-range:U+0100-02AF,U+0304,U+0308,U+0329,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20CF,U+2113,U+2C60-2C7F,U+A720-A7FF}@font-face{font-family:Outfit;font-style:normal;font-weight:500;font-display:block;src:url(https://fonts.gstatic.com/s/outfit/v11/QGYvz_MVcBeNP4NJtEtq.woff2) format("woff2");unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}@font-face{font-family:Outfit;font-style:normal;font-weight:600;font-display:block;src:url(https://fonts.gstatic.com/s/outfit/v11/QGYvz_MVcBeNP4NJuktqQ4E.woff2) format("woff2");unicode-range:U+0100-02AF,U+0304,U+0308,U+0329,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20CF,U+2113,U+2C60-2C7F,U+A720-A7FF}@font-face{font-family:Outfit;font-style:normal;font-weight:600;font-display:block;src:url(https://fonts.gstatic.com/s/outfit/v11/QGYvz_MVcBeNP4NJtEtq.woff2) format("woff2");unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}@font-face{font-family:Outfit Placeholder;ascent-override:99.94%;descent-override:25.98%;line-gap-override:0%;size-adjust:100.06%;src:local("Arial")}@font-face{font-family:Inter Placeholder;ascent-override:90%;descent-override:22.43%;line-gap-override:0%;size-adjust:107.64%;src:local("Arial")}@font-face{font-display:block;font-family:Inter;font-style:normal;font-weight:100;src:url(https://app.framerstatic.com/Inter-Thin.cyrillic-ext-BHDA65O4.woff2) format("woff2");unicode-range:U+0460-052F,U+1C80-1C88,U+20B4,U+2DE0-2DFF,U+A640-A69F,U+FE2E-FE2F}@font-face{font-display:block;font-family:Inter;font-style:normal;font-weight:100;src:url(https://app.framerstatic.com/Inter-Thin.cyrillic-Q5IXHU2O.woff2) format("woff2");unicode-range:U+0301,U+0400-045F,U+0490-0491,U+04B0-04B1,U+2116}@font-face{font-display:block;font-family:Inter;font-style:normal;font-weight:100;src:url(https://app.framerstatic.com/Inter-Thin.greek-ext-VVOQA2NE.woff2) format("woff2");unicode-range:U+1F00-1FFF}@font-face{font-display:block;font-family:Inter;font-style:normal;font-weight:100;src:url(https://app.framerstatic.com/Inter-Thin.greek-E3WNEUH6.woff2) format("woff2");unicode-range:U+0370-03FF}@font-face{font-display:block;font-family:Inter;font-style:normal;font-weight:100;src:url(https://app.framerstatic.com/Inter-Thin.latin-ext-5RC4NRHN.woff2) format("woff2");unicode-range:U+0100-024F,U+0259,U+1E00-1EFF,U+2020,U+20A0-20AB,U+20AD-20CF,U+2113,U+2C60-2C7F,U+A720-A7FF}@font-face{font-display:block;font-family:Inter;font-style:normal;font-weight:100;src:url(https://app.framerstatic.com/Inter-Thin.latin-GJ7CRGHG.woff2) format("woff2");unicode-range: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}@font-face{font-display:block;font-family:Inter;font-style:normal;font-weight:100;src:url(https://app.framerstatic.com/Inter-Thin.vietnamese-Z3Y7DPWO.woff2) format("woff2");unicode-range:U+0102-0103,U+0110-0111,U+0128-0129,U+0168-0169,U+01A0-01A1,U+01AF-01B0,U+1EA0-1EF9,U+20AB}@font-face{font-display:block;font-family:Inter;font-style:normal;font-weight:200;src:url(https://app.framerstatic.com/Inter-ExtraLight.cyrillic-ext-7NWKXNAT.woff2) format("woff2");unicode-range:U+0460-052F,U+1C80-1C88,U+20B4,U+2DE0-2DFF,U+A640-A69F,U+FE2E-FE2F}@font-face{font-display:block;font-family:Inter;font-style:normal;font-weight:200;src:url(https://app.framerstatic.com/Inter-ExtraLight.cyrillic-IBWUD6RJ.woff2) format("woff2");unicode-range:U+0301,U+0400-045F,U+0490-0491,U+04B0-04B1,U+2116}@font-face{font-display:block;font-family:Inter;font-style:normal;font-weight:200;src:url(https://app.framerstatic.com/Inter-ExtraLight.greek-ext-HUMDTRBU.woff2) format("woff2");unicode-range:U+1F00-1FFF}@font-face{font-display:block;font-family:Inter;font-style:normal;font-weight:200;src:url(https://app.framerstatic.com/Inter-ExtraLight.greek-ZLLHEEN3.woff2) format("woff2");unicode-range:U+0370-03FF}@font-face{font-display:block;font-family:Inter;font-style:normal;font-weight:200;src:url(https://app.framerstatic.com/Inter-ExtraLight.latin-ext-72JE5FGU.woff2) format("woff2");unicode-range:U+0100-024F,U+0259,U+1E00-1EFF,U+2020,U+20A0-20AB,U+20AD-20CF,U+2113,U+2C60-2C7F,U+A720-A7FF}@font-face{font-display:block;font-family:Inter;font-style:normal;font-weight:200;src:url(https://app.framerstatic.com/Inter-ExtraLight.latin-2JHDAFAQ.woff2) format("woff2");unicode-range: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}@font-face{font-display:block;font-family:Inter;font-style:normal;font-weight:200;src:url(https://app.framerstatic.com/Inter-ExtraLight.vietnamese-VKRCA4VC.woff2) format("woff2");unicode-range:U+0102-0103,U+0110-0111,U+0128-0129,U+0168-0169,U+01A0-01A1,U+01AF-01B0,U+1EA0-1EF9,U+20AB}@font-face{font-display:block;font-family:Inter;font-style:normal;font-weight:300;src:url(https://app.framerstatic.com/Inter-Light.cyrillic-ext-G3OTPKE4.woff2) format("woff2");unicode-range:U+0460-052F,U+1C80-1C88,U+20B4,U+2DE0-2DFF,U+A640-A69F,U+FE2E-FE2F}@font-face{font-display:block;font-family:Inter;font-style:normal;font-weight:300;src:url(https://app.framerstatic.com/Inter-Light.cyrillic-JO7ZJTP6.woff2) format("woff2");unicode-range:U+0301,U+0400-045F,U+0490-0491,U+04B0-04B1,U+2116}@font-face{font-display:block;font-family:Inter;font-style:normal;font-weight:300;src:url(https://app.framerstatic.com/Inter-Light.greek-ext-N63XCCK3.woff2) format("woff2");unicode-range:U+1F00-1FFF}@font-face{font-display:block;font-family:Inter;font-style:normal;font-weight:300;src:url(https://app.framerstatic.com/Inter-Light.greek-5GVUXSXZ.woff2) format("woff2");unicode-range:U+0370-03FF}@font-face{font-display:block;font-family:Inter;font-style:normal;font-weight:300;src:url(https://app.framerstatic.com/Inter-Light.latin-ext-RREJIMQ3.woff2) format("woff2");unicode-range:U+0100-024F,U+0259,U+1E00-1EFF,U+2020,U+20A0-20AB,U+20AD-20CF,U+2113,U+2C60-2C7F,U+A720-A7FF}@font-face{font-display:block;font-family:Inter;font-style:normal;font-weight:300;src:url(https://app.framerstatic.com/Inter-Light.latin-EKF76FXR.woff2) format("woff2");unicode-range: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}@font-face{font-display:block;font-family:Inter;font-style:normal;font-weight:300;src:url(https://app.framerstatic.com/Inter-Light.vietnamese-GVC2UOFS.woff2) format("woff2");unicode-range:U+0102-0103,U+0110-0111,U+0128-0129,U+0168-0169,U+01A0-01A1,U+01AF-01B0,U+1EA0-1EF9,U+20AB}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:400;src:url(https://app.framerstatic.com/Inter-Regular.cyrillic-ext-CFTLRB35.woff2) format("woff2");unicode-range:U+0460-052F,U+1C80-1C88,U+20B4,U+2DE0-2DFF,U+A640-A69F,U+FE2E-FE2F}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:400;src:url(https://app.framerstatic.com/Inter-Regular.cyrillic-KKLZBALH.woff2) format("woff2");unicode-range:U+0301,U+0400-045F,U+0490-0491,U+04B0-04B1,U+2116}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:400;src:url(https://app.framerstatic.com/Inter-Regular.greek-ext-ULEBLIFV.woff2) format("woff2");unicode-range:U+1F00-1FFF}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:400;src:url(https://app.framerstatic.com/Inter-Regular.greek-IRHSNFQB.woff2) format("woff2");unicode-range:U+0370-03FF}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:400;src:url(https://app.framerstatic.com/Inter-Regular.latin-ext-VZDUGU3Q.woff2) format("woff2");unicode-range:U+0100-024F,U+0259,U+1E00-1EFF,U+2020,U+20A0-20AB,U+20AD-20CF,U+2113,U+2C60-2C7F,U+A720-A7FF}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:400;src:url(https://app.framerstatic.com/Inter-Regular.latin-JLQMKCHE.woff2) format("woff2");unicode-range: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}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:400;src:url(https://app.framerstatic.com/Inter-Regular.vietnamese-QK7VSWXK.woff2) format("woff2");unicode-range:U+0102-0103,U+0110-0111,U+0128-0129,U+0168-0169,U+01A0-01A1,U+01AF-01B0,U+1EA0-1EF9,U+20AB}@font-face{font-display:block;font-family:Inter;font-style:normal;font-weight:500;src:url(https://app.framerstatic.com/Inter-Medium.cyrillic-ext-M4WHNGTS.woff2) format("woff2");unicode-range:U+0460-052F,U+1C80-1C88,U+20B4,U+2DE0-2DFF,U+A640-A69F,U+FE2E-FE2F}@font-face{font-display:block;font-family:Inter;font-style:normal;font-weight:500;src:url(https://app.framerstatic.com/Inter-Medium.cyrillic-JVU2PANX.woff2) format("woff2");unicode-range:U+0301,U+0400-045F,U+0490-0491,U+04B0-04B1,U+2116}@font-face{font-display:block;font-family:Inter;font-style:normal;font-weight:500;src:url(https://app.framerstatic.com/Inter-Medium.greek-ext-4KCQBEIZ.woff2) format("woff2");unicode-range:U+1F00-1FFF}@font-face{font-display:block;font-family:Inter;font-style:normal;font-weight:500;src:url(https://app.framerstatic.com/Inter-Medium.greek-DPOQGN7L.woff2) format("woff2");unicode-range:U+0370-03FF}@font-face{font-display:block;font-family:Inter;font-style:normal;font-weight:500;src:url(https://app.framerstatic.com/Inter-Medium.latin-ext-J4DBSW7F.woff2) format("woff2");unicode-range:U+0100-024F,U+0259,U+1E00-1EFF,U+2020,U+20A0-20AB,U+20AD-20CF,U+2113,U+2C60-2C7F,U+A720-A7FF}@font-face{font-display:block;font-family:Inter;font-style:normal;font-weight:500;src:url(https://app.framerstatic.com/Inter-Medium.latin-Y3IVPL46.woff2) format("woff2");unicode-range: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}@font-face{font-display:block;font-family:Inter;font-style:normal;font-weight:500;src:url(https://app.framerstatic.com/Inter-Medium.vietnamese-PJV76O4P.woff2) format("woff2");unicode-range:U+0102-0103,U+0110-0111,U+0128-0129,U+0168-0169,U+01A0-01A1,U+01AF-01B0,U+1EA0-1EF9,U+20AB}@font-face{font-display:block;font-family:Inter;font-style:normal;font-weight:600;src:url(https://app.framerstatic.com/Inter-SemiBold.cyrillic-ext-C7KWUKA7.woff2) format("woff2");unicode-range:U+0460-052F,U+1C80-1C88,U+20B4,U+2DE0-2DFF,U+A640-A69F,U+FE2E-FE2F}@font-face{font-display:block;font-family:Inter;font-style:normal;font-weight:600;src:url(https://app.framerstatic.com/Inter-SemiBold.cyrillic-JWV7SOZ6.woff2) format("woff2");unicode-range:U+0301,U+0400-045F,U+0490-0491,U+04B0-04B1,U+2116}@font-face{font-display:block;font-family:Inter;font-style:normal;font-weight:600;src:url(https://app.framerstatic.com/Inter-SemiBold.greek-ext-FBKSFTSU.woff2) format("woff2");unicode-range:U+1F00-1FFF}@font-face{font-display:block;font-family:Inter;font-style:normal;font-weight:600;src:url(https://app.framerstatic.com/Inter-SemiBold.greek-EQ3PSENU.woff2) format("woff2");unicode-range:U+0370-03FF}@font-face{font-display:block;font-family:Inter;font-style:normal;font-weight:600;src:url(https://app.framerstatic.com/Inter-SemiBold.latin-ext-ULRSO3ZR.woff2) format("woff2");unicode-range:U+0100-024F,U+0259,U+1E00-1EFF,U+2020,U+20A0-20AB,U+20AD-20CF,U+2113,U+2C60-2C7F,U+A720-A7FF}@font-face{font-display:block;font-family:Inter;font-style:normal;font-weight:600;src:url(https://app.framerstatic.com/Inter-SemiBold.latin-RDYY2AG2.woff2) format("woff2");unicode-range: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}@font-face{font-display:block;font-family:Inter;font-style:normal;font-weight:600;src:url(https://app.framerstatic.com/Inter-SemiBold.vietnamese-ESQNSEQ3.woff2) format("woff2");unicode-range:U+0102-0103,U+0110-0111,U+0128-0129,U+0168-0169,U+01A0-01A1,U+01AF-01B0,U+1EA0-1EF9,U+20AB}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:700;src:url(https://app.framerstatic.com/Inter-Bold.cyrillic-ext-XOTVL7ZR.woff2) format("woff2");unicode-range:U+0460-052F,U+1C80-1C88,U+20B4,U+2DE0-2DFF,U+A640-A69F,U+FE2E-FE2F}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:700;src:url(https://app.framerstatic.com/Inter-Bold.cyrillic-6LOMBC2V.woff2) format("woff2");unicode-range:U+0301,U+0400-045F,U+0490-0491,U+04B0-04B1,U+2116}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:700;src:url(https://app.framerstatic.com/Inter-Bold.greek-ext-WXWSJXLB.woff2) format("woff2");unicode-range:U+1F00-1FFF}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:700;src:url(https://app.framerstatic.com/Inter-Bold.greek-YRST7ODZ.woff2) format("woff2");unicode-range:U+0370-03FF}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:700;src:url(https://app.framerstatic.com/Inter-Bold.latin-ext-BASA5UL3.woff2) format("woff2");unicode-range:U+0100-024F,U+0259,U+1E00-1EFF,U+2020,U+20A0-20AB,U+20AD-20CF,U+2113,U+2C60-2C7F,U+A720-A7FF}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:700;src:url(https://app.framerstatic.com/Inter-Bold.latin-UCM45LQF.woff2) format("woff2");unicode-range: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}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:700;src:url(https://app.framerstatic.com/Inter-Bold.vietnamese-OEVJMXEP.woff2) format("woff2");unicode-range:U+0102-0103,U+0110-0111,U+0128-0129,U+0168-0169,U+01A0-01A1,U+01AF-01B0,U+1EA0-1EF9,U+20AB}@font-face{font-display:block;font-family:Inter;font-style:normal;font-weight:800;src:url(https://app.framerstatic.com/Inter-ExtraBold.cyrillic-ext-7Q6SVIPE.woff2) format("woff2");unicode-range:U+0460-052F,U+1C80-1C88,U+20B4,U+2DE0-2DFF,U+A640-A69F,U+FE2E-FE2F}@font-face{font-display:block;font-family:Inter;font-style:normal;font-weight:800;src:url(https://app.framerstatic.com/Inter-ExtraBold.cyrillic-JSLPE6KW.woff2) format("woff2");unicode-range:U+0301,U+0400-045F,U+0490-0491,U+04B0-04B1,U+2116}@font-face{font-display:block;font-family:Inter;font-style:normal;font-weight:800;src:url(https://app.framerstatic.com/Inter-ExtraBold.greek-ext-6OYGJJV7.woff2) format("woff2");unicode-range:U+1F00-1FFF}@font-face{font-display:block;font-family:Inter;font-style:normal;font-weight:800;src:url(https://app.framerstatic.com/Inter-ExtraBold.greek-SHW2FPC4.woff2) format("woff2");unicode-range:U+0370-03FF}@font-face{font-display:block;font-family:Inter;font-style:normal;font-weight:800;src:url(https://app.framerstatic.com/Inter-ExtraBold.latin-ext-A5DUFOP6.woff2) format("woff2");unicode-range:U+0100-024F,U+0259,U+1E00-1EFF,U+2020,U+20A0-20AB,U+20AD-20CF,U+2113,U+2C60-2C7F,U+A720-A7FF}@font-face{font-display:block;font-family:Inter;font-style:normal;font-weight:800;src:url(https://app.framerstatic.com/Inter-ExtraBold.latin-OW4UGSRU.woff2) format("woff2");unicode-range: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}@font-face{font-display:block;font-family:Inter;font-style:normal;font-weight:800;src:url(https://app.framerstatic.com/Inter-ExtraBold.vietnamese-IBBC7NGV.woff2) format("woff2");unicode-range:U+0102-0103,U+0110-0111,U+0128-0129,U+0168-0169,U+01A0-01A1,U+01AF-01B0,U+1EA0-1EF9,U+20AB}@font-face{font-display:block;font-family:Inter;font-style:normal;font-weight:900;src:url(https://app.framerstatic.com/Inter-Black.cyrillic-ext-TU4ITVTR.woff2) format("woff2");unicode-range:U+0460-052F,U+1C80-1C88,U+20B4,U+2DE0-2DFF,U+A640-A69F,U+FE2E-FE2F}@font-face{font-display:block;font-family:Inter;font-style:normal;font-weight:900;src:url(https://app.framerstatic.com/Inter-Black.cyrillic-JX7CGTYD.woff2) format("woff2");unicode-range:U+0301,U+0400-045F,U+0490-0491,U+04B0-04B1,U+2116}@font-face{font-display:block;font-family:Inter;font-style:normal;font-weight:900;src:url(https://app.framerstatic.com/Inter-Black.greek-ext-LS3GCBFI.woff2) format("woff2");unicode-range:U+1F00-1FFF}@font-face{font-display:block;font-family:Inter;font-style:normal;font-weight:900;src:url(https://app.framerstatic.com/Inter-Black.greek-ZWCJHBP5.woff2) format("woff2");unicode-range:U+0370-03FF}@font-face{font-display:block;font-family:Inter;font-style:normal;font-weight:900;src:url(https://app.framerstatic.com/Inter-Black.latin-ext-BZLEUMX6.woff2) format("woff2");unicode-range:U+0100-024F,U+0259,U+1E00-1EFF,U+2020,U+20A0-20AB,U+20AD-20CF,U+2113,U+2C60-2C7F,U+A720-A7FF}@font-face{font-display:block;font-family:Inter;font-style:normal;font-weight:900;src:url(https://app.framerstatic.com/Inter-Black.latin-TETRYDF7.woff2) format("woff2");unicode-range: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}@font-face{font-display:block;font-family:Inter;font-style:normal;font-weight:900;src:url(https://app.framerstatic.com/Inter-Black.vietnamese-RXQCC3EJ.woff2) format("woff2");unicode-range:U+0102-0103,U+0110-0111,U+0128-0129,U+0168-0169,U+01A0-01A1,U+01AF-01B0,U+1EA0-1EF9,U+20AB}@font-face{font-display:block;font-family:Inter;font-style:italic;font-weight:100;src:url(https://app.framerstatic.com/Inter-ThinItalic.cyrillic-ext-2RGKWUBV.woff2) format("woff2");unicode-range:U+0460-052F,U+1C80-1C88,U+20B4,U+2DE0-2DFF,U+A640-A69F,U+FE2E-FE2F}@font-face{font-display:block;font-family:Inter;font-style:italic;font-weight:100;src:url(https://app.framerstatic.com/Inter-ThinItalic.cyrillic-TDYIP5HV.woff2) format("woff2");unicode-range:U+0301,U+0400-045F,U+0490-0491,U+04B0-04B1,U+2116}@font-face{font-display:block;font-family:Inter;font-style:italic;font-weight:100;src:url(https://app.framerstatic.com/Inter-ThinItalic.greek-ext-WR4TIDYZ.woff2) format("woff2");unicode-range:U+1F00-1FFF}@font-face{font-display:block;font-family:Inter;font-style:italic;font-weight:100;src:url(https://app.framerstatic.com/Inter-ThinItalic.greek-V3WZMSP7.woff2) format("woff2");unicode-range:U+0370-03FF}@font-face{font-display:block;font-family:Inter;font-style:italic;font-weight:100;src:url(https://app.framerstatic.com/Inter-ThinItalic.latin-ext-TXFTJONQ.woff2) format("woff2");unicode-range:U+0100-024F,U+0259,U+1E00-1EFF,U+2020,U+20A0-20AB,U+20AD-20CF,U+2113,U+2C60-2C7F,U+A720-A7FF}@font-face{font-display:block;font-family:Inter;font-style:italic;font-weight:100;src:url(https://app.framerstatic.com/Inter-ThinItalic.latin-RVEBKP6O.woff2) format("woff2");unicode-range: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}@font-face{font-display:block;font-family:Inter;font-style:italic;font-weight:100;src:url(https://app.framerstatic.com/Inter-ThinItalic.vietnamese-WCBPP4MD.woff2) format("woff2");unicode-range:U+0102-0103,U+0110-0111,U+0128-0129,U+0168-0169,U+01A0-01A1,U+01AF-01B0,U+1EA0-1EF9,U+20AB}@font-face{font-display:block;font-family:Inter;font-style:italic;font-weight:200;src:url(https://app.framerstatic.com/Inter-ExtraLightItalic.cyrillic-ext-OVCHMVPD.woff2) format("woff2");unicode-range:U+0460-052F,U+1C80-1C88,U+20B4,U+2DE0-2DFF,U+A640-A69F,U+FE2E-FE2F}@font-face{font-display:block;font-family:Inter;font-style:italic;font-weight:200;src:url(https://app.framerstatic.com/Inter-ExtraLightItalic.cyrillic-BRDZE5UH.woff2) format("woff2");unicode-range:U+0301,U+0400-045F,U+0490-0491,U+04B0-04B1,U+2116}@font-face{font-display:block;font-family:Inter;font-style:italic;font-weight:200;src:url(https://app.framerstatic.com/Inter-ExtraLightItalic.greek-ext-YV64YFFH.woff2) format("woff2");unicode-range:U+1F00-1FFF}@font-face{font-display:block;font-family:Inter;font-style:italic;font-weight:200;src:url(https://app.framerstatic.com/Inter-ExtraLightItalic.greek-EJVCLASM.woff2) format("woff2");unicode-range:U+0370-03FF}@font-face{font-display:block;font-family:Inter;font-style:italic;font-weight:200;src:url(https://app.framerstatic.com/Inter-ExtraLightItalic.latin-ext-2MHTM56A.woff2) format("woff2");unicode-range:U+0100-024F,U+0259,U+1E00-1EFF,U+2020,U+20A0-20AB,U+20AD-20CF,U+2113,U+2C60-2C7F,U+A720-A7FF}@font-face{font-display:block;font-family:Inter;font-style:italic;font-weight:200;src:url(https://app.framerstatic.com/Inter-ExtraLightItalic.latin-JB3CJMMM.woff2) format("woff2");unicode-range: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}@font-face{font-display:block;font-family:Inter;font-style:italic;font-weight:200;src:url(https://app.framerstatic.com/Inter-ExtraLightItalic.vietnamese-3EJ3IQYS.woff2) format("woff2");unicode-range:U+0102-0103,U+0110-0111,U+0128-0129,U+0168-0169,U+01A0-01A1,U+01AF-01B0,U+1EA0-1EF9,U+20AB}@font-face{font-display:block;font-family:Inter;font-style:italic;font-weight:300;src:url(https://app.framerstatic.com/Inter-LightItalic.cyrillic-ext-C2S5XS3D.woff2) format("woff2");unicode-range:U+0460-052F,U+1C80-1C88,U+20B4,U+2DE0-2DFF,U+A640-A69F,U+FE2E-FE2F}@font-face{font-display:block;font-family:Inter;font-style:italic;font-weight:300;src:url(https://app.framerstatic.com/Inter-LightItalic.cyrillic-E7CYPW5D.woff2) format("woff2");unicode-range:U+0301,U+0400-045F,U+0490-0491,U+04B0-04B1,U+2116}@font-face{font-display:block;font-family:Inter;font-style:italic;font-weight:300;src:url(https://app.framerstatic.com/Inter-LightItalic.greek-ext-ROSAFPGE.woff2) format("woff2");unicode-range:U+1F00-1FFF}@font-face{font-display:block;font-family:Inter;font-style:italic;font-weight:300;src:url(https://app.framerstatic.com/Inter-LightItalic.greek-PAWWH37Z.woff2) format("woff2");unicode-range:U+0370-03FF}@font-face{font-display:block;font-family:Inter;font-style:italic;font-weight:300;src:url(https://app.framerstatic.com/Inter-LightItalic.latin-ext-N2Z67Z45.woff2) format("woff2");unicode-range:U+0100-024F,U+0259,U+1E00-1EFF,U+2020,U+20A0-20AB,U+20AD-20CF,U+2113,U+2C60-2C7F,U+A720-A7FF}@font-face{font-display:block;font-family:Inter;font-style:italic;font-weight:300;src:url(https://app.framerstatic.com/Inter-LightItalic.latin-SLSTLWEU.woff2) format("woff2");unicode-range: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}@font-face{font-display:block;font-family:Inter;font-style:italic;font-weight:300;src:url(https://app.framerstatic.com/Inter-LightItalic.vietnamese-RLGM2D3Y.woff2) format("woff2");unicode-range:U+0102-0103,U+0110-0111,U+0128-0129,U+0168-0169,U+01A0-01A1,U+01AF-01B0,U+1EA0-1EF9,U+20AB}@font-face{font-display:swap;font-family:Inter;font-style:italic;font-weight:400;src:url(https://app.framerstatic.com/Inter-Italic.cyrillic-ext-YDGMJOJO.woff2) format("woff2");unicode-range:U+0460-052F,U+1C80-1C88,U+20B4,U+2DE0-2DFF,U+A640-A69F,U+FE2E-FE2F}@font-face{font-display:swap;font-family:Inter;font-style:italic;font-weight:400;src:url(https://app.framerstatic.com/Inter-Italic.cyrillic-BFOVMAQB.woff2) format("woff2");unicode-range:U+0301,U+0400-045F,U+0490-0491,U+04B0-04B1,U+2116}@font-face{font-display:swap;font-family:Inter;font-style:italic;font-weight:400;src:url(https://app.framerstatic.com/Inter-Italic.greek-ext-4KOU3AHC.woff2) format("woff2");unicode-range:U+1F00-1FFF}@font-face{font-display:swap;font-family:Inter;font-style:italic;font-weight:400;src:url(https://app.framerstatic.com/Inter-Italic.greek-OJTBJNE6.woff2) format("woff2");unicode-range:U+0370-03FF}@font-face{font-display:swap;font-family:Inter;font-style:italic;font-weight:400;src:url(https://app.framerstatic.com/Inter-Italic.latin-ext-H4B22QN6.woff2) format("woff2");unicode-range:U+0100-024F,U+0259,U+1E00-1EFF,U+2020,U+20A0-20AB,U+20AD-20CF,U+2113,U+2C60-2C7F,U+A720-A7FF}@font-face{font-display:swap;font-family:Inter;font-style:italic;font-weight:400;src:url(https://app.framerstatic.com/Inter-Italic.latin-2DWX32EN.woff2) format("woff2");unicode-range: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}@font-face{font-display:swap;font-family:Inter;font-style:italic;font-weight:400;src:url(https://app.framerstatic.com/Inter-Italic.vietnamese-TYMT6CKW.woff2) format("woff2");unicode-range:U+0102-0103,U+0110-0111,U+0128-0129,U+0168-0169,U+01A0-01A1,U+01AF-01B0,U+1EA0-1EF9,U+20AB}@font-face{font-display:block;font-family:Inter;font-style:italic;font-weight:500;src:url(https://app.framerstatic.com/Inter-MediumItalic.cyrillic-ext-QYBZQ2NF.woff2) format("woff2");unicode-range:U+0460-052F,U+1C80-1C88,U+20B4,U+2DE0-2DFF,U+A640-A69F,U+FE2E-FE2F}@font-face{font-display:block;font-family:Inter;font-style:italic;font-weight:500;src:url(https://app.framerstatic.com/Inter-MediumItalic.cyrillic-ZHAJHZCC.woff2) format("woff2");unicode-range:U+0301,U+0400-045F,U+0490-0491,U+04B0-04B1,U+2116}@font-face{font-display:block;font-family:Inter;font-style:italic;font-weight:500;src:url(https://app.framerstatic.com/Inter-MediumItalic.greek-ext-W5ABYGZR.woff2) format("woff2");unicode-range:U+1F00-1FFF}@font-face{font-display:block;font-family:Inter;font-style:italic;font-weight:500;src:url(https://app.framerstatic.com/Inter-MediumItalic.greek-RGNSYVNV.woff2) format("woff2");unicode-range:U+0370-03FF}@font-face{font-display:block;font-family:Inter;font-style:italic;font-weight:500;src:url(https://app.framerstatic.com/Inter-MediumItalic.latin-ext-7DZEPSAS.woff2) format("woff2");unicode-range:U+0100-024F,U+0259,U+1E00-1EFF,U+2020,U+20A0-20AB,U+20AD-20CF,U+2113,U+2C60-2C7F,U+A720-A7FF}@font-face{font-display:block;font-family:Inter;font-style:italic;font-weight:500;src:url(https://app.framerstatic.com/Inter-MediumItalic.latin-SKPQAMBJ.woff2) format("woff2");unicode-range: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}@font-face{font-display:block;font-family:Inter;font-style:italic;font-weight:500;src:url(https://app.framerstatic.com/Inter-MediumItalic.vietnamese-23WIFZV7.woff2) format("woff2");unicode-range:U+0102-0103,U+0110-0111,U+0128-0129,U+0168-0169,U+01A0-01A1,U+01AF-01B0,U+1EA0-1EF9,U+20AB}@font-face{font-display:block;font-family:Inter;font-style:italic;font-weight:600;src:url(https://app.framerstatic.com/Inter-SemiBoldItalic.cyrillic-ext-MEHHCDC3.woff2) format("woff2");unicode-range:U+0460-052F,U+1C80-1C88,U+20B4,U+2DE0-2DFF,U+A640-A69F,U+FE2E-FE2F}@font-face{font-display:block;font-family:Inter;font-style:italic;font-weight:600;src:url(https://app.framerstatic.com/Inter-SemiBoldItalic.cyrillic-YACNRNDE.woff2) format("woff2");unicode-range:U+0301,U+0400-045F,U+0490-0491,U+04B0-04B1,U+2116}@font-face{font-display:block;font-family:Inter;font-style:italic;font-weight:600;src:url(https://app.framerstatic.com/Inter-SemiBoldItalic.greek-ext-GFL7KADI.woff2) format("woff2");unicode-range:U+1F00-1FFF}@font-face{font-display:block;font-family:Inter;font-style:italic;font-weight:600;src:url(https://app.framerstatic.com/Inter-SemiBoldItalic.greek-5W77OPRT.woff2) format("woff2");unicode-range:U+0370-03FF}@font-face{font-display:block;font-family:Inter;font-style:italic;font-weight:600;src:url(https://app.framerstatic.com/Inter-SemiBoldItalic.latin-ext-OYJJ2W6R.woff2) format("woff2");unicode-range:U+0100-024F,U+0259,U+1E00-1EFF,U+2020,U+20A0-20AB,U+20AD-20CF,U+2113,U+2C60-2C7F,U+A720-A7FF}@font-face{font-display:block;font-family:Inter;font-style:italic;font-weight:600;src:url(https://app.framerstatic.com/Inter-SemiBoldItalic.latin-KBLJMBDH.woff2) format("woff2");unicode-range: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}@font-face{font-display:block;font-family:Inter;font-style:italic;font-weight:600;src:url(https://app.framerstatic.com/Inter-SemiBoldItalic.vietnamese-5ZFOV65G.woff2) format("woff2");unicode-range:U+0102-0103,U+0110-0111,U+0128-0129,U+0168-0169,U+01A0-01A1,U+01AF-01B0,U+1EA0-1EF9,U+20AB}@font-face{font-display:swap;font-family:Inter;font-style:italic;font-weight:700;src:url(https://app.framerstatic.com/Inter-BoldItalic.cyrillic-ext-PEYDHC3S.woff2) format("woff2");unicode-range:U+0460-052F,U+1C80-1C88,U+20B4,U+2DE0-2DFF,U+A640-A69F,U+FE2E-FE2F}@font-face{font-display:swap;font-family:Inter;font-style:italic;font-weight:700;src:url(https://app.framerstatic.com/Inter-BoldItalic.cyrillic-7EIL6JWG.woff2) format("woff2");unicode-range:U+0301,U+0400-045F,U+0490-0491,U+04B0-04B1,U+2116}@font-face{font-display:swap;font-family:Inter;font-style:italic;font-weight:700;src:url(https://app.framerstatic.com/Inter-BoldItalic.greek-ext-3DJOYQMH.woff2) format("woff2");unicode-range:U+1F00-1FFF}@font-face{font-display:swap;font-family:Inter;font-style:italic;font-weight:700;src:url(https://app.framerstatic.com/Inter-BoldItalic.greek-TJBTLTT7.woff2) format("woff2");unicode-range:U+0370-03FF}@font-face{font-display:swap;font-family:Inter;font-style:italic;font-weight:700;src:url(https://app.framerstatic.com/Inter-BoldItalic.latin-ext-FVPCPRBJ.woff2) format("woff2");unicode-range:U+0100-024F,U+0259,U+1E00-1EFF,U+2020,U+20A0-20AB,U+20AD-20CF,U+2113,U+2C60-2C7F,U+A720-A7FF}@font-face{font-display:swap;font-family:Inter;font-style:italic;font-weight:700;src:url(https://app.framerstatic.com/Inter-BoldItalic.latin-5ZFQS4XK.woff2) format("woff2");unicode-range: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}@font-face{font-display:swap;font-family:Inter;font-style:italic;font-weight:700;src:url(https://app.framerstatic.com/Inter-BoldItalic.vietnamese-W2625PGF.woff2) format("woff2");unicode-range:U+0102-0103,U+0110-0111,U+0128-0129,U+0168-0169,U+01A0-01A1,U+01AF-01B0,U+1EA0-1EF9,U+20AB}@font-face{font-display:block;font-family:Inter;font-style:italic;font-weight:800;src:url(https://app.framerstatic.com/Inter-ExtraBoldItalic.cyrillic-ext-ACWDZ3VD.woff2) format("woff2");unicode-range:U+0460-052F,U+1C80-1C88,U+20B4,U+2DE0-2DFF,U+A640-A69F,U+FE2E-FE2F}@font-face{font-display:block;font-family:Inter;font-style:italic;font-weight:800;src:url(https://app.framerstatic.com/Inter-ExtraBoldItalic.cyrillic-ZKBSDAI2.woff2) format("woff2");unicode-range:U+0301,U+0400-045F,U+0490-0491,U+04B0-04B1,U+2116}@font-face{font-display:block;font-family:Inter;font-style:italic;font-weight:800;src:url(https://app.framerstatic.com/Inter-ExtraBoldItalic.greek-ext-3CY5DPTP.woff2) format("woff2");unicode-range:U+1F00-1FFF}@font-face{font-display:block;font-family:Inter;font-style:italic;font-weight:800;src:url(https://app.framerstatic.com/Inter-ExtraBoldItalic.greek-YL5CC63W.woff2) format("woff2");unicode-range:U+0370-03FF}@font-face{font-display:block;font-family:Inter;font-style:italic;font-weight:800;src:url(https://app.framerstatic.com/Inter-ExtraBoldItalic.latin-ext-7IZFJI4D.woff2) format("woff2");unicode-range:U+0100-024F,U+0259,U+1E00-1EFF,U+2020,U+20A0-20AB,U+20AD-20CF,U+2113,U+2C60-2C7F,U+A720-A7FF}@font-face{font-display:block;font-family:Inter;font-style:italic;font-weight:800;src:url(https://app.framerstatic.com/Inter-ExtraBoldItalic.latin-O5HH4IX3.woff2) format("woff2");unicode-range: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}@font-face{font-display:block;font-family:Inter;font-style:italic;font-weight:800;src:url(https://app.framerstatic.com/Inter-ExtraBoldItalic.vietnamese-UW3XUJOD.woff2) format("woff2");unicode-range:U+0102-0103,U+0110-0111,U+0128-0129,U+0168-0169,U+01A0-01A1,U+01AF-01B0,U+1EA0-1EF9,U+20AB}@font-face{font-display:block;font-family:Inter;font-style:italic;font-weight:900;src:url(https://app.framerstatic.com/Inter-BlackItalic.cyrillic-ext-TRM4ITYR.woff2) format("woff2");unicode-range:U+0460-052F,U+1C80-1C88,U+20B4,U+2DE0-2DFF,U+A640-A69F,U+FE2E-FE2F}@font-face{font-display:block;font-family:Inter;font-style:italic;font-weight:900;src:url(https://app.framerstatic.com/Inter-BlackItalic.cyrillic-FPHIQVZS.woff2) format("woff2");unicode-range:U+0301,U+0400-045F,U+0490-0491,U+04B0-04B1,U+2116}@font-face{font-display:block;font-family:Inter;font-style:italic;font-weight:900;src:url(https://app.framerstatic.com/Inter-BlackItalic.greek-ext-JTGUUSP5.woff2) format("woff2");unicode-range:U+1F00-1FFF}@font-face{font-display:block;font-family:Inter;font-style:italic;font-weight:900;src:url(https://app.framerstatic.com/Inter-BlackItalic.greek-LUNA3RFO.woff2) format("woff2");unicode-range:U+0370-03FF}@font-face{font-display:block;font-family:Inter;font-style:italic;font-weight:900;src:url(https://app.framerstatic.com/Inter-BlackItalic.latin-ext-KU7ICFYH.woff2) format("woff2");unicode-range:U+0100-024F,U+0259,U+1E00-1EFF,U+2020,U+20A0-20AB,U+20AD-20CF,U+2113,U+2C60-2C7F,U+A720-A7FF}@font-face{font-display:block;font-family:Inter;font-style:italic;font-weight:900;src:url(https://app.framerstatic.com/Inter-BlackItalic.latin-FRVXWQSB.woff2) format("woff2");unicode-range: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}@font-face{font-display:block;font-family:Inter;font-style:italic;font-weight:900;src:url(https://app.framerstatic.com/Inter-BlackItalic.vietnamese-2Q7MQKJX.woff2) format("woff2");unicode-range:U+0102-0103,U+0110-0111,U+0128-0129,U+0168-0169,U+01A0-01A1,U+01AF-01B0,U+1EA0-1EF9,U+20AB}[data-framer-component-type]{position:absolute}[data-framer-component-type=Text]{cursor:inherit}[data-framer-component-text-autosized] *{white-space:pre}[data-framer-component-type=Text]>*{text-align:var(--framer-text-alignment, start)}[data-framer-component-type=Text] span span,[data-framer-component-type=Text] p span,[data-framer-component-type=Text] h1 span,[data-framer-component-type=Text] h2 span,[data-framer-component-type=Text] h3 span,[data-framer-component-type=Text] h4 span,[data-framer-component-type=Text] h5 span,[data-framer-component-type=Text] h6 span{display:block}[data-framer-component-type=Text] span span span,[data-framer-component-type=Text] p span span,[data-framer-component-type=Text] h1 span span,[data-framer-component-type=Text] h2 span span,[data-framer-component-type=Text] h3 span span,[data-framer-component-type=Text] h4 span span,[data-framer-component-type=Text] h5 span span,[data-framer-component-type=Text] h6 span span{display:unset}[data-framer-component-type=Text] div div span,[data-framer-component-type=Text] a div span,[data-framer-component-type=Text] span span span,[data-framer-component-type=Text] p span span,[data-framer-component-type=Text] h1 span span,[data-framer-component-type=Text] h2 span span,[data-framer-component-type=Text] h3 span span,[data-framer-component-type=Text] h4 span span,[data-framer-component-type=Text] h5 span span,[data-framer-component-type=Text] h6 span span,[data-framer-component-type=Text] a{font-family:var(--font-family);font-style:var(--font-style);font-weight:min(calc(var(--framer-font-weight-increase, 0) + var(--font-weight, 400)),900);color:var(--text-color);letter-spacing:var(--letter-spacing);font-size:var(--font-size);text-transform:var(--text-transform);text-decoration:var(--text-decoration);line-height:var(--line-height)}[data-framer-component-type=Text] div div span,[data-framer-component-type=Text] a div span,[data-framer-component-type=Text] span span span,[data-framer-component-type=Text] p span span,[data-framer-component-type=Text] h1 span span,[data-framer-component-type=Text] h2 span span,[data-framer-component-type=Text] h3 span span,[data-framer-component-type=Text] h4 span span,[data-framer-component-type=Text] h5 span span,[data-framer-component-type=Text] h6 span span,[data-framer-component-type=Text] a{--font-family: var(--framer-font-family);--font-style: var(--framer-font-style);--font-weight: var(--framer-font-weight);--text-color: var(--framer-text-color);--letter-spacing: var(--framer-letter-spacing);--font-size: var(--framer-font-size);--text-transform: var(--framer-text-transform);--text-decoration: var(--framer-text-decoration);--line-height: var(--framer-line-height)}[data-framer-component-type=Text] a,[data-framer-component-type=Text] a div span,[data-framer-component-type=Text] a span span span,[data-framer-component-type=Text] a p span span,[data-framer-component-type=Text] a h1 span span,[data-framer-component-type=Text] a h2 span span,[data-framer-component-type=Text] a h3 span span,[data-framer-component-type=Text] a h4 span span,[data-framer-component-type=Text] a h5 span span,[data-framer-component-type=Text] a h6 span span{--font-family: var(--framer-link-font-family, var(--framer-font-family));--font-style: var(--framer-link-font-style, var(--framer-font-style));--font-weight: var(--framer-link-font-weight, var(--framer-font-weight));--text-color: var(--framer-link-text-color, var(--framer-text-color));--font-size: var(--framer-link-font-size, var(--framer-font-size));--text-transform: var(--framer-link-text-transform, var(--framer-text-transform));--text-decoration: var(--framer-link-text-decoration, var(--framer-text-decoration))}[data-framer-component-type=Text] a:hover,[data-framer-component-type=Text] a div span:hover,[data-framer-component-type=Text] a span span span:hover,[data-framer-component-type=Text] a p span span:hover,[data-framer-component-type=Text] a h1 span span:hover,[data-framer-component-type=Text] a h2 span span:hover,[data-framer-component-type=Text] a h3 span span:hover,[data-framer-component-type=Text] a h4 span span:hover,[data-framer-component-type=Text] a h5 span span:hover,[data-framer-component-type=Text] a h6 span span:hover{--font-family: var(--framer-link-hover-font-family, var(--framer-link-font-family, var(--framer-font-family)));--font-style: var(--framer-link-hover-font-style, var(--framer-link-font-style, var(--framer-font-style)));--font-weight: var(--framer-link-hover-font-weight, var(--framer-link-font-weight, var(--framer-font-weight)));--text-color: var(--framer-link-hover-text-color, var(--framer-link-text-color, var(--framer-text-color)));--font-size: var(--framer-link-hover-font-size, var(--framer-link-font-size, var(--framer-font-size)));--text-transform: var(--framer-link-hover-text-transform, var(--framer-link-text-transform, var(--framer-text-transform)));--text-decoration: var(--framer-link-hover-text-decoration, var(--framer-link-text-decoration, var(--framer-text-decoration)))}[data-framer-component-type=Text].isCurrent a,[data-framer-component-type=Text].isCurrent a div span,[data-framer-component-type=Text].isCurrent a span span span,[data-framer-component-type=Text].isCurrent a p span span,[data-framer-component-type=Text].isCurrent a h1 span span,[data-framer-component-type=Text].isCurrent a h2 span span,[data-framer-component-type=Text].isCurrent a h3 span span,[data-framer-component-type=Text].isCurrent a h4 span span,[data-framer-component-type=Text].isCurrent a h5 span span,[data-framer-component-type=Text].isCurrent a h6 span span{--font-family: var(--framer-link-current-font-family, var(--framer-link-font-family, var(--framer-font-family)));--font-style: var(--framer-link-current-font-style, var(--framer-link-font-style, var(--framer-font-style)));--font-weight: var(--framer-link-current-font-weight, var(--framer-link-font-weight, var(--framer-font-weight)));--text-color: var(--framer-link-current-text-color, var(--framer-link-text-color, var(--framer-text-color)));--font-size: var(--framer-link-current-font-size, var(--framer-link-font-size, var(--framer-font-size)));--text-transform: var(--framer-link-current-text-transform, var(--framer-link-text-transform, var(--framer-text-transform)));--text-decoration: var(--framer-link-current-text-decoration, var(--framer-link-text-decoration, var(--framer-text-decoration)))}p.framer-text,div.framer-text,h1.framer-text,h2.framer-text,h3.framer-text,h4.framer-text,h5.framer-text,h6.framer-text,ol.framer-text,ul.framer-text{margin:0;padding:0}p.framer-text,div.framer-text,h1.framer-text,h2.framer-text,h3.framer-text,h4.framer-text,h5.framer-text,h6.framer-text,li.framer-text,ol.framer-text,ul.framer-text,span.framer-text:not([data-text-fill]){font-family:var(--framer-font-family, Inter, Inter Placeholder, sans-serif);font-style:var(--framer-font-style, normal);font-weight:var(--framer-font-weight, 400);color:var(--framer-text-color, #000);font-size:calc(var(--framer-font-size, 16px) * var(--framer-font-size-scale, 1));letter-spacing:var(--framer-letter-spacing, 0);text-transform:var(--framer-text-transform, none);text-decoration:var(--framer-text-decoration, none);line-height:var(--framer-line-height, 1.2em);text-align:var(--framer-text-alignment, start)}strong.framer-text{font-weight:bolder}em.framer-text{font-style:italic}p.framer-text:not(:first-child),div.framer-text:not(:first-child),h1.framer-text:not(:first-child),h2.framer-text:not(:first-child),h3.framer-text:not(:first-child),h4.framer-text:not(:first-child),h5.framer-text:not(:first-child),h6.framer-text:not(:first-child),ol.framer-text:not(:first-child),ul.framer-text:not(:first-child),.framer-image.framer-text:not(:first-child){margin-top:var(--framer-paragraph-spacing, 0)}li.framer-text>ul.framer-text:nth-child(2),li.framer-text>ol.framer-text:nth-child(2){margin-top:0}.framer-text[data-text-fill]{display:inline-block;background-clip:text;-webkit-background-clip:text;-webkit-text-fill-color:transparent;padding:max(0em,calc(calc(1.3em - var(--framer-line-height, 1.3em)) / 2));margin:min(0em,calc(calc(1.3em - var(--framer-line-height, 1.3em)) / -2))}code.framer-text,code.framer-text span.framer-text:not([data-text-fill]){font-family:var(--framer-code-font-family, var(--framer-font-family, Inter, Inter Placeholder, sans-serif));font-style:var(--framer-code-font-style, var(--framer-font-style, normal));font-weight:var(--framer-code-font-weight, var(--framer-font-weight, 400));color:var(--framer-code-text-color, var(--framer-text-color, #000));font-size:calc(var(--framer-font-size, 16px) * var(--framer-font-size-scale, 1));letter-spacing:var(--framer-letter-spacing, 0);line-height:var(--framer-line-height, 1.2em)}a.framer-text,a.framer-text span.framer-text:not([data-text-fill]){font-family:var(--framer-link-font-family, var(--framer-font-family, Inter, Inter Placeholder, sans-serif));font-style:var(--framer-link-font-style, var(--framer-font-style, normal));font-weight:var(--framer-link-font-weight, var(--framer-font-weight, 400));color:var(--framer-link-text-color, var(--framer-text-color, #000));font-size:calc(var(--framer-link-font-size, var(--framer-font-size, 16px)) * var(--framer-font-size-scale, 1));text-transform:var(--framer-link-text-transform, var(--framer-text-transform, none));text-decoration:var(--framer-link-text-decoration, var(--framer-text-decoration, none));cursor:var(--framer-custom-cursors, pointer)}code.framer-text a.framer-text,code.framer-text a.framer-text span.framer-text:not([data-text-fill]){font-family:var(--framer-code-font-family, var(--framer-font-family, Inter, Inter Placeholder, sans-serif));font-style:var(--framer-code-font-style, var(--framer-font-style, normal));font-weight:var(--framer-code-font-weight, var(--framer-font-weight, 400));color:var(--framer-link-text-color, var(--framer-code-text-color, var(--framer-text-color, #000)));font-size:calc(var(--framer-link-font-size, var(--framer-font-size, 16px)) * var(--framer-font-size-scale, 1))}a.framer-text:hover,a.framer-text:hover span.framer-text:not([data-text-fill]){font-family:var(--framer-link-hover-font-family, var(--framer-link-font-family, var(--framer-font-family, Inter, Inter Placeholder, sans-serif)));font-style:var(--framer-link-hover-font-style, var(--framer-link-font-style, var(--framer-font-style, normal)));font-weight:var(--framer-link-hover-font-weight, var(--framer-link-font-weight, var(--framer-font-weight, 400)));color:var(--framer-link-hover-text-color, var(--framer-link-text-color, var(--framer-text-color, #000)));font-size:calc(var(--framer-link-hover-font-size, var(--framer-link-font-size, var(--framer-font-size, 16px))) * var(--framer-font-size-scale, 1));text-transform:var(--framer-link-hover-text-transform, var(--framer-link-text-transform, var(--framer-text-transform, none)));text-decoration:var(--framer-link-hover-text-decoration, var(--framer-link-text-decoration, var(--framer-text-decoration, none)))}code.framer-text a.framer-text:hover,code.framer-text a.framer-text:hover span.framer-text:not([data-text-fill]){font-family:var(--framer-code-font-family, var(--framer-font-family, Inter, Inter Placeholder, sans-serif));font-style:var(--framer-code-font-style, var(--framer-font-style, normal));font-weight:var(--framer-code-font-weight, var(--framer-font-weight, 400));color:var(--framer-link-hover-text-color, var(--framer-link-text-color, var(--framer-code-text-color, var(--framer-text-color, #000))));font-size:calc(var(--framer-link-hover-font-size, var(--framer-link-font-size, var(--framer-font-size, 16px))) * var(--framer-font-size-scale, 1))}a.framer-text[data-framer-page-link-current],a.framer-text[data-framer-page-link-current] span.framer-text:not([data-text-fill]){font-family:var(--framer-link-current-font-family, var(--framer-link-font-family, var(--framer-font-family, Inter, Inter Placeholder, sans-serif)));font-style:var(--framer-link-current-font-style, var(--framer-link-font-style, var(--framer-font-style, normal)));font-weight:var(--framer-link-current-font-weight, var(--framer-link-font-weight, var(--framer-font-weight, 400)));color:var(--framer-link-current-text-color, var(--framer-link-text-color, var(--framer-text-color, #000)));font-size:calc(var(--framer-link-current-font-size, var(--framer-link-font-size, var(--framer-font-size, 16px))) * var(--framer-font-size-scale, 1));text-transform:var(--framer-link-current-text-transform, var(--framer-link-text-transform, var(--framer-text-transform, none)));text-decoration:var(--framer-link-current-text-decoration, var(--framer-link-text-decoration, var(--framer-text-decoration, none)))}code.framer-text a.framer-text[data-framer-page-link-current],code.framer-text a.framer-text[data-framer-page-link-current] span.framer-text:not([data-text-fill]){font-family:var(--framer-code-font-family, var(--framer-font-family, Inter, Inter Placeholder, sans-serif));font-style:var(--framer-code-font-style, var(--framer-font-style, normal));font-weight:var(--framer-code-font-weight, var(--framer-font-weight, 400));color:var(--framer-link-current-text-color, var(--framer-link-text-color, var(--framer-code-text-color, var(--framer-text-color, #000))));font-size:calc(var(--framer-link-current-font-size, var(--framer-link-font-size, var(--framer-font-size, 16px))) * var(--framer-font-size-scale, 1))}a.framer-text[data-framer-page-link-current]:hover,a.framer-text[data-framer-page-link-current]:hover span.framer-text:not([data-text-fill]){font-family:var(--framer-link-hover-font-family, var(--framer-link-current-font-family, var(--framer-link-font-family, var(--framer-font-family, Inter, Inter Placeholder, sans-serif))));font-style:var(--framer-link-hover-font-style, var(--framer-link-current-font-style, var(--framer-link-font-style, var(--framer-font-style, normal))));font-weight:var(--framer-link-hover-font-weight, var(--framer-link-current-font-weight, var(--framer-link-font-weight, var(--framer-font-weight, 400))));color:var(--framer-link-hover-text-color, var(--framer-link-current-text-color, var(--framer-link-text-color, var(--framer-text-color, #000))));font-size:calc(var(--framer-link-hover-font-size, var(--framer-link-current-font-size, var(--framer-link-font-size, var(--framer-font-size, 16px)))) * var(--framer-font-size-scale, 1));text-transform:var(--framer-link-hover-text-transform, var(--framer-link-current-text-transform, var(--framer-link-text-transform, var(--framer-text-transform, none))));text-decoration:var(--framer-link-hover-text-decoration, var(--framer-link-current-text-decoration, var(--framer-link-text-decoration, var(--framer-text-decoration, none))))}code.framer-text a.framer-text[data-framer-page-link-current]:hover,code.framer-text a.framer-text[data-framer-page-link-current]:hover span.framer-text:not([data-text-fill]){font-family:var(--framer-code-font-family, var(--framer-font-family, Inter, Inter Placeholder, sans-serif));font-style:var(--framer-code-font-style, var(--framer-font-style, normal));font-weight:var(--framer-code-font-weight, var(--framer-font-weight, 400));color:var(--framer-link-hover-text-color, var(--framer-link-current-text-color, var(--framer-link-text-color, var(--framer-code-text-color, var(--framer-text-color, #000)))));font-size:calc(var(--framer-link-hover-font-size, var(--framer-link-current-font-size, var(--framer-link-font-size, var(--framer-font-size, 16px)))) * var(--framer-font-size-scale, 1))}.framer-image.framer-text{display:block;max-width:100%;height:auto}.text-styles-preset-reset.framer-text{--framer-font-family: Inter, Inter Placeholder, sans-serif;--framer-font-style: normal;--framer-font-weight: 500;--framer-text-color: #000;--framer-font-size: 16px;--framer-letter-spacing: 0;--framer-text-transform: none;--framer-text-decoration: none;--framer-line-height: 1.2em;--framer-text-alignment: start}ul.framer-text,ol.framer-text{display:table;width:100%}li.framer-text{display:table-row;counter-increment:list-item;list-style:none}ol.framer-text>li.framer-text:before{display:table-cell;width:2.25ch;box-sizing:border-box;padding-inline-end:.75ch;content:counter(list-item) ".";white-space:nowrap}ul.framer-text>li.framer-text:before{display:table-cell;width:2.25ch;box-sizing:border-box;padding-inline-end:.75ch;content:"\2022"}.framer-text-module[style*=aspect-ratio]>:first-child{width:100%}@supports not (aspect-ratio: 1){.framer-text-module[style*=aspect-ratio]{position:relative}}@supports not (aspect-ratio: 1){.framer-text-module[style*=aspect-ratio]:before{content:"";display:block;padding-bottom:calc(100% / calc(var(--aspect-ratio)))}}@supports not (aspect-ratio: 1){.framer-text-module[style*=aspect-ratio]>:first-child{position:absolute;top:0;left:0;height:100%}}[data-framer-component-type=DeprecatedRichText]{cursor:inherit}[data-framer-component-type=DeprecatedRichText] .text-styles-preset-reset{--framer-font-family: Inter, Inter Placeholder, sans-serif;--framer-font-style: normal;--framer-font-weight: 500;--framer-text-color: #000;--framer-font-size: 16px;--framer-letter-spacing: 0;--framer-text-transform: none;--framer-text-decoration: none;--framer-line-height: 1.2em;--framer-text-alignment: start}[data-framer-component-type=DeprecatedRichText] p,[data-framer-component-type=DeprecatedRichText] div,[data-framer-component-type=DeprecatedRichText] h1,[data-framer-component-type=DeprecatedRichText] h2,[data-framer-component-type=DeprecatedRichText] h3,[data-framer-component-type=DeprecatedRichText] h4,[data-framer-component-type=DeprecatedRichText] h5,[data-framer-component-type=DeprecatedRichText] h6{margin:0;padding:0}[data-framer-component-type=DeprecatedRichText] p,[data-framer-component-type=DeprecatedRichText] div,[data-framer-component-type=DeprecatedRichText] h1,[data-framer-component-type=DeprecatedRichText] h2,[data-framer-component-type=DeprecatedRichText] h3,[data-framer-component-type=DeprecatedRichText] h4,[data-framer-component-type=DeprecatedRichText] h5,[data-framer-component-type=DeprecatedRichText] h6,[data-framer-component-type=DeprecatedRichText] li,[data-framer-component-type=DeprecatedRichText] ol,[data-framer-component-type=DeprecatedRichText] ul,[data-framer-component-type=DeprecatedRichText] span:not([data-text-fill]){font-family:var(--framer-font-family, Inter, Inter Placeholder, sans-serif);font-style:var(--framer-font-style, normal);font-weight:var(--framer-font-weight, 400);color:var(--framer-text-color, #000);font-size:var(--framer-font-size, 16px);letter-spacing:var(--framer-letter-spacing, 0);text-transform:var(--framer-text-transform, none);text-decoration:var(--framer-text-decoration, none);line-height:var(--framer-line-height, 1.2em);text-align:var(--framer-text-alignment, start)}[data-framer-component-type=DeprecatedRichText] p:not(:first-child),[data-framer-component-type=DeprecatedRichText] div:not(:first-child),[data-framer-component-type=DeprecatedRichText] h1:not(:first-child),[data-framer-component-type=DeprecatedRichText] h2:not(:first-child),[data-framer-component-type=DeprecatedRichText] h3:not(:first-child),[data-framer-component-type=DeprecatedRichText] h4:not(:first-child),[data-framer-component-type=DeprecatedRichText] h5:not(:first-child),[data-framer-component-type=DeprecatedRichText] h6:not(:first-child),[data-framer-component-type=DeprecatedRichText] ol:not(:first-child),[data-framer-component-type=DeprecatedRichText] ul:not(:first-child),[data-framer-component-type=DeprecatedRichText] .framer-image:not(:first-child){margin-top:var(--framer-paragraph-spacing, 0)}[data-framer-component-type=DeprecatedRichText] span[data-text-fill]{display:inline-block;background-clip:text;-webkit-background-clip:text;-webkit-text-fill-color:transparent}[data-framer-component-type=DeprecatedRichText] a,[data-framer-component-type=DeprecatedRichText] a span:not([data-text-fill]){font-family:var(--framer-link-font-family, var(--framer-font-family, Inter, Inter Placeholder, sans-serif));font-style:var(--framer-link-font-style, var(--framer-font-style, normal));font-weight:var(--framer-link-font-weight, var(--framer-font-weight, 400));color:var(--framer-link-text-color, var(--framer-text-color, #000));font-size:var(--framer-link-font-size, var(--framer-font-size, 16px));text-transform:var(--framer-link-text-transform, var(--framer-text-transform, none));text-decoration:var(--framer-link-text-decoration, var(--framer-text-decoration, none))}[data-framer-component-type=DeprecatedRichText] a:hover,[data-framer-component-type=DeprecatedRichText] a:hover span:not([data-text-fill]){font-family:var(--framer-link-hover-font-family, var(--framer-link-font-family, var(--framer-font-family, Inter, Inter Placeholder, sans-serif)));font-style:var(--framer-link-hover-font-style, var(--framer-link-font-style, var(--framer-font-style, normal)));font-weight:var(--framer-link-hover-font-weight, var(--framer-link-font-weight, var(--framer-font-weight, 400)));color:var(--framer-link-hover-text-color, var(--framer-link-text-color, var(--framer-text-color, #000)));font-size:var(--framer-link-hover-font-size, var(--framer-link-font-size, var(--framer-font-size, 16px)));text-transform:var(--framer-link-hover-text-transform, var(--framer-link-text-transform, var(--framer-text-transform, none)));text-decoration:var(--framer-link-hover-text-decoration, var(--framer-link-text-decoration, var(--framer-text-decoration, none)))}a[data-framer-page-link-current],a[data-framer-page-link-current] span:not([data-text-fill]){font-family:var(--framer-link-current-font-family, var(--framer-link-font-family, var(--framer-font-family, Inter, Inter Placeholder, sans-serif)));font-style:var(--framer-link-current-font-style, var(--framer-link-font-style, var(--framer-font-style, normal)));font-weight:var(--framer-link-current-font-weight, var(--framer-link-font-weight, var(--framer-font-weight, 400)));color:var(--framer-link-current-text-color, var(--framer-link-text-color, var(--framer-text-color, #000)));font-size:var(--framer-link-current-font-size, var(--framer-link-font-size, var(--framer-font-size, 16px)));text-transform:var(--framer-link-current-text-transform, var(--framer-link-text-transform, var(--framer-text-transform, none)));text-decoration:var(--framer-link-current-text-decoration, var(--framer-link-text-decoration, var(--framer-text-decoration, none)))}a[data-framer-page-link-current]:hover,a[data-framer-page-link-current]:hover span:not([data-text-fill]){font-family:var(--framer-link-hover-font-family, var(--framer-link-current-font-family, var(--framer-link-font-family, var(--framer-font-family, Inter, Inter Placeholder, sans-serif))));font-style:var(--framer-link-hover-font-style, var(--framer-link-current-font-style, var(--framer-link-font-style, var(--framer-font-style, normal))));font-weight:var(--framer-link-hover-font-weight, var(--framer-link-current-font-weight, var(--framer-link-font-weight, var(--framer-font-weight, 400))));color:var(--framer-link-hover-text-color, var(--framer-link-current-text-color, var(--framer-link-text-color, var(--framer-text-color, #000))));font-size:var(--framer-link-hover-font-size, var(--framer-link-current-font-size, var(--framer-link-font-size, var(--framer-font-size, 16px))));text-transform:var(--framer-link-hover-text-transform, var(--framer-link-current-text-transform, var(--framer-link-text-transform, var(--framer-text-transform, none))));text-decoration:var(--framer-link-hover-text-decoration, var(--framer-link-current-text-decoration, var(--framer-link-text-decoration, var(--framer-text-decoration, none))))}[data-framer-component-type=DeprecatedRichText] strong{font-weight:bolder}[data-framer-component-type=DeprecatedRichText] em{font-style:italic}[data-framer-component-type=DeprecatedRichText] .framer-image{display:block;max-width:100%;height:auto}[data-framer-component-type=DeprecatedRichText] ul,[data-framer-component-type=DeprecatedRichText] ol{display:table;width:100%;padding-left:0;margin:0}[data-framer-component-type=DeprecatedRichText] li{display:table-row;counter-increment:list-item;list-style:none}[data-framer-component-type=DeprecatedRichText] ol>li:before{display:table-cell;width:2.25ch;box-sizing:border-box;padding-right:.75ch;content:counter(list-item) ".";white-space:nowrap}[data-framer-component-type=DeprecatedRichText] ul>li:before{display:table-cell;width:2.25ch;box-sizing:border-box;padding-right:.75ch;content:"\2022"}:not([data-framer-generated])>[data-framer-stack-content-wrapper]>*,:not([data-framer-generated])>[data-framer-stack-content-wrapper]>[data-framer-component-type],:not([data-framer-generated])>[data-framer-stack-content-wrapper]>[data-framer-legacy-stack-gap-enabled]>*,:not([data-framer-generated])>[data-framer-stack-content-wrapper]>[data-framer-legacy-stack-gap-enabled]>[data-framer-component-type]{position:relative}.flexbox-gap-not-supported [data-framer-legacy-stack-gap-enabled=true]>*,[data-framer-legacy-stack-gap-enabled=true][data-framer-stack-flexbox-gap=false]{margin-top:calc(var(--stack-gap-y) / 2);margin-bottom:calc(var(--stack-gap-y) / 2);margin-right:calc(var(--stack-gap-x) / 2);margin-left:calc(var(--stack-gap-x) / 2)}[data-framer-stack-content-wrapper][data-framer-stack-gap-enabled=true]{row-gap:var(--stack-native-row-gap);column-gap:var(--stack-native-column-gap)}.flexbox-gap-not-supported [data-framer-stack-content-wrapper][data-framer-stack-gap-enabled=true]{row-gap:unset;column-gap:unset}.flexbox-gap-not-supported [data-framer-stack-direction-reverse=false] [data-framer-legacy-stack-gap-enabled=true]>*:first-child,[data-framer-stack-direction-reverse=false] [data-framer-legacy-stack-gap-enabled=true][data-framer-stack-flexbox-gap=false]>*:first-child,.flexbox-gap-not-supported [data-framer-stack-direction-reverse=true] [data-framer-legacy-stack-gap-enabled=true]>*:last-child,[data-framer-stack-direction-reverse=true] [data-framer-legacy-stack-gap-enabled=true][data-framer-stack-flexbox-gap=false]>*:last-child{margin-top:0;margin-left:0}.flexbox-gap-not-supported [data-framer-stack-direction-reverse=false] [data-framer-legacy-stack-gap-enabled=true]>*:last-child,[data-framer-stack-direction-reverse=false] [data-framer-legacy-stack-gap-enabled=true][data-framer-stack-flexbox-gap=false]>*:last-child,.flexbox-gap-not-supported [data-framer-stack-direction-reverse=true] [data-framer-legacy-stack-gap-enabled=true]>*:first-child,[data-framer-stack-direction-reverse=true] [data-framer-legacy-stack-gap-enabled=true][data-framer-stack-flexbox-gap=false]>*:first-child{margin-right:0;margin-bottom:0}NavigationContainer [data-framer-component-type=NavigationContainer]>*,[data-framer-component-type=NavigationContainer]>[data-framer-component-type]{position:relative}[data-framer-component-type=Scroll]::-webkit-scrollbar{display:none}[data-framer-component-type=ScrollContentWrapper]>*{position:relative}[data-framer-component-type=NativeScroll]{-webkit-overflow-scrolling:touch}[data-framer-component-type=NativeScroll]>*{position:relative}[data-framer-component-type=NativeScroll].direction-both{overflow-x:scroll;overflow-y:scroll}[data-framer-component-type=NativeScroll].direction-vertical{overflow-x:hidden;overflow-y:scroll}[data-framer-component-type=NativeScroll].direction-horizontal{overflow-x:scroll;overflow-y:hidden}[data-framer-component-type=NativeScroll].direction-vertical>*{width:100%!important}[data-framer-component-type=NativeScroll].direction-horizontal>*{height:100%!important}[data-framer-component-type=NativeScroll].scrollbar-hidden::-webkit-scrollbar{display:none}[data-framer-component-type=PageContentWrapper]>*,[data-framer-component-type=PageContentWrapper]>[data-framer-component-type]{position:relative}[data-framer-component-type=DeviceComponent].no-device>*{width:100%!important;height:100%!important}[data-is-present=false],[data-is-present=false] *{pointer-events:none!important}[data-framer-cursor=pointer]{cursor:pointer}[data-framer-cursor=grab]{cursor:grab}[data-framer-cursor=grab]:active{cursor:grabbing}[data-framer-component-type=Frame] *,[data-framer-component-type=Stack] *{pointer-events:auto}[data-framer-generated] *{pointer-events:unset}.svgContainer svg{display:block}[data-reset=button]{border-width:0;padding:0;background:none}[data-hide-scrollbars=true]::-webkit-scrollbar{width:0px;height:0px}[data-hide-scrollbars=true]::-webkit-scrollbar-thumb{background:transparent}.framer-JXxo1 [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}.framer-body-augiA20Il{background:white}.framer-JXxo1 .framer-lux5qc{display:block}.framer-JXxo1 .framer-72rtr7{align-content:center;align-items:center;background-color:#fff;display:flex;flex-direction:column;flex-wrap:nowrap;gap:0px;height:min-content;justify-content:flex-start;overflow:visible;padding:0;position:relative;width:1200px}.framer-JXxo1 .framer-zq0kxo-container{flex:none;height:auto;left:0;position:sticky;top:0;width:100%;will-change:transform;z-index:1}.framer-JXxo1 .framer-veng3l{align-content:center;align-items:center;background:radial-gradient(50% 55.60000000000001% at 50% 97.6%,rgba(0,122,255,.55) 0%,hsl(0,0%,100%) 100%);display:flex;flex:none;flex-direction:column;flex-wrap:nowrap;gap:60px;height:min-content;justify-content:flex-start;overflow:hidden;padding:100px;position:relative;width:1200px}.framer-JXxo1 .framer-3h8uc1{align-content:center;align-items:center;display:flex;flex:none;flex-direction:column;flex-wrap:nowrap;gap:20px;height:min-content;justify-content:flex-start;max-width:700px;overflow:visible;padding:0;position:relative;width:100%}.framer-JXxo1 .framer-uxtwsj{--framer-link-text-color: #0099ff;--framer-link-text-decoration: underline;--framer-paragraph-spacing: 0px;flex:none;height:auto;overflow:visible;position:relative;white-space:pre-wrap;width:652px;word-break:break-word;word-wrap:break-word}.framer-JXxo1 .framer-dzznwo,.framer-JXxo1 .framer-qqtbyf,.framer-JXxo1 .framer-1jimpx4,.framer-JXxo1 .framer-w8dpg8,.framer-JXxo1 .framer-6kicob,.framer-JXxo1 .framer-1gpk69i,.framer-JXxo1 .framer-5bnl09,.framer-JXxo1 .framer-wvm10d,.framer-JXxo1 .framer-154lq2l,.framer-JXxo1 .framer-glxlqe{--framer-link-text-color: #0099ff;--framer-link-text-decoration: underline;--framer-paragraph-spacing: 0px;flex:none;height:auto;opacity:.8;overflow:hidden;position:relative;white-space:pre-wrap;width:100%;word-break:break-word;word-wrap:break-word}.framer-JXxo1 .framer-l1p43v{align-content:center;align-items:center;display:flex;flex:none;flex-direction:row;flex-wrap:nowrap;gap:10px;height:min-content;justify-content:flex-start;min-height:50px;min-width:126px;overflow:visible;padding:0;position:relative;width:min-content}.framer-JXxo1 .framer-1syne27{flex:none;height:595px;overflow:visible;position:relative;width:458px}.framer-JXxo1 .framer-nlri71{aspect-ratio:1 / 1;background:radial-gradient(50% 50% at 50% 50%,var(--token-cdf74645-5375-453d-83b0-a5d9ebf3a499, #28cdcf) 0%,rgba(255,255,255,0) 100%);border-radius:50%;flex:none;height:var(--framer-aspect-ratio-supported, 579px);left:-253px;opacity:.15;overflow:hidden;position:absolute;top:-10px;width:579px;will-change:transform}.framer-JXxo1 .framer-1tsq1i5{aspect-ratio:1 / 1;background:radial-gradient(50% 50% at 50% 50%,#2791ce 0%,rgba(255,255,255,0) 100%);border-radius:50%;bottom:-64px;flex:none;height:var(--framer-aspect-ratio-supported, 579px);opacity:.15;overflow:hidden;position:absolute;right:-298px;width:579px;will-change:transform}.framer-JXxo1 .framer-9of2hz{align-content:center;align-items:center;background-color:#292929;border-radius:46px;box-shadow:0 20px 60px #00000026,0 20px 40px #2c18441a;display:flex;flex:none;flex-direction:row;flex-wrap:nowrap;gap:10px;height:min-content;justify-content:center;left:50%;overflow:hidden;padding:10px;position:absolute;top:50%;transform:translate(-50%,-50%);width:288px;will-change:transform}.framer-JXxo1 .framer-15bnkwc,.framer-JXxo1 .framer-ykm858{border-radius:37px;flex:1 0 0px;height:575px;overflow:hidden;position:relative;width:1px;will-change:transform}.framer-JXxo1 .framer-ivh72s{align-content:center;align-items:center;display:flex;flex:none;flex-direction:row;flex-wrap:nowrap;gap:10px;height:min-content;justify-content:flex-start;left:-44px;overflow:visible;padding:0;position:absolute;top:145px;width:min-content}.framer-JXxo1 .framer-ta7zn4{align-content:center;align-items:center;border-radius:20px;box-shadow:0 10px 20px #0000001a;display:flex;flex:none;flex-direction:row;flex-wrap:nowrap;gap:10px;height:min-content;justify-content:flex-start;overflow:visible;padding:0;position:relative;width:min-content}.framer-JXxo1 .framer-2iocsj-container{aspect-ratio:1 / 1;flex:none;height:var(--framer-aspect-ratio-supported, 40px);position:relative;width:40px}.framer-JXxo1 .framer-16gd1ca{bottom:-31px;flex:none;height:72px;left:0;position:absolute;width:33px}.framer-JXxo1 .framer-10asbx{align-content:center;align-items:center;background-color:#fff;border-radius:20px 4px 20px 20px;bottom:167px;box-shadow:0 10px 20px #0000001a;display:flex;flex:none;flex-direction:column;flex-wrap:nowrap;gap:10px;height:min-content;justify-content:flex-start;overflow:hidden;padding:20px;position:absolute;right:-36px;width:min-content;will-change:transform}.framer-JXxo1 .framer-qfqnov{align-content:center;align-items:center;display:flex;flex:none;flex-direction:column;flex-wrap:nowrap;gap:9px;height:min-content;justify-content:flex-start;overflow:visible;padding:0;position:relative;width:128px}.framer-JXxo1 .framer-ug49zs{align-content:center;align-items:center;border-radius:50%;display:flex;flex:none;flex-direction:row;flex-wrap:nowrap;gap:10px;height:min-content;justify-content:center;overflow:hidden;padding:0;position:relative;width:min-content;will-change:transform}.framer-JXxo1 .framer-10uonsh-container{aspect-ratio:1 / 1;flex:none;height:var(--framer-aspect-ratio-supported, 36px);position:relative;width:36px}.framer-JXxo1 .framer-uzkzvy{align-content:flex-start;align-items:flex-start;display:flex;flex:none;flex-direction:column;flex-wrap:nowrap;gap:0px;height:min-content;justify-content:flex-start;overflow:visible;padding:0;position:relative;width:100%}.framer-JXxo1 .framer-ke5q1r,.framer-JXxo1 .framer-zvga0j,.framer-JXxo1 .framer-1hxsc2g,.framer-JXxo1 .framer-vcobk2{--framer-link-text-color: #0099ff;--framer-link-text-decoration: underline;--framer-paragraph-spacing: 0px;flex:none;height:auto;overflow:hidden;position:relative;white-space:pre-wrap;width:100%;word-break:break-word;word-wrap:break-word}.framer-JXxo1 .framer-432ui5{align-content:center;align-items:center;background-color:var(--token-5e960dff-6b90-4f0b-adb8-66611c7c3a86, #575757);border-radius:10px;box-shadow:inset 0 1px 1px #ffffff40;display:flex;flex:none;flex-direction:row;flex-wrap:nowrap;gap:10px;height:min-content;justify-content:flex-start;overflow:visible;padding:8px 20px;position:relative;width:min-content}.framer-JXxo1 .framer-l8z7s1{--framer-font-family: "Outfit", sans-serif;--framer-font-size: 12px;--framer-font-style: normal;--framer-font-weight: 600;--framer-letter-spacing: -.3px;--framer-line-height: 1.5em;--framer-link-text-color: #0099ff;--framer-link-text-decoration: underline;--framer-text-alignment: center;--framer-text-color: #ffffff;--framer-text-decoration: none;--framer-text-transform: none;flex:none;height:auto;overflow:visible;position:relative;white-space:pre;width:auto}.framer-JXxo1 .framer-119lkfx{flex:none;height:48px;position:absolute;right:0;top:0;width:24px}.framer-JXxo1 .framer-1ndz27n{align-content:center;align-items:center;display:flex;flex:none;flex-direction:column;flex-wrap:nowrap;gap:100px;height:min-content;justify-content:center;overflow:visible;padding:100px 100px 0;position:relative;width:100%}.framer-JXxo1 .framer-19quwjb{align-content:center;align-items:center;display:flex;flex:none;flex-direction:column;flex-wrap:nowrap;gap:10px;height:min-content;justify-content:center;overflow:visible;padding:0;position:relative;width:800px}.framer-JXxo1 .framer-1nmndub{align-content:center;align-items:center;display:flex;flex:none;flex-direction:row;flex-wrap:nowrap;gap:100px;height:600px;justify-content:center;max-width:800px;overflow:visible;padding:0;position:relative;width:100%}.framer-JXxo1 .framer-ufhtbx{background-color:#faf5ff;border-radius:40px;flex:none;height:272px;max-width:376px;overflow:visible;position:relative;width:376px}.framer-JXxo1 .framer-fvi7yt{border-radius:40px;bottom:0;flex:none;left:0;max-width:376px;overflow:hidden;position:absolute;top:-179px;width:376px;will-change:transform}.framer-JXxo1 .framer-1pzl9fe{aspect-ratio:.9355216881594373 / 1;bottom:0;flex:none;height:var(--framer-aspect-ratio-supported, 427px);left:-11px;overflow:visible;position:absolute;right:-12px}.framer-JXxo1 .framer-1t9v4m5{flex:none;height:32px;position:absolute;right:74px;top:75px;width:21px}.framer-JXxo1 .framer-b4vicu{align-content:center;align-items:center;bottom:89px;display:flex;flex:none;flex-direction:row;flex-wrap:nowrap;gap:10px;height:min-content;justify-content:flex-start;left:-63px;min-height:40px;min-width:40px;overflow:visible;padding:0;position:absolute;width:min-content}.framer-JXxo1 .framer-21esn9,.framer-JXxo1 .framer-gvpqms,.framer-JXxo1 .framer-18egbiu{align-content:flex-start;align-items:flex-start;display:flex;flex:1 0 0px;flex-direction:column;flex-wrap:nowrap;gap:32px;height:min-content;justify-content:flex-start;overflow:visible;padding:0;position:relative;width:1px}.framer-JXxo1 .framer-13vkg5m-container,.framer-JXxo1 .framer-1ytfvml-container,.framer-JXxo1 .framer-16k3due-container,.framer-JXxo1 .framer-5rv8en-container,.framer-JXxo1 .framer-19v8ug4-container{aspect-ratio:1 / 1;flex:none;height:var(--framer-aspect-ratio-supported, 43px);position:relative;width:40px}.framer-JXxo1 .framer-1mmbcw5,.framer-JXxo1 .framer-15mydx1,.framer-JXxo1 .framer-131o5mk,.framer-JXxo1 .framer-btejlx,.framer-JXxo1 .framer-1lnbnnh{align-content:flex-start;align-items:flex-start;display:flex;flex:none;flex-direction:column;flex-wrap:nowrap;gap:20px;height:min-content;justify-content:flex-start;overflow:visible;padding:0;position:relative;width:100%}.framer-JXxo1 .framer-1sis5z0,.framer-JXxo1 .framer-i2w3ic,.framer-JXxo1 .framer-1rs7xp4,.framer-JXxo1 .framer-egkq1d,.framer-JXxo1 .framer-1ua8j11{--framer-link-text-color: #0099ff;--framer-link-text-decoration: underline;--framer-paragraph-spacing: 0px;flex:none;height:auto;overflow:visible;position:relative;white-space:pre-wrap;width:100%;word-break:break-word;word-wrap:break-word}.framer-JXxo1 .framer-plj6g6{align-content:center;align-items:center;display:flex;flex:none;flex-direction:column;flex-wrap:nowrap;gap:100px;height:min-content;justify-content:center;max-width:1100px;overflow:visible;padding:0;position:relative;width:100%}.framer-JXxo1 .framer-p322qn,.framer-JXxo1 .framer-bwko5d{align-content:flex-start;align-items:flex-start;display:flex;flex:none;flex-direction:column;flex-wrap:nowrap;gap:32px;height:min-content;justify-content:flex-start;overflow:visible;padding:0;position:relative;width:100%}.framer-JXxo1 .framer-1ymuy2v,.framer-JXxo1 .framer-8aj4fp{background-color:#faf5ff;border-radius:40px;flex:none;height:272px;overflow:visible;position:relative;width:100%}.framer-JXxo1 .framer-n4bpkj{border-radius:40px;flex:none;inset:-179px 0 0;overflow:hidden;position:absolute;will-change:transform}.framer-JXxo1 .framer-19239hn{aspect-ratio:.9355216881594373 / 1;bottom:0;flex:none;height:var(--framer-aspect-ratio-supported, 366px);left:50%;overflow:visible;position:absolute;transform:translate(-50%);width:337px}.framer-JXxo1 .framer-11eusb4{flex:none;height:32px;position:absolute;right:48px;top:74px;width:21px}.framer-JXxo1 .framer-1e4k8v0{align-content:center;align-items:center;bottom:69px;display:flex;flex:none;flex-direction:row;flex-wrap:nowrap;gap:10px;height:min-content;justify-content:flex-start;left:17px;overflow:visible;padding:0;position:absolute;width:min-content}.framer-JXxo1 .framer-1j88m1c{align-content:center;align-items:center;border-radius:20px;box-shadow:0 10px 20px #0000001a;display:flex;flex:none;flex-direction:row;flex-wrap:nowrap;gap:10px;height:40px;justify-content:flex-start;overflow:visible;padding:0;position:relative;width:40px}.framer-JXxo1 .framer-1qxswhe,.framer-JXxo1 .framer-1faiw56{align-content:center;align-items:center;display:flex;flex:none;flex-direction:row;flex-wrap:nowrap;gap:100px;height:600px;justify-content:center;max-width:800px;overflow:visible;padding:0;position:relative;width:800px}.framer-JXxo1 .framer-14n130d{flex:none;height:628px;overflow:visible;position:relative;width:352px}.framer-JXxo1 .framer-1479vmj{align-content:center;align-items:center;aspect-ratio:.488135593220339 / 1;background-color:#292929;border-radius:46px;display:flex;flex:none;flex-direction:row;flex-wrap:nowrap;gap:10px;height:var(--framer-aspect-ratio-supported, 594px);justify-content:center;left:50%;overflow:hidden;padding:10px;position:absolute;top:50%;transform:perspective(1200px) translate(-50%,-50%);width:290px;will-change:transform}.framer-JXxo1 .framer-8t1p4n{border-radius:37px;flex:none;height:580px;overflow:hidden;position:relative;width:270px;will-change:transform}.framer-JXxo1 .framer-dtlosd{flex:none;height:65px;left:-31px;position:absolute;top:43px;width:49px}.framer-JXxo1 .framer-3xbnw2{align-content:center;align-items:center;display:flex;flex:none;flex-direction:column;flex-wrap:nowrap;gap:10px;height:min-content;justify-content:flex-start;overflow:visible;padding:0;position:relative;width:800px}.framer-JXxo1 .framer-14qzpxy{background-color:#faf5ff;border-radius:40px;flex:none;height:272px;overflow:visible;position:relative;width:376px}.framer-JXxo1 .framer-85boel{border-radius:40px;flex:none;inset:-154px -62px 0 0;overflow:hidden;position:absolute;will-change:transform}.framer-JXxo1 .framer-1ourv28{aspect-ratio:.8120178643930166 / 1;bottom:-29px;flex:none;left:14px;overflow:visible;position:absolute;top:-1px;width:var(--framer-aspect-ratio-supported, 370px)}.framer-JXxo1 .framer-xb67ud{flex:none;height:32px;position:absolute;right:124px;top:74px;width:21px}.framer-JXxo1 .framer-wh0nwb{align-content:center;align-items:center;border-radius:20px;bottom:27px;box-shadow:0 10px 20px #0000001a;display:flex;flex:none;flex-direction:row;flex-wrap:nowrap;gap:10px;height:121px;justify-content:center;left:23px;overflow:visible;padding:12px;position:absolute;width:163px}.framer-JXxo1 .framer-czu0ul-container{flex:none;height:31px;position:relative;width:31px}.framer-JXxo1 .framer-2kl2vj{align-content:center;align-items:center;display:flex;flex:none;flex-direction:row;flex-wrap:nowrap;gap:10px;height:min-content;justify-content:flex-start;left:-54px;min-height:40px;min-width:40px;overflow:visible;padding:0;position:absolute;top:70px;width:min-content}.framer-JXxo1 .framer-129g68x{align-content:center;align-items:center;display:flex;flex:none;flex-direction:column;flex-wrap:nowrap;gap:100px;height:min-content;justify-content:center;max-width:1100px;overflow:visible;padding:0;position:relative;width:800px}.framer-JXxo1 .framer-16ex083{border-radius:40px;flex:none;inset:-85px -62px 0 0;overflow:hidden;position:absolute;will-change:transform}.framer-JXxo1 .framer-px1sr2{aspect-ratio:.8120178643930166 / 1;bottom:-29px;flex:none;left:48%;overflow:visible;position:absolute;top:0;transform:translate(-50%);width:var(--framer-aspect-ratio-supported, 369px)}.framer-JXxo1 .framer-1ve0zld{align-content:center;align-items:center;border-radius:20px;bottom:27px;box-shadow:0 10px 20px #0000001a;display:flex;flex:none;flex-direction:row;flex-wrap:nowrap;gap:10px;height:121px;justify-content:center;left:16px;overflow:visible;padding:12px;position:absolute;width:163px}.framer-JXxo1 .framer-rl1piq{align-content:center;align-items:center;display:flex;flex:none;flex-direction:row;flex-wrap:nowrap;gap:10px;height:min-content;justify-content:flex-start;left:16px;min-height:40px;min-width:40px;overflow:visible;padding:0;position:absolute;top:70px;width:min-content}.framer-JXxo1 .framer-1dm7i44{align-content:center;align-items:center;background-color:#007affcc;display:flex;flex:none;flex-direction:row;flex-wrap:nowrap;gap:10px;height:min-content;justify-content:center;overflow:visible;padding:50px;position:relative;width:100%}.framer-JXxo1 .framer-134tl70{align-content:center;align-items:center;display:flex;flex:none;flex-direction:row;flex-wrap:nowrap;gap:40px;height:min-content;justify-content:center;overflow:visible;padding:0;position:relative;width:min-content}.framer-JXxo1 .framer-tsq70,.framer-JXxo1 .framer-1uh4mth,.framer-JXxo1 .framer-1wjhxpe{align-content:center;align-items:center;display:flex;flex:none;flex-direction:column;flex-wrap:nowrap;gap:10px;height:min-content;justify-content:flex-start;overflow:visible;padding:0;position:relative;width:220px}.framer-JXxo1 .framer-bgo5fi{align-content:center;align-items:center;background:radial-gradient(50% 43% at 50% 97.6%,#e3ccff 0%,hsl(0,0%,100%) 100%);display:flex;flex:none;flex-direction:column;flex-wrap:nowrap;gap:100px;height:min-content;justify-content:flex-start;overflow:visible;padding:100px 100px 0;position:relative;width:100%}.framer-JXxo1 .framer-1jy898{align-content:flex-start;align-items:flex-start;display:flex;flex:none;flex-direction:column;flex-wrap:nowrap;gap:20px;height:min-content;justify-content:flex-start;overflow:visible;padding:0;position:relative;width:800px}.framer-JXxo1 .framer-qd8lx{--framer-link-text-color: #0099ff;--framer-link-text-decoration: underline;--framer-paragraph-spacing: 0px;flex:none;height:auto;overflow:hidden;position:relative;white-space:pre-wrap;width:554px;word-break:break-word;word-wrap:break-word}.framer-JXxo1 .framer-5pjwh0{flex:none;height:731px;overflow:visible;position:relative;width:800px}.framer-JXxo1 .framer-9x2ppt{align-content:center;align-items:center;background-color:#292929;border-radius:46px;display:flex;flex:none;flex-direction:row;flex-wrap:nowrap;gap:10px;height:599px;justify-content:center;left:0;overflow:hidden;padding:10px;position:absolute;top:30px;transform:perspective(1200px);width:290px;will-change:transform}.framer-JXxo1 .framer-fnxjnx{align-content:center;align-items:center;border-radius:37px;display:flex;flex:1 0 0px;flex-direction:column;flex-wrap:nowrap;height:100%;justify-content:space-between;overflow:hidden;padding:0;position:relative;width:1px;will-change:transform}.framer-JXxo1 .framer-19y6vu9{align-content:center;align-items:center;background-color:#292929;border-radius:46px;display:flex;flex:none;flex-direction:row;flex-wrap:nowrap;gap:10px;height:599px;justify-content:center;overflow:hidden;padding:10px;position:absolute;right:0;top:210px;transform:perspective(1200px);width:290px;will-change:transform}.framer-JXxo1 .framer-10ffgc8{align-content:center;align-items:center;background-color:#f1e7fe;bottom:0;display:flex;flex:none;flex-direction:row;flex-wrap:nowrap;gap:10px;height:min-content;justify-content:center;left:0;overflow:visible;padding:20px;position:absolute;right:0}.framer-JXxo1 .framer-yhald8{align-content:center;align-items:center;background-color:#fff;border-radius:50px;display:flex;flex:1 0 0px;flex-direction:row;flex-wrap:nowrap;gap:10px;height:40px;justify-content:flex-start;overflow:visible;padding:14px;position:relative;width:1px}.framer-JXxo1 .framer-1ovljb9{--framer-font-family: "Outfit", sans-serif;--framer-font-size: 13px;--framer-font-style: normal;--framer-font-weight: 500;--framer-letter-spacing: 0em;--framer-line-height: 1.5em;--framer-link-text-color: #0099ff;--framer-link-text-decoration: underline;--framer-text-alignment: center;--framer-text-color: var(--token-5e960dff-6b90-4f0b-adb8-66611c7c3a86, #b5b5b5);--framer-text-decoration: none;--framer-text-transform: none;flex:none;height:auto;overflow:visible;position:relative;white-space:pre;width:auto}.framer-JXxo1 .framer-1yi7hyx{align-content:center;align-items:center;background-color:var(--token-cdf74645-5375-453d-83b0-a5d9ebf3a499, #28cdcf);border-radius:50px;display:flex;flex:none;flex-direction:row;flex-wrap:nowrap;gap:10px;height:40px;justify-content:center;overflow:visible;padding:16px 14px 14px;position:relative;width:40px}.framer-JXxo1 .framer-qzwofe-container{aspect-ratio:1 / 1;flex:none;height:var(--framer-aspect-ratio-supported, 19px);position:relative;width:16px}.framer-JXxo1 .framer-1v0gnh9{align-content:center;align-items:center;display:flex;flex:none;flex-direction:row;flex-wrap:nowrap;gap:0px;height:137px;justify-content:center;left:calc(49.87500000000003% - 146px / 2);overflow:visible;padding:0;position:absolute;top:calc(46.92202462380303% - 137px / 2);transform:perspective(1200px);width:146px}.framer-JXxo1 .framer-45xdff{flex:none;height:137px;position:relative;width:146px}.framer-JXxo1 .framer-1s7csf8{align-content:center;align-items:center;background-color:var(--token-88df606f-5878-4d12-aef5-80c1b2572188, #a873e8);display:flex;flex:none;flex-direction:column;flex-wrap:nowrap;gap:100px;height:min-content;justify-content:flex-start;overflow:visible;padding:100px;position:relative;width:100%}.framer-JXxo1 .framer-1vmdlu{align-content:center;align-items:center;display:flex;flex:none;flex-direction:column;flex-wrap:nowrap;gap:20px;height:min-content;justify-content:flex-start;overflow:visible;padding:0;position:relative;width:800px}.framer-JXxo1 .framer-12rf4rv{flex:none;height:146px;overflow:visible;position:relative;width:624px}.framer-JXxo1 .framer-1vr2hab{--framer-link-text-color: #0099ff;--framer-link-text-decoration: underline;--framer-paragraph-spacing: 0px;flex:none;height:100%;left:calc(50.00000000000002% - 100% / 2);overflow:hidden;position:absolute;top:calc(50.00000000000002% - 100% / 2);white-space:pre-wrap;width:100%;word-break:break-word;word-wrap:break-word}.framer-JXxo1 .framer-uh6lvx{flex:none;height:32px;position:absolute;right:-34px;top:-15px;width:21px}.framer-JXxo1 .framer-1qxwza3{bottom:-31px;flex:none;height:61px;left:-21px;position:absolute;width:28px}@supports (background: -webkit-named-image(i)) and (not (scale:1)){.framer-JXxo1 .framer-72rtr7,.framer-JXxo1 .framer-veng3l,.framer-JXxo1 .framer-3h8uc1,.framer-JXxo1 .framer-l1p43v,.framer-JXxo1 .framer-9of2hz,.framer-JXxo1 .framer-ivh72s,.framer-JXxo1 .framer-ta7zn4,.framer-JXxo1 .framer-10asbx,.framer-JXxo1 .framer-qfqnov,.framer-JXxo1 .framer-ug49zs,.framer-JXxo1 .framer-uzkzvy,.framer-JXxo1 .framer-432ui5,.framer-JXxo1 .framer-1ndz27n,.framer-JXxo1 .framer-19quwjb,.framer-JXxo1 .framer-1nmndub,.framer-JXxo1 .framer-b4vicu,.framer-JXxo1 .framer-21esn9,.framer-JXxo1 .framer-1mmbcw5,.framer-JXxo1 .framer-plj6g6,.framer-JXxo1 .framer-p322qn,.framer-JXxo1 .framer-15mydx1,.framer-JXxo1 .framer-1e4k8v0,.framer-JXxo1 .framer-1j88m1c,.framer-JXxo1 .framer-1qxswhe,.framer-JXxo1 .framer-gvpqms,.framer-JXxo1 .framer-131o5mk,.framer-JXxo1 .framer-1479vmj,.framer-JXxo1 .framer-3xbnw2,.framer-JXxo1 .framer-1faiw56,.framer-JXxo1 .framer-wh0nwb,.framer-JXxo1 .framer-2kl2vj,.framer-JXxo1 .framer-18egbiu,.framer-JXxo1 .framer-btejlx,.framer-JXxo1 .framer-129g68x,.framer-JXxo1 .framer-bwko5d,.framer-JXxo1 .framer-1lnbnnh,.framer-JXxo1 .framer-1ve0zld,.framer-JXxo1 .framer-rl1piq,.framer-JXxo1 .framer-1dm7i44,.framer-JXxo1 .framer-134tl70,.framer-JXxo1 .framer-tsq70,.framer-JXxo1 .framer-1uh4mth,.framer-JXxo1 .framer-1wjhxpe,.framer-JXxo1 .framer-bgo5fi,.framer-JXxo1 .framer-1jy898,.framer-JXxo1 .framer-9x2ppt,.framer-JXxo1 .framer-19y6vu9,.framer-JXxo1 .framer-10ffgc8,.framer-JXxo1 .framer-yhald8,.framer-JXxo1 .framer-1yi7hyx,.framer-JXxo1 .framer-1v0gnh9,.framer-JXxo1 .framer-1s7csf8,.framer-JXxo1 .framer-1vmdlu{gap:0px}.framer-JXxo1 .framer-72rtr7>*,.framer-JXxo1 .framer-uzkzvy>*{margin:0}.framer-JXxo1 .framer-72rtr7>:first-child,.framer-JXxo1 .framer-veng3l>:first-child,.framer-JXxo1 .framer-3h8uc1>:first-child,.framer-JXxo1 .framer-10asbx>:first-child,.framer-JXxo1 .framer-qfqnov>:first-child,.framer-JXxo1 .framer-uzkzvy>:first-child,.framer-JXxo1 .framer-1ndz27n>:first-child,.framer-JXxo1 .framer-19quwjb>:first-child,.framer-JXxo1 .framer-21esn9>:first-child,.framer-JXxo1 .framer-1mmbcw5>:first-child,.framer-JXxo1 .framer-plj6g6>:first-child,.framer-JXxo1 .framer-p322qn>:first-child,.framer-JXxo1 .framer-15mydx1>:first-child,.framer-JXxo1 .framer-gvpqms>:first-child,.framer-JXxo1 .framer-131o5mk>:first-child,.framer-JXxo1 .framer-3xbnw2>:first-child,.framer-JXxo1 .framer-18egbiu>:first-child,.framer-JXxo1 .framer-btejlx>:first-child,.framer-JXxo1 .framer-129g68x>:first-child,.framer-JXxo1 .framer-bwko5d>:first-child,.framer-JXxo1 .framer-1lnbnnh>:first-child,.framer-JXxo1 .framer-tsq70>:first-child,.framer-JXxo1 .framer-1uh4mth>:first-child,.framer-JXxo1 .framer-1wjhxpe>:first-child,.framer-JXxo1 .framer-bgo5fi>:first-child,.framer-JXxo1 .framer-1jy898>:first-child,.framer-JXxo1 .framer-1s7csf8>:first-child,.framer-JXxo1 .framer-1vmdlu>:first-child{margin-top:0}.framer-JXxo1 .framer-72rtr7>:last-child,.framer-JXxo1 .framer-veng3l>:last-child,.framer-JXxo1 .framer-3h8uc1>:last-child,.framer-JXxo1 .framer-10asbx>:last-child,.framer-JXxo1 .framer-qfqnov>:last-child,.framer-JXxo1 .framer-uzkzvy>:last-child,.framer-JXxo1 .framer-1ndz27n>:last-child,.framer-JXxo1 .framer-19quwjb>:last-child,.framer-JXxo1 .framer-21esn9>:last-child,.framer-JXxo1 .framer-1mmbcw5>:last-child,.framer-JXxo1 .framer-plj6g6>:last-child,.framer-JXxo1 .framer-p322qn>:last-child,.framer-JXxo1 .framer-15mydx1>:last-child,.framer-JXxo1 .framer-gvpqms>:last-child,.framer-JXxo1 .framer-131o5mk>:last-child,.framer-JXxo1 .framer-3xbnw2>:last-child,.framer-JXxo1 .framer-18egbiu>:last-child,.framer-JXxo1 .framer-btejlx>:last-child,.framer-JXxo1 .framer-129g68x>:last-child,.framer-JXxo1 .framer-bwko5d>:last-child,.framer-JXxo1 .framer-1lnbnnh>:last-child,.framer-JXxo1 .framer-tsq70>:last-child,.framer-JXxo1 .framer-1uh4mth>:last-child,.framer-JXxo1 .framer-1wjhxpe>:last-child,.framer-JXxo1 .framer-bgo5fi>:last-child,.framer-JXxo1 .framer-1jy898>:last-child,.framer-JXxo1 .framer-1s7csf8>:last-child,.framer-JXxo1 .framer-1vmdlu>:last-child{margin-bottom:0}.framer-JXxo1 .framer-veng3l>*{margin:30px 0}.framer-JXxo1 .framer-3h8uc1>*,.framer-JXxo1 .framer-1mmbcw5>*,.framer-JXxo1 .framer-15mydx1>*,.framer-JXxo1 .framer-131o5mk>*,.framer-JXxo1 .framer-btejlx>*,.framer-JXxo1 .framer-1lnbnnh>*,.framer-JXxo1 .framer-1jy898>*,.framer-JXxo1 .framer-1vmdlu>*{margin:10px 0}.framer-JXxo1 .framer-l1p43v>*,.framer-JXxo1 .framer-9of2hz>*,.framer-JXxo1 .framer-ivh72s>*,.framer-JXxo1 .framer-ta7zn4>*,.framer-JXxo1 .framer-ug49zs>*,.framer-JXxo1 .framer-432ui5>*,.framer-JXxo1 .framer-b4vicu>*,.framer-JXxo1 .framer-1e4k8v0>*,.framer-JXxo1 .framer-1j88m1c>*,.framer-JXxo1 .framer-1479vmj>*,.framer-JXxo1 .framer-wh0nwb>*,.framer-JXxo1 .framer-2kl2vj>*,.framer-JXxo1 .framer-1ve0zld>*,.framer-JXxo1 .framer-rl1piq>*,.framer-JXxo1 .framer-1dm7i44>*,.framer-JXxo1 .framer-9x2ppt>*,.framer-JXxo1 .framer-19y6vu9>*,.framer-JXxo1 .framer-10ffgc8>*,.framer-JXxo1 .framer-yhald8>*,.framer-JXxo1 .framer-1yi7hyx>*{margin:0 5px}.framer-JXxo1 .framer-l1p43v>:first-child,.framer-JXxo1 .framer-9of2hz>:first-child,.framer-JXxo1 .framer-ivh72s>:first-child,.framer-JXxo1 .framer-ta7zn4>:first-child,.framer-JXxo1 .framer-ug49zs>:first-child,.framer-JXxo1 .framer-432ui5>:first-child,.framer-JXxo1 .framer-1nmndub>:first-child,.framer-JXxo1 .framer-b4vicu>:first-child,.framer-JXxo1 .framer-1e4k8v0>:first-child,.framer-JXxo1 .framer-1j88m1c>:first-child,.framer-JXxo1 .framer-1qxswhe>:first-child,.framer-JXxo1 .framer-1479vmj>:first-child,.framer-JXxo1 .framer-1faiw56>:first-child,.framer-JXxo1 .framer-wh0nwb>:first-child,.framer-JXxo1 .framer-2kl2vj>:first-child,.framer-JXxo1 .framer-1ve0zld>:first-child,.framer-JXxo1 .framer-rl1piq>:first-child,.framer-JXxo1 .framer-1dm7i44>:first-child,.framer-JXxo1 .framer-134tl70>:first-child,.framer-JXxo1 .framer-9x2ppt>:first-child,.framer-JXxo1 .framer-19y6vu9>:first-child,.framer-JXxo1 .framer-10ffgc8>:first-child,.framer-JXxo1 .framer-yhald8>:first-child,.framer-JXxo1 .framer-1yi7hyx>:first-child,.framer-JXxo1 .framer-1v0gnh9>:first-child{margin-left:0}.framer-JXxo1 .framer-l1p43v>:last-child,.framer-JXxo1 .framer-9of2hz>:last-child,.framer-JXxo1 .framer-ivh72s>:last-child,.framer-JXxo1 .framer-ta7zn4>:last-child,.framer-JXxo1 .framer-ug49zs>:last-child,.framer-JXxo1 .framer-432ui5>:last-child,.framer-JXxo1 .framer-1nmndub>:last-child,.framer-JXxo1 .framer-b4vicu>:last-child,.framer-JXxo1 .framer-1e4k8v0>:last-child,.framer-JXxo1 .framer-1j88m1c>:last-child,.framer-JXxo1 .framer-1qxswhe>:last-child,.framer-JXxo1 .framer-1479vmj>:last-child,.framer-JXxo1 .framer-1faiw56>:last-child,.framer-JXxo1 .framer-wh0nwb>:last-child,.framer-JXxo1 .framer-2kl2vj>:last-child,.framer-JXxo1 .framer-1ve0zld>:last-child,.framer-JXxo1 .framer-rl1piq>:last-child,.framer-JXxo1 .framer-1dm7i44>:last-child,.framer-JXxo1 .framer-134tl70>:last-child,.framer-JXxo1 .framer-9x2ppt>:last-child,.framer-JXxo1 .framer-19y6vu9>:last-child,.framer-JXxo1 .framer-10ffgc8>:last-child,.framer-JXxo1 .framer-yhald8>:last-child,.framer-JXxo1 .framer-1yi7hyx>:last-child,.framer-JXxo1 .framer-1v0gnh9>:last-child{margin-right:0}.framer-JXxo1 .framer-10asbx>*,.framer-JXxo1 .framer-19quwjb>*,.framer-JXxo1 .framer-3xbnw2>*,.framer-JXxo1 .framer-tsq70>*,.framer-JXxo1 .framer-1uh4mth>*,.framer-JXxo1 .framer-1wjhxpe>*{margin:5px 0}.framer-JXxo1 .framer-qfqnov>*{margin:4.5px 0}.framer-JXxo1 .framer-1ndz27n>*,.framer-JXxo1 .framer-plj6g6>*,.framer-JXxo1 .framer-129g68x>*,.framer-JXxo1 .framer-bgo5fi>*,.framer-JXxo1 .framer-1s7csf8>*{margin:50px 0}.framer-JXxo1 .framer-1nmndub>*,.framer-JXxo1 .framer-1qxswhe>*,.framer-JXxo1 .framer-1faiw56>*{margin:0 50px}.framer-JXxo1 .framer-21esn9>*,.framer-JXxo1 .framer-p322qn>*,.framer-JXxo1 .framer-gvpqms>*,.framer-JXxo1 .framer-18egbiu>*,.framer-JXxo1 .framer-bwko5d>*{margin:16px 0}.framer-JXxo1 .framer-134tl70>*{margin:0 20px}.framer-JXxo1 .framer-1v0gnh9>*{margin:0}}@media (min-width: 1200px){.framer-JXxo1 .hidden-72rtr7{display:none!important}}@media (min-width: 810px) and (max-width: 1199px){.framer-JXxo1 .hidden-czwtv8{display:none!important}.framer-body-augiA20Il{background:white}.framer-JXxo1 .framer-72rtr7{overflow:hidden;width:810px}.framer-JXxo1 .framer-1ndz27n{gap:60px;padding:100px 40px 0}.framer-JXxo1 .framer-19quwjb,.framer-JXxo1 .framer-3xbnw2,.framer-JXxo1 .framer-1jy898{width:100%}.framer-JXxo1 .framer-1nmndub{gap:80px}.framer-JXxo1 .framer-1pzl9fe{height:var(--framer-aspect-ratio-supported, 348px);left:50%;right:unset;transform:translate(-50%);width:326px}.framer-JXxo1 .framer-1t9v4m5{right:47px;top:54px}.framer-JXxo1 .framer-b4vicu{left:-23px}.framer-JXxo1 .framer-1qxswhe,.framer-JXxo1 .framer-1faiw56{gap:80px;width:100%}.framer-JXxo1 .framer-1ourv28{height:var(--framer-aspect-ratio-supported, 373px);left:44px;top:unset;width:303px}.framer-JXxo1 .framer-xb67ud{top:124px}.framer-JXxo1 .framer-wh0nwb{left:53px}.framer-JXxo1 .framer-2kl2vj{left:16px}.framer-JXxo1 .framer-1dm7i44{padding:40px}.framer-JXxo1 .framer-134tl70{flex:1 0 0px;width:1px}.framer-JXxo1 .framer-bgo5fi{padding:100px 40px 0}.framer-JXxo1 .framer-5pjwh0{width:674px}.framer-JXxo1 .framer-12rf4rv{height:144px}.framer-JXxo1 .framer-1vr2hab{top:calc(39.726027397260296% - 100% / 2)}@supports (background: -webkit-named-image(i)) and (not (scale:1)){.framer-JXxo1 .framer-1ndz27n,.framer-JXxo1 .framer-1nmndub,.framer-JXxo1 .framer-1qxswhe,.framer-JXxo1 .framer-1faiw56{gap:0px}.framer-JXxo1 .framer-1ndz27n>*{margin:30px 0}.framer-JXxo1 .framer-1ndz27n>:first-child{margin-top:0}.framer-JXxo1 .framer-1ndz27n>:last-child{margin-bottom:0}.framer-JXxo1 .framer-1nmndub>*,.framer-JXxo1 .framer-1qxswhe>*,.framer-JXxo1 .framer-1faiw56>*{margin:0 40px}.framer-JXxo1 .framer-1nmndub>:first-child,.framer-JXxo1 .framer-1qxswhe>:first-child,.framer-JXxo1 .framer-1faiw56>:first-child{margin-left:0}.framer-JXxo1 .framer-1nmndub>:last-child,.framer-JXxo1 .framer-1qxswhe>:last-child,.framer-JXxo1 .framer-1faiw56>:last-child{margin-right:0}}}@media (max-width: 809px){.framer-JXxo1 .hidden-1v7hleh{display:none!important}.framer-body-augiA20Il{background:white}.framer-JXxo1 .framer-72rtr7{overflow:hidden;width:390px}.framer-JXxo1 .framer-veng3l{padding:80px 20px 100px;width:100%}.framer-JXxo1 .framer-uxtwsj,.framer-JXxo1 .framer-19quwjb,.framer-JXxo1 .framer-3xbnw2,.framer-JXxo1 .framer-129g68x,.framer-JXxo1 .framer-1jy898,.framer-JXxo1 .framer-qd8lx,.framer-JXxo1 .framer-1vmdlu{width:100%}.framer-JXxo1 .framer-1ndz27n{gap:80px;padding:40px 20px 80px}.framer-JXxo1 .framer-19239hn{height:var(--framer-aspect-ratio-supported, 360px)}.framer-JXxo1 .framer-1qxswhe{flex-direction:column;gap:80px;height:min-content;width:100%}.framer-JXxo1 .framer-gvpqms{flex:none;width:100%}.framer-JXxo1 .framer-px1sr2{width:var(--framer-aspect-ratio-supported, 313px)}.framer-JXxo1 .framer-rl1piq{min-height:42px;min-width:134px}.framer-JXxo1 .framer-134tl70{flex:1 0 0px;flex-direction:column;width:1px}.framer-JXxo1 .framer-bgo5fi{gap:30px;padding:80px 20px 0}.framer-JXxo1 .framer-5pjwh0{width:674px}.framer-JXxo1 .framer-9x2ppt{left:192px;top:66px}.framer-JXxo1 .framer-1s7csf8{gap:80px;padding:80px 20px 100px}.framer-JXxo1 .framer-12rf4rv{height:140px;width:100%}@supports (background: -webkit-named-image(i)) and (not (scale:1)){.framer-JXxo1 .framer-1ndz27n,.framer-JXxo1 .framer-1qxswhe,.framer-JXxo1 .framer-134tl70,.framer-JXxo1 .framer-bgo5fi,.framer-JXxo1 .framer-1s7csf8{gap:0px}.framer-JXxo1 .framer-1ndz27n>*,.framer-JXxo1 .framer-1qxswhe>*,.framer-JXxo1 .framer-1s7csf8>*{margin:40px 0}.framer-JXxo1 .framer-1ndz27n>:first-child,.framer-JXxo1 .framer-1qxswhe>:first-child,.framer-JXxo1 .framer-134tl70>:first-child,.framer-JXxo1 .framer-bgo5fi>:first-child,.framer-JXxo1 .framer-1s7csf8>:first-child{margin-top:0}.framer-JXxo1 .framer-1ndz27n>:last-child,.framer-JXxo1 .framer-1qxswhe>:last-child,.framer-JXxo1 .framer-134tl70>:last-child,.framer-JXxo1 .framer-bgo5fi>:last-child,.framer-JXxo1 .framer-1s7csf8>:last-child{margin-bottom:0}.framer-JXxo1 .framer-134tl70>*{margin:20px 0}.framer-JXxo1 .framer-bgo5fi>*{margin:15px 0}}}.framer-Gpltq .framer-styles-preset-1lk11sa:not(.rich-text-wrapper),.framer-Gpltq .framer-styles-preset-1lk11sa.rich-text-wrapper p,.framer-Gpltq .framer-styles-preset-1lk11sa.rich-text-wrapper [data-preset-tag=p]{--framer-font-family: "Outfit", serif;--framer-font-size: 28px;--framer-font-style: normal;--framer-font-weight: 400;--framer-letter-spacing: 0px;--framer-line-height: 1.5em;--framer-paragraph-spacing: 0px;--framer-text-alignment: start;--framer-text-color: var(--token-5e960dff-6b90-4f0b-adb8-66611c7c3a86, #757575);--framer-text-decoration: none;--framer-text-transform: none}@media (max-width: 1199px) and (min-width: 810px){.framer-Gpltq .framer-styles-preset-1lk11sa:not(.rich-text-wrapper),.framer-Gpltq .framer-styles-preset-1lk11sa.rich-text-wrapper p,.framer-Gpltq .framer-styles-preset-1lk11sa.rich-text-wrapper [data-preset-tag=p]{--framer-font-family: "Outfit", serif;--framer-font-size: 28px;--framer-font-style: normal;--framer-font-weight: 400;--framer-letter-spacing: 0px;--framer-line-height: 1.5em;--framer-paragraph-spacing: 0px;--framer-text-alignment: start;--framer-text-color: var(--token-5e960dff-6b90-4f0b-adb8-66611c7c3a86, #757575);--framer-text-decoration: none;--framer-text-transform: none}}@media (max-width: 809px) and (min-width: 0px){.framer-Gpltq .framer-styles-preset-1lk11sa:not(.rich-text-wrapper),.framer-Gpltq .framer-styles-preset-1lk11sa.rich-text-wrapper p,.framer-Gpltq .framer-styles-preset-1lk11sa.rich-text-wrapper [data-preset-tag=p]{--framer-font-family: "Outfit", serif;--framer-font-size: 24px;--framer-font-style: normal;--framer-font-weight: 400;--framer-letter-spacing: 0px;--framer-line-height: 1.5em;--framer-paragraph-spacing: 0px;--framer-text-alignment: start;--framer-text-color: var(--token-5e960dff-6b90-4f0b-adb8-66611c7c3a86, #757575);--framer-text-decoration: none;--framer-text-transform: none}}.framer-WVTQp .framer-styles-preset-1rdy2h6:not(.rich-text-wrapper),.framer-WVTQp .framer-styles-preset-1rdy2h6.rich-text-wrapper p,.framer-WVTQp .framer-styles-preset-1rdy2h6.rich-text-wrapper [data-preset-tag=p]{--framer-font-family: "Outfit", serif;--framer-font-size: 24px;--framer-font-style: normal;--framer-font-weight: 400;--framer-letter-spacing: 0px;--framer-line-height: 1.5em;--framer-paragraph-spacing: 0px;--framer-text-alignment: start;--framer-text-color: var(--token-5e960dff-6b90-4f0b-adb8-66611c7c3a86, #575757);--framer-text-decoration: none;--framer-text-transform: none}@media (max-width: 1199px) and (min-width: 810px){.framer-WVTQp .framer-styles-preset-1rdy2h6:not(.rich-text-wrapper),.framer-WVTQp .framer-styles-preset-1rdy2h6.rich-text-wrapper p,.framer-WVTQp .framer-styles-preset-1rdy2h6.rich-text-wrapper [data-preset-tag=p]{--framer-font-family: "Outfit", serif;--framer-font-size: 24px;--framer-font-style: normal;--framer-font-weight: 400;--framer-letter-spacing: 0px;--framer-line-height: 1.5em;--framer-paragraph-spacing: 0px;--framer-text-alignment: start;--framer-text-color: var(--token-5e960dff-6b90-4f0b-adb8-66611c7c3a86, #575757);--framer-text-decoration: none;--framer-text-transform: none}}@media (max-width: 809px) and (min-width: 0px){.framer-WVTQp .framer-styles-preset-1rdy2h6:not(.rich-text-wrapper),.framer-WVTQp .framer-styles-preset-1rdy2h6.rich-text-wrapper p,.framer-WVTQp .framer-styles-preset-1rdy2h6.rich-text-wrapper [data-preset-tag=p]{--framer-font-family: "Outfit", serif;--framer-font-size: 24px;--framer-font-style: normal;--framer-font-weight: 400;--framer-letter-spacing: 0px;--framer-line-height: 1.5em;--framer-paragraph-spacing: 0px;--framer-text-alignment: start;--framer-text-color: var(--token-5e960dff-6b90-4f0b-adb8-66611c7c3a86, #575757);--framer-text-decoration: none;--framer-text-transform: none}}.framer-RR5GF .framer-styles-preset-ci2ngw:not(.rich-text-wrapper),.framer-RR5GF .framer-styles-preset-ci2ngw.rich-text-wrapper h3,.framer-RR5GF .framer-styles-preset-ci2ngw.rich-text-wrapper [data-preset-tag=h3]{--framer-font-family: "Outfit", serif;--framer-font-size: 48px;--framer-font-style: normal;--framer-font-weight: 600;--framer-letter-spacing: 0px;--framer-line-height: 1.1em;--framer-paragraph-spacing: 0px;--framer-text-alignment: start;--framer-text-color: var(--token-1a5aa905-75a8-43dc-a9c8-5a9b6e98a9c2, #000000);--framer-text-decoration: none;--framer-text-transform: none}@media (max-width: 1199px) and (min-width: 810px){.framer-RR5GF .framer-styles-preset-ci2ngw:not(.rich-text-wrapper),.framer-RR5GF .framer-styles-preset-ci2ngw.rich-text-wrapper h3,.framer-RR5GF .framer-styles-preset-ci2ngw.rich-text-wrapper [data-preset-tag=h3]{--framer-font-family: "Outfit", serif;--framer-font-size: 48px;--framer-font-style: normal;--framer-font-weight: 600;--framer-letter-spacing: 0px;--framer-line-height: 1.1em;--framer-paragraph-spacing: 0px;--framer-text-alignment: start;--framer-text-color: var(--token-1a5aa905-75a8-43dc-a9c8-5a9b6e98a9c2, #000000);--framer-text-decoration: none;--framer-text-transform: none}}@media (max-width: 809px) and (min-width: 0px){.framer-RR5GF .framer-styles-preset-ci2ngw:not(.rich-text-wrapper),.framer-RR5GF .framer-styles-preset-ci2ngw.rich-text-wrapper h3,.framer-RR5GF .framer-styles-preset-ci2ngw.rich-text-wrapper [data-preset-tag=h3]{--framer-font-family: "Outfit", serif;--framer-font-size: 40px;--framer-font-style: normal;--framer-font-weight: 600;--framer-letter-spacing: 0px;--framer-line-height: 1.1em;--framer-paragraph-spacing: 0px;--framer-text-alignment: start;--framer-text-color: var(--token-1a5aa905-75a8-43dc-a9c8-5a9b6e98a9c2, #000000);--framer-text-decoration: none;--framer-text-transform: none}}.framer-yhG5x .framer-styles-preset-azvayr:not(.rich-text-wrapper),.framer-yhG5x .framer-styles-preset-azvayr.rich-text-wrapper h2,.framer-yhG5x .framer-styles-preset-azvayr.rich-text-wrapper [data-preset-tag=h2]{--framer-font-family: "Outfit", serif;--framer-font-size: 60px;--framer-font-style: normal;--framer-font-weight: 600;--framer-letter-spacing: -1px;--framer-line-height: 1.2em;--framer-paragraph-spacing: 0px;--framer-text-alignment: start;--framer-text-color: var(--token-1a5aa905-75a8-43dc-a9c8-5a9b6e98a9c2, #000000);--framer-text-decoration: none;--framer-text-transform: none}@media (max-width: 1199px) and (min-width: 810px){.framer-yhG5x .framer-styles-preset-azvayr:not(.rich-text-wrapper),.framer-yhG5x .framer-styles-preset-azvayr.rich-text-wrapper h2,.framer-yhG5x .framer-styles-preset-azvayr.rich-text-wrapper [data-preset-tag=h2]{--framer-font-family: "Outfit", serif;--framer-font-size: 60px;--framer-font-style: normal;--framer-font-weight: 600;--framer-letter-spacing: -1px;--framer-line-height: 1.2em;--framer-paragraph-spacing: 0px;--framer-text-alignment: start;--framer-text-color: var(--token-1a5aa905-75a8-43dc-a9c8-5a9b6e98a9c2, #000000);--framer-text-decoration: none;--framer-text-transform: none}}@media (max-width: 809px) and (min-width: 0px){.framer-yhG5x .framer-styles-preset-azvayr:not(.rich-text-wrapper),.framer-yhG5x .framer-styles-preset-azvayr.rich-text-wrapper h2,.framer-yhG5x .framer-styles-preset-azvayr.rich-text-wrapper [data-preset-tag=h2]{--framer-font-family: "Outfit", serif;--framer-font-size: 40px;--framer-font-style: normal;--framer-font-weight: 600;--framer-letter-spacing: -1px;--framer-line-height: 1.2em;--framer-paragraph-spacing: 0px;--framer-text-alignment: start;--framer-text-color: var(--token-1a5aa905-75a8-43dc-a9c8-5a9b6e98a9c2, #000000);--framer-text-decoration: none;--framer-text-transform: none}}.framer-8vrbp [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}@supports (aspect-ratio: 1){body{--framer-aspect-ratio-supported: auto}}.framer-8vrbp .framer-15z22tp{display:block}.framer-8vrbp .framer-1fpinsb{align-content:center;align-items:center;display:flex;flex-direction:row;flex-wrap:nowrap;height:70px;justify-content:space-between;overflow:hidden;padding:20px;position:relative;width:1200px}.framer-8vrbp .framer-1x31chh{align-content:center;align-items:center;cursor:pointer;display:flex;flex:none;flex-direction:row;flex-wrap:nowrap;gap:4px;height:min-content;justify-content:flex-start;overflow:hidden;padding:0;position:relative;width:min-content}.framer-8vrbp .framer-mafz8m{aspect-ratio:1 / 1;flex:none;height:var(--framer-aspect-ratio-supported, 22px);overflow:hidden;position:relative;width:22px;will-change:transform}.framer-8vrbp .framer-1ib36kg{aspect-ratio:1 / 1;flex:none;height:var(--framer-aspect-ratio-supported, 12px);overflow:hidden;position:relative;width:12px;will-change:transform}.framer-8vrbp .framer-1nvpk7o{flex:none;height:27px;position:relative;width:52px}.framer-8vrbp .framer-1vubxe4{align-content:center;align-items:center;display:flex;flex:none;flex-direction:row;flex-wrap:nowrap;gap:30px;height:min-content;justify-content:flex-start;overflow:visible;padding:0;position:relative;width:min-content}.framer-8vrbp .framer-hze9s6,.framer-8vrbp .framer-1q51xyl,.framer-8vrbp .framer-1wg7ab5{flex:none;height:auto;overflow:visible;position:relative;white-space:pre;width:auto}.framer-8vrbp .framer-1nd4h5k{align-content:center;align-items:center;display:flex;flex:none;flex-direction:row;flex-wrap:nowrap;gap:10px;height:min-content;justify-content:flex-start;overflow:visible;padding:8px 16px;position:relative;text-decoration:none;width:min-content}@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)){.framer-8vrbp .framer-1x31chh,.framer-8vrbp .framer-1vubxe4,.framer-8vrbp .framer-1nd4h5k{gap:0px}.framer-8vrbp .framer-1x31chh>*{margin:0 2px}.framer-8vrbp .framer-1x31chh>:first-child,.framer-8vrbp .framer-1vubxe4>:first-child,.framer-8vrbp .framer-1nd4h5k>:first-child{margin-left:0}.framer-8vrbp .framer-1x31chh>:last-child,.framer-8vrbp .framer-1vubxe4>:last-child,.framer-8vrbp .framer-1nd4h5k>:last-child{margin-right:0}.framer-8vrbp .framer-1vubxe4>*{margin:0 15px}.framer-8vrbp .framer-1nd4h5k>*{margin:0 5px}}.framer-gzocM .framer-styles-preset-aexbeb:not(.rich-text-wrapper),.framer-gzocM .framer-styles-preset-aexbeb.rich-text-wrapper a{--framer-link-hover-text-color: var(--token-cdf74645-5375-453d-83b0-a5d9ebf3a499, #007aff) ;--framer-link-hover-text-decoration: none;--framer-link-text-color: var(--token-5e960dff-6b90-4f0b-adb8-66611c7c3a86, #575757)}.framer-47hmZ [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}.framer-47hmZ .framer-rqhbs3{position:relative;overflow:hidden;width:100px;height:100px}.framer-47hmZ .framer-kj56m6{position:relative;overflow:visible;width:1px;height:100%;flex:1 0 0px}.framer-47hmZ.framer-v-ina8tq .framer-rqhbs3,.framer-47hmZ.framer-v-lwbc2o .framer-rqhbs3,.framer-47hmZ.framer-v-vqryag .framer-rqhbs3,.framer-47hmZ.framer-v-kwp1i3 .framer-rqhbs3,.framer-47hmZ.framer-v-1h8ejmh .framer-rqhbs3,.framer-47hmZ.framer-v-c75qsa .framer-rqhbs3,.framer-47hmZ.framer-v-1ftwjq5 .framer-rqhbs3,.framer-47hmZ.framer-v-osfy8l .framer-rqhbs3,.framer-47hmZ.framer-v-5qhg5s .framer-rqhbs3,.framer-47hmZ.framer-v-5ats54 .framer-rqhbs3,.framer-47hmZ.framer-v-z5mnn6 .framer-rqhbs3,.framer-47hmZ.framer-v-6xnqop .framer-rqhbs3,.framer-47hmZ.framer-v-xmx6ye .framer-rqhbs3,.framer-47hmZ.framer-v-a1v8wx .framer-rqhbs3,.framer-47hmZ.framer-v-1oj0oue .framer-rqhbs3,.framer-47hmZ.framer-v-19e1lqz .framer-rqhbs3,.framer-47hmZ.framer-v-16en86l .framer-rqhbs3,.framer-47hmZ.framer-v-1vzsblg .framer-rqhbs3,.framer-47hmZ.framer-v-1kgllbw .framer-rqhbs3,.framer-47hmZ.framer-v-zia1yx .framer-rqhbs3,.framer-47hmZ.framer-v-9mi1m7 .framer-rqhbs3,.framer-47hmZ.framer-v-zgdwlg .framer-rqhbs3,.framer-47hmZ.framer-v-1dgnypb .framer-rqhbs3,.framer-47hmZ.framer-v-rum36c .framer-rqhbs3,.framer-47hmZ.framer-v-1u5c2u8 .framer-rqhbs3,.framer-47hmZ.framer-v-1dt8e1w .framer-rqhbs3,.framer-47hmZ.framer-v-1rkl824 .framer-rqhbs3,.framer-47hmZ.framer-v-17d51pb .framer-rqhbs3,.framer-47hmZ.framer-v-158neyh .framer-rqhbs3,.framer-47hmZ.framer-v-1atb71u .framer-rqhbs3,.framer-47hmZ.framer-v-1x8h963 .framer-rqhbs3,.framer-47hmZ.framer-v-hblyuj .framer-rqhbs3,.framer-47hmZ.framer-v-cra8ie .framer-rqhbs3,.framer-47hmZ.framer-v-1sz721s .framer-rqhbs3{width:100px;height:100px}.framer-47hmZ.framer-v-1ftwjq5 .framer-kj56m6,.framer-47hmZ.framer-v-osfy8l .framer-kj56m6{width:1px;height:100%;inset:auto;flex:1 0 0px}.ssr-variant{display:contents}
</style>
<!-- End of headEnd -->
<style type="text/css" data-framer-css="true"></style>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-ZS0KEQKSX9"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-ZS0KEQKSX9');
</script>
</head>
<body class="framer-body-augiA20Il vsc-initialized">
<script async="" src="./Coria Pay - Landing_files/script" data-fid="2db04609e1480f76ec8af14b675b897fca877654560d7ca3f2de407820a7af7e"></script>
<!-- End of bodyStart -->
<div id="main" data-framer-hydrate-v2="{"routeId":"augiA20Il","localizationId":"default","localeId":"default"}" data-framer-ssr-released-at="2023-08-01T10:44:16.392Z" data-framer-page-optimized-at="2023-08-13T15:23:37.644Z"><div class="framer-JXxo1 framer-Gpltq framer-WVTQp framer-RR5GF framer-yhG5x" style="display:contents"><div class="framer-72rtr7" style="min-height:100%;width:auto"><div class="framer-zq0kxo-container"><div class="framer-8vrbp framer-gzocM framer-v-1fpinsb" style="display:contents" tabindex="0"><div class="framer-1fpinsb" data-framer-name="Desktop" style="background-color: rgb(255, 255, 255); width: 100%; opacity: 1;"><div class="framer-1x31chh" data-highlight="true" tabindex="0" style="opacity: 1;"><div class="framer-mafz8m" style="background-color: var(--token-cdf74645-5375-453d-83b0-a5d9ebf3a499, rgb(40, 205, 207)); border-radius: 50%; opacity: 1;"></div><div class="framer-1ib36kg" style="background-color: var(--token-88df606f-5878-4d12-aef5-80c1b2572188, rgb(168, 115, 232)); border-radius: 50%; opacity: 1;"></div></div><nav class="framer-1vubxe4" style="opacity: 1;"><div class="framer-hze9s6" style="outline: none; display: flex; flex-direction: column; justify-content: flex-start; flex-shrink: 0; --extracted-r6o4lv: var(--token-5e960dff-6b90-4f0b-adb8-66611c7c3a86, rgb(181, 181, 181)); --framer-paragraph-spacing: 0px; transform: none; opacity: 1;" data-framer-component-type="RichTextContainer"><p style="--font-selector:R0Y7T3V0Zml0LTUwMA==;--framer-font-family:"Outfit", sans-serif;--framer-font-size:17px;--framer-font-weight:500;--framer-letter-spacing:-0.3px;--framer-line-height:1.5em;--framer-text-alignment:center;--framer-text-color:var(--extracted-r6o4lv)" class="framer-text"><a class="framer-text framer-styles-preset-aexbeb" data-styles-preset="stylesPresetLink" href="https://youtu.be/zuElXRWwYhE" target="_blank" rel="noopener">YouTube</a></p></div><div class="framer-1q51xyl" style="outline: none; display: flex; flex-direction: column; justify-content: flex-start; flex-shrink: 0; --extracted-r6o4lv: var(--token-5e960dff-6b90-4f0b-adb8-66611c7c3a86, rgb(181, 181, 181)); --framer-paragraph-spacing: 0px; transform: none; opacity: 1;" data-framer-component-type="RichTextContainer"><p style="--font-selector:R0Y7T3V0Zml0LTUwMA==;--framer-font-family:"Outfit", sans-serif;--framer-font-size:17px;--framer-font-weight:500;--framer-letter-spacing:-0.3px;--framer-line-height:1.5em;--framer-text-alignment:center;--framer-text-color:var(--extracted-r6o4lv)" class="framer-text"><a class="framer-text framer-styles-preset-aexbeb" data-styles-preset="stylesPresetLink" href="https://github.com/OpiumPay/Opium-code" target="_blank" rel="noopener">GitHub</a></p></div><a href = "mailto: [email protected]" class="framer-1nd4h5k framer-15z22tp" data-framer-name="Primary Small" style="background-color: var(--token-cdf74645-5375-453d-83b0-a5d9ebf3a499, rgb(40, 205, 207)); border-radius: 10px; box-shadow: rgba(255, 255, 255, 0.25) 0px 1px 1px 0px inset; opacity: 1;" href="" target="_blank" rel="noopener"><div class="framer-1wg7ab5" style="outline: none; display: flex; flex-direction: column; justify-content: flex-start; flex-shrink: 0; --extracted-r6o4lv: rgb(255, 255, 255); --framer-link-text-color: rgb(0, 153, 255); --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; transform: none; opacity: 1;" data-framer-component-type="RichTextContainer"><p style="--font-selector:R0Y7T3V0Zml0LTYwMA==;--framer-font-family:"Outfit", sans-serif;--framer-font-size:17px;--framer-font-weight:600;--framer-letter-spacing:-0.3px;--framer-line-height:1.5em;--framer-text-alignment:center;--framer-text-color:var(--extracted-r6o4lv)" class="framer-text">Contact Us</p></div></a></nav></div></div></div><header class="framer-veng3l"><div class="framer-3h8uc1" style="opacity: 1; transform: none;"><div class="framer-uxtwsj" style="outline:none;display:flex;flex-direction:column;justify-content:flex-start;flex-shrink:0;transform:none" data-framer-component-type="RichTextContainer"><h1 style="--font-selector:R0Y7T3V0Zml0LTYwMA==;--framer-font-family:"Outfit", sans-serif;--framer-font-size:80px;--framer-font-weight:600;--framer-line-height:1em;--framer-text-alignment:center" class="framer-text">UPI credit line <!-- --><br class="framer-text"><span style="--framer-text-color:var(--token-88df606f-5878-4d12-aef5-80c1b2572188, rgb(168, 115, 232))" class="framer-text">for your crypto.</span></h1></div><div class="framer-dzznwo" style="outline:none;display:flex;flex-direction:column;justify-content:flex-start;flex-shrink:0;transform:none" data-framer-component-type="RichTextContainer"><p class="framer-text framer-styles-preset-1lk11sa" data-styles-preset="z0EVd6GvQ" style="--framer-text-alignment:center">Pay with UPI with your crypto</p></div><div class="framer-l1p43v"></div></div><div class="framer-1syne27" data-framer-name="Asset" name="Asset"><div class="framer-nlri71"></div><div class="framer-1tsq1i5"></div><div class="framer-9of2hz" data-framer-name="Device" name="Device" style="transform:translate(-50%, -50%)"><div class="framer-15bnkwc"><div style="position:absolute;border-radius:inherit;top:0;right:0;bottom:0;left:0" data-framer-background-image-wrapper="true"><img src="./Coria Pay - Landing_files/bV3mzAI4MuTZ8P5R2nXPMT02ESI.png" alt="" srcset="https://framerusercontent.com/images/bV3mzAI4MuTZ8P5R2nXPMT02ESI.png?scale-down-to=512 236w, https://framerusercontent.com/images/bV3mzAI4MuTZ8P5R2nXPMT02ESI.png?scale-down-to=1024 472w, https://framerusercontent.com/images/bV3mzAI4MuTZ8P5R2nXPMT02ESI.png?scale-down-to=2048 944w, https://framerusercontent.com/images/bV3mzAI4MuTZ8P5R2nXPMT02ESI.png 1179w" sizes="268px" style="display:block;width:100%;height:100%;border-radius:inherit;object-position:center;object-fit:cover;image-rendering:auto"></div></div></div><div class="framer-ivh72s hidden-1v7hleh" style="opacity: 1; transform: none;"><div class="framer-ta7zn4"><div class="framer-2iocsj-container"><div class="framer-47hmZ framer-v-rqhbs3" style="display:contents" tabindex="0"><div data-framer-component-type="Stack" data-layoutid="AD1uRb789" id="ODNAXxQeq" data-framer-name="Jason" data-framer-generated="true" style="display: block; flex-shrink: 0; border-radius: 60px; background-color: rgb(211, 247, 248); height: 100%; width: 100%; transform: none; opacity: 1;" class="framer-rqhbs3"><div data-framer-stack-content-wrapper="true" data-framer-stack-direction-reverse="false" data-framer-stack-gap-enabled="true" style="display:flex;flex-direction:row;flex-wrap:nowrap;justify-content:center;align-items:center;align-content:center;padding:0px 0px 0px 0px;width:100%;height:100%;--stack-native-column-gap:10px;--stack-native-row-gap:10px"><div data-framer-legacy-stack-gap-enabled="true" data-framer-stack-flexbox-gap="true" style="display:contents;--stack-gap-x:10px;--stack-gap-y:0px"><div class="framer-kj56m6" style="border-radius: 60px; transform: none; opacity: 1;" data-framer-name="Avatar"><div style="position:absolute;border-radius:inherit;top:0;right:0;bottom:0;left:0" data-framer-background-image-wrapper="true"><img src="./Coria Pay - Landing_files/CPGgYEBeFy4gDXe5dDzh1qjQG1w.png" style="display:block;width:100%;height:100%;border-radius:inherit;object-position:center;object-fit:cover;image-rendering:auto"></div></div></div></div></div></div></div></div></div><div data-framer-component-type="SVG" data-framer-name="Icon" name="Icon" style="image-rendering:pixelated;flex-shrink:0;background-size:100% 100%;background-image:url('data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20viewBox%3D%220%200%2033%2072%22%3E%3Cpath%20d%3D%22M%2018.931%2054.707%20C%2020.743%2052.056%2022.447%2049.428%2024.304%2046.908%20C%2024.97%2046.006%2025.925%2045.255%2026.885%2044.646%20C%2028.222%2043.802%2029.692%2043.798%2031.044%2044.7%20C%2032.445%2045.63%2033.003%2047.025%2032.675%2048.629%20C%2032.454%2049.691%2032.009%2050.739%2031.504%2051.71%20C%2030.201%2054.23%2028.717%2056.657%2027.483%2059.207%20C%2026.777%2060.664%2026.195%2062.249%2025.935%2063.833%20C%2025.553%2066.144%2026.229%2068.235%2028.208%2069.721%20C%2029.124%2070.409%2028.913%2070.892%2028.021%2071.369%20C%2025.857%2072.529%2022.565%2072.027%2020.767%2070.068%20C%2017.931%2066.982%2017.432%2063.238%2017.99%2059.26%20C%2018.049%2058.826%2018.151%2058.397%2018.23%2057.974%20C%2013.822%2056.755%2011.657%2054.342%2011.51%2049.784%20C%2011.436%2047.4%2012.088%2044.992%2012.441%2042.594%20C%2012.509%2042.126%2012.71%2041.673%2012.852%2041.2%20C%2012.661%2041.112%2012.553%2041.029%2012.431%2041.014%20C%203.491%2039.762%20-1.471%2032.888%200.46%2024.06%20C%201.115%2021.077%202.116%2018.18%203.442%2015.427%20C%205.632%2010.884%208.154%206.491%2010.653%202.104%20C%2011.113%201.295%2012.063%200.627%2012.94%200.227%20C%2014.082%20-0.289%2015.222%200.14%2016.1%201.046%20C%2017.069%202.045%2017.236%203.288%2016.751%204.508%20C%2016.134%206.067%2015.33%207.559%2014.591%209.07%20C%2012.646%2013.048%2010.574%2016.977%208.791%2021.023%20C%207.89%2023.065%207.268%2025.293%206.93%2027.502%20C%206.273%2031.811%2010.016%2035.891%2014.405%2035.847%20C%2014.865%2035.842%2015.516%2035.462%2015.747%2035.067%20C%2018.103%2030.953%2021.228%2027.438%2024.358%2023.924%20C%2025.822%2022.276%2027.713%2021.944%2029.237%2022.988%20C%2030.794%2024.055%2031.191%2026.039%2030.049%2027.96%20C%2028.756%2030.129%2027.321%2032.216%2025.95%2034.336%20C%2022.903%2039.04%2020.092%2043.856%2018.637%2049.326%20C%2018.142%2051.222%2018.108%2053.064%2018.931%2054.707%20Z%22%20fill%3D%22rgb(0%2C0%2C0)%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E')" class="framer-16gd1ca hidden-1v7hleh"></div><div class="framer-10asbx hidden-1v7hleh" style="opacity: 1; transform: none;"><div class="framer-qfqnov"><div class="framer-ug49zs"><div class="framer-10uonsh-container"><div class="framer-47hmZ framer-v-17d51pb" style="display:contents" tabindex="0"><div data-framer-component-type="Stack" data-layoutid="AD1uRb789" id="zyElRbDUu" data-framer-name="Carmen" data-framer-generated="true" style="display: block; flex-shrink: 0; border-radius: 60px; background-color: rgb(242, 207, 239); height: 100%; width: 100%; transform: none; opacity: 1;" class="framer-rqhbs3"><div data-framer-stack-content-wrapper="true" data-framer-stack-direction-reverse="false" data-framer-stack-gap-enabled="true" style="display:flex;flex-direction:row;flex-wrap:nowrap;justify-content:center;align-items:center;align-content:center;padding:0px 0px 0px 0px;width:100%;height:100%;--stack-native-column-gap:10px;--stack-native-row-gap:10px"><div data-framer-legacy-stack-gap-enabled="true" data-framer-stack-flexbox-gap="true" style="display:contents;--stack-gap-x:10px;--stack-gap-y:0px"><div class="framer-kj56m6" style="border-radius: 60px; transform: none; opacity: 1;" data-framer-name="Avatar"><div style="position:absolute;border-radius:inherit;top:0;right:0;bottom:0;left:0" data-framer-background-image-wrapper="true"><img src="./Coria Pay - Landing_files/e6GZhp0s96FXaIiLYSRyZYZYypo.png" style="display:block;width:100%;height:100%;border-radius:inherit;object-position:center;object-fit:cover;image-rendering:auto"></div></div></div></div></div></div></div></div><div class="framer-uzkzvy"><div class="framer-ke5q1r" style="outline:none;display:flex;flex-direction:column;justify-content:flex-start;flex-shrink:0;transform:none" data-framer-component-type="RichTextContainer"><p style="--font-selector:R0Y7T3V0Zml0LTcwMA==;--framer-font-family:"Outfit", "Outfit Placeholder", sans-serif;--framer-font-size:13px;--framer-font-weight:700;--framer-line-height:1.3em;--framer-text-alignment:center" class="framer-text">₹160.50 UPI<!-- --><span style="--font-selector:R0Y7T3V0Zml0LTUwMA==;--framer-font-family:"Outfit", sans-serif;--framer-font-weight:500" class="framer-text"> Request </span></p><p style="--font-selector:R0Y7T3V0Zml0LTUwMA==;--framer-font-family:"Outfit", sans-serif;--framer-font-size:13px;--framer-font-weight:500;--framer-line-height:1.3em;--framer-text-alignment:center" class="framer-text">for breakfast</p></div></div></div><div class="framer-432ui5" data-framer-name="Primary" name="Primary"><div data-framer-component-type="Text" style="outline:none;display:flex;flex-direction:column;justify-content:flex-start;flex-shrink:0;line-height:1px;font-size:0px;--framer-text-alignment:center;transform:none" class="framer-l8z7s1"><span style="font-size: 0; line-height: 0; tab-size: 4; white-space: inherit; word-wrap: inherit"><span style="direction: ltr; font-size: 0"><span style="">Pay</span><br></span></span></div></div></div><div data-framer-component-type="SVG" data-framer-name="Icon" name="Icon" style="image-rendering:pixelated;flex-shrink:0;background-size:100% 100%;background-image:url('data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20viewBox%3D%220%200%2024%2048%22%3E%3Cpath%20d%3D%22M%204.679%2031.684%20C%204.929%2030.597%205.058%2029.465%205.448%2028.436%20C%208.431%2020.569%2010.61%2012.397%2014.184%204.757%20C%2014.551%203.972%2014.907%203.159%2015.4%202.453%20C%2016.794%200.461%2019.212%20-0.197%2021.255%200.777%20C%2023.313%201.76%2024.321%204.041%2023.741%206.422%20C%2023.642%206.826%2023.517%207.234%2023.35%207.616%20C%2021.043%2012.852%2018.848%2018.145%2016.362%2023.296%20C%2014.93%2026.267%2013.066%2029.029%2011.307%2031.822%20C%2010.704%2032.782%209.898%2033.649%209.052%2034.4%20C%207.241%2036.003%205.334%2035.271%204.883%2032.863%20C%204.811%2032.489%204.815%2032.1%204.781%2031.714%20C%204.747%2031.703%204.713%2031.691%204.679%2031.683%20Z%20M%204.448%2039.647%20C%206.58%2039.625%208.329%2041.36%208.358%2043.527%20C%208.397%2045.816%206.585%2047.734%204.387%2047.734%20C%202.106%2047.734%200.249%2045.997%200.222%2043.839%20C%200.192%2041.497%202.034%2039.67%204.448%2039.647%20Z%22%20fill%3D%22rgb(0%2C0%2C0)%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E')" class="framer-119lkfx hidden-1v7hleh"></div></div></header><section class="framer-1ndz27n"><div class="framer-19quwjb"><div class="framer-1nmndub hidden-1v7hleh" data-framer-name="Desktop" name="Desktop"><div class="framer-ufhtbx"><div class="framer-fvi7yt"><div class="framer-1pzl9fe" data-framer-name="pexels_andrea_piacquadio_3869370" name="pexels_andrea_piacquadio_3869370"><div style="position:absolute;border-radius:inherit;top:0;right:0;bottom:0;left:0" data-framer-background-image-wrapper="true"><img src="./Coria Pay - Landing_files/BZveiOrOkC27ti2CQXL7mMWAAxU.png" alt="Woman using a mobile phone" srcset="https://framerusercontent.com/images/BZveiOrOkC27ti2CQXL7mMWAAxU.png?scale-down-to=512 478w, https://framerusercontent.com/images/BZveiOrOkC27ti2CQXL7mMWAAxU.png 798w" sizes="399px" style="display:block;width:100%;height:100%;border-radius:inherit;object-position:center;object-fit:cover;image-rendering:auto" loading="lazy"></div><div data-framer-component-type="SVG" data-framer-name="Icon" name="Icon" style="image-rendering:pixelated;flex-shrink:0;background-size:100% 100%;background-image:url('data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20viewBox%3D%220%200%2021%2032%22%3E%3Cpath%20d%3D%22M%200.892%2017.805%20C%201.224%2016.865%201.465%2015.879%201.897%2014.986%20C%204.004%2010.621%206.621%206.568%209.82%202.919%20C%2010.516%202.122%2011.445%201.416%2012.406%200.98%20C%2014.467%200.055%2016.469%201.233%2016.568%203.47%20C%2016.619%204.628%2016.414%205.999%2015.812%206.948%20C%2012.969%2011.447%209.989%2015.865%206.957%2020.239%20C%206.039%2021.56%204.463%2021.83%203.102%2021.276%20C%201.745%2020.727%200.97%2019.444%200.892%2017.805%20Z%20M%2016.066%2023.674%20C%2018.166%2023.785%2019.385%2024.831%2019.504%2026.307%20C%2019.626%2027.823%2018.649%2028.929%2016.888%2029.288%20C%2014.21%2029.83%2011.549%2030.43%208.861%2030.912%20C%207.932%2031.078%206.907%2031.132%206.003%2030.915%20C%204.249%2030.497%203.769%2028.795%204.906%2027.398%20C%205.164%2027.078%205.482%2026.767%205.841%2026.573%20C%209.141%2024.754%2012.759%2024.078%2016.066%2023.674%20Z%22%20fill%3D%22rgb(0%2C0%2C0)%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E')" class="framer-1t9v4m5"></div></div></div><div class="framer-b4vicu" style="opacity: 1; transform: none;"></div></div><div class="framer-21esn9"><div class="framer-13vkg5m-container" style="opacity: 1; transform: none;"><div style="display:contents"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 256 256" focusable="false" color="var(--token-88df606f-5878-4d12-aef5-80c1b2572188, rgb(168, 115, 232)) /* {"name":"Secondary"} */" style="user-select: none; width: 100%; height: 100%; display: inline-block; fill: var(--token-88df606f-5878-4d12-aef5-80c1b2572188, rgb(168, 115, 232)); flex-shrink: 0;"><g color="var(--token-88df606f-5878-4d12-aef5-80c1b2572188, rgb(168, 115, 232)) /* {"name":"Secondary"} */" weight="fill"><path d="M128,24A104,104,0,1,0,232,128,104.12041,104.12041,0,0,0,128,24Zm36,72a12,12,0,1,1-12,12A12.0006,12.0006,0,0,1,164,96ZM92,96a12,12,0,1,1-12,12A12.0006,12.0006,0,0,1,92,96Zm84.50488,60.00293a56.01609,56.01609,0,0,1-97.00976.00049,8.00016,8.00016,0,1,1,13.85058-8.01074,40.01628,40.01628,0,0,0,69.30957-.00049,7.99974,7.99974,0,1,1,13.84961,8.01074Z"></path></g></svg></div></div><div class="framer-1mmbcw5"><div class="framer-1sis5z0" style="outline: none; display: flex; flex-direction: column; justify-content: flex-start; flex-shrink: 0; opacity: 1; transform: none;" data-framer-component-type="RichTextContainer"><h3 class="framer-text framer-styles-preset-ci2ngw" data-styles-preset="stylesPresetHeading3" style="--framer-text-alignment:left">Instant spending</h3></div><div class="framer-qqtbyf" style="outline: none; display: flex; flex-direction: column; justify-content: flex-start; flex-shrink: 0; opacity: 0.8; transform: none;" data-framer-component-type="RichTextContainer"><p class="framer-text framer-styles-preset-1rdy2h6" data-styles-preset="asK2xZ6ef" style="--framer-text-alignment:left">Instant credit upto 90% of your collateral spendable via UPI.</p></div></div></div></div></div><div class="framer-1qxswhe"><div class="framer-gvpqms"><div class="framer-16k3due-container" style="opacity: 1; transform: none;"><div style="display:contents"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 256 256" focusable="false" color="var(--token-88df606f-5878-4d12-aef5-80c1b2572188, rgb(168, 115, 232)) /* {"name":"Secondary"} */" style="user-select: none; width: 100%; height: 100%; display: inline-block; fill: var(--token-88df606f-5878-4d12-aef5-80c1b2572188, rgb(168, 115, 232)); flex-shrink: 0;"><g color="var(--token-88df606f-5878-4d12-aef5-80c1b2572188, rgb(168, 115, 232)) /* {"name":"Secondary"} */" weight="fill"><g><path d="M128,24A104,104,0,1,0,232,128,104.11791,104.11791,0,0,0,128,24Zm0,192a88,88,0,1,1,88-88A88.09957,88.09957,0,0,1,128,216Z"></path><circle cx="128" cy="128" r="72"></circle></g></g></svg></div></div><div class="framer-131o5mk"><div class="framer-1rs7xp4" style="outline: none; display: flex; flex-direction: column; justify-content: flex-start; flex-shrink: 0; opacity: 1; transform: none;" data-framer-component-type="RichTextContainer"><h3 class="framer-text framer-styles-preset-ci2ngw" data-styles-preset="stylesPresetHeading3" style="--framer-text-alignment:left">Self-custodial credit</h3></div><div class="framer-w8dpg8" style="outline: none; display: flex; flex-direction: column; justify-content: flex-start; flex-shrink: 0; opacity: 0.8; transform: none;" data-framer-component-type="RichTextContainer"><p class="framer-text framer-styles-preset-1rdy2h6" data-styles-preset="asK2xZ6ef" style="--framer-text-alignment:left">Take control of your crypto with collateral backed credit through Gnosis Safes.</p></div></div></div><div class="framer-14n130d"><div class="framer-1479vmj" data-framer-name="Device" name="Device" style="opacity: 1; transform: perspective(1200px) translate(-50%, -50%);"><div class="framer-8t1p4n"><div style="position:absolute;border-radius:inherit;top:0;right:0;bottom:0;left:0" data-framer-background-image-wrapper="true"><img src="./Coria Pay - Landing_files/0NQ83yUUrgrl2JJBjzyBPWbi6rY.png" alt="" srcset="https://framerusercontent.com/images/0NQ83yUUrgrl2JJBjzyBPWbi6rY.png?scale-down-to=512 236w, https://framerusercontent.com/images/0NQ83yUUrgrl2JJBjzyBPWbi6rY.png?scale-down-to=1024 472w, https://framerusercontent.com/images/0NQ83yUUrgrl2JJBjzyBPWbi6rY.png?scale-down-to=2048 944w, https://framerusercontent.com/images/0NQ83yUUrgrl2JJBjzyBPWbi6rY.png 1179w" sizes="270px" style="display:block;width:100%;height:100%;border-radius:inherit;object-position:center;object-fit:cover;image-rendering:auto" loading="lazy"></div></div></div></div></div><div class="framer-3xbnw2"><div class="framer-1faiw56 hidden-1v7hleh" data-framer-name="Desktop" name="Desktop"><div class="framer-14qzpxy"><div class="framer-85boel"><div class="framer-1ourv28" data-framer-name="pexels_mart_production_8165422" name="pexels_mart_production_8165422"><div style="position:absolute;border-radius:inherit;top:0;right:0;bottom:0;left:0" data-framer-background-image-wrapper="true"><img src="./Coria Pay - Landing_files/BSZlVdIaXipFLiVUgQOgPTTl3T4.png" alt="Woman using a mobile phone" srcset="https://framerusercontent.com/images/BSZlVdIaXipFLiVUgQOgPTTl3T4.png?scale-down-to=512 415w, https://framerusercontent.com/images/BSZlVdIaXipFLiVUgQOgPTTl3T4.png?scale-down-to=1024 831w, https://framerusercontent.com/images/BSZlVdIaXipFLiVUgQOgPTTl3T4.png?scale-down-to=2048 1663w, https://framerusercontent.com/images/BSZlVdIaXipFLiVUgQOgPTTl3T4.png 2000w" sizes="364px" style="display:block;width:100%;height:100%;border-radius:inherit;object-position:center;object-fit:cover;image-rendering:auto" loading="lazy"></div></div><div data-framer-component-type="SVG" data-framer-name="Icon" name="Icon" style="image-rendering:pixelated;flex-shrink:0;background-size:100% 100%;background-image:url('data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20viewBox%3D%220%200%2021%2032%22%3E%3Cpath%20d%3D%22M%200.892%2017.805%20C%201.224%2016.865%201.465%2015.879%201.897%2014.986%20C%204.004%2010.621%206.621%206.568%209.82%202.919%20C%2010.516%202.122%2011.445%201.416%2012.406%200.98%20C%2014.467%200.055%2016.469%201.233%2016.568%203.47%20C%2016.619%204.628%2016.414%205.999%2015.812%206.948%20C%2012.969%2011.447%209.989%2015.865%206.957%2020.239%20C%206.039%2021.56%204.463%2021.83%203.102%2021.276%20C%201.745%2020.727%200.97%2019.444%200.892%2017.805%20Z%20M%2016.066%2023.674%20C%2018.166%2023.785%2019.385%2024.831%2019.504%2026.307%20C%2019.626%2027.823%2018.649%2028.929%2016.888%2029.288%20C%2014.21%2029.83%2011.549%2030.43%208.861%2030.912%20C%207.932%2031.078%206.907%2031.132%206.003%2030.915%20C%204.249%2030.497%203.769%2028.795%204.906%2027.398%20C%205.164%2027.078%205.482%2026.767%205.841%2026.573%20C%209.141%2024.754%2012.759%2024.078%2016.066%2023.674%20Z%22%20fill%3D%22rgb(0%2C0%2C0)%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E')" class="framer-xb67ud"></div></div><div class="framer-wh0nwb" style="opacity: 1; transform: none;"><div style="position:absolute;border-radius:inherit;top:0;right:0;bottom:0;left:0" data-framer-background-image-wrapper="true"><img src="./Coria Pay - Landing_files/f0sMEl2qq3d7kzphkwGbKA15s.jpg" alt="" style="display:block;width:100%;height:100%;border-radius:inherit;object-position:center;object-fit:cover;image-rendering:auto" loading="lazy"></div><div class="framer-czu0ul-container"><div style="display:contents"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 256 256" focusable="false" color="rgb(0, 0, 0)" style="user-select: none; width: 100%; height: 100%; display: inline-block; fill: rgb(0, 0, 0); flex-shrink: 0;"><g color="rgb(0, 0, 0)" weight="fill"><path d="M127.99414,15.9971a88.1046,88.1046,0,0,0-88,88c0,75.29688,80,132.17188,83.40625,134.55469a8.023,8.023,0,0,0,9.1875,0c3.40625-2.38281,83.40625-59.25781,83.40625-134.55469A88.10459,88.10459,0,0,0,127.99414,15.9971ZM128,72a32,32,0,1,1-32,32A31.99909,31.99909,0,0,1,128,72Z"></path></g></svg></div></div></div><div class="framer-2kl2vj" style="opacity: 1; transform: none;"></div></div><div class="framer-18egbiu"><div class="framer-5rv8en-container" style="opacity: 1; transform: none;"><div style="display:contents"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 256 256" focusable="false" color="var(--token-88df606f-5878-4d12-aef5-80c1b2572188, rgb(168, 115, 232)) /* {"name":"Secondary"} */" style="user-select: none; width: 100%; height: 100%; display: inline-block; fill: var(--token-88df606f-5878-4d12-aef5-80c1b2572188, rgb(168, 115, 232)); flex-shrink: 0;"><g color="var(--token-88df606f-5878-4d12-aef5-80c1b2572188, rgb(168, 115, 232)) /* {"name":"Secondary"} */" weight="fill"><path d="M228.9226,49.69434a7.99952,7.99952,0,0,0-6.86328-1.45557L160.93066,63.521,99.57788,32.84448c-.01758-.00879-.03613-.01416-.054-.0227a8.0283,8.0283,0,0,0-.86059-.363c-.05152-.01831-.10425-.03125-.156-.04858q-.36695-.12121-.7456-.207c-.082-.01855-.16407-.03515-.24659-.051q-.35778-.06921-.72338-.105c-.06934-.00708-.13843-.01709-.208-.02222a7.93012,7.93012,0,0,0-.94019-.01684l-.02392.00219a7.97484,7.97484,0,0,0-.8833.09571c-.1001.01611-.19874.03857-.29834.05859-.12623.0249-.25245.04273-.37867.07422l-64,16A7.99985,7.99985,0,0,0,23.99975,56V200a8.00045,8.00045,0,0,0,9.94043,7.76123L95.06909,192.479l61.35254,30.67627c.03637.01807.0747.03.11133.04761q.32482.15673.66308.28442c.04175.01563.08277.0337.125.04883a7.95445,7.95445,0,0,0,.81494.24146c.04273.01025.08545.01782.12818.02734q.36034.0802.72925.12671c.05078.00659.10131.01392.15234.01929a7.29318,7.29318,0,0,0,1.89233-.02222c.11182-.01465.22144-.04248.33277-.06177.18994-.0332.37939-.05835.56933-.10571l64-16A8,8,0,0,0,231.99975,200V56A7.99871,7.99871,0,0,0,228.9226,49.69434ZM151.99975,203.05566l-48-24V52.94434l48,24Z"></path></g></svg></div></div><div class="framer-btejlx"><div class="framer-egkq1d" style="outline: none; display: flex; flex-direction: column; justify-content: flex-start; flex-shrink: 0; opacity: 1; transform: none;" data-framer-component-type="RichTextContainer"><h3 class="framer-text framer-styles-preset-ci2ngw" data-styles-preset="stylesPresetHeading3" style="--framer-text-alignment:left">Scan and Go</h3></div><div class="framer-6kicob" style="outline: none; display: flex; flex-direction: column; justify-content: flex-start; flex-shrink: 0; opacity: 0.8; transform: none;" data-framer-component-type="RichTextContainer"><p class="framer-text framer-styles-preset-1rdy2h6" data-styles-preset="asK2xZ6ef" style="--framer-text-alignment:left">Just scan QR code to spend, we take care of the rest.</p></div></div></div></div></div></section><div class="framer-1dm7i44"><div class="framer-134tl70"><div class="framer-tsq70" style="opacity: 1; transform: none;"><div class="framer-zvga0j" style="outline:none;display:flex;flex-direction:column;justify-content:flex-start;flex-shrink:0;transform:none" data-framer-component-type="RichTextContainer"><h3 class="framer-text framer-styles-preset-ci2ngw" data-styles-preset="stylesPresetHeading3" style="--framer-text-alignment:center;--framer-text-color:var(--token-892e5b83-1349-4fe0-a72b-644287e4db25, rgb(255, 255, 255))">0</h3></div><div class="framer-5bnl09" style="outline:none;display:flex;flex-direction:column;justify-content:flex-start;flex-shrink:0;transform:none" data-framer-component-type="RichTextContainer"><p class="framer-text framer-styles-preset-1rdy2h6" data-styles-preset="asK2xZ6ef" style="--framer-text-alignment:center"><span style="--framer-text-color:var(--token-892e5b83-1349-4fe0-a72b-644287e4db25, rgb(255, 255, 255))" class="framer-text">Active users</span></p></div></div><div class="framer-1uh4mth" style="opacity: 1; transform: none;"><div class="framer-1hxsc2g" style="outline:none;display:flex;flex-direction:column;justify-content:flex-start;flex-shrink:0;transform:none" data-framer-component-type="RichTextContainer"><h3 class="framer-text framer-styles-preset-ci2ngw" data-styles-preset="stylesPresetHeading3" style="--framer-text-alignment:center;--framer-text-color:var(--token-892e5b83-1349-4fe0-a72b-644287e4db25, rgb(255, 255, 255))">₹0</h3></div><div class="framer-wvm10d" style="outline:none;display:flex;flex-direction:column;justify-content:flex-start;flex-shrink:0;transform:none" data-framer-component-type="RichTextContainer"><p class="framer-text framer-styles-preset-1rdy2h6" data-styles-preset="asK2xZ6ef" style="--framer-text-alignment:center;--framer-text-color:var(--token-892e5b83-1349-4fe0-a72b-644287e4db25, rgb(255, 255, 255))">Amount Transacted</p></div></div><div class="framer-1wjhxpe" style="opacity: 1; transform: none;"><div class="framer-vcobk2" style="outline:none;display:flex;flex-direction:column;justify-content:flex-start;flex-shrink:0;transform:none" data-framer-component-type="RichTextContainer"><h3 class="framer-text framer-styles-preset-ci2ngw" data-styles-preset="stylesPresetHeading3" style="--framer-text-alignment:center;--framer-text-color:var(--token-892e5b83-1349-4fe0-a72b-644287e4db25, rgb(255, 255, 255))">10s</h3></div><div class="framer-154lq2l" style="outline:none;display:flex;flex-direction:column;justify-content:flex-start;flex-shrink:0;transform:none" data-framer-component-type="RichTextContainer"><p class="framer-text framer-styles-preset-1rdy2h6" data-styles-preset="asK2xZ6ef" style="--framer-text-alignment:center;--framer-text-color:var(--token-892e5b83-1349-4fe0-a72b-644287e4db25, rgb(255, 255, 255))">Processing Time</p></div></div></div></div><div class="framer-bgo5fi"><div class="framer-1jy898" style="opacity: 1; transform: none;"><div class="framer-qd8lx" style="outline:none;display:flex;flex-direction:column;justify-content:flex-start;flex-shrink:0;transform:none" data-framer-component-type="RichTextContainer"><h2 class="framer-text framer-styles-preset-azvayr" data-styles-preset="H847_07Fv" style="--framer-text-alignment:left">Spend your crypto on anything via UPI</h2></div></div><div class="framer-5pjwh0"><div class="framer-9x2ppt" data-framer-name="Device" name="Device" style="opacity: 1; transform: perspective(1200px);"><div class="framer-fnxjnx"><div style="position:absolute;border-radius:inherit;top:0;right:0;bottom:0;left:0" data-framer-background-image-wrapper="true"><img src="./Coria Pay - Landing_files/hKIyxD7seYRm4xyTq3Qa3DWGOdw.png" alt="" srcset="https://framerusercontent.com/images/hKIyxD7seYRm4xyTq3Qa3DWGOdw.png?scale-down-to=512 236w, https://framerusercontent.com/images/hKIyxD7seYRm4xyTq3Qa3DWGOdw.png?scale-down-to=1024 472w, https://framerusercontent.com/images/hKIyxD7seYRm4xyTq3Qa3DWGOdw.png?scale-down-to=2048 944w, https://framerusercontent.com/images/hKIyxD7seYRm4xyTq3Qa3DWGOdw.png 1179w" sizes="270px" style="display:block;width:100%;height:100%;border-radius:inherit;object-position:center;object-fit:cover;image-rendering:auto" loading="lazy"></div></div></div><div class="framer-19y6vu9 hidden-1v7hleh" data-framer-name="Device" name="Device" style="opacity: 1; transform: perspective(1200px);"><div class="framer-ykm858"><div style="position:absolute;border-radius:inherit;top:0;right:0;bottom:0;left:0" data-framer-background-image-wrapper="true"><img src="./Coria Pay - Landing_files/vSG91PEOe6vjSBDxZX1QOH8Ghg8.png" alt="" srcset="https://framerusercontent.com/images/vSG91PEOe6vjSBDxZX1QOH8Ghg8.png?scale-down-to=512 236w, https://framerusercontent.com/images/vSG91PEOe6vjSBDxZX1QOH8Ghg8.png?scale-down-to=1024 472w, https://framerusercontent.com/images/vSG91PEOe6vjSBDxZX1QOH8Ghg8.png?scale-down-to=2048 944w, https://framerusercontent.com/images/vSG91PEOe6vjSBDxZX1QOH8Ghg8.png 1179w" sizes="270px" style="display:block;width:100%;height:100%;border-radius:inherit;object-position:center;object-fit:cover;image-rendering:auto" loading="lazy"></div><div class="framer-10ffgc8"><div class="framer-yhald8"><div data-framer-component-type="Text" style="outline:none;display:flex;flex-direction:column;justify-content:flex-start;flex-shrink:0;line-height:1px;font-size:0px;--framer-text-alignment:center;transform:none" class="framer-1ovljb9"><span style="font-size: 0; line-height: 0; tab-size: 4; white-space: inherit; word-wrap: inherit"><span style="direction: ltr; font-size: 0"><span style="">Message</span><br></span></span></div></div><div class="framer-1yi7hyx"><div class="framer-qzwofe-container"><div style="display:contents"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 256 256" focusable="false" color="rgb(255, 255, 255)" style="user-select: none; width: 100%; height: 100%; display: inline-block; fill: rgb(255, 255, 255); flex-shrink: 0;"><g color="rgb(255, 255, 255)" weight="fill"><path d="M223.73633,32.26367a16.01051,16.01051,0,0,0-15.65723-4.085L21.751,80.73242a15.9995,15.9995,0,0,0-2.50586,29.8584l77.93359,36.916,53.28223-53.28223a8.00052,8.00052,0,0,1,11.31445,11.31445l-53.28223,53.28223,36.916,77.93359a15.85235,15.85235,0,0,0,14.41406,9.15235q.687,0,1.38379-.05762A15.86994,15.86994,0,0,0,175.26758,234.249L227.82129,47.9209A16.0173,16.0173,0,0,0,223.73633,32.26367Z"></path></g></svg></div></div></div></div></div></div><div class="framer-1v0gnh9" style="opacity: 1; transform: perspective(1200px);"><div data-framer-component-type="SVG" data-framer-name="Icon" name="Icon" style="image-rendering:pixelated;flex-shrink:0;background-size:100% 100%;background-image:url('data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20viewBox%3D%220%200%20146%20137%22%3E%3Cpath%20d%3D%22M%2094.432%204.262%20C%2087.895%205.52%2081.628%206.753%2075.36%207.962%20C%2074.111%208.209%2073.23%208.381%2071.614%208.431%20C%2070.415%208.48%2067.868%208.529%2068.089%207.222%20C%2068.382%206.161%2068.726%205.446%2070.856%204.805%20C%2076.364%203.176%2082.068%202.387%2087.724%201.573%20C%2092.718%200.857%2096.537%200.389%20100.993%200.019%20C%20103.074%20-0.154%20103.906%200.882%20103.661%202.806%20C%20103.441%204.533%20103.245%206.309%20102.707%207.962%20C%20100.797%2013.932%2098.741%2019.828%2096.733%2025.773%20C%2096.488%2026.513%2096.341%2027.105%2095.925%2027.943%20C%2095.411%2028.954%2095.093%2029.719%2094.04%2029.423%20C%2093.036%2029.152%2093.085%2027.672%2093.257%2026.932%20C%2094.554%2020.716%2097.443%207.937%2097.443%207.222%20C%2094.236%209.294%2091.224%2011.144%2088.311%2013.167%20C%2068.089%2027.351%2049.042%2042.867%2033.887%2062.75%20C%2021.891%2078.489%2011.951%2095.387%204.607%20113.814%20C%204.166%20114.899%203.628%20115.96%203.089%20116.971%20C%202.379%20118.352%201.767%20118.945%201.032%20118.624%20C%20-0.265%20117.834%20-0.02%20116.774%200.102%20115.91%20C%200.322%20114.184%200.91%20112.482%201.473%20110.829%20C%209.234%2088.8%2021.573%2069.509%2036.483%2051.773%20C%2051.784%2033.568%2070.488%2019.556%2090.441%207.099%20C%2091.518%206.482%2094.04%204.706%2094.432%204.262%20Z%22%20transform%3D%22translate(21%209)%20rotate(72%2051.851%2059.355)%22%20fill%3D%22rgb(0%2C0%2C0)%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E')" class="framer-45xdff hidden-czwtv8 hidden-1v7hleh"></div></div></div></div><div class="framer-1s7csf8"><div class="framer-1vmdlu" style="opacity: 1; transform: none;"><div class="framer-12rf4rv"><div class="framer-1vr2hab" style="outline:none;display:flex;flex-direction:column;justify-content:flex-start;flex-shrink:0;transform:none" data-framer-component-type="RichTextContainer"><h2 class="framer-text framer-styles-preset-azvayr" data-styles-preset="H847_07Fv" style="--framer-text-alignment:center;--framer-text-color:var(--token-1d11e7c9-c5f2-405f-a513-4875194544c6, rgb(250, 249, 251))">Finally a way to pay with your crypto</h2></div><div data-framer-component-type="SVG" data-framer-name="Icon" name="Icon" style="image-rendering:pixelated;flex-shrink:0;background-size:100% 100%;background-image:url('data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20viewBox%3D%220%200%2021%2032%22%3E%3Cpath%20d%3D%22M%200.892%2017.805%20C%201.224%2016.865%201.465%2015.879%201.897%2014.986%20C%204.004%2010.621%206.621%206.568%209.82%202.919%20C%2010.516%202.122%2011.445%201.416%2012.406%200.98%20C%2014.467%200.055%2016.469%201.233%2016.568%203.47%20C%2016.619%204.628%2016.414%205.999%2015.812%206.948%20C%2012.969%2011.447%209.989%2015.865%206.957%2020.239%20C%206.039%2021.56%204.463%2021.83%203.102%2021.276%20C%201.745%2020.727%200.97%2019.444%200.892%2017.805%20Z%20M%2016.066%2023.674%20C%2018.166%2023.785%2019.385%2024.831%2019.504%2026.307%20C%2019.626%2027.823%2018.649%2028.929%2016.888%2029.288%20C%2014.21%2029.83%2011.549%2030.43%208.861%2030.912%20C%207.932%2031.078%206.907%2031.132%206.003%2030.915%20C%204.249%2030.497%203.769%2028.795%204.906%2027.398%20C%205.164%2027.078%205.482%2026.767%205.841%2026.573%20C%209.141%2024.754%2012.759%2024.078%2016.066%2023.674%20Z%22%20fill%3D%22rgb(0%2C0%2C0)%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E')" class="framer-uh6lvx hidden-1v7hleh"></div><div data-framer-component-type="SVG" data-framer-name="Icon" name="Icon" style="image-rendering:pixelated;flex-shrink:0;background-size:100% 100%;background-image:url('data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20viewBox%3D%220%200%2028%2061%22%3E%3Cpath%20d%3D%22M%2016.062%2046.349%20C%2017.6%2044.103%2019.046%2041.877%2020.622%2039.741%20C%2021.187%2038.977%2021.997%2038.341%2022.812%2037.825%20C%2023.946%2037.11%2025.193%2037.107%2026.34%2037.871%20C%2027.529%2038.659%2028.003%2039.84%2027.724%2041.199%20C%2027.537%2042.1%2027.159%2042.988%2026.731%2043.81%20C%2025.625%2045.945%2024.366%2048.001%2023.319%2050.162%20C%2022.72%2051.396%2022.226%2052.738%2022.005%2054.081%20C%2021.681%2056.038%2022.255%2057.81%2023.934%2059.07%20C%2024.711%2059.652%2024.532%2060.061%2023.776%2060.466%20C%2021.939%2061.449%2019.146%2061.023%2017.621%2059.363%20C%2015.214%2056.749%2014.791%2053.577%2015.264%2050.207%20C%2015.314%2049.839%2015.401%2049.476%2015.468%2049.117%20C%2011.728%2048.084%209.891%2046.04%209.766%2042.178%20C%209.703%2040.158%2010.256%2038.118%2010.556%2036.086%20C%2010.614%2035.69%2010.784%2035.306%2010.905%2034.905%20C%2010.742%2034.831%2010.651%2034.76%2010.547%2034.748%20C%202.962%2033.687%20-1.248%2027.864%200.39%2020.384%20C%200.946%2017.857%201.795%2015.403%202.921%2013.07%20C%204.779%209.221%206.919%205.5%209.039%201.783%20C%209.429%201.097%2010.235%200.531%2010.979%200.193%20C%2011.948%20-0.245%2012.916%200.118%2013.66%200.886%20C%2014.483%201.733%2014.624%202.786%2014.213%203.819%20C%2013.689%205.14%2013.007%206.404%2012.38%207.684%20C%2010.73%2011.055%208.972%2014.383%207.459%2017.811%20C%206.695%2019.542%206.167%2021.429%205.88%2023.3%20C%205.323%2026.951%208.498%2030.407%2012.222%2030.371%20C%2012.613%2030.366%2013.165%2030.044%2013.361%2029.709%20C%2015.36%2026.224%2018.012%2023.246%2020.667%2020.269%20C%2021.91%2018.873%2023.514%2018.592%2024.807%2019.476%20C%2026.128%2020.38%2026.465%2022.061%2025.496%2023.688%20C%2024.399%2025.526%2023.181%2027.294%2022.018%2029.09%20C%2019.433%2033.076%2017.047%2037.156%2015.813%2041.79%20C%2015.393%2043.396%2015.364%2044.957%2016.062%2046.349%20Z%22%20fill%3D%22rgb(0%2C0%2C0)%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E')" class="framer-1qxwza3 hidden-1v7hleh"></div></div><div class="framer-glxlqe" style="outline:none;display:flex;flex-direction:column;justify-content:flex-start;flex-shrink:0;transform:none" data-framer-component-type="RichTextContainer"><p class="framer-text framer-styles-preset-1rdy2h6" data-styles-preset="asK2xZ6ef" style="--framer-text-alignment:center;--framer-text-color:var(--token-1d11e7c9-c5f2-405f-a513-4875194544c6, rgb(250, 249, 251))">Your money — your way.</p></div></div></div></div><div id="overlay"></div></div></div><div id="svg-templates" style="position: absolute; overflow: hidden; top: 0; left: 0; width: 0; height: 0">
</div>
<div id="__framer-badge-container"><div class="__framer-badge" style="opacity: 1; transform: none;"><div data-framer-generated="true" class="framer-Gxp3N framer-v-n0ccwk" tabindex="0" style="display: contents;"><a href="https://framer.com/" title="Custom website builder for designers, agencies and startups."><div class="framer-n0ccwk" data-framer-name="Light" style="--border-bottom-width: 0px; --border-color: rgba(0, 0, 0, 0); --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 0px; background-color: rgb(255, 255, 255); cursor: pointer; border-radius: 10px; box-shadow: rgba(0, 0, 0, 0.26) 0px 0.637473px 1.14745px -1.125px, rgba(0, 0, 0, 0.24) 0px 1.93094px 3.4757px -2.25px, rgba(0, 0, 0, 0.192) 0px 5.10423px 9.18761px -3.375px, rgba(0, 0, 0, 0.03) 0px 16px 28.8px -4.5px; opacity: 1;"><div class="framer-19yaanm" style="transform: translate(-50%, -50%); opacity: 1;"><div data-framer-component-type="SVG" data-framer-name="madeinframer" radius="0" tabindex="2" class="framer-tmnpxq" style="image-rendering: pixelated; flex-shrink: 0; background-size: 100% 100%; background-image: url("data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20viewBox%3D%220%200%2011%2016%22%3E%3Cpath%20d%3D%22M%2011%200%20L%2011%205.333%20L%205.5%205.333%20L%200%200%20Z%20M%200%205.333%20L%205.5%205.333%20L%2011%2010.667%20L%205.5%2010.667%20L%205.5%2016%20L%200%2010.667%20Z%22%20fill%3D%22rgb(34%2C34%2C34)%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E"); opacity: 1;"></div><div data-framer-component-type="SVG" radius="0" class="framer-1v3cvgh" role="img" aria-label="Custom site builder" aria-describedby="svg:r1:desc" style="image-rendering: pixelated; flex-shrink: 0; background-size: 100% 100%; background-image: url("data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20viewBox%3D%220%200%2092%2011%22%3E%3Cpath%20d%3D%22M%200%200.958%20L%202.393%200.958%20L%204.92%207.255%20L%205.028%207.255%20L%207.555%200.958%20L%209.941%200.958%20L%209.941%2010.331%20L%208.066%2010.331%20L%208.066%204.232%20L%207.988%204.232%20L%205.614%2010.286%20L%204.332%2010.286%20L%201.958%204.209%20L%201.882%204.209%20L%201.882%2010.331%20L%200%2010.331%20Z%20M%2013.279%2010.463%20C%2012.874%2010.472%2012.472%2010.392%2012.1%2010.228%20C%2011.769%2010.08%2011.487%209.837%2011.289%209.529%20C%2011.08%209.181%2010.977%208.777%2010.991%208.369%20C%2010.981%208.028%2011.053%207.69%2011.202%207.384%20C%2011.337%207.125%2011.535%206.905%2011.776%206.744%20C%2012.03%206.576%2012.309%206.452%2012.602%206.378%20C%2012.922%206.293%2013.248%206.236%2013.578%206.206%20C%2013.977%206.163%2014.3%206.121%2014.545%206.083%20C%2014.732%206.065%2014.913%206.006%2015.077%205.911%20C%2015.19%205.836%2015.254%205.704%2015.246%205.567%20L%2015.246%205.54%20C%2015.26%205.286%2015.163%205.039%2014.979%204.867%20C%2014.764%204.696%2014.495%204.611%2014.223%204.629%20C%2013.933%204.614%2013.646%204.695%2013.404%204.86%20C%2013.21%205.001%2013.067%205.205%2013%205.438%20L%2011.235%205.292%20C%2011.317%204.882%2011.499%204.5%2011.765%204.182%20C%2012.038%203.859%2012.385%203.611%2012.776%203.459%20C%2013.239%203.282%2013.73%203.196%2014.225%203.206%20C%2014.599%203.206%2014.971%203.254%2015.333%203.349%20C%2015.668%203.433%2015.984%203.577%2016.268%203.776%20C%2016.54%203.964%2016.763%204.218%2016.917%204.514%20C%2017.083%204.846%2017.165%205.214%2017.156%205.586%20L%2017.156%2010.331%20L%2015.345%2010.331%20L%2015.345%209.357%20L%2015.291%209.357%20C%2015.181%209.577%2015.031%209.773%2014.848%209.935%20C%2014.65%2010.108%2014.421%2010.241%2014.174%2010.324%20C%2013.886%2010.421%2013.583%2010.468%2013.279%2010.463%20Z%20M%2013.827%209.119%20C%2014.085%209.124%2014.34%209.065%2014.57%208.947%20C%2014.776%208.841%2014.951%208.681%2015.076%208.482%20C%2015.199%208.286%2015.263%208.057%2015.261%207.823%20L%2015.261%207.073%20C%2015.184%207.12%2015.102%207.156%2015.017%207.181%20C%2014.914%207.212%2014.798%207.242%2014.669%207.267%20C%2014.541%207.293%2014.412%207.316%2014.284%207.336%20L%2013.935%207.39%20C%2013.733%207.416%2013.535%207.47%2013.347%207.55%20C%2013.194%207.611%2013.06%207.713%2012.958%207.844%20C%2012.862%207.977%2012.814%208.139%2012.819%208.303%20C%2012.806%208.542%2012.913%208.771%2013.102%208.911%20C%2013.317%209.056%2013.57%209.129%2013.827%209.119%20Z%20M%2020.986%2010.446%20C%2020.484%2010.453%2019.991%2010.308%2019.568%2010.031%20C%2019.122%209.733%2018.771%209.308%2018.557%208.809%20C%2018.297%208.183%2018.175%207.505%2018.198%206.825%20C%2018.175%206.134%2018.305%205.447%2018.579%204.815%20C%2018.795%204.322%2019.146%203.904%2019.59%203.61%20C%2020.007%203.345%2020.49%203.207%2020.981%203.211%20C%2021.314%203.199%2021.645%203.267%2021.947%203.409%20C%2022.189%203.526%2022.405%203.695%2022.579%203.903%20C%2022.725%204.079%2022.848%204.274%2022.944%204.483%20L%2023.003%204.483%20L%2023.003%200.958%20L%2024.907%200.958%20L%2024.907%2010.331%20L%2023.02%2010.331%20L%2023.02%209.2%20L%2022.939%209.2%20C%2022.84%209.41%2022.713%209.606%2022.562%209.78%20C%2022.385%209.98%2022.17%2010.141%2021.93%2010.253%20C%2021.633%2010.388%2021.311%2010.454%2020.986%2010.446%20Z%20M%2021.591%208.897%20C%2021.873%208.906%2022.149%208.814%2022.373%208.639%20C%2022.599%208.448%2022.769%208.197%2022.865%207.915%20C%2022.985%207.563%2023.042%207.192%2023.034%206.82%20C%2023.043%206.449%2022.985%206.08%2022.865%205.731%20C%2022.771%205.45%2022.6%205.202%2022.373%205.016%20C%2022.147%204.845%2021.871%204.757%2021.59%204.765%20C%2021.303%204.755%2021.023%204.848%2020.796%205.027%20C%2020.57%205.216%2020.401%205.467%2020.307%205.75%20C%2020.191%206.094%2020.134%206.456%2020.139%206.82%20C%2020.132%207.188%2020.189%207.555%2020.307%207.903%20C%2020.4%208.188%2020.569%208.442%2020.794%208.636%20C%2021.022%208.814%2021.304%208.905%2021.591%208.894%20Z%20M%2029.413%2010.469%20C%2028.777%2010.487%2028.148%2010.334%2027.588%2010.026%20C%2027.082%209.738%2026.671%209.302%2026.409%208.773%20C%2026.121%208.176%2025.979%207.515%2025.996%206.849%20C%2025.981%206.19%2026.123%205.536%2026.409%204.944%20C%2026.669%204.414%2027.073%203.971%2027.571%203.667%20C%2028.107%203.353%2028.717%203.195%2029.334%203.211%20C%2029.767%203.208%2030.197%203.282%2030.604%203.431%20C%2030.99%203.576%2031.342%203.803%2031.636%204.097%20C%2031.941%204.414%2032.176%204.794%2032.323%205.213%20C%2032.496%205.716%2032.579%206.247%2032.569%206.78%20L%2032.569%207.316%20L%2026.761%207.316%20L%2026.761%206.102%20L%2030.776%206.102%20C%2030.781%205.842%2030.719%205.584%2030.596%205.355%20C%2030.48%205.141%2030.31%204.962%2030.102%204.839%20C%2029.878%204.712%2029.625%204.648%2029.369%204.653%20C%2029.1%204.648%2028.834%204.719%2028.601%204.858%20C%2028.383%204.989%2028.202%205.177%2028.079%205.402%20C%2027.952%205.633%2027.885%205.894%2027.885%206.159%20L%2027.885%207.309%20C%2027.877%207.62%2027.942%207.929%2028.075%208.209%20C%2028.195%208.454%2028.383%208.658%2028.616%208.796%20C%2028.87%208.938%2029.156%209.009%2029.445%209%20C%2029.643%209.003%2029.84%208.972%2030.028%208.909%20C%2030.197%208.853%2030.351%208.76%2030.48%208.636%20C%2030.607%208.51%2030.705%208.357%2030.766%208.186%20L%2032.532%208.305%20C%2032.449%208.725%2032.261%209.116%2031.984%209.438%20C%2031.692%209.772%2031.326%2010.03%2030.916%2010.19%20C%2030.437%2010.38%2029.927%2010.474%2029.413%2010.469%20Z%20M%2037.324%202.395%20C%2037.053%202.401%2036.791%202.296%2036.596%202.104%20C%2036.404%201.929%2036.295%201.679%2036.295%201.416%20C%2036.295%201.153%2036.404%200.903%2036.596%200.728%20C%2037.007%200.34%2037.641%200.34%2038.052%200.728%20C%2038.245%200.902%2038.355%201.153%2038.355%201.416%20C%2038.358%201.682%2038.247%201.937%2038.052%202.113%20C%2037.856%202.303%2037.594%202.404%2037.324%202.395%20Z%20M%2036.365%2010.331%20L%2036.365%203.302%20L%2038.274%203.302%20L%2038.274%2010.331%20Z%20M%2041.516%206.274%20L%2041.516%2010.331%20L%2039.609%2010.331%20L%2039.609%203.302%20L%2041.427%203.302%20L%2041.427%204.541%20L%2041.508%204.541%20C%2041.655%204.142%2041.923%203.801%2042.275%203.569%20C%2042.665%203.321%2043.119%203.197%2043.579%203.211%20C%2044.016%203.2%2044.448%203.311%2044.829%203.531%20C%2045.186%203.747%2045.474%204.064%2045.658%204.443%20C%2045.864%204.883%2045.965%205.367%2045.953%205.855%20L%2045.953%2010.329%20L%2044.045%2010.329%20L%2044.045%206.199%20C%2044.068%205.832%2043.952%205.47%2043.722%205.189%20C%2043.487%204.939%2043.158%204.807%2042.82%204.825%20C%2042.585%204.822%2042.353%204.882%2042.146%204.997%20C%2041.949%205.111%2041.79%205.283%2041.688%205.49%20C%2041.572%205.734%2041.513%206.003%2041.516%206.274%20Z%20M%2050.044%2010.331%20L%2050.044%200.958%20L%2056.11%200.958%20L%2056.11%202.592%20L%2051.978%202.592%20L%2051.978%204.829%20L%2055.711%204.829%20L%2055.711%206.462%20L%2051.978%206.462%20L%2051.978%2010.334%20Z%20M%2057.077%2010.331%20L%2057.077%203.302%20L%2058.931%203.302%20L%2058.931%204.528%20L%2059.001%204.528%20C%2059.099%204.136%2059.321%203.788%2059.633%203.538%20C%2059.927%203.311%2060.287%203.19%2060.656%203.194%20C%2060.759%203.195%2060.862%203.201%2060.964%203.213%20C%2061.062%203.223%2061.16%203.24%2061.256%203.263%20L%2061.256%204.999%20C%2061.134%204.965%2061.009%204.941%2060.883%204.927%20C%2060.739%204.906%2060.594%204.895%2060.449%204.894%20C%2060.187%204.889%2059.929%204.953%2059.699%205.08%20C%2059.482%205.2%2059.302%205.379%2059.178%205.596%20C%2059.049%205.827%2058.983%206.089%2058.988%206.355%20L%2058.988%2010.331%20Z%20M%2063.814%2010.463%20C%2063.408%2010.472%2063.006%2010.392%2062.634%2010.228%20C%2062.302%2010.081%2062.019%209.838%2061.82%209.529%20C%2061.611%209.181%2061.507%208.777%2061.522%208.369%20C%2061.512%208.028%2061.584%207.69%2061.733%207.384%20C%2061.868%207.125%2062.066%206.905%2062.307%206.744%20C%2062.561%206.576%2062.84%206.452%2063.133%206.378%20C%2063.453%206.294%2063.779%206.236%2064.108%206.206%20C%2064.508%206.163%2064.831%206.121%2065.076%206.083%20C%2065.263%206.064%2065.445%206.006%2065.61%205.911%20C%2065.722%205.836%2065.787%205.704%2065.778%205.567%20L%2065.778%205.54%20C%2065.794%205.286%2065.696%205.038%2065.512%204.867%20C%2065.298%204.696%2065.03%204.611%2064.759%204.629%20C%2064.468%204.613%2064.18%204.694%2063.938%204.86%20C%2063.744%205.001%2063.601%205.204%2063.534%205.438%20L%2061.77%205.292%20C%2061.851%204.882%2062.032%204.5%2062.297%204.182%20C%2062.574%203.859%2062.925%203.611%2063.318%203.459%20C%2063.781%203.282%2064.273%203.196%2064.767%203.206%20C%2065.138%203.204%2065.508%203.25%2065.868%203.342%20C%2066.202%203.426%2066.519%203.571%2066.804%203.769%20C%2067.075%203.958%2067.297%204.211%2067.452%204.507%20C%2067.617%204.84%2067.698%205.211%2067.687%205.584%20L%2067.687%2010.331%20L%2065.883%2010.331%20L%2065.883%209.357%20L%2065.829%209.357%20C%2065.717%209.578%2065.563%209.774%2065.377%209.935%20C%2065.18%2010.108%2064.951%2010.241%2064.703%2010.324%20C%2064.416%2010.42%2064.116%2010.467%2063.814%2010.463%20Z%20M%2064.366%209.119%20C%2064.624%209.124%2064.879%209.065%2065.109%208.947%20C%2065.316%208.841%2065.49%208.681%2065.615%208.482%20C%2065.736%208.285%2065.799%208.056%2065.795%207.823%20L%2065.795%207.073%20C%2065.719%207.12%2065.637%207.156%2065.551%207.181%20C%2065.446%207.212%2065.332%207.242%2065.204%207.267%20C%2065.076%207.293%2064.946%207.316%2064.818%207.336%20L%2064.467%207.39%20C%2064.266%207.417%2064.069%207.47%2063.881%207.55%20C%2063.728%207.611%2063.594%207.712%2063.492%207.844%20C%2063.396%207.977%2063.347%208.139%2063.352%208.303%20C%2063.339%208.542%2063.446%208.772%2063.637%208.911%20C%2063.852%209.058%2064.108%209.13%2064.366%209.119%20Z%20M%2068.985%2010.331%20L%2068.985%203.302%20L%2070.803%203.302%20L%2070.803%204.541%20L%2070.884%204.541%20C%2071.015%204.147%2071.266%203.805%2071.602%203.567%20C%2072.336%203.091%2073.273%203.091%2074.008%203.567%20C%2074.335%203.801%2074.57%204.145%2074.672%204.54%20L%2074.742%204.54%20C%2074.882%204.138%2075.151%203.797%2075.506%203.572%20C%2075.898%203.323%2076.354%203.197%2076.817%203.209%20C%2077.401%203.186%2077.968%203.412%2078.384%203.832%20C%2078.785%204.25%2078.985%204.84%2078.985%205.602%20L%2078.985%2010.331%20L%2077.081%2010.331%20L%2077.081%205.989%20C%2077.106%205.665%2076.995%205.345%2076.776%205.109%20C%2076.57%204.913%2076.296%204.808%2076.015%204.817%20C%2075.709%204.799%2075.412%204.922%2075.204%205.152%20C%2075.001%205.4%2074.897%205.716%2074.913%206.039%20L%2074.913%2010.331%20L%2073.059%2010.331%20L%2073.059%205.947%20C%2073.075%205.644%2072.971%205.347%2072.771%205.123%20C%2072.571%204.916%2072.295%204.805%2072.011%204.817%20C%2071.81%204.813%2071.612%204.87%2071.442%204.979%20C%2071.269%205.09%2071.13%205.247%2071.039%205.433%20C%2070.935%205.647%2070.884%205.883%2070.891%206.121%20L%2070.891%2010.331%20Z%20M%2083.439%2010.469%20C%2082.802%2010.487%2082.173%2010.334%2081.612%2010.026%20C%2081.106%209.737%2080.695%209.301%2080.433%208.773%20C%2080.146%208.175%2080.005%207.515%2080.021%206.849%20C%2080.007%206.19%2080.148%205.536%2080.433%204.944%20C%2080.693%204.414%2081.097%203.971%2081.595%203.667%20C%2082.131%203.353%2082.742%203.196%2083.359%203.211%20C%2083.792%203.208%2084.222%203.282%2084.63%203.431%20C%2085.016%203.576%2085.368%203.803%2085.661%204.097%20C%2085.967%204.413%2086.201%204.794%2086.347%205.213%20C%2086.521%205.716%2086.605%206.247%2086.595%206.78%20L%2086.595%207.316%20L%2080.786%207.316%20L%2080.786%206.102%20L%2084.802%206.102%20C%2084.806%205.842%2084.744%205.584%2084.621%205.355%20C%2084.506%205.14%2084.334%204.962%2084.126%204.839%20C%2083.902%204.712%2083.649%204.647%2083.393%204.653%20C%2083.124%204.648%2082.859%204.719%2082.626%204.858%20C%2082.408%204.988%2082.227%205.176%2082.104%205.402%20C%2081.977%205.633%2081.91%205.894%2081.91%206.159%20L%2081.91%207.309%20C%2081.903%207.62%2081.968%207.929%2082.101%208.209%20C%2082.22%208.455%2082.409%208.659%2082.642%208.796%20C%2082.895%208.938%2083.181%209.009%2083.471%209%20C%2083.668%209.003%2083.865%208.973%2084.052%208.909%20C%2084.221%208.853%2084.376%208.76%2084.505%208.636%20C%2084.633%208.51%2084.73%208.356%2084.792%208.186%20L%2086.558%208.305%20C%2086.474%208.725%2086.285%209.116%2086.008%209.438%20C%2085.716%209.772%2085.351%2010.029%2084.942%2010.19%20C%2084.463%2010.38%2083.952%2010.474%2083.439%2010.469%20Z%20M%2087.654%2010.331%20L%2087.654%203.302%20L%2089.508%203.302%20L%2089.508%204.528%20L%2089.58%204.528%20C%2089.677%204.136%2089.899%203.787%2090.211%203.538%20C%2090.505%203.311%2090.865%203.19%2091.233%203.194%20C%2091.336%203.195%2091.439%203.201%2091.542%203.213%20C%2091.64%203.223%2091.737%203.24%2091.833%203.263%20L%2091.833%204.999%20C%2091.711%204.965%2091.587%204.941%2091.461%204.927%20C%2091.317%204.906%2091.173%204.895%2091.028%204.894%20C%2090.766%204.889%2090.507%204.953%2090.276%205.08%20C%2090.06%205.201%2089.88%205.379%2089.756%205.596%20C%2089.626%205.827%2089.56%206.089%2089.565%206.355%20L%2089.565%2010.331%20Z%22%20fill%3D%22rgb(35%2C31%2C32)%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E"); opacity: 1;"><div id="svg:r1:desc" style="clip: rect(1px, 1px, 1px, 1px); clip-path: inset(50%); height: 1px; width: 1px; margin: -1px; overflow: hidden; padding: 0px; position: absolute;">The professional custom website design builder for startups, designers and agencies.</div></div></div></div></a></div></div></div>
<script data-framer-appear-animation="reduce"></script>
<script type="module" data-framer-bundle="" src="./Coria Pay - Landing_files/_script0.FAWO4OJT.mjs"></script>
<!-- End of bodyEnd -->
</body></html>