{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/Xr8CO3Ul8Gb7lVfgMKTh/Embed.js", "ssg:https://framerusercontent.com/modules/rSC9E55qwh7xmbOEwzUh/6T6hfke0bDZLBBi8fxEG/to9YfCyJu.js", "ssg:https://framerusercontent.com/modules/pEsKkQQBvC3oXbtWEahV/MjMS0IgWJo3QSsKbtHa8/A2D5Zy8_W.js", "ssg:https://framerusercontent.com/modules/mw2lGPmbHiRtC5JnnDzt/FSa4mPVnJrwdgo7V1JrQ/uV6Uzs6GE.js"],
  "sourcesContent": ["import{jsx as _jsx}from\"react/jsx-runtime\";import{useEffect,useRef,useState}from\"react\";import{addPropertyControls,ControlType}from\"framer\";import{useIsOnCanvas,emptyStateStyle,containerStyles}from\"https://framer.com/m/framer/default-utils.js\";/**\n * @framerIntrinsicWidth 600\n * @framerIntrinsicHeight 400\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n *\n * @framerDisableUnlink\n */export default function Embed({type,url,html,style={}}){if(type===\"url\"&&url){return /*#__PURE__*/_jsx(EmbedUrl,{url:url,style:style});}if(type===\"html\"&&html){return /*#__PURE__*/_jsx(EmbedHtml,{html:html,style:style});}return /*#__PURE__*/_jsx(Instructions,{style:style});}addPropertyControls(Embed,{type:{type:ControlType.Enum,defaultValue:\"url\",displaySegmentedControl:true,options:[\"url\",\"html\"],optionTitles:[\"URL\",\"HTML\"]},url:{title:\"URL\",type:ControlType.String,description:\"Some websites don\u2019t support embedding.\",hidden(props){return props.type!==\"url\";}},html:{title:\"HTML\",type:ControlType.String,displayTextArea:true,hidden(props){return props.type!==\"html\";}}});function Instructions({style}){return /*#__PURE__*/_jsx(\"div\",{style:{minHeight:getMinHeight(style),...emptyStateStyle,overflow:\"hidden\",...style},children:/*#__PURE__*/_jsx(\"div\",{style:centerTextStyle,children:\"To embed a website or widget, add it to the properties\\xa0panel.\"})});}function EmbedUrl({url,style}){const hasAutoHeight=!style.height;// Add https:// if the URL does not have a protocol.\nif(!/[a-z]+:\\/\\//.test(url)){url=\"https://\"+url;}const onCanvas=useIsOnCanvas();// We need to check if the url is blocked inside an iframe by the X-Frame-Options\n// or Content-Security-Policy headers on the backend.\nconst[state,setState]=useState(onCanvas?undefined:false);useEffect(()=>{// We only want to check on the canvas.\n// On the website we want to avoid the additional delay.\nif(!onCanvas)return;// TODO: We could also use AbortController here.\nlet isLastEffect=true;setState(undefined);async function load(){const response=await fetch(\"https://api.framer.com/functions/check-iframe-url?url=\"+encodeURIComponent(url));if(response.status==200){const{isBlocked}=await response.json();if(isLastEffect){setState(isBlocked);}}else{const message=await response.text();console.error(message);const error=new Error(\"This site can\u2019t be reached.\");setState(error);}}load().catch(error=>{console.error(error);setState(error);});return()=>{isLastEffect=false;};},[url]);if(onCanvas&&hasAutoHeight){return /*#__PURE__*/_jsx(ErrorMessage,{message:\"URL embeds do not support auto height.\",style:style});}if(!url.startsWith(\"https://\")){return /*#__PURE__*/_jsx(ErrorMessage,{message:\"Unsupported protocol.\",style:style});}if(state===undefined){return /*#__PURE__*/_jsx(LoadingIndicator,{});}if(state instanceof Error){return /*#__PURE__*/_jsx(ErrorMessage,{message:state.message,style:style});}if(state===true){const message=`Can\u2019t embed ${url} due to its content security policy.`;return /*#__PURE__*/_jsx(ErrorMessage,{message:message,style:style});}return /*#__PURE__*/_jsx(\"iframe\",{src:url,style:{...iframeStyle,...style},loading:\"lazy\",// @ts-ignore\nfetchPriority:onCanvas?\"low\":\"auto\",referrerPolicy:\"no-referrer\",sandbox:getSandbox(onCanvas)});}const iframeStyle={width:\"100%\",height:\"100%\",border:\"none\"};function getSandbox(onCanvas){const result=[\"allow-same-origin\",\"allow-scripts\"];if(!onCanvas){result.push(\"allow-downloads\",\"allow-forms\",\"allow-modals\",\"allow-orientation-lock\",\"allow-pointer-lock\",\"allow-popups\",\"allow-popups-to-escape-sandbox\",\"allow-presentation\",\"allow-storage-access-by-user-activation\",\"allow-top-navigation-by-user-activation\");}return result.join(\" \");}function EmbedHtml({html,...props}){const hasScript=html.includes(\"</script>\");if(hasScript){const hasSplineViewer=html.includes(\"</spline-viewer>\");const hasComment=html.includes(\"<!-- framer-direct-embed -->\");if(hasSplineViewer||hasComment){return /*#__PURE__*/_jsx(EmbedHtmlWithScripts,{html:html,...props});}return /*#__PURE__*/_jsx(EmbedHtmlInsideIframe,{html:html,...props});}return /*#__PURE__*/_jsx(EmbedHtmlWithoutScripts,{html:html,...props});}function EmbedHtmlInsideIframe({html,style}){const ref=useRef();const[iframeHeight,setIframeHeight]=useState(0);// Handle auto sizing\nuseEffect(()=>{var _ref_current;const iframeWindow=(_ref_current=ref.current)===null||_ref_current===void 0?void 0:_ref_current.contentWindow;function handleMessage(event){if(event.source!==iframeWindow)return;const data=event.data;if(typeof data!==\"object\"||data===null)return;const height=data.embedHeight;if(typeof height!==\"number\")return;setIframeHeight(height);}window.addEventListener(\"message\",handleMessage);// After SSG the iframe loads before we attach the event handler,\n// therefore we need to request the latest height from the iframe.\niframeWindow===null||iframeWindow===void 0?void 0:iframeWindow.postMessage(\"getEmbedHeight\",\"*\");return()=>{window.removeEventListener(\"message\",handleMessage);};},[]);// The CSS is mainly copied from:\n// FramerStudio/src/app/vekter/src/renderer/setDefaultFont.ts\n// FramerStudio/src/app/vekter/src/export/globalStylesForExport.ts\nconst srcDoc=`\n<html>\n    <head>\n        <style>\n            html, body {\n                margin: 0;\n                padding: 0;\n            }\n\n            body {\n                display: flex;\n                justify-content: center;\n                align-items: center;\n                min-height: 100vh;\n            }\n\n            :root {\n                -webkit-font-smoothing: antialiased;\n                -moz-osx-font-smoothing: grayscale;\n            }\n\n            * {\n                box-sizing: border-box;\n                -webkit-font-smoothing: inherit;\n            }\n\n            h1, h2, h3, h4, h5, h6, p, figure {\n                margin: 0;\n            }\n\n            body, input, textarea, select, button {\n                font-size: 12px;\n                font-family: sans-serif;\n            }\n        </style>\n    </head>\n    <body>\n        ${html}\n        <script type=\"module\">\n            let height = 0\n\n            function sendEmbedHeight() {\n                window.parent.postMessage({\n                    embedHeight: height\n                }, \"*\")\n            }\n\n            const observer = new ResizeObserver((entries) => {\n                if (entries.length !== 1) return\n                const entry = entries[0]\n                if (entry.target !== document.body) return\n\n                height = entry.contentRect.height\n                sendEmbedHeight()\n            })\n\n            observer.observe(document.body)\n\n            window.addEventListener(\"message\", (event) => {\n                if (event.source !== window.parent) return\n                if (event.data !== \"getEmbedHeight\") return\n                sendEmbedHeight()\n            })\n        </script>\n    <body>\n</html>\n`;const currentStyle={...iframeStyle,...style};const hasAutoHeight=!style.height;if(hasAutoHeight){currentStyle.height=iframeHeight+\"px\";}return /*#__PURE__*/_jsx(\"iframe\",{ref:ref,style:currentStyle,srcDoc:srcDoc});}function EmbedHtmlWithScripts({html,style}){const ref=useRef();useEffect(()=>{const div=ref.current;if(!div)return;div.innerHTML=html;executeScripts(div);return()=>{div.innerHTML=\"\";};},[html]);return /*#__PURE__*/_jsx(\"div\",{ref:ref,style:{...htmlStyle,...style}});}function EmbedHtmlWithoutScripts({html,style}){return /*#__PURE__*/_jsx(\"div\",{style:{...htmlStyle,...style},dangerouslySetInnerHTML:{__html:html}});}const htmlStyle={width:\"100%\",height:\"100%\",display:\"flex\",flexDirection:\"column\",justifyContent:\"center\",alignItems:\"center\"};// This function replaces scripts with executable ones.\n// https://stackoverflow.com/questions/1197575/can-scripts-be-inserted-with-innerhtml\nfunction executeScripts(node){if(node instanceof Element&&node.tagName===\"SCRIPT\"){const script=document.createElement(\"script\");script.text=node.innerHTML;for(const{name,value}of node.attributes){script.setAttribute(name,value);}node.parentElement.replaceChild(script,node);}else{for(const child of node.childNodes){executeScripts(child);}}}// Generic components\nfunction LoadingIndicator(){return /*#__PURE__*/_jsx(\"div\",{className:\"framerInternalUI-componentPlaceholder\",style:{...containerStyles,overflow:\"hidden\"},children:/*#__PURE__*/_jsx(\"div\",{style:centerTextStyle,children:\"Loading\u2026\"})});}function ErrorMessage({message,style}){return /*#__PURE__*/_jsx(\"div\",{className:\"framerInternalUI-errorPlaceholder\",style:{minHeight:getMinHeight(style),...containerStyles,overflow:\"hidden\",...style},children:/*#__PURE__*/_jsx(\"div\",{style:centerTextStyle,children:message})});}const centerTextStyle={textAlign:\"center\",minWidth:140};// Returns a min-height if the component is using auto-height.\nfunction getMinHeight(style){const hasAutoHeight=!style.height;if(hasAutoHeight)return 200;}\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Embed\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"400\",\"framerIntrinsicWidth\":\"600\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerDisableUnlink\":\"\",\"framerSupportedLayoutWidth\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Embed.map", "// Generated by Framer (ca9141d)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getLoadingLazyAtYPosition,Image,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"cE9TQEv6Q\",\"n1DgEOsoc\"];const serializationHash=\"framer-TECVW\";const variantClassNames={cE9TQEv6Q:\"framer-v-1i2mbw0\",n1DgEOsoc:\"framer-v-1si8fon\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const radiusForCorner=(value,cornerIndex)=>{if(typeof value===\"number\"&&Number.isFinite(value))return Math.max(0,value)+\"px\";if(typeof value!==\"string\"||typeof cornerIndex!==\"number\")return undefined;const segments=value.split(\" \");return segments[cornerIndex]||segments[cornerIndex-2]||segments[0];};const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Back:\"n1DgEOsoc\",Front:\"cE9TQEv6Q\"};const getProps=({border,height,id,radius,width,...props})=>{var _ref,_ref1,_humanReadableVariantMap_props_variant,_ref2;return{...props,QfEXGkDYq:(_ref=radius!==null&&radius!==void 0?radius:props.QfEXGkDYq)!==null&&_ref!==void 0?_ref:\"32px\",TyLGxfzSo:(_ref1=border!==null&&border!==void 0?border:props.TyLGxfzSo)!==null&&_ref1!==void 0?_ref1:{borderColor:'var(--token-0e9cfdc9-3194-462b-828b-aa88a53bbc9d, rgba(255, 255, 255, 0.15)) /* {\"name\":\"White Opacity 15\"} */',borderStyle:\"solid\",borderWidth:1},variant:(_ref2=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref2!==void 0?_ref2:\"cE9TQEv6Q\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,QfEXGkDYq,TyLGxfzSo,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"cE9TQEv6Q\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();var _TyLGxfzSo_borderBottomWidth,_TyLGxfzSo_borderLeftWidth,_TyLGxfzSo_borderRightWidth,_TyLGxfzSo_borderTopWidth;return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1i2mbw0\",className,classNames),\"data-framer-name\":\"Front\",layoutDependency:layoutDependency,layoutId:\"cE9TQEv6Q\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{background:'linear-gradient(120deg, var(--token-99825b92-ec6e-43af-b81e-f15ae92016b8, rgba(255, 255, 255, 0.1)) /* {\"name\":\"White Opacity 10\"} */ 0%, var(--token-4f0c1b0c-2353-4a07-8c75-461a32bf5b86, rgba(255, 255, 255, 0.03)) /* {\"name\":\"White Opacity 3\"} */ 100%)',borderBottomLeftRadius:radiusForCorner(QfEXGkDYq,3),borderBottomRightRadius:radiusForCorner(QfEXGkDYq,2),borderTopLeftRadius:radiusForCorner(QfEXGkDYq,0),borderTopRightRadius:radiusForCorner(QfEXGkDYq,1),...style},...addPropertyOverrides({n1DgEOsoc:{\"data-framer-name\":\"Back\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-kub2s7\",\"data-border\":true,\"data-framer-name\":\"Crypto Card Content \",layoutDependency:layoutDependency,layoutId:\"iA3eU3Vn7\",style:{\"--border-bottom-width\":`${(_TyLGxfzSo_borderBottomWidth=TyLGxfzSo.borderBottomWidth)!==null&&_TyLGxfzSo_borderBottomWidth!==void 0?_TyLGxfzSo_borderBottomWidth:TyLGxfzSo.borderWidth}px`,\"--border-color\":TyLGxfzSo.borderColor,\"--border-left-width\":`${(_TyLGxfzSo_borderLeftWidth=TyLGxfzSo.borderLeftWidth)!==null&&_TyLGxfzSo_borderLeftWidth!==void 0?_TyLGxfzSo_borderLeftWidth:TyLGxfzSo.borderWidth}px`,\"--border-right-width\":`${(_TyLGxfzSo_borderRightWidth=TyLGxfzSo.borderRightWidth)!==null&&_TyLGxfzSo_borderRightWidth!==void 0?_TyLGxfzSo_borderRightWidth:TyLGxfzSo.borderWidth}px`,\"--border-style\":TyLGxfzSo.borderStyle,\"--border-top-width\":`${(_TyLGxfzSo_borderTopWidth=TyLGxfzSo.borderTopWidth)!==null&&_TyLGxfzSo_borderTopWidth!==void 0?_TyLGxfzSo_borderTopWidth:TyLGxfzSo.borderWidth}px`,backdropFilter:\"blur(50px)\",background:'linear-gradient(120deg, var(--token-99825b92-ec6e-43af-b81e-f15ae92016b8, rgba(255, 255, 255, 0.1)) /* {\"name\":\"White Opacity 10\"} */ 0%, var(--token-4f0c1b0c-2353-4a07-8c75-461a32bf5b86, rgba(255, 255, 255, 0.03)) /* {\"name\":\"White Opacity 3\"} */ 100%)',borderBottomLeftRadius:radiusForCorner(QfEXGkDYq,3),borderBottomRightRadius:radiusForCorner(QfEXGkDYq,2),borderTopLeftRadius:radiusForCorner(QfEXGkDYq,0),borderTopRightRadius:radiusForCorner(QfEXGkDYq,1),boxShadow:\"0px 64px 32px -24px var(--token-cf7c625b-901f-4240-8788-7bbf2e08b844, rgba(0, 0, 0, 0.15))\",WebkitBackdropFilter:\"blur(50px)\"},children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||419)-0-418)/2)+0),pixelHeight:463,pixelWidth:744,sizes:`max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"}, 1px)`,src:\"https://framerusercontent.com/images/TOF0JmWINpO496P5GKidFz92oc.png\",srcSet:\"https://framerusercontent.com/images/TOF0JmWINpO496P5GKidFz92oc.png?scale-down-to=512 512w,https://framerusercontent.com/images/TOF0JmWINpO496P5GKidFz92oc.png 744w\"},className:\"framer-owyln9\",\"data-framer-name\":\"Crypto Card Image\",layoutDependency:layoutDependency,layoutId:\"NliHSH1L2\",...addPropertyOverrides({n1DgEOsoc:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||419)-0-418)/2)+0),pixelHeight:463,pixelWidth:744,sizes:`max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"}, 1px)`,src:\"https://framerusercontent.com/images/gMiIefdJ2lrevELfulhHjRNHY.png\",srcSet:\"https://framerusercontent.com/images/gMiIefdJ2lrevELfulhHjRNHY.png?scale-down-to=512 512w,https://framerusercontent.com/images/gMiIefdJ2lrevELfulhHjRNHY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/gMiIefdJ2lrevELfulhHjRNHY.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/gMiIefdJ2lrevELfulhHjRNHY.png 2183w\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-a52pi8\",\"data-framer-name\":\"Card Glow\",layoutDependency:layoutDependency,layoutId:\"qY4_4nUdU\",style:{backgroundColor:\"var(--token-0cd45338-588e-4389-b974-b298929dc56e, rgba(255, 255, 255, 0.2))\",borderBottomLeftRadius:1e3,borderBottomRightRadius:1e3,borderTopLeftRadius:1e3,borderTopRightRadius:1e3,filter:\"blur(50px)\",WebkitFilter:\"blur(50px)\"}})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-TECVW.framer-1ktpxa0, .framer-TECVW .framer-1ktpxa0 { display: block; }\",\".framer-TECVW.framer-1i2mbw0 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 419px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 680px; will-change: var(--framer-will-change-override, transform); }\",\".framer-TECVW .framer-kub2s7 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-TECVW .framer-owyln9 { -webkit-user-select: none; aspect-ratio: 1.6258992805755397 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 419px); overflow: hidden; pointer-events: none; position: relative; user-select: none; width: 1px; }\",\".framer-TECVW .framer-a52pi8 { flex: none; height: 200px; left: 64px; overflow: hidden; position: absolute; right: 64px; top: -100px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-TECVW.framer-1i2mbw0, .framer-TECVW .framer-kub2s7 { gap: 0px; } .framer-TECVW.framer-1i2mbw0 > *, .framer-TECVW .framer-kub2s7 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-TECVW.framer-1i2mbw0 > :first-child, .framer-TECVW .framer-kub2s7 > :first-child { margin-left: 0px; } .framer-TECVW.framer-1i2mbw0 > :last-child, .framer-TECVW .framer-kub2s7 > :last-child { margin-right: 0px; } }\",\".framer-TECVW.framer-v-1si8fon.framer-1i2mbw0 { aspect-ratio: 1.6229116945107398 / 1; height: var(--framer-aspect-ratio-supported, 419px); }\",'.framer-TECVW[data-border=\"true\"]::after, .framer-TECVW [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 419\n * @framerIntrinsicWidth 680\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"n1DgEOsoc\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"QfEXGkDYq\":\"radius\",\"TyLGxfzSo\":\"border\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framerto9YfCyJu=withCSS(Component,css,\"framer-TECVW\");export default Framerto9YfCyJu;Framerto9YfCyJu.displayName=\"Crypto Card\";Framerto9YfCyJu.defaultProps={height:419,width:680};addPropertyControls(Framerto9YfCyJu,{variant:{options:[\"cE9TQEv6Q\",\"n1DgEOsoc\"],optionTitles:[\"Front\",\"Back\"],title:\"Variant\",type:ControlType.Enum},QfEXGkDYq:{defaultValue:\"32px\",title:\"Radius\",type:ControlType.BorderRadius},TyLGxfzSo:{defaultValue:{borderColor:'var(--token-0e9cfdc9-3194-462b-828b-aa88a53bbc9d, rgba(255, 255, 255, 0.15)) /* {\"name\":\"White Opacity 15\"} */',borderStyle:\"solid\",borderWidth:1},title:\"Border\",type:ControlType.Border}});addFonts(Framerto9YfCyJu,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerto9YfCyJu\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerVariables\":\"{\\\"QfEXGkDYq\\\":\\\"radius\\\",\\\"TyLGxfzSo\\\":\\\"border\\\"}\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"419\",\"framerIntrinsicWidth\":\"680\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"n1DgEOsoc\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./to9YfCyJu.map", "// Generated by Framer (04e0834)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import CryptoCard from\"https://framerusercontent.com/modules/rSC9E55qwh7xmbOEwzUh/6T6hfke0bDZLBBi8fxEG/to9YfCyJu.js\";const CryptoCardFonts=getFonts(CryptoCard);const enabledGestures={LKCDoa8a5:{hover:true}};const cycleOrder=[\"LKCDoa8a5\",\"ZPQkyCuPV\",\"MBgozjtJQ\",\"WXEUtu20P\",\"DWa4cQyse\"];const serializationHash=\"framer-LPb3w\";const variantClassNames={DWa4cQyse:\"framer-v-q8gyay\",LKCDoa8a5:\"framer-v-9wot7r\",MBgozjtJQ:\"framer-v-6r9xkb\",WXEUtu20P:\"framer-v-1y4yjr0\",ZPQkyCuPV:\"framer-v-1584pnz\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:.1,stiffness:300,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={\"Back (Mobile)\":\"DWa4cQyse\",\"Back (Tablet)\":\"MBgozjtJQ\",\"Front (Mobile)\":\"WXEUtu20P\",\"Front (Tablet)\":\"ZPQkyCuPV\",Front:\"LKCDoa8a5\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"LKCDoa8a5\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"LKCDoa8a5\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1e8kdy4=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"MBgozjtJQ\");});const onTap1c2p060=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"ZPQkyCuPV\");});const onTap1mmu9g7=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"DWa4cQyse\");});const onTapap6bk9=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"WXEUtu20P\");});const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-9wot7r\",className,classNames),\"data-framer-name\":\"Front\",layoutDependency:layoutDependency,layoutId:\"LKCDoa8a5\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({\"LKCDoa8a5-hover\":{\"data-framer-name\":undefined},DWa4cQyse:{\"data-framer-name\":\"Back (Mobile)\",\"data-highlight\":true,onTap:onTapap6bk9},MBgozjtJQ:{\"data-framer-name\":\"Back (Tablet)\",\"data-highlight\":true,onTap:onTap1c2p060},WXEUtu20P:{\"data-framer-name\":\"Front (Mobile)\",\"data-highlight\":true,onTap:onTap1mmu9g7},ZPQkyCuPV:{\"data-framer-name\":\"Front (Tablet)\",\"data-highlight\":true,onTap:onTap1e8kdy4}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{width:`max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"}, 1px)`,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-lnh50e-container\",\"data-framer-name\":\"Front Crypto Card\",layoutDependency:layoutDependency,layoutId:\"FzZXwVUMy-container\",name:\"Front Crypto Card\",style:{opacity:1,rotateY:0,transformPerspective:1200},variants:{\"LKCDoa8a5-hover\":{opacity:0,rotateY:180},DWa4cQyse:{opacity:0,rotateY:180},MBgozjtJQ:{opacity:0,rotateY:180}},children:/*#__PURE__*/_jsx(CryptoCard,{height:\"100%\",id:\"FzZXwVUMy\",layoutId:\"FzZXwVUMy\",name:\"Front Crypto Card\",QfEXGkDYq:\"32px\",style:{height:\"100%\",width:\"100%\"},TyLGxfzSo:{borderColor:'var(--token-0e9cfdc9-3194-462b-828b-aa88a53bbc9d, rgba(255, 255, 255, 0.15)) /* {\"name\":\"White Opacity 15\"} */',borderStyle:\"solid\",borderWidth:1},variant:\"cE9TQEv6Q\",width:\"100%\",...addPropertyOverrides({DWa4cQyse:{QfEXGkDYq:\"12px\",TyLGxfzSo:{borderColor:'var(--token-0e9cfdc9-3194-462b-828b-aa88a53bbc9d, rgba(255, 255, 255, 0.15)) /* {\"name\":\"White Opacity 15\"} */',borderStyle:\"solid\",borderWidth:.5}},WXEUtu20P:{QfEXGkDYq:\"12px\",TyLGxfzSo:{borderColor:'var(--token-0e9cfdc9-3194-462b-828b-aa88a53bbc9d, rgba(255, 255, 255, 0.15)) /* {\"name\":\"White Opacity 15\"} */',borderStyle:\"solid\",borderWidth:.5}}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1nntuhw-container\",\"data-framer-name\":\"Back Crypto Card\",layoutDependency:layoutDependency,layoutId:\"DXu685tZ1-container\",name:\"Back Crypto Card\",style:{opacity:0,rotateY:180,transformPerspective:1200},variants:{\"LKCDoa8a5-hover\":{opacity:1,rotateY:360},DWa4cQyse:{opacity:1,rotateY:360},MBgozjtJQ:{opacity:1,rotateY:360}},children:/*#__PURE__*/_jsx(CryptoCard,{height:\"100%\",id:\"DXu685tZ1\",layoutId:\"DXu685tZ1\",name:\"Back Crypto Card\",QfEXGkDYq:\"32px\",style:{height:\"100%\",width:\"100%\"},TyLGxfzSo:{borderColor:'var(--token-0e9cfdc9-3194-462b-828b-aa88a53bbc9d, rgba(255, 255, 255, 0.15)) /* {\"name\":\"White Opacity 15\"} */',borderStyle:\"solid\",borderWidth:1},variant:\"n1DgEOsoc\",width:\"100%\",...addPropertyOverrides({DWa4cQyse:{QfEXGkDYq:\"12px\",TyLGxfzSo:{borderColor:'var(--token-0e9cfdc9-3194-462b-828b-aa88a53bbc9d, rgba(255, 255, 255, 0.15)) /* {\"name\":\"White Opacity 15\"} */',borderStyle:\"solid\",borderWidth:.5}},WXEUtu20P:{QfEXGkDYq:\"12px\",TyLGxfzSo:{borderColor:'var(--token-0e9cfdc9-3194-462b-828b-aa88a53bbc9d, rgba(255, 255, 255, 0.15)) /* {\"name\":\"White Opacity 15\"} */',borderStyle:\"solid\",borderWidth:.5}}},baseVariant,gestureVariant)})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-LPb3w.framer-1d1in9z, .framer-LPb3w .framer-1d1in9z { display: block; }\",\".framer-LPb3w.framer-9wot7r { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 680px; }\",\".framer-LPb3w .framer-lnh50e-container { align-self: stretch; backface-visibility: hidden; flex: 1 0 0px; height: auto; position: relative; width: 1px; z-index: 2; }\",\".framer-LPb3w .framer-1nntuhw-container { backface-visibility: hidden; flex: none; height: 100%; left: 0px; position: absolute; top: 0px; width: 100%; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-LPb3w.framer-9wot7r { gap: 0px; } .framer-LPb3w.framer-9wot7r > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-LPb3w.framer-9wot7r > :first-child { margin-left: 0px; } .framer-LPb3w.framer-9wot7r > :last-child { margin-right: 0px; } }\",\".framer-LPb3w.framer-v-1584pnz.framer-9wot7r, .framer-LPb3w.framer-v-6r9xkb.framer-9wot7r { width: 600px; }\",\".framer-LPb3w.framer-v-1y4yjr0.framer-9wot7r, .framer-LPb3w.framer-v-q8gyay.framer-9wot7r { width: 286px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 418\n * @framerIntrinsicWidth 680\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"ZPQkyCuPV\":{\"layout\":[\"fixed\",\"auto\"]},\"MBgozjtJQ\":{\"layout\":[\"fixed\",\"auto\"]},\"WXEUtu20P\":{\"layout\":[\"fixed\",\"auto\"]},\"DWa4cQyse\":{\"layout\":[\"fixed\",\"auto\"]},\"j77nmLNkS\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerA2D5Zy8_W=withCSS(Component,css,\"framer-LPb3w\");export default FramerA2D5Zy8_W;FramerA2D5Zy8_W.displayName=\"Interactive Crypto Card\";FramerA2D5Zy8_W.defaultProps={height:418,width:680};addPropertyControls(FramerA2D5Zy8_W,{variant:{options:[\"LKCDoa8a5\",\"ZPQkyCuPV\",\"MBgozjtJQ\",\"WXEUtu20P\",\"DWa4cQyse\"],optionTitles:[\"Front\",\"Front (Tablet)\",\"Back (Tablet)\",\"Front (Mobile)\",\"Back (Mobile)\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerA2D5Zy8_W,[{explicitInter:true,fonts:[]},...CryptoCardFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerA2D5Zy8_W\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"680\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ZPQkyCuPV\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"MBgozjtJQ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"WXEUtu20P\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"DWa4cQyse\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"j77nmLNkS\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"418\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (b6cf623)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getLoadingLazyAtYPosition,Image,Link,PropertyOverrides,ResolveLinks,RichText,SVG,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useRouteElementId,useRouter,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/XVUmpmPn1EPL0dzocT35/Ticker.js\";import Embed from\"https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/Xr8CO3Ul8Gb7lVfgMKTh/Embed.js\";import InteractiveCryptoCard from\"https://framerusercontent.com/modules/pEsKkQQBvC3oXbtWEahV/MjMS0IgWJo3QSsKbtHa8/A2D5Zy8_W.js\";import Mailchimp from\"https://framerusercontent.com/modules/tEJqoun4MtBed1OjNwKy/oIG6qvkLwFygGXycIYZs/Input_Mailchimp.js\";import Navigation from\"#framer/local/canvasComponent/hXK9kCrre/hXK9kCrre.js\";import PrimaryButton from\"#framer/local/canvasComponent/Ju7P2sQZu/Ju7P2sQZu.js\";import Footer from\"#framer/local/canvasComponent/qAmSjID4_/qAmSjID4_.js\";import metadataProvider from\"#framer/local/webPageMetadata/uV6Uzs6GE/uV6Uzs6GE.js\";const NavigationFonts=getFonts(Navigation);const ContainerWithFX=withFX(Container);const PrimaryButtonFonts=getFonts(PrimaryButton);const MotionDivWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.div);const EmbedFonts=getFonts(Embed);const TickerFonts=getFonts(Ticker);const InteractiveCryptoCardFonts=getFonts(InteractiveCryptoCard);const MailchimpFonts=getFonts(Mailchimp);const FooterFonts=getFonts(Footer);const breakpoints={BWXLAHg34:\"(min-width: 1215px) and (max-width: 1439px)\",gDNDy7ppB:\"(min-width: 927px) and (max-width: 1214px)\",gvy_GPf11:\"(min-width: 810px) and (max-width: 926px)\",kTX5ATiZU:\"(max-width: 809px)\",NjD80Mfyj:\"(min-width: 1440px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-D3lMi\";const variantClassNames={BWXLAHg34:\"framer-v-1i7eoz3\",gDNDy7ppB:\"framer-v-u26l5y\",gvy_GPf11:\"framer-v-1ui6of8\",kTX5ATiZU:\"framer-v-1caoe52\",NjD80Mfyj:\"framer-v-zo3ycf\"};const transition1={damping:35,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:-100};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const transition2={damping:61,delay:.3,mass:1,stiffness:400,type:\"spring\"};const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const animation2={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:40};const animation3={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-40};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"NjD80Mfyj\",Phone:\"kTX5ATiZU\",Tablet:\"gDNDy7ppB\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"NjD80Mfyj\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const router=useRouter();const elementId=useRouteElementId(\"fwr4yg9Td\");const ref2=React.useRef(null);const defaultLayoutId=React.useId();useCustomCursors({});const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"NjD80Mfyj\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-8139056f-6eb1-43e3-a0ba-39ab18aa1fb5, rgb(25, 23, 30)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-zo3ycf\",className),ref:ref??ref1,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:64,width:\"100vw\",y:0,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:false,__framer__scrollDirection:{direction:\"down\",target:animation},__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-qprkgg-container\",layoutScroll:true,nodeId:\"c4u0evMUc\",rendersWithMotion:true,scopeId:\"uV6Uzs6GE\",style:{transformPerspective:1200},transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BWXLAHg34:{variant:\"zVeiXhQhC\"},gDNDy7ppB:{variant:\"zVeiXhQhC\"},gvy_GPf11:{variant:\"zVeiXhQhC\"},kTX5ATiZU:{variant:\"j8ox2Udv9\"}},children:/*#__PURE__*/_jsx(Navigation,{height:\"100%\",id:\"c4u0evMUc\",layoutId:\"c4u0evMUc\",style:{width:\"100%\"},variant:\"cClTh6i3Y\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kTX5ATiZU:{background:{alt:\"header background image\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0),pixelHeight:287,pixelWidth:512,positionX:\"64.3%\",positionY:\"44.7%\",src:\"https://framerusercontent.com/images/IGw8GFL4kTZ0NRa1bZnRAE9pGr0.png\"}}},children:/*#__PURE__*/_jsx(Image,{as:\"section\",background:{alt:\"header background image\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0),pixelHeight:287,pixelWidth:512,src:\"https://framerusercontent.com/images/IGw8GFL4kTZ0NRa1bZnRAE9pGr0.png\"},className:\"framer-8kfg20\",\"data-framer-name\":\"Hero section\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-mlcn8m\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation1,className:\"framer-11jgpal\",\"data-framer-appear-id\":\"11jgpal\",\"data-framer-name\":\"Top content\",initial:animation2,optimized:true,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1507mfv\",\"data-framer-name\":\"Main headline\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BWXLAHg34:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO0FCQyBXYWx0ZXIgTmV1ZSBFeHRyYWJvbGQ=\",\"--framer-font-family\":'\"ABC Walter Neue Extrabold\", \"ABC Walter Neue Extrabold Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"115%\",\"--framer-text-color\":\"var(--token-c14065e7-5a4d-4109-85cf-bca8f791260a, rgb(255, 255, 255))\",\"--framer-text-transform\":\"uppercase\"},children:\"ALL ROADS LEAD TO BLACKFORT\"})})},gDNDy7ppB:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO0FCQyBXYWx0ZXIgTmV1ZSBFeHRyYWJvbGQ=\",\"--framer-font-family\":'\"ABC Walter Neue Extrabold\", \"ABC Walter Neue Extrabold Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"115%\",\"--framer-text-color\":\"var(--token-c14065e7-5a4d-4109-85cf-bca8f791260a, rgb(255, 255, 255))\",\"--framer-text-transform\":\"uppercase\"},children:\"ALL ROADS LEAD TO BLACKFORT\"})})},gvy_GPf11:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO0FCQyBXYWx0ZXIgTmV1ZSBFeHRyYWJvbGQ=\",\"--framer-font-family\":'\"ABC Walter Neue Extrabold\", \"ABC Walter Neue Extrabold Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"115%\",\"--framer-text-color\":\"var(--token-c14065e7-5a4d-4109-85cf-bca8f791260a, rgb(255, 255, 255))\",\"--framer-text-transform\":\"uppercase\"},children:\"ALL ROADS LEAD TO BLACKFORT\"})})},kTX5ATiZU:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO0FCQyBXYWx0ZXIgTmV1ZSBFeHRyYWJvbGQ=\",\"--framer-font-family\":'\"ABC Walter Neue Extrabold\", \"ABC Walter Neue Extrabold Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"115%\",\"--framer-text-color\":\"var(--token-c14065e7-5a4d-4109-85cf-bca8f791260a, rgb(255, 255, 255))\",\"--framer-text-transform\":\"uppercase\"},children:[\"ALL ROADS LEAD \",/*#__PURE__*/_jsx(\"br\",{}),\"TO BLACKFORT\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO0FCQyBXYWx0ZXIgTmV1ZSBFeHRyYWJvbGQ=\",\"--framer-font-family\":'\"ABC Walter Neue Extrabold\", \"ABC Walter Neue Extrabold Placeholder\", sans-serif',\"--framer-font-size\":\"64px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"115%\",\"--framer-text-color\":\"var(--token-c14065e7-5a4d-4109-85cf-bca8f791260a, rgb(255, 255, 255))\",\"--framer-text-transform\":\"uppercase\"},children:\"ALL ROADS LEAD TO BLACKFORT\"})}),className:\"framer-1kdings\",fonts:[\"CUSTOM;ABC Walter Neue Extrabold\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(Link,{href:{hash:\":fwr4yg9Td\",webPageId:\"uV6Uzs6GE\"},motionChild:true,nodeId:\"vScPC3KBG\",openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1w2ogb9 framer-j199ke\",\"data-framer-name\":\"Buttons\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":fwr4yg9Td\",webPageId:\"uV6Uzs6GE\"},implicitPathVariables:undefined},{href:{hash:\":fwr4yg9Td\",webPageId:\"uV6Uzs6GE\"},implicitPathVariables:undefined},{href:{hash:\":fwr4yg9Td\",webPageId:\"uV6Uzs6GE\"},implicitPathVariables:undefined},{href:{hash:\":fwr4yg9Td\",webPageId:\"uV6Uzs6GE\"},implicitPathVariables:undefined},{href:{hash:\":fwr4yg9Td\",webPageId:\"uV6Uzs6GE\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BWXLAHg34:{y:(componentViewport?.y||0)+0+0+222+0+0+0+0+87.19999999999999+0},gDNDy7ppB:{y:(componentViewport?.y||0)+0+0+222+0+0+0+0+87.19999999999999+0},gvy_GPf11:{y:(componentViewport?.y||0)+0+0+222+0+0+0+0+87.19999999999999+0},kTX5ATiZU:{y:(componentViewport?.y||0)+0+0+222+0+0+-57.69999999999999+0+73.4+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:41,y:(componentViewport?.y||0)+0+0+222+0+0+-4.300000000000011+0+105.6+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-10e25ec-container\",nodeId:\"pI4WIekYw\",scopeId:\"uV6Uzs6GE\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BWXLAHg34:{fzPQj5vxM:resolvedLinks[3]},gDNDy7ppB:{fzPQj5vxM:resolvedLinks[4]},gvy_GPf11:{fzPQj5vxM:resolvedLinks[1]},kTX5ATiZU:{fzPQj5vxM:resolvedLinks[2]}},children:/*#__PURE__*/_jsx(PrimaryButton,{BlJNMfRrN:true,fzPQj5vxM:resolvedLinks[0],height:\"100%\",icFgveKzp:\"arrow-right\",id:\"pI4WIekYw\",layoutId:\"pI4WIekYw\",qWQ35JEj6:\"Learn more\",variant:\"A0qnGCFfC\",width:\"100%\"})})})})})})})})]}),/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation1,className:\"framer-y435ku\",\"data-framer-appear-id\":\"y435ku\",\"data-framer-name\":\"Bottom content\",initial:animation3,optimized:true,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kTX5ATiZU:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0FCQyBXYWx0ZXIgTmV1ZSBFeHRyYWJvbGQ=\",\"--framer-font-family\":'\"ABC Walter Neue Extrabold\", \"ABC Walter Neue Extrabold Placeholder\", sans-serif',\"--framer-font-size\":\"25px\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--token-c14065e7-5a4d-4109-85cf-bca8f791260a, rgb(255, 255, 255))\",\"--framer-text-transform\":\"uppercase\"},children:[\"BLOCKCHAIN, STORAGE, \",/*#__PURE__*/_jsx(\"br\",{}),\"ECOSYSTEM.\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0FCQyBXYWx0ZXIgTmV1ZSBFeHRyYWJvbGQ=\",\"--framer-font-family\":'\"ABC Walter Neue Extrabold\", \"ABC Walter Neue Extrabold Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-line-height\":\"1.1em\",\"--framer-text-color\":\"var(--token-c14065e7-5a4d-4109-85cf-bca8f791260a, rgb(255, 255, 255))\",\"--framer-text-transform\":\"uppercase\"},children:[\"BLOCKCHAIN, STORAGE, \",/*#__PURE__*/_jsx(\"br\",{}),\"ECOSYSTEM.\"]})}),className:\"framer-514zj7\",fonts:[\"CUSTOM;ABC Walter Neue Extrabold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(Link,{href:\"https://skynet.certik.com/projects/blackfort-exchange-network?auditId=Blackfort%20Exchange%20Network%20-%20Audit%202#code-security\",motionChild:true,nodeId:\"GXLaXdaCQ\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-hjyr53 framer-j199ke\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BWXLAHg34:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+222+0+0+166.2+24+167.33333333333331+0),pixelHeight:32,pixelWidth:105,positionX:\"left\",positionY:\"center\",src:\"https://framerusercontent.com/images/HhpOtCqeqhAET48aXhWRNKU7m2s.svg\"}},gDNDy7ppB:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+222+0+0+166.2+24+167.33333333333331+0),pixelHeight:32,pixelWidth:105,positionX:\"left\",positionY:\"center\",src:\"https://framerusercontent.com/images/HhpOtCqeqhAET48aXhWRNKU7m2s.svg\"}},gvy_GPf11:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+222+0+0+166.2+24+233.33333333333334+0),pixelHeight:32,pixelWidth:105,positionX:\"left\",positionY:\"center\",src:\"https://framerusercontent.com/images/HhpOtCqeqhAET48aXhWRNKU7m2s.svg\"}},kTX5ATiZU:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+222+0+0+94.70000000000002+24+190+0+0),pixelHeight:32,pixelWidth:105,positionX:\"left\",positionY:\"center\",src:\"https://framerusercontent.com/images/HhpOtCqeqhAET48aXhWRNKU7m2s.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+222+0+0+180.29999999999998+36.5+0),pixelHeight:32,pixelWidth:105,positionX:\"left\",positionY:\"center\",src:\"https://framerusercontent.com/images/HhpOtCqeqhAET48aXhWRNKU7m2s.svg\"},className:\"framer-p40jzr\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BWXLAHg34:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+222+0+0+166.2+24+167.33333333333331+.2092198581560254),pixelHeight:32,pixelWidth:110,positionX:\"left\",positionY:\"center\",src:\"https://framerusercontent.com/images/JtMYesr3sWCs8ru7AncWRRk7Jk0.svg\"}},gDNDy7ppB:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+222+0+0+166.2+24+167.33333333333331+.2092198581560254),pixelHeight:32,pixelWidth:110,positionX:\"left\",positionY:\"center\",src:\"https://framerusercontent.com/images/JtMYesr3sWCs8ru7AncWRRk7Jk0.svg\"}},gvy_GPf11:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+222+0+0+166.2+24+233.33333333333334+.2092198581560254),pixelHeight:32,pixelWidth:110,positionX:\"left\",positionY:\"center\",src:\"https://framerusercontent.com/images/JtMYesr3sWCs8ru7AncWRRk7Jk0.svg\"}},kTX5ATiZU:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+222+0+0+94.70000000000002+24+190+0+0),pixelHeight:32,pixelWidth:110,positionX:\"left\",positionY:\"center\",src:\"https://framerusercontent.com/images/JtMYesr3sWCs8ru7AncWRRk7Jk0.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+222+0+0+180.29999999999998+36.5+1.5),pixelHeight:32,pixelWidth:110,positionX:\"left\",positionY:\"center\",src:\"https://framerusercontent.com/images/JtMYesr3sWCs8ru7AncWRRk7Jk0.svg\"},className:\"framer-47p86e\"})})]})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0FCQyBTaW1vbiBNb25vIFJlZ3VsYXI=\",\"--framer-font-family\":'\"ABC Simon Mono Regular\", \"ABC Simon Mono Regular Placeholder\", monospace',\"--framer-font-size\":\"12px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"var(--token-c14065e7-5a4d-4109-85cf-bca8f791260a, rgb(255, 255, 255))\"},children:\"At BlackFort, we specialize in creating innovative blockchain\u2013based products and services. Our offerings include client\u2013side wallet applications, Layer 1 blockchain technology, efficient payment solutions, and secure smart contracts. We are committed to providing the best possible solutions for our customers.\"})}),className:\"framer-s16jqb\",fonts:[\"CUSTOM;ABC Simon Mono Regular\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation1,className:\"framer-19n59oj\",\"data-framer-appear-id\":\"19n59oj\",\"data-framer-name\":\"Bottom content\",initial:animation3,optimized:true,children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-d42bz3-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"uCxCNkYYJ\",scopeId:\"uV6Uzs6GE\",children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:'<script src=\"https://widgets.coingecko.com/gecko-coin-price-marquee-widget.js\"></script>\\n<gecko-coin-price-marquee-widget locale=\"en\" dark-mode=\"true\" transparent-background=\"true\" outlined=\"true\" coin-ids=\"bxn,bitcoin,ethereum,solana,ripple\" initial-currency=\"usd\"></gecko-coin-price-marquee-widget>',id:\"uCxCNkYYJ\",layoutId:\"uCxCNkYYJ\",style:{width:\"100%\"},type:\"html\",url:\"\",width:\"100%\"})})})})]})})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-12ehtgd\",\"data-framer-name\":\"Ticker section\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1hmt6n2\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-9d129x-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"q7xmjshWD\",scopeId:\"uV6Uzs6GE\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:68,height:\"100%\",hoverFactor:.5,id:\"q7xmjshWD\",layoutId:\"q7xmjshWD\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1kstmd7\",\"data-framer-name\":\"Our-partner-ticker-images\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:274,intrinsicWidth:1188,pixelHeight:274,pixelWidth:1188,sizes:\"132px\",src:\"https://framerusercontent.com/images/aRwPUmuhMM9vwrDSvw1sdDP4Yeg.png\",srcSet:\"https://framerusercontent.com/images/aRwPUmuhMM9vwrDSvw1sdDP4Yeg.png?scale-down-to=512 512w,https://framerusercontent.com/images/aRwPUmuhMM9vwrDSvw1sdDP4Yeg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/aRwPUmuhMM9vwrDSvw1sdDP4Yeg.png 1188w\"},className:\"framer-1xch2ox\",\"data-framer-name\":\"BLK_LOGO_WORDMARK_II_BLOCKCHAIN_NEG\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:271,intrinsicWidth:1196,pixelHeight:271,pixelWidth:1196,sizes:\"132.3985px\",src:\"https://framerusercontent.com/images/0DdxdDe5kffQqv5dkweU4uPHT8.png\",srcSet:\"https://framerusercontent.com/images/0DdxdDe5kffQqv5dkweU4uPHT8.png?scale-down-to=512 512w,https://framerusercontent.com/images/0DdxdDe5kffQqv5dkweU4uPHT8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/0DdxdDe5kffQqv5dkweU4uPHT8.png 1196w\"},className:\"framer-1dd3a3j\",\"data-framer-name\":\"BLK_LOGO_WORDMARK_II_WALLET_NEG\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:274,intrinsicWidth:1187,pixelHeight:274,pixelWidth:1187,sizes:\"132px\",src:\"https://framerusercontent.com/images/vgU2zAbjwTi0yz0HAAoNP0g8vY.png\",srcSet:\"https://framerusercontent.com/images/vgU2zAbjwTi0yz0HAAoNP0g8vY.png?scale-down-to=512 512w,https://framerusercontent.com/images/vgU2zAbjwTi0yz0HAAoNP0g8vY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/vgU2zAbjwTi0yz0HAAoNP0g8vY.png 1187w\"},className:\"framer-1j1a3mx\",\"data-framer-name\":\"BLK_LOGO_WORDMARK_II_PLATFORMS_NEG\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:274,intrinsicWidth:1188,pixelHeight:274,pixelWidth:1188,sizes:\"132px\",src:\"https://framerusercontent.com/images/zvqdV8ave7EykaCB3KEfjm4yKw.png\",srcSet:\"https://framerusercontent.com/images/zvqdV8ave7EykaCB3KEfjm4yKw.png?scale-down-to=512 512w,https://framerusercontent.com/images/zvqdV8ave7EykaCB3KEfjm4yKw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/zvqdV8ave7EykaCB3KEfjm4yKw.png 1188w\"},className:\"framer-1mb7mj6\",\"data-framer-name\":\"BLK_LOGO_WORDMARK_II_REALESTATE_NEG\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:271,intrinsicWidth:1188,pixelHeight:271,pixelWidth:1188,sizes:\"132px\",src:\"https://framerusercontent.com/images/GNwQuholW7M2AIDK0aIQiPMuOkg.png\",srcSet:\"https://framerusercontent.com/images/GNwQuholW7M2AIDK0aIQiPMuOkg.png?scale-down-to=512 512w,https://framerusercontent.com/images/GNwQuholW7M2AIDK0aIQiPMuOkg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/GNwQuholW7M2AIDK0aIQiPMuOkg.png 1188w\"},className:\"framer-133c66a\",\"data-framer-name\":\"BLK_LOGO_WORDMARK_II_PAY_NEG\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:274,intrinsicWidth:1188,pixelHeight:274,pixelWidth:1188,sizes:\"132px\",src:\"https://framerusercontent.com/images/lLbHqs4XDdk2yRwVM3zeaGxK7gs.png\",srcSet:\"https://framerusercontent.com/images/lLbHqs4XDdk2yRwVM3zeaGxK7gs.png?scale-down-to=512 512w,https://framerusercontent.com/images/lLbHqs4XDdk2yRwVM3zeaGxK7gs.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/lLbHqs4XDdk2yRwVM3zeaGxK7gs.png 1188w\"},className:\"framer-ida5pp\",\"data-framer-name\":\"BLK_LOGO_WORDMARK_II_MEDIALABS_NEG\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:270,intrinsicWidth:1187,pixelHeight:270,pixelWidth:1187,sizes:\"132px\",src:\"https://framerusercontent.com/images/E4dOni3zuTuZVbmPhNyRnknWCI.png\",srcSet:\"https://framerusercontent.com/images/E4dOni3zuTuZVbmPhNyRnknWCI.png?scale-down-to=512 512w,https://framerusercontent.com/images/E4dOni3zuTuZVbmPhNyRnknWCI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/E4dOni3zuTuZVbmPhNyRnknWCI.png 1187w\"},className:\"framer-kkc5zd\",\"data-framer-name\":\"BLK_LOGO_WORDMARK_II_BXN_NEG\"})]})],speed:50,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-1lb8kzr\",\"data-framer-name\":\"Metrics section\",id:elementId,ref:ref2,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-c4smxe\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-c6de4z\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kTX5ATiZU:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0FCQyBTaW1vbiBNb25vIFJlZ3VsYXI=\",\"--framer-font-family\":'\"ABC Simon Mono Regular\", \"ABC Simon Mono Regular Placeholder\", monospace',\"--framer-font-size\":\"12px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"var(--token-c14065e7-5a4d-4109-85cf-bca8f791260a, rgb(255, 255, 255))\"},children:\"BlackFort is a comprehensive blockchain ecosystem that offers a range of services including a secure blockchain platform, digital wallet, payment solutions, asset tokenization platforms, real estate tokenization, and a Web3 media agency. Our mission is to guide you into the future of blockchain, digital payments, and decentralized solutions.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0FCQyBTaW1vbiBNb25vIFJlZ3VsYXI=\",\"--framer-font-family\":'\"ABC Simon Mono Regular\", \"ABC Simon Mono Regular Placeholder\", monospace',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"var(--token-c14065e7-5a4d-4109-85cf-bca8f791260a, rgb(255, 255, 255))\"},children:\"BlackFort is a comprehensive blockchain ecosystem that offers a range of services including a secure blockchain platform, digital wallet, payment solutions, asset tokenization platforms, real estate tokenization, and a Web3 media agency. Our mission is to guide you into the future of blockchain, digital payments, and decentralized solutions.\"})}),className:\"framer-rx9jil\",fonts:[\"CUSTOM;ABC Simon Mono Regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-h02c03\",\"data-framer-name\":\"About\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1546vs7\",\"data-framer-name\":\"Left content\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BWXLAHg34:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:271,intrinsicWidth:1196,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1298.2+56+0+0+0+0+204+43.5+0+0),pixelHeight:274,pixelWidth:1188,sizes:\"327px\",src:\"https://framerusercontent.com/images/aRwPUmuhMM9vwrDSvw1sdDP4Yeg.png\",srcSet:\"https://framerusercontent.com/images/aRwPUmuhMM9vwrDSvw1sdDP4Yeg.png?scale-down-to=512 512w,https://framerusercontent.com/images/aRwPUmuhMM9vwrDSvw1sdDP4Yeg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/aRwPUmuhMM9vwrDSvw1sdDP4Yeg.png 1188w\"}},gDNDy7ppB:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:271,intrinsicWidth:1196,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1298.2+56+0+0+0+0+204+43.5+0+0),pixelHeight:274,pixelWidth:1188,sizes:\"327px\",src:\"https://framerusercontent.com/images/aRwPUmuhMM9vwrDSvw1sdDP4Yeg.png\",srcSet:\"https://framerusercontent.com/images/aRwPUmuhMM9vwrDSvw1sdDP4Yeg.png?scale-down-to=512 512w,https://framerusercontent.com/images/aRwPUmuhMM9vwrDSvw1sdDP4Yeg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/aRwPUmuhMM9vwrDSvw1sdDP4Yeg.png 1188w\"}},gvy_GPf11:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:271,intrinsicWidth:1196,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1397.2+56+0+0+0+0+204+43.5+0+0),pixelHeight:274,pixelWidth:1188,sizes:\"327px\",src:\"https://framerusercontent.com/images/aRwPUmuhMM9vwrDSvw1sdDP4Yeg.png\",srcSet:\"https://framerusercontent.com/images/aRwPUmuhMM9vwrDSvw1sdDP4Yeg.png?scale-down-to=512 512w,https://framerusercontent.com/images/aRwPUmuhMM9vwrDSvw1sdDP4Yeg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/aRwPUmuhMM9vwrDSvw1sdDP4Yeg.png 1188w\"}},kTX5ATiZU:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:271,intrinsicWidth:1196,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1199+56+0+0+0+0+152+0+311+0+0),pixelHeight:274,pixelWidth:1188,sizes:\"299px\",src:\"https://framerusercontent.com/images/aRwPUmuhMM9vwrDSvw1sdDP4Yeg.png\",srcSet:\"https://framerusercontent.com/images/aRwPUmuhMM9vwrDSvw1sdDP4Yeg.png?scale-down-to=512 512w,https://framerusercontent.com/images/aRwPUmuhMM9vwrDSvw1sdDP4Yeg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/aRwPUmuhMM9vwrDSvw1sdDP4Yeg.png 1188w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:271,intrinsicWidth:1196,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1176+56+0+0+0+0+204+115+0+0),pixelHeight:274,pixelWidth:1188,sizes:\"553px\",src:\"https://framerusercontent.com/images/aRwPUmuhMM9vwrDSvw1sdDP4Yeg.png\",srcSet:\"https://framerusercontent.com/images/aRwPUmuhMM9vwrDSvw1sdDP4Yeg.png?scale-down-to=512 512w,https://framerusercontent.com/images/aRwPUmuhMM9vwrDSvw1sdDP4Yeg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/aRwPUmuhMM9vwrDSvw1sdDP4Yeg.png 1188w\"},className:\"framer-pp0gn8\",\"data-framer-name\":\"BLK_LOGO_WORDMARK_II_WALLET_NEG\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO0FCQyBTaW1vbiBNb25vIFJlZ3VsYXI=\",\"--framer-font-family\":'\"ABC Simon Mono Regular\", \"ABC Simon Mono Regular Placeholder\", monospace',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"115%\",\"--framer-text-color\":\"var(--token-c14065e7-5a4d-4109-85cf-bca8f791260a, rgb(255, 255, 255))\"},children:\"BlackFort Blockchain is not just another blockchain platform; it is designed to meet the essential demands of modern blockchain technology while introducing groundbreaking innovations.\"})}),className:\"framer-1etu4oy\",fonts:[\"CUSTOM;ABC Simon Mono Regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"UKuWL7uwR\"},implicitPathVariables:undefined},{href:{webPageId:\"UKuWL7uwR\"},implicitPathVariables:undefined},{href:{webPageId:\"UKuWL7uwR\"},implicitPathVariables:undefined},{href:{webPageId:\"UKuWL7uwR\"},implicitPathVariables:undefined},{href:{webPageId:\"UKuWL7uwR\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BWXLAHg34:{y:(componentViewport?.y||0)+0+1298.2+56+0+0+0+0+204+43.5+0+167},gDNDy7ppB:{y:(componentViewport?.y||0)+0+1298.2+56+0+0+0+0+204+43.5+0+167},gvy_GPf11:{y:(componentViewport?.y||0)+0+1397.2+56+0+0+0+0+204+43.5+0+167},kTX5ATiZU:{y:(componentViewport?.y||0)+0+1199+56+0+0+0+0+152+0+311+0+161}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:41,y:(componentViewport?.y||0)+0+1176+56+0+0+0+0+204+115+0+219,children:/*#__PURE__*/_jsx(Container,{className:\"framer-6v2oc6-container\",nodeId:\"MRKgea6XN\",scopeId:\"uV6Uzs6GE\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BWXLAHg34:{fzPQj5vxM:resolvedLinks1[3]},gDNDy7ppB:{fzPQj5vxM:resolvedLinks1[4]},gvy_GPf11:{fzPQj5vxM:resolvedLinks1[1]},kTX5ATiZU:{fzPQj5vxM:resolvedLinks1[2]}},children:/*#__PURE__*/_jsx(PrimaryButton,{BlJNMfRrN:true,fzPQj5vxM:resolvedLinks1[0],height:\"100%\",icFgveKzp:\"arrow-right\",id:\"MRKgea6XN\",layoutId:\"MRKgea6XN\",qWQ35JEj6:\"Explore The Blockchain\",variant:\"A0qnGCFfC\",width:\"100%\"})})})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1is294o\",\"data-framer-name\":\"Right content\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BWXLAHg34:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1298.2+56+0+0+0+0+204+0+0+0),pixelHeight:5e3,pixelWidth:5e3,positionX:\"center\",positionY:\"center\",sizes:\"379px\",src:\"https://framerusercontent.com/images/5H3k8KcAAe1lEy4vWF8wLfc6f3E.png\",srcSet:\"https://framerusercontent.com/images/5H3k8KcAAe1lEy4vWF8wLfc6f3E.png?scale-down-to=512 512w,https://framerusercontent.com/images/5H3k8KcAAe1lEy4vWF8wLfc6f3E.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/5H3k8KcAAe1lEy4vWF8wLfc6f3E.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/5H3k8KcAAe1lEy4vWF8wLfc6f3E.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/5H3k8KcAAe1lEy4vWF8wLfc6f3E.png 5000w\"}},gDNDy7ppB:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1298.2+56+0+0+0+0+204+0+0+0),pixelHeight:5e3,pixelWidth:5e3,positionX:\"center\",positionY:\"center\",sizes:\"379px\",src:\"https://framerusercontent.com/images/5H3k8KcAAe1lEy4vWF8wLfc6f3E.png\",srcSet:\"https://framerusercontent.com/images/5H3k8KcAAe1lEy4vWF8wLfc6f3E.png?scale-down-to=512 512w,https://framerusercontent.com/images/5H3k8KcAAe1lEy4vWF8wLfc6f3E.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/5H3k8KcAAe1lEy4vWF8wLfc6f3E.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/5H3k8KcAAe1lEy4vWF8wLfc6f3E.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/5H3k8KcAAe1lEy4vWF8wLfc6f3E.png 5000w\"}},gvy_GPf11:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1397.2+56+0+0+0+0+204+0+0+0),pixelHeight:5e3,pixelWidth:5e3,positionX:\"center\",positionY:\"center\",sizes:\"379px\",src:\"https://framerusercontent.com/images/5H3k8KcAAe1lEy4vWF8wLfc6f3E.png\",srcSet:\"https://framerusercontent.com/images/5H3k8KcAAe1lEy4vWF8wLfc6f3E.png?scale-down-to=512 512w,https://framerusercontent.com/images/5H3k8KcAAe1lEy4vWF8wLfc6f3E.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/5H3k8KcAAe1lEy4vWF8wLfc6f3E.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/5H3k8KcAAe1lEy4vWF8wLfc6f3E.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/5H3k8KcAAe1lEy4vWF8wLfc6f3E.png 5000w\"}},kTX5ATiZU:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1199+56+0+0+0+0+152+0+0+0+0),pixelHeight:5e3,pixelWidth:5e3,positionX:\"center\",positionY:\"center\",sizes:\"318px\",src:\"https://framerusercontent.com/images/5H3k8KcAAe1lEy4vWF8wLfc6f3E.png\",srcSet:\"https://framerusercontent.com/images/5H3k8KcAAe1lEy4vWF8wLfc6f3E.png?scale-down-to=512 512w,https://framerusercontent.com/images/5H3k8KcAAe1lEy4vWF8wLfc6f3E.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/5H3k8KcAAe1lEy4vWF8wLfc6f3E.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/5H3k8KcAAe1lEy4vWF8wLfc6f3E.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/5H3k8KcAAe1lEy4vWF8wLfc6f3E.png 5000w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1176+56+0+0+0+0+204+0+0+0),pixelHeight:5e3,pixelWidth:5e3,positionX:\"center\",positionY:\"center\",sizes:\"593px\",src:\"https://framerusercontent.com/images/5H3k8KcAAe1lEy4vWF8wLfc6f3E.png\",srcSet:\"https://framerusercontent.com/images/5H3k8KcAAe1lEy4vWF8wLfc6f3E.png?scale-down-to=512 512w,https://framerusercontent.com/images/5H3k8KcAAe1lEy4vWF8wLfc6f3E.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/5H3k8KcAAe1lEy4vWF8wLfc6f3E.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/5H3k8KcAAe1lEy4vWF8wLfc6f3E.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/5H3k8KcAAe1lEy4vWF8wLfc6f3E.png 5000w\"},className:\"framer-12ez48y\"})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-10p3drg\",\"data-framer-name\":\"About\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-es40y3\",\"data-framer-name\":\"Right content\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BWXLAHg34:{height:191,width:\"310px\",y:(componentViewport?.y||0)+0+1298.2+56+0+0+0+0+573+120+0+0},gDNDy7ppB:{height:191,width:\"310px\",y:(componentViewport?.y||0)+0+1298.2+56+0+0+0+0+573+120+0+0},gvy_GPf11:{height:191,width:\"310px\",y:(componentViewport?.y||0)+0+1397.2+56+0+0+0+0+573+120+0+0},kTX5ATiZU:{height:192,width:`min(min(${componentViewport?.width||\"100vw\"}, 1320px) - 40px, 400px)`,y:(componentViewport?.y||0)+0+1199+56+0+0+0+0+739+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:353,width:\"572px\",y:(componentViewport?.y||0)+0+1176+56+0+0+0+0+768+39+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-112bblf-container\",isModuleExternal:true,nodeId:\"sm3fPmSxF\",scopeId:\"uV6Uzs6GE\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BWXLAHg34:{variant:\"ZPQkyCuPV\"},gDNDy7ppB:{variant:\"ZPQkyCuPV\"},gvy_GPf11:{variant:\"ZPQkyCuPV\"},kTX5ATiZU:{style:{height:\"100%\",maxWidth:\"100%\",width:\"100%\"},variant:\"WXEUtu20P\"}},children:/*#__PURE__*/_jsx(InteractiveCryptoCard,{height:\"100%\",id:\"sm3fPmSxF\",layoutId:\"sm3fPmSxF\",style:{height:\"100%\",width:\"100%\"},variant:\"LKCDoa8a5\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1vrucrh\",\"data-framer-name\":\"Left content\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BWXLAHg34:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:271,intrinsicWidth:1196,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1298.2+56+0+0+0+0+573+111.5+0+0),pixelHeight:271,pixelWidth:1188,sizes:\"327px\",src:\"https://framerusercontent.com/images/GNwQuholW7M2AIDK0aIQiPMuOkg.png\",srcSet:\"https://framerusercontent.com/images/GNwQuholW7M2AIDK0aIQiPMuOkg.png?scale-down-to=512 512w,https://framerusercontent.com/images/GNwQuholW7M2AIDK0aIQiPMuOkg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/GNwQuholW7M2AIDK0aIQiPMuOkg.png 1188w\"}},gDNDy7ppB:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:271,intrinsicWidth:1196,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1298.2+56+0+0+0+0+573+111.5+0+0),pixelHeight:271,pixelWidth:1188,sizes:\"327px\",src:\"https://framerusercontent.com/images/GNwQuholW7M2AIDK0aIQiPMuOkg.png\",srcSet:\"https://framerusercontent.com/images/GNwQuholW7M2AIDK0aIQiPMuOkg.png?scale-down-to=512 512w,https://framerusercontent.com/images/GNwQuholW7M2AIDK0aIQiPMuOkg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/GNwQuholW7M2AIDK0aIQiPMuOkg.png 1188w\"}},gvy_GPf11:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:271,intrinsicWidth:1196,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1397.2+56+0+0+0+0+573+111.5+0+0),pixelHeight:271,pixelWidth:1188,sizes:\"327px\",src:\"https://framerusercontent.com/images/GNwQuholW7M2AIDK0aIQiPMuOkg.png\",srcSet:\"https://framerusercontent.com/images/GNwQuholW7M2AIDK0aIQiPMuOkg.png?scale-down-to=512 512w,https://framerusercontent.com/images/GNwQuholW7M2AIDK0aIQiPMuOkg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/GNwQuholW7M2AIDK0aIQiPMuOkg.png 1188w\"}},kTX5ATiZU:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:271,intrinsicWidth:1196,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1199+56+0+0+0+0+739+0+256+0+0),pixelHeight:271,pixelWidth:1188,sizes:\"299px\",src:\"https://framerusercontent.com/images/GNwQuholW7M2AIDK0aIQiPMuOkg.png\",srcSet:\"https://framerusercontent.com/images/GNwQuholW7M2AIDK0aIQiPMuOkg.png?scale-down-to=512 512w,https://framerusercontent.com/images/GNwQuholW7M2AIDK0aIQiPMuOkg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/GNwQuholW7M2AIDK0aIQiPMuOkg.png 1188w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:271,intrinsicWidth:1196,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1176+56+0+0+0+0+768+85.5+0+0),pixelHeight:271,pixelWidth:1188,sizes:\"553px\",src:\"https://framerusercontent.com/images/GNwQuholW7M2AIDK0aIQiPMuOkg.png\",srcSet:\"https://framerusercontent.com/images/GNwQuholW7M2AIDK0aIQiPMuOkg.png?scale-down-to=512 512w,https://framerusercontent.com/images/GNwQuholW7M2AIDK0aIQiPMuOkg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/GNwQuholW7M2AIDK0aIQiPMuOkg.png 1188w\"},className:\"framer-li7t4w\",\"data-framer-name\":\"BLK_LOGO_WORDMARK_II_WALLET_NEG\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kTX5ATiZU:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO0FCQyBTaW1vbiBNb25vIFJlZ3VsYXI=\",\"--framer-font-family\":'\"ABC Simon Mono Regular\", \"ABC Simon Mono Regular Placeholder\", monospace',\"--framer-font-size\":\"12px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"115%\",\"--framer-text-color\":\"var(--token-c14065e7-5a4d-4109-85cf-bca8f791260a, rgb(255, 255, 255))\"},children:\"Experience the future of E-Money with Blackfort pay. Secure, seamless, and innovative.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO0FCQyBTaW1vbiBNb25vIFJlZ3VsYXI=\",\"--framer-font-family\":'\"ABC Simon Mono Regular\", \"ABC Simon Mono Regular Placeholder\", monospace',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"115%\",\"--framer-text-color\":\"var(--token-c14065e7-5a4d-4109-85cf-bca8f791260a, rgb(255, 255, 255))\"},children:\"Experience the future of E-Money with Blackfort pay. Secure, seamless, and innovative.\"})}),className:\"framer-1hzvzgr\",fonts:[\"CUSTOM;ABC Simon Mono Regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BWXLAHg34:{y:(componentViewport?.y||0)+0+1298.2+56+0+0+0+0+573+111.5+0+167},gDNDy7ppB:{y:(componentViewport?.y||0)+0+1298.2+56+0+0+0+0+573+111.5+0+167},gvy_GPf11:{y:(componentViewport?.y||0)+0+1397.2+56+0+0+0+0+573+111.5+0+167},kTX5ATiZU:{y:(componentViewport?.y||0)+0+1199+56+0+0+0+0+739+0+256+0+151.8}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:41,y:(componentViewport?.y||0)+0+1176+56+0+0+0+0+768+85.5+0+219,children:/*#__PURE__*/_jsx(Container,{className:\"framer-19a9mco-container\",nodeId:\"NsFUeFg2I\",scopeId:\"uV6Uzs6GE\",children:/*#__PURE__*/_jsx(PrimaryButton,{BlJNMfRrN:true,fzPQj5vxM:\"blackfortpay.com\",height:\"100%\",icFgveKzp:\"arrow-right\",id:\"NsFUeFg2I\",layoutId:\"NsFUeFg2I\",qWQ35JEj6:\"Join the Waitlist\",variant:\"A0qnGCFfC\",width:\"100%\"})})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1j9kodr\",\"data-framer-name\":\"About\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1g4eodq\",\"data-framer-name\":\"Left content\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BWXLAHg34:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:271,intrinsicWidth:1196,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1298.2+56+0+0+0+0+1078+1.5+0+0),pixelHeight:271,pixelWidth:1196,sizes:\"327px\",src:\"https://framerusercontent.com/images/0DdxdDe5kffQqv5dkweU4uPHT8.png\",srcSet:\"https://framerusercontent.com/images/0DdxdDe5kffQqv5dkweU4uPHT8.png?scale-down-to=512 512w,https://framerusercontent.com/images/0DdxdDe5kffQqv5dkweU4uPHT8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/0DdxdDe5kffQqv5dkweU4uPHT8.png 1196w\"}},gDNDy7ppB:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:271,intrinsicWidth:1196,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1298.2+56+0+0+0+0+1078+1.5+0+0),pixelHeight:271,pixelWidth:1196,sizes:\"327px\",src:\"https://framerusercontent.com/images/0DdxdDe5kffQqv5dkweU4uPHT8.png\",srcSet:\"https://framerusercontent.com/images/0DdxdDe5kffQqv5dkweU4uPHT8.png?scale-down-to=512 512w,https://framerusercontent.com/images/0DdxdDe5kffQqv5dkweU4uPHT8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/0DdxdDe5kffQqv5dkweU4uPHT8.png 1196w\"}},gvy_GPf11:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:271,intrinsicWidth:1196,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1397.2+56+0+0+0+0+1078+1.5+0+0),pixelHeight:271,pixelWidth:1196,sizes:\"327px\",src:\"https://framerusercontent.com/images/0DdxdDe5kffQqv5dkweU4uPHT8.png\",srcSet:\"https://framerusercontent.com/images/0DdxdDe5kffQqv5dkweU4uPHT8.png?scale-down-to=512 512w,https://framerusercontent.com/images/0DdxdDe5kffQqv5dkweU4uPHT8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/0DdxdDe5kffQqv5dkweU4uPHT8.png 1196w\"}},kTX5ATiZU:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:271,intrinsicWidth:1196,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1199+56+0+0+0+0+1244+0+311+0+0),pixelHeight:271,pixelWidth:1196,sizes:\"299px\",src:\"https://framerusercontent.com/images/0DdxdDe5kffQqv5dkweU4uPHT8.png\",srcSet:\"https://framerusercontent.com/images/0DdxdDe5kffQqv5dkweU4uPHT8.png?scale-down-to=512 512w,https://framerusercontent.com/images/0DdxdDe5kffQqv5dkweU4uPHT8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/0DdxdDe5kffQqv5dkweU4uPHT8.png 1196w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:271,intrinsicWidth:1196,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1176+56+0+0+0+0+1273+64+0+0),pixelHeight:271,pixelWidth:1196,sizes:\"553px\",src:\"https://framerusercontent.com/images/0DdxdDe5kffQqv5dkweU4uPHT8.png\",srcSet:\"https://framerusercontent.com/images/0DdxdDe5kffQqv5dkweU4uPHT8.png?scale-down-to=512 512w,https://framerusercontent.com/images/0DdxdDe5kffQqv5dkweU4uPHT8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/0DdxdDe5kffQqv5dkweU4uPHT8.png 1196w\"},className:\"framer-1q686ht\",\"data-framer-name\":\"BLK_LOGO_WORDMARK_II_WALLET_NEG\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kTX5ATiZU:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO0FCQyBTaW1vbiBNb25vIFJlZ3VsYXI=\",\"--framer-font-family\":'\"ABC Simon Mono Regular\", \"ABC Simon Mono Regular Placeholder\", monospace',\"--framer-font-size\":\"12px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"115%\",\"--framer-text-color\":\"var(--token-c14065e7-5a4d-4109-85cf-bca8f791260a, rgb(255, 255, 255))\"},children:\"Download BlackFort wallet to purchase and store bitcoin & thousands of other cryptocurrencies!\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO0FCQyBTaW1vbiBNb25vIFJlZ3VsYXI=\",\"--framer-font-family\":'\"ABC Simon Mono Regular\", \"ABC Simon Mono Regular Placeholder\", monospace',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"115%\",\"--framer-text-color\":\"var(--token-c14065e7-5a4d-4109-85cf-bca8f791260a, rgb(255, 255, 255))\"},children:\"Download BlackFort wallet to purchase and store bitcoin & thousands of other cryptocurrencies!\"})}),className:\"framer-1339h8i\",fonts:[\"CUSTOM;ABC Simon Mono Regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1x3n6bi\",children:[/*#__PURE__*/_jsx(Link,{href:\"https://apps.apple.com/at/app/blackfort-wallet/id6447954137?l=en\",motionChild:true,nodeId:\"uJhTaQtYn\",children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-o3yqxv framer-j199ke\",\"data-framer-name\":\"Download_on_the_App_Store_Badge_US_UK_RGB_blk_092917\",fill:\"black\",intrinsicHeight:40,intrinsicWidth:120,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"119.664\" height=\"40\"><path d=\"M110.135 0H9.535c-.367 0-.73 0-1.095.002-.306.002-.61.008-.919.013A13.215 13.215 0 0 0 5.517.19a6.665 6.665 0 0 0-1.9.627 6.438 6.438 0 0 0-1.62 1.18A6.258 6.258 0 0 0 .82 3.617 6.601 6.601 0 0 0 .195 5.52a12.993 12.993 0 0 0-.179 2.002c-.01.307-.01.615-.015.921V31.56c.005.31.006.61.015.921a12.992 12.992 0 0 0 .18 2.002 6.588 6.588 0 0 0 .624 1.905A6.208 6.208 0 0 0 1.998 38a6.274 6.274 0 0 0 1.618 1.179 6.7 6.7 0 0 0 1.901.63 13.455 13.455 0 0 0 2.004.177c.31.007.613.011.919.011.366.002.728.002 1.095.002h100.6c.36 0 .724 0 1.084-.002.304 0 .617-.004.922-.01a13.279 13.279 0 0 0 2-.178 6.804 6.804 0 0 0 1.908-.63A6.277 6.277 0 0 0 117.666 38a6.395 6.395 0 0 0 1.182-1.614 6.604 6.604 0 0 0 .619-1.905 13.506 13.506 0 0 0 .185-2.002c.004-.31.004-.61.004-.921.008-.364.008-.725.008-1.094V9.536c0-.366 0-.73-.008-1.092 0-.306 0-.614-.004-.92a13.507 13.507 0 0 0-.185-2.003 6.618 6.618 0 0 0-.62-1.903 6.466 6.466 0 0 0-2.798-2.8 6.768 6.768 0 0 0-1.908-.627 13.044 13.044 0 0 0-2-.176c-.305-.005-.618-.011-.922-.013-.36-.002-.725-.002-1.084-.002Z\" style=\"fill:#a6a6a6\"/><path d=\"M8.445 39.125c-.305 0-.602-.004-.904-.01a12.687 12.687 0 0 1-1.87-.164 5.884 5.884 0 0 1-1.656-.548 5.406 5.406 0 0 1-1.397-1.016 5.32 5.32 0 0 1-1.02-1.397 5.722 5.722 0 0 1-.544-1.657 12.414 12.414 0 0 1-.166-1.875c-.007-.21-.015-.913-.015-.913v-23.1s.009-.692.015-.895a12.37 12.37 0 0 1 .165-1.872 5.755 5.755 0 0 1 .544-1.662 5.373 5.373 0 0 1 1.015-1.398 5.565 5.565 0 0 1 1.402-1.023 5.823 5.823 0 0 1 1.653-.544A12.586 12.586 0 0 1 7.543.887l.902-.012h102.769l.913.013a12.385 12.385 0 0 1 1.858.162 5.938 5.938 0 0 1 1.671.548 5.594 5.594 0 0 1 2.415 2.42 5.763 5.763 0 0 1 .535 1.649 12.995 12.995 0 0 1 .174 1.887c.003.283.003.588.003.89.008.375.008.732.008 1.092v20.929c0 .363 0 .718-.008 1.075 0 .325 0 .623-.004.93a12.731 12.731 0 0 1-.17 1.853 5.739 5.739 0 0 1-.54 1.67 5.48 5.48 0 0 1-1.016 1.386 5.413 5.413 0 0 1-1.4 1.022 5.862 5.862 0 0 1-1.668.55 12.542 12.542 0 0 1-1.869.163c-.293.007-.6.011-.897.011l-1.084.002Z\"/><g data-name=\"&lt;Group&gt;\"><g data-name=\"&lt;Group&gt;\"><path data-name=\"&lt;Path&gt;\" d=\"M24.769 20.3a4.949 4.949 0 0 1 2.356-4.151 5.066 5.066 0 0 0-3.99-2.158c-1.68-.176-3.308 1.005-4.164 1.005-.872 0-2.19-.988-3.608-.958a5.315 5.315 0 0 0-4.473 2.728c-1.934 3.348-.491 8.269 1.361 10.976.927 1.325 2.01 2.805 3.428 2.753 1.387-.058 1.905-.885 3.58-.885 1.658 0 2.144.885 3.59.852 1.489-.025 2.426-1.332 3.32-2.67a10.962 10.962 0 0 0 1.52-3.092 4.782 4.782 0 0 1-2.92-4.4Zm-2.732-8.09a4.872 4.872 0 0 0 1.115-3.49 4.957 4.957 0 0 0-3.208 1.66 4.636 4.636 0 0 0-1.144 3.36 4.1 4.1 0 0 0 3.237-1.53Z\" style=\"fill:#fff\"/></g><path d=\"M42.302 27.14H37.57l-1.137 3.356h-2.005l4.484-12.418h2.083l4.483 12.418h-2.039Zm-4.243-1.55h3.752l-1.85-5.446h-.051Zm17.101.38c0 2.813-1.506 4.62-3.779 4.62a3.07 3.07 0 0 1-2.848-1.583h-.043v4.484h-1.86V21.442h1.8v1.506h.033a3.212 3.212 0 0 1 2.883-1.6c2.298 0 3.813 1.816 3.813 4.622Zm-1.91 0c0-1.833-.948-3.038-2.393-3.038-1.42 0-2.375 1.23-2.375 3.038 0 1.824.955 3.046 2.375 3.046 1.445 0 2.393-1.197 2.393-3.046Zm11.875 0c0 2.813-1.506 4.62-3.779 4.62a3.07 3.07 0 0 1-2.848-1.583h-.043v4.484h-1.859V21.442h1.799v1.506h.034a3.212 3.212 0 0 1 2.883-1.6c2.298 0 3.813 1.816 3.813 4.622Zm-1.91 0c0-1.833-.948-3.038-2.393-3.038-1.42 0-2.375 1.23-2.375 3.038 0 1.824.955 3.046 2.375 3.046 1.445 0 2.392-1.197 2.392-3.046Zm8.495 1.066c.138 1.232 1.334 2.04 2.97 2.04 1.566 0 2.693-.808 2.693-1.919 0-.964-.68-1.54-2.29-1.936l-1.609-.388c-2.28-.55-3.339-1.617-3.339-3.348 0-2.142 1.867-3.614 4.519-3.614 2.624 0 4.423 1.472 4.483 3.614h-1.876c-.112-1.239-1.136-1.987-2.634-1.987s-2.521.757-2.521 1.858c0 .878.654 1.395 2.255 1.79l1.368.336c2.548.603 3.606 1.626 3.606 3.443 0 2.323-1.85 3.778-4.793 3.778-2.754 0-4.614-1.42-4.734-3.667ZM83.346 19.3v2.142h1.722v1.472h-1.722v4.991c0 .776.345 1.137 1.102 1.137a5.808 5.808 0 0 0 .611-.043v1.463a5.104 5.104 0 0 1-1.032.086c-1.833 0-2.548-.689-2.548-2.445v-5.189h-1.316v-1.472h1.316V19.3Zm2.719 6.67c0-2.849 1.678-4.639 4.294-4.639 2.625 0 4.295 1.79 4.295 4.639 0 2.856-1.661 4.638-4.295 4.638-2.633 0-4.294-1.782-4.294-4.638Zm6.695 0c0-1.954-.895-3.108-2.401-3.108s-2.4 1.162-2.4 3.108c0 1.962.894 3.106 2.4 3.106s2.401-1.144 2.401-3.106Zm3.426-4.528h1.773v1.541h.043a2.16 2.16 0 0 1 2.177-1.635 2.866 2.866 0 0 1 .637.069v1.738a2.598 2.598 0 0 0-.835-.112 1.873 1.873 0 0 0-1.937 2.083v5.37h-1.858Zm13.198 6.395c-.25 1.643-1.85 2.771-3.898 2.771-2.634 0-4.269-1.764-4.269-4.595 0-2.84 1.644-4.682 4.19-4.682 2.506 0 4.08 1.72 4.08 4.466v.637h-6.394v.112a2.358 2.358 0 0 0 2.436 2.564 2.048 2.048 0 0 0 2.09-1.273Zm-6.282-2.702h4.526a2.177 2.177 0 0 0-2.22-2.298 2.292 2.292 0 0 0-2.306 2.298Z\" style=\"fill:#fff\"/></g><path d=\"M37.826 8.731a2.64 2.64 0 0 1 2.808 2.965c0 1.906-1.03 3.002-2.808 3.002h-2.155V8.73Zm-1.228 5.123h1.125a1.876 1.876 0 0 0 1.967-2.146 1.881 1.881 0 0 0-1.967-2.134h-1.125Zm5.082-1.41a2.133 2.133 0 1 1 4.248 0 2.134 2.134 0 1 1-4.247 0Zm3.334 0c0-.976-.439-1.547-1.208-1.547-.773 0-1.207.571-1.207 1.547 0 .984.434 1.55 1.207 1.55.77 0 1.208-.57 1.208-1.55Zm6.559 2.254h-.922l-.93-3.317h-.07l-.927 3.317h-.913l-1.242-4.503h.902l.806 3.436h.067l.926-3.436h.852l.926 3.436h.07l.803-3.436h.889Zm2.281-4.503h.855v.715h.066a1.348 1.348 0 0 1 1.344-.802 1.465 1.465 0 0 1 1.559 1.675v2.915h-.889v-2.692c0-.724-.314-1.084-.972-1.084a1.033 1.033 0 0 0-1.075 1.141v2.635h-.888Zm5.24-1.758h.888v6.26h-.888Zm2.124 4.007a2.133 2.133 0 1 1 4.247 0 2.134 2.134 0 1 1-4.247 0Zm3.333 0c0-.976-.439-1.547-1.208-1.547-.773 0-1.207.571-1.207 1.547 0 .984.434 1.55 1.207 1.55.77 0 1.208-.57 1.208-1.55Zm1.849.98c0-.81.604-1.278 1.676-1.344l1.22-.07v-.389c0-.475-.315-.744-.922-.744-.497 0-.84.182-.939.5h-.86c.09-.773.818-1.27 1.84-1.27 1.128 0 1.765.563 1.765 1.514v3.077h-.855v-.633h-.07a1.515 1.515 0 0 1-1.353.707 1.36 1.36 0 0 1-1.501-1.348Zm2.895-.384v-.377l-1.1.07c-.62.042-.9.253-.9.65 0 .405.351.64.834.64a1.062 1.062 0 0 0 1.166-.983Zm2.053-.596c0-1.423.732-2.324 1.87-2.324a1.484 1.484 0 0 1 1.38.79h.067V8.437h.888v6.26h-.851v-.71h-.07a1.563 1.563 0 0 1-1.415.785c-1.145 0-1.869-.901-1.869-2.328Zm.918 0c0 .955.45 1.53 1.203 1.53.75 0 1.212-.583 1.212-1.526 0-.938-.468-1.53-1.212-1.53-.748 0-1.203.58-1.203 1.526Zm6.964 0a2.133 2.133 0 1 1 4.247 0 2.134 2.134 0 1 1-4.247 0Zm3.333 0c0-.976-.438-1.547-1.208-1.547-.772 0-1.207.571-1.207 1.547 0 .984.435 1.55 1.207 1.55.77 0 1.208-.57 1.208-1.55Zm2.107-2.249h.855v.715h.066a1.348 1.348 0 0 1 1.344-.802 1.465 1.465 0 0 1 1.559 1.675v2.915h-.889v-2.692c0-.724-.314-1.084-.972-1.084a1.033 1.033 0 0 0-1.075 1.141v2.635h-.889Zm8.845-1.121v1.141h.976v.749h-.976v2.315c0 .472.194.679.637.679a2.967 2.967 0 0 0 .339-.021v.74a2.916 2.916 0 0 1-.484.046c-.988 0-1.381-.348-1.381-1.216v-2.543h-.715v-.749h.715V9.074Zm2.19-.637h.88v2.481h.07a1.386 1.386 0 0 1 1.374-.806 1.483 1.483 0 0 1 1.55 1.679v2.907h-.889V12.01c0-.72-.335-1.084-.963-1.084a1.052 1.052 0 0 0-1.134 1.142v2.63h-.888Zm9.056 5.045a1.828 1.828 0 0 1-1.95 1.303 2.045 2.045 0 0 1-2.081-2.325 2.077 2.077 0 0 1 2.076-2.352c1.253 0 2.009.856 2.009 2.27v.31h-3.18v.05a1.19 1.19 0 0 0 1.2 1.29 1.08 1.08 0 0 0 1.07-.546Zm-3.126-1.451h2.275a1.086 1.086 0 0 0-1.109-1.167 1.152 1.152 0 0 0-1.166 1.167Z\" style=\"fill:#fff\" data-name=\"&lt;Group&gt;\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(Link,{href:\"https://play.google.com/store/apps/details?id=exchange.blackfort.blackfortwallet\",motionChild:true,nodeId:\"UFHv93nXE\",openInNewTab:true,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BWXLAHg34:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 146.341 43.149\"><path d=\"M 140.914 43.653 L 5.422 43.653 C 2.434 43.653 0 41.193 0 38.196 L 0 5.457 C 0 2.449 2.434 0 5.422 0 L 140.914 0 C 143.9 0 146.336 2.449 146.336 5.457 L 146.336 38.196 C 146.336 41.193 143.9 43.653 140.914 43.653 Z\" fill=\"rgb(0,0,0)\"></path><path d=\"M 140.914 0.874 C 143.421 0.874 145.472 2.934 145.472 5.457 L 145.472 38.196 C 145.472 40.719 143.434 42.779 140.914 42.779 L 5.422 42.779 C 2.916 42.779 0.864 40.719 0.864 38.196 L 0.864 5.457 C 0.864 2.934 2.902 0.874 5.422 0.874 Z M 140.914 0 L 5.422 0 C 2.434 0 0 2.46 0 5.457 L 0 38.196 C 0 41.203 2.434 43.653 5.422 43.653 L 140.914 43.653 C 143.9 43.653 146.336 41.203 146.336 38.196 L 146.336 5.457 C 146.336 2.46 143.9 0 140.914 0 Z\" fill=\"rgb(166,166,166)\"></path><path d=\"M 77.09 14.44 C 76.113 14.44 75.289 14.095 74.638 13.414 C 73.992 12.753 73.631 11.841 73.647 10.91 C 73.647 9.917 73.981 9.076 74.638 8.409 C 75.287 7.729 76.11 7.383 77.088 7.383 C 78.054 7.383 78.878 7.729 79.54 8.409 C 80.197 9.098 80.531 9.939 80.531 10.91 C 80.52 11.907 80.186 12.747 79.54 13.412 C 78.891 14.097 78.068 14.44 77.09 14.44 Z M 48.013 14.44 C 47.058 14.44 46.228 14.1 45.55 13.428 C 44.877 12.758 44.535 11.912 44.535 10.913 C 44.535 9.914 44.877 9.068 45.55 8.399 C 46.215 7.726 47.044 7.386 48.013 7.386 C 48.487 7.386 48.947 7.481 49.389 7.675 C 49.822 7.862 50.175 8.118 50.436 8.431 L 50.501 8.51 L 49.771 9.234 L 49.696 9.144 C 49.284 8.649 48.732 8.407 48.002 8.407 C 47.351 8.407 46.783 8.641 46.315 9.103 C 45.843 9.569 45.604 10.178 45.604 10.916 C 45.604 11.653 45.843 12.263 46.315 12.728 C 46.783 13.191 47.351 13.425 48.002 13.425 C 48.697 13.425 49.281 13.191 49.736 12.728 C 50.005 12.456 50.172 12.075 50.232 11.594 L 47.892 11.594 L 47.892 10.576 L 51.236 10.576 L 51.249 10.668 C 51.273 10.84 51.298 11.017 51.298 11.18 C 51.298 12.119 51.018 12.878 50.463 13.439 C 49.833 14.103 49.009 14.44 48.013 14.44 Z M 86.674 14.296 L 85.643 14.296 L 82.485 9.188 L 82.512 10.108 L 82.512 14.293 L 81.481 14.293 L 81.481 7.53 L 82.658 7.53 L 82.69 7.582 L 85.659 12.394 L 85.632 11.477 L 85.632 7.53 L 86.674 7.53 Z M 69.343 14.296 L 68.298 14.296 L 68.298 8.548 L 66.486 8.548 L 66.486 7.53 L 71.152 7.53 L 71.152 8.548 L 69.34 8.548 L 69.34 14.296 Z M 65.636 14.296 L 64.594 14.296 L 64.594 7.53 L 65.636 7.53 Z M 59.78 14.296 L 58.738 14.296 L 58.738 8.548 L 56.927 8.548 L 56.927 7.53 L 61.592 7.53 L 61.592 8.548 L 59.78 8.548 Z M 56.267 14.285 L 52.272 14.285 L 52.272 7.53 L 56.267 7.53 L 56.267 8.548 L 53.317 8.548 L 53.317 10.404 L 55.979 10.404 L 55.979 11.411 L 53.317 11.411 L 53.317 13.267 L 56.267 13.267 Z M 75.402 12.715 C 75.868 13.186 76.434 13.422 77.09 13.422 C 77.766 13.422 78.318 13.191 78.778 12.715 C 79.236 12.252 79.468 11.645 79.468 10.913 C 79.468 10.181 79.236 9.571 78.781 9.112 C 78.315 8.641 77.747 8.404 77.093 8.404 C 76.417 8.404 75.866 8.635 75.408 9.112 C 74.95 9.574 74.719 10.181 74.719 10.913 C 74.719 11.645 74.948 12.255 75.402 12.715 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 73.55 23.742 C 71.006 23.742 68.944 25.694 68.944 28.385 C 68.944 31.052 71.02 33.028 73.55 33.028 C 76.094 33.028 78.156 31.063 78.156 28.385 C 78.156 25.694 76.094 23.742 73.55 23.742 Z M 73.55 31.188 C 72.159 31.188 70.961 30.023 70.961 28.374 C 70.961 26.701 72.161 25.56 73.55 25.56 C 74.942 25.56 76.14 26.701 76.14 28.374 C 76.143 30.034 74.942 31.188 73.55 31.188 Z M 63.501 23.742 C 60.957 23.742 58.895 25.694 58.895 28.385 C 58.895 31.052 60.97 33.028 63.501 33.028 C 66.045 33.028 68.107 31.063 68.107 28.385 C 68.107 25.694 66.042 23.742 63.501 23.742 Z M 63.501 31.188 C 62.109 31.188 60.911 30.023 60.911 28.374 C 60.911 26.701 62.112 25.56 63.501 25.56 C 64.893 25.56 66.091 26.701 66.091 28.374 C 66.091 30.034 64.893 31.188 63.501 31.188 Z M 51.543 25.16 L 51.543 27.125 L 56.208 27.125 C 56.065 28.227 55.705 29.041 55.153 29.599 C 54.469 30.29 53.414 31.041 51.553 31.041 C 48.686 31.041 46.444 28.701 46.444 25.802 C 46.444 22.904 48.686 20.564 51.553 20.564 C 53.101 20.564 54.229 21.181 55.066 21.971 L 56.445 20.577 C 55.282 19.451 53.734 18.588 51.564 18.588 C 47.631 18.588 44.33 21.826 44.33 25.792 C 44.33 29.768 47.628 32.995 51.564 32.995 C 53.688 32.995 55.282 32.293 56.542 30.971 C 57.826 29.672 58.232 27.841 58.232 26.363 C 58.232 25.903 58.197 25.489 58.125 25.138 L 51.54 25.138 C 51.543 25.136 51.543 25.16 51.543 25.16 Z M 100.455 26.69 C 100.07 25.647 98.907 23.731 96.522 23.731 C 94.158 23.731 92.193 25.612 92.193 28.374 C 92.193 30.981 94.137 33.017 96.751 33.017 C 98.85 33.017 100.073 31.719 100.576 30.957 L 99.017 29.901 C 98.501 30.677 97.782 31.186 96.761 31.186 C 95.73 31.186 95.009 30.712 94.53 29.779 L 100.67 27.207 C 100.67 27.209 100.455 26.69 100.455 26.69 Z M 94.193 28.241 C 94.145 26.447 95.572 25.536 96.592 25.536 C 97.397 25.536 98.067 25.936 98.296 26.518 Z M 89.205 32.74 L 91.221 32.74 L 91.221 19.099 L 89.205 19.099 Z M 85.893 24.774 L 85.821 24.774 C 85.366 24.227 84.502 23.731 83.398 23.731 C 81.107 23.731 78.996 25.77 78.996 28.388 C 78.996 30.995 81.096 33.009 83.398 33.009 C 84.488 33.009 85.366 32.511 85.821 31.953 L 85.893 31.953 L 85.893 32.62 C 85.893 34.391 84.957 35.347 83.446 35.347 C 82.211 35.347 81.443 34.449 81.131 33.698 L 79.379 34.438 C 79.882 35.662 81.225 37.178 83.444 37.178 C 85.807 37.178 87.81 35.771 87.81 32.339 L 87.81 24.009 L 85.904 24.009 L 85.904 24.774 Z M 83.578 31.188 C 82.187 31.188 81.024 30.013 81.024 28.388 C 81.024 26.75 82.187 25.563 83.578 25.563 C 84.957 25.563 86.025 26.763 86.025 28.388 C 86.039 30.013 84.959 31.188 83.578 31.188 Z M 109.896 19.099 L 105.075 19.099 L 105.075 32.74 L 107.091 32.74 L 107.091 27.574 L 109.899 27.574 C 112.131 27.574 114.325 25.939 114.325 23.342 C 114.325 20.746 112.139 19.099 109.896 19.099 Z M 109.955 25.669 L 107.088 25.669 L 107.088 20.988 L 109.955 20.988 C 111.466 20.988 112.319 22.248 112.319 23.329 C 112.319 24.398 111.455 25.669 109.955 25.669 Z M 122.406 23.718 C 120.942 23.718 119.431 24.374 118.807 25.802 L 120.594 26.554 C 120.979 25.802 121.685 25.547 122.43 25.547 C 123.475 25.547 124.53 26.178 124.554 27.305 L 124.554 27.449 C 124.194 27.242 123.402 26.926 122.455 26.926 C 120.524 26.926 118.567 27.993 118.567 29.994 C 118.567 31.825 120.15 33.001 121.914 33.001 C 123.268 33.001 124.013 32.383 124.479 31.667 L 124.552 31.667 L 124.552 32.723 L 126.495 32.723 L 126.495 27.498 C 126.495 25.065 124.708 23.718 122.406 23.718 Z M 122.153 31.188 C 121.494 31.188 120.57 30.862 120.57 30.023 C 120.57 28.968 121.722 28.568 122.705 28.568 C 123.593 28.568 124.013 28.761 124.541 29.027 C 124.396 30.252 123.373 31.177 122.153 31.188 Z M 133.586 24.009 L 131.271 29.926 L 131.198 29.926 L 128.8 24.009 L 126.63 24.009 L 130.229 32.28 L 128.178 36.876 L 130.278 36.876 L 135.815 24.009 Z M 115.436 32.74 L 117.453 32.74 L 117.453 19.099 L 115.436 19.099 Z\" fill=\"rgb(255,255,255)\"></path><g><defs><linearGradient id=\"idss12664071511_5g1673948333\" x1=\"0.9929756801595457\" x2=\"0.007024319840454263\" y1=\"0\" y2=\"1\"><stop offset=\"0\" stop-color=\"rgb(0,160,255)\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"rgb(0,227,255)\" stop-opacity=\"1\"></stop></linearGradient></defs><path d=\"M 11.264 8.222 C 10.951 8.562 10.771 9.082 10.771 9.762 L 10.771 33.893 C 10.771 34.574 10.951 35.094 11.274 35.42 L 11.358 35.494 L 24.732 21.973 L 24.732 21.671 L 11.347 8.148 Z\" fill=\"url(#idss12664071511_5g1673948333)\"></path></g><g><defs><linearGradient id=\"idss12664071511_6g43703969\" x1=\"1\" x2=\"0\" y1=\"0.4974874371859296\" y2=\"0.5025125628140704\"><stop offset=\"0\" stop-color=\"rgb(255,224,0)\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"rgb(255,156,0)\" stop-opacity=\"1\"></stop></linearGradient></defs><path d=\"M 29.182 26.494 L 24.721 21.984 L 24.721 21.669 L 29.182 17.159 L 29.279 17.219 L 34.556 20.251 C 36.066 21.111 36.066 22.531 34.556 23.402 L 29.279 26.434 Z\" fill=\"url(#idss12664071511_6g43703969)\"></path></g><g><defs><linearGradient id=\"idss12664071511_7g1458251021\" x1=\"0.9929868573982961\" x2=\"0.007013142601703881\" y1=\"0\" y2=\"1\"><stop offset=\"0\" stop-color=\"rgb(255,58,68)\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"rgb(195,17,98)\" stop-opacity=\"1\"></stop></linearGradient></defs><path d=\"M 29.279 26.434 L 24.721 21.826 L 11.264 35.431 C 11.756 35.965 12.583 36.024 13.506 35.505 L 29.279 26.434\" fill=\"url(#idss12664071511_7g1458251021)\"></path></g><g><defs><linearGradient id=\"idss12664071511_8g-2043038355\" x1=\"0.000021280112607879875\" x2=\"0.9999787198873922\" y1=\"0\" y2=\"1\"><stop offset=\"0\" stop-color=\"rgb(50,160,113)\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"rgb(0,240,118)\" stop-opacity=\"1\"></stop></linearGradient></defs><path d=\"M 29.279 17.219 L 13.506 8.162 C 12.583 7.628 11.754 7.702 11.264 8.235 L 24.721 21.826 Z\" fill=\"url(#idss12664071511_8g-2043038355)\"></path></g><path d=\"M 29.182 26.336 L 13.517 35.333 C 12.642 35.842 11.861 35.807 11.358 35.344 L 11.274 35.428 L 11.358 35.502 C 11.861 35.962 12.642 36 13.517 35.491 L 29.29 26.434 Z\" fill=\"rgb(0,0,0)\" opacity=\"0.2\"></path><path d=\"M 34.556 23.244 L 29.169 26.336 L 29.266 26.434 L 34.542 23.402 C 35.299 22.967 35.67 22.395 35.67 21.826 C 35.624 22.349 35.239 22.844 34.556 23.244 Z\" fill=\"rgb(0,0,0)\" opacity=\"0.12\"></path><path d=\"M 13.506 8.32 L 34.556 20.408 C 35.239 20.798 35.624 21.307 35.684 21.826 C 35.684 21.258 35.312 20.686 34.556 20.251 L 13.506 8.162 C 11.996 7.288 10.771 8.018 10.771 9.762 L 10.771 9.92 C 10.771 8.173 11.996 7.457 13.506 8.32 Z\" fill=\"rgb(255,255,255)\" opacity=\"0.25\"></path></svg>',svgContentId:12664071511},gDNDy7ppB:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 146.341 43.149\"><path d=\"M 140.914 43.653 L 5.422 43.653 C 2.434 43.653 0 41.193 0 38.196 L 0 5.457 C 0 2.449 2.434 0 5.422 0 L 140.914 0 C 143.9 0 146.336 2.449 146.336 5.457 L 146.336 38.196 C 146.336 41.193 143.9 43.653 140.914 43.653 Z\" fill=\"rgb(0,0,0)\"></path><path d=\"M 140.914 0.874 C 143.421 0.874 145.472 2.934 145.472 5.457 L 145.472 38.196 C 145.472 40.719 143.434 42.779 140.914 42.779 L 5.422 42.779 C 2.916 42.779 0.864 40.719 0.864 38.196 L 0.864 5.457 C 0.864 2.934 2.902 0.874 5.422 0.874 Z M 140.914 0 L 5.422 0 C 2.434 0 0 2.46 0 5.457 L 0 38.196 C 0 41.203 2.434 43.653 5.422 43.653 L 140.914 43.653 C 143.9 43.653 146.336 41.203 146.336 38.196 L 146.336 5.457 C 146.336 2.46 143.9 0 140.914 0 Z\" fill=\"rgb(166,166,166)\"></path><path d=\"M 77.09 14.44 C 76.113 14.44 75.289 14.095 74.638 13.414 C 73.992 12.753 73.631 11.841 73.647 10.91 C 73.647 9.917 73.981 9.076 74.638 8.409 C 75.287 7.729 76.11 7.383 77.088 7.383 C 78.054 7.383 78.878 7.729 79.54 8.409 C 80.197 9.098 80.531 9.939 80.531 10.91 C 80.52 11.907 80.186 12.747 79.54 13.412 C 78.891 14.097 78.068 14.44 77.09 14.44 Z M 48.013 14.44 C 47.058 14.44 46.228 14.1 45.55 13.428 C 44.877 12.758 44.535 11.912 44.535 10.913 C 44.535 9.914 44.877 9.068 45.55 8.399 C 46.215 7.726 47.044 7.386 48.013 7.386 C 48.487 7.386 48.947 7.481 49.389 7.675 C 49.822 7.862 50.175 8.118 50.436 8.431 L 50.501 8.51 L 49.771 9.234 L 49.696 9.144 C 49.284 8.649 48.732 8.407 48.002 8.407 C 47.351 8.407 46.783 8.641 46.315 9.103 C 45.843 9.569 45.604 10.178 45.604 10.916 C 45.604 11.653 45.843 12.263 46.315 12.728 C 46.783 13.191 47.351 13.425 48.002 13.425 C 48.697 13.425 49.281 13.191 49.736 12.728 C 50.005 12.456 50.172 12.075 50.232 11.594 L 47.892 11.594 L 47.892 10.576 L 51.236 10.576 L 51.249 10.668 C 51.273 10.84 51.298 11.017 51.298 11.18 C 51.298 12.119 51.018 12.878 50.463 13.439 C 49.833 14.103 49.009 14.44 48.013 14.44 Z M 86.674 14.296 L 85.643 14.296 L 82.485 9.188 L 82.512 10.108 L 82.512 14.293 L 81.481 14.293 L 81.481 7.53 L 82.658 7.53 L 82.69 7.582 L 85.659 12.394 L 85.632 11.477 L 85.632 7.53 L 86.674 7.53 Z M 69.343 14.296 L 68.298 14.296 L 68.298 8.548 L 66.486 8.548 L 66.486 7.53 L 71.152 7.53 L 71.152 8.548 L 69.34 8.548 L 69.34 14.296 Z M 65.636 14.296 L 64.594 14.296 L 64.594 7.53 L 65.636 7.53 Z M 59.78 14.296 L 58.738 14.296 L 58.738 8.548 L 56.927 8.548 L 56.927 7.53 L 61.592 7.53 L 61.592 8.548 L 59.78 8.548 Z M 56.267 14.285 L 52.272 14.285 L 52.272 7.53 L 56.267 7.53 L 56.267 8.548 L 53.317 8.548 L 53.317 10.404 L 55.979 10.404 L 55.979 11.411 L 53.317 11.411 L 53.317 13.267 L 56.267 13.267 Z M 75.402 12.715 C 75.868 13.186 76.434 13.422 77.09 13.422 C 77.766 13.422 78.318 13.191 78.778 12.715 C 79.236 12.252 79.468 11.645 79.468 10.913 C 79.468 10.181 79.236 9.571 78.781 9.112 C 78.315 8.641 77.747 8.404 77.093 8.404 C 76.417 8.404 75.866 8.635 75.408 9.112 C 74.95 9.574 74.719 10.181 74.719 10.913 C 74.719 11.645 74.948 12.255 75.402 12.715 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 73.55 23.742 C 71.006 23.742 68.944 25.694 68.944 28.385 C 68.944 31.052 71.02 33.028 73.55 33.028 C 76.094 33.028 78.156 31.063 78.156 28.385 C 78.156 25.694 76.094 23.742 73.55 23.742 Z M 73.55 31.188 C 72.159 31.188 70.961 30.023 70.961 28.374 C 70.961 26.701 72.161 25.56 73.55 25.56 C 74.942 25.56 76.14 26.701 76.14 28.374 C 76.143 30.034 74.942 31.188 73.55 31.188 Z M 63.501 23.742 C 60.957 23.742 58.895 25.694 58.895 28.385 C 58.895 31.052 60.97 33.028 63.501 33.028 C 66.045 33.028 68.107 31.063 68.107 28.385 C 68.107 25.694 66.042 23.742 63.501 23.742 Z M 63.501 31.188 C 62.109 31.188 60.911 30.023 60.911 28.374 C 60.911 26.701 62.112 25.56 63.501 25.56 C 64.893 25.56 66.091 26.701 66.091 28.374 C 66.091 30.034 64.893 31.188 63.501 31.188 Z M 51.543 25.16 L 51.543 27.125 L 56.208 27.125 C 56.065 28.227 55.705 29.041 55.153 29.599 C 54.469 30.29 53.414 31.041 51.553 31.041 C 48.686 31.041 46.444 28.701 46.444 25.802 C 46.444 22.904 48.686 20.564 51.553 20.564 C 53.101 20.564 54.229 21.181 55.066 21.971 L 56.445 20.577 C 55.282 19.451 53.734 18.588 51.564 18.588 C 47.631 18.588 44.33 21.826 44.33 25.792 C 44.33 29.768 47.628 32.995 51.564 32.995 C 53.688 32.995 55.282 32.293 56.542 30.971 C 57.826 29.672 58.232 27.841 58.232 26.363 C 58.232 25.903 58.197 25.489 58.125 25.138 L 51.54 25.138 C 51.543 25.136 51.543 25.16 51.543 25.16 Z M 100.455 26.69 C 100.07 25.647 98.907 23.731 96.522 23.731 C 94.158 23.731 92.193 25.612 92.193 28.374 C 92.193 30.981 94.137 33.017 96.751 33.017 C 98.85 33.017 100.073 31.719 100.576 30.957 L 99.017 29.901 C 98.501 30.677 97.782 31.186 96.761 31.186 C 95.73 31.186 95.009 30.712 94.53 29.779 L 100.67 27.207 C 100.67 27.209 100.455 26.69 100.455 26.69 Z M 94.193 28.241 C 94.145 26.447 95.572 25.536 96.592 25.536 C 97.397 25.536 98.067 25.936 98.296 26.518 Z M 89.205 32.74 L 91.221 32.74 L 91.221 19.099 L 89.205 19.099 Z M 85.893 24.774 L 85.821 24.774 C 85.366 24.227 84.502 23.731 83.398 23.731 C 81.107 23.731 78.996 25.77 78.996 28.388 C 78.996 30.995 81.096 33.009 83.398 33.009 C 84.488 33.009 85.366 32.511 85.821 31.953 L 85.893 31.953 L 85.893 32.62 C 85.893 34.391 84.957 35.347 83.446 35.347 C 82.211 35.347 81.443 34.449 81.131 33.698 L 79.379 34.438 C 79.882 35.662 81.225 37.178 83.444 37.178 C 85.807 37.178 87.81 35.771 87.81 32.339 L 87.81 24.009 L 85.904 24.009 L 85.904 24.774 Z M 83.578 31.188 C 82.187 31.188 81.024 30.013 81.024 28.388 C 81.024 26.75 82.187 25.563 83.578 25.563 C 84.957 25.563 86.025 26.763 86.025 28.388 C 86.039 30.013 84.959 31.188 83.578 31.188 Z M 109.896 19.099 L 105.075 19.099 L 105.075 32.74 L 107.091 32.74 L 107.091 27.574 L 109.899 27.574 C 112.131 27.574 114.325 25.939 114.325 23.342 C 114.325 20.746 112.139 19.099 109.896 19.099 Z M 109.955 25.669 L 107.088 25.669 L 107.088 20.988 L 109.955 20.988 C 111.466 20.988 112.319 22.248 112.319 23.329 C 112.319 24.398 111.455 25.669 109.955 25.669 Z M 122.406 23.718 C 120.942 23.718 119.431 24.374 118.807 25.802 L 120.594 26.554 C 120.979 25.802 121.685 25.547 122.43 25.547 C 123.475 25.547 124.53 26.178 124.554 27.305 L 124.554 27.449 C 124.194 27.242 123.402 26.926 122.455 26.926 C 120.524 26.926 118.567 27.993 118.567 29.994 C 118.567 31.825 120.15 33.001 121.914 33.001 C 123.268 33.001 124.013 32.383 124.479 31.667 L 124.552 31.667 L 124.552 32.723 L 126.495 32.723 L 126.495 27.498 C 126.495 25.065 124.708 23.718 122.406 23.718 Z M 122.153 31.188 C 121.494 31.188 120.57 30.862 120.57 30.023 C 120.57 28.968 121.722 28.568 122.705 28.568 C 123.593 28.568 124.013 28.761 124.541 29.027 C 124.396 30.252 123.373 31.177 122.153 31.188 Z M 133.586 24.009 L 131.271 29.926 L 131.198 29.926 L 128.8 24.009 L 126.63 24.009 L 130.229 32.28 L 128.178 36.876 L 130.278 36.876 L 135.815 24.009 Z M 115.436 32.74 L 117.453 32.74 L 117.453 19.099 L 115.436 19.099 Z\" fill=\"rgb(255,255,255)\"></path><g><defs><linearGradient id=\"idss12664071511_5g1673948333\" x1=\"0.9929756801595457\" x2=\"0.007024319840454263\" y1=\"0\" y2=\"1\"><stop offset=\"0\" stop-color=\"rgb(0,160,255)\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"rgb(0,227,255)\" stop-opacity=\"1\"></stop></linearGradient></defs><path d=\"M 11.264 8.222 C 10.951 8.562 10.771 9.082 10.771 9.762 L 10.771 33.893 C 10.771 34.574 10.951 35.094 11.274 35.42 L 11.358 35.494 L 24.732 21.973 L 24.732 21.671 L 11.347 8.148 Z\" fill=\"url(#idss12664071511_5g1673948333)\"></path></g><g><defs><linearGradient id=\"idss12664071511_6g43703969\" x1=\"1\" x2=\"0\" y1=\"0.4974874371859296\" y2=\"0.5025125628140704\"><stop offset=\"0\" stop-color=\"rgb(255,224,0)\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"rgb(255,156,0)\" stop-opacity=\"1\"></stop></linearGradient></defs><path d=\"M 29.182 26.494 L 24.721 21.984 L 24.721 21.669 L 29.182 17.159 L 29.279 17.219 L 34.556 20.251 C 36.066 21.111 36.066 22.531 34.556 23.402 L 29.279 26.434 Z\" fill=\"url(#idss12664071511_6g43703969)\"></path></g><g><defs><linearGradient id=\"idss12664071511_7g1458251021\" x1=\"0.9929868573982961\" x2=\"0.007013142601703881\" y1=\"0\" y2=\"1\"><stop offset=\"0\" stop-color=\"rgb(255,58,68)\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"rgb(195,17,98)\" stop-opacity=\"1\"></stop></linearGradient></defs><path d=\"M 29.279 26.434 L 24.721 21.826 L 11.264 35.431 C 11.756 35.965 12.583 36.024 13.506 35.505 L 29.279 26.434\" fill=\"url(#idss12664071511_7g1458251021)\"></path></g><g><defs><linearGradient id=\"idss12664071511_8g-2043038355\" x1=\"0.000021280112607879875\" x2=\"0.9999787198873922\" y1=\"0\" y2=\"1\"><stop offset=\"0\" stop-color=\"rgb(50,160,113)\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"rgb(0,240,118)\" stop-opacity=\"1\"></stop></linearGradient></defs><path d=\"M 29.279 17.219 L 13.506 8.162 C 12.583 7.628 11.754 7.702 11.264 8.235 L 24.721 21.826 Z\" fill=\"url(#idss12664071511_8g-2043038355)\"></path></g><path d=\"M 29.182 26.336 L 13.517 35.333 C 12.642 35.842 11.861 35.807 11.358 35.344 L 11.274 35.428 L 11.358 35.502 C 11.861 35.962 12.642 36 13.517 35.491 L 29.29 26.434 Z\" fill=\"rgb(0,0,0)\" opacity=\"0.2\"></path><path d=\"M 34.556 23.244 L 29.169 26.336 L 29.266 26.434 L 34.542 23.402 C 35.299 22.967 35.67 22.395 35.67 21.826 C 35.624 22.349 35.239 22.844 34.556 23.244 Z\" fill=\"rgb(0,0,0)\" opacity=\"0.12\"></path><path d=\"M 13.506 8.32 L 34.556 20.408 C 35.239 20.798 35.624 21.307 35.684 21.826 C 35.684 21.258 35.312 20.686 34.556 20.251 L 13.506 8.162 C 11.996 7.288 10.771 8.018 10.771 9.762 L 10.771 9.92 C 10.771 8.173 11.996 7.457 13.506 8.32 Z\" fill=\"rgb(255,255,255)\" opacity=\"0.25\"></path></svg>',svgContentId:12664071511},gvy_GPf11:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 146.341 43.149\"><path d=\"M 140.914 43.653 L 5.422 43.653 C 2.434 43.653 0 41.193 0 38.196 L 0 5.457 C 0 2.449 2.434 0 5.422 0 L 140.914 0 C 143.9 0 146.336 2.449 146.336 5.457 L 146.336 38.196 C 146.336 41.193 143.9 43.653 140.914 43.653 Z\" fill=\"rgb(0,0,0)\"></path><path d=\"M 140.914 0.874 C 143.421 0.874 145.472 2.934 145.472 5.457 L 145.472 38.196 C 145.472 40.719 143.434 42.779 140.914 42.779 L 5.422 42.779 C 2.916 42.779 0.864 40.719 0.864 38.196 L 0.864 5.457 C 0.864 2.934 2.902 0.874 5.422 0.874 Z M 140.914 0 L 5.422 0 C 2.434 0 0 2.46 0 5.457 L 0 38.196 C 0 41.203 2.434 43.653 5.422 43.653 L 140.914 43.653 C 143.9 43.653 146.336 41.203 146.336 38.196 L 146.336 5.457 C 146.336 2.46 143.9 0 140.914 0 Z\" fill=\"rgb(166,166,166)\"></path><path d=\"M 77.09 14.44 C 76.113 14.44 75.289 14.095 74.638 13.414 C 73.992 12.753 73.631 11.841 73.647 10.91 C 73.647 9.917 73.981 9.076 74.638 8.409 C 75.287 7.729 76.11 7.383 77.088 7.383 C 78.054 7.383 78.878 7.729 79.54 8.409 C 80.197 9.098 80.531 9.939 80.531 10.91 C 80.52 11.907 80.186 12.747 79.54 13.412 C 78.891 14.097 78.068 14.44 77.09 14.44 Z M 48.013 14.44 C 47.058 14.44 46.228 14.1 45.55 13.428 C 44.877 12.758 44.535 11.912 44.535 10.913 C 44.535 9.914 44.877 9.068 45.55 8.399 C 46.215 7.726 47.044 7.386 48.013 7.386 C 48.487 7.386 48.947 7.481 49.389 7.675 C 49.822 7.862 50.175 8.118 50.436 8.431 L 50.501 8.51 L 49.771 9.234 L 49.696 9.144 C 49.284 8.649 48.732 8.407 48.002 8.407 C 47.351 8.407 46.783 8.641 46.315 9.103 C 45.843 9.569 45.604 10.178 45.604 10.916 C 45.604 11.653 45.843 12.263 46.315 12.728 C 46.783 13.191 47.351 13.425 48.002 13.425 C 48.697 13.425 49.281 13.191 49.736 12.728 C 50.005 12.456 50.172 12.075 50.232 11.594 L 47.892 11.594 L 47.892 10.576 L 51.236 10.576 L 51.249 10.668 C 51.273 10.84 51.298 11.017 51.298 11.18 C 51.298 12.119 51.018 12.878 50.463 13.439 C 49.833 14.103 49.009 14.44 48.013 14.44 Z M 86.674 14.296 L 85.643 14.296 L 82.485 9.188 L 82.512 10.108 L 82.512 14.293 L 81.481 14.293 L 81.481 7.53 L 82.658 7.53 L 82.69 7.582 L 85.659 12.394 L 85.632 11.477 L 85.632 7.53 L 86.674 7.53 Z M 69.343 14.296 L 68.298 14.296 L 68.298 8.548 L 66.486 8.548 L 66.486 7.53 L 71.152 7.53 L 71.152 8.548 L 69.34 8.548 L 69.34 14.296 Z M 65.636 14.296 L 64.594 14.296 L 64.594 7.53 L 65.636 7.53 Z M 59.78 14.296 L 58.738 14.296 L 58.738 8.548 L 56.927 8.548 L 56.927 7.53 L 61.592 7.53 L 61.592 8.548 L 59.78 8.548 Z M 56.267 14.285 L 52.272 14.285 L 52.272 7.53 L 56.267 7.53 L 56.267 8.548 L 53.317 8.548 L 53.317 10.404 L 55.979 10.404 L 55.979 11.411 L 53.317 11.411 L 53.317 13.267 L 56.267 13.267 Z M 75.402 12.715 C 75.868 13.186 76.434 13.422 77.09 13.422 C 77.766 13.422 78.318 13.191 78.778 12.715 C 79.236 12.252 79.468 11.645 79.468 10.913 C 79.468 10.181 79.236 9.571 78.781 9.112 C 78.315 8.641 77.747 8.404 77.093 8.404 C 76.417 8.404 75.866 8.635 75.408 9.112 C 74.95 9.574 74.719 10.181 74.719 10.913 C 74.719 11.645 74.948 12.255 75.402 12.715 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 73.55 23.742 C 71.006 23.742 68.944 25.694 68.944 28.385 C 68.944 31.052 71.02 33.028 73.55 33.028 C 76.094 33.028 78.156 31.063 78.156 28.385 C 78.156 25.694 76.094 23.742 73.55 23.742 Z M 73.55 31.188 C 72.159 31.188 70.961 30.023 70.961 28.374 C 70.961 26.701 72.161 25.56 73.55 25.56 C 74.942 25.56 76.14 26.701 76.14 28.374 C 76.143 30.034 74.942 31.188 73.55 31.188 Z M 63.501 23.742 C 60.957 23.742 58.895 25.694 58.895 28.385 C 58.895 31.052 60.97 33.028 63.501 33.028 C 66.045 33.028 68.107 31.063 68.107 28.385 C 68.107 25.694 66.042 23.742 63.501 23.742 Z M 63.501 31.188 C 62.109 31.188 60.911 30.023 60.911 28.374 C 60.911 26.701 62.112 25.56 63.501 25.56 C 64.893 25.56 66.091 26.701 66.091 28.374 C 66.091 30.034 64.893 31.188 63.501 31.188 Z M 51.543 25.16 L 51.543 27.125 L 56.208 27.125 C 56.065 28.227 55.705 29.041 55.153 29.599 C 54.469 30.29 53.414 31.041 51.553 31.041 C 48.686 31.041 46.444 28.701 46.444 25.802 C 46.444 22.904 48.686 20.564 51.553 20.564 C 53.101 20.564 54.229 21.181 55.066 21.971 L 56.445 20.577 C 55.282 19.451 53.734 18.588 51.564 18.588 C 47.631 18.588 44.33 21.826 44.33 25.792 C 44.33 29.768 47.628 32.995 51.564 32.995 C 53.688 32.995 55.282 32.293 56.542 30.971 C 57.826 29.672 58.232 27.841 58.232 26.363 C 58.232 25.903 58.197 25.489 58.125 25.138 L 51.54 25.138 C 51.543 25.136 51.543 25.16 51.543 25.16 Z M 100.455 26.69 C 100.07 25.647 98.907 23.731 96.522 23.731 C 94.158 23.731 92.193 25.612 92.193 28.374 C 92.193 30.981 94.137 33.017 96.751 33.017 C 98.85 33.017 100.073 31.719 100.576 30.957 L 99.017 29.901 C 98.501 30.677 97.782 31.186 96.761 31.186 C 95.73 31.186 95.009 30.712 94.53 29.779 L 100.67 27.207 C 100.67 27.209 100.455 26.69 100.455 26.69 Z M 94.193 28.241 C 94.145 26.447 95.572 25.536 96.592 25.536 C 97.397 25.536 98.067 25.936 98.296 26.518 Z M 89.205 32.74 L 91.221 32.74 L 91.221 19.099 L 89.205 19.099 Z M 85.893 24.774 L 85.821 24.774 C 85.366 24.227 84.502 23.731 83.398 23.731 C 81.107 23.731 78.996 25.77 78.996 28.388 C 78.996 30.995 81.096 33.009 83.398 33.009 C 84.488 33.009 85.366 32.511 85.821 31.953 L 85.893 31.953 L 85.893 32.62 C 85.893 34.391 84.957 35.347 83.446 35.347 C 82.211 35.347 81.443 34.449 81.131 33.698 L 79.379 34.438 C 79.882 35.662 81.225 37.178 83.444 37.178 C 85.807 37.178 87.81 35.771 87.81 32.339 L 87.81 24.009 L 85.904 24.009 L 85.904 24.774 Z M 83.578 31.188 C 82.187 31.188 81.024 30.013 81.024 28.388 C 81.024 26.75 82.187 25.563 83.578 25.563 C 84.957 25.563 86.025 26.763 86.025 28.388 C 86.039 30.013 84.959 31.188 83.578 31.188 Z M 109.896 19.099 L 105.075 19.099 L 105.075 32.74 L 107.091 32.74 L 107.091 27.574 L 109.899 27.574 C 112.131 27.574 114.325 25.939 114.325 23.342 C 114.325 20.746 112.139 19.099 109.896 19.099 Z M 109.955 25.669 L 107.088 25.669 L 107.088 20.988 L 109.955 20.988 C 111.466 20.988 112.319 22.248 112.319 23.329 C 112.319 24.398 111.455 25.669 109.955 25.669 Z M 122.406 23.718 C 120.942 23.718 119.431 24.374 118.807 25.802 L 120.594 26.554 C 120.979 25.802 121.685 25.547 122.43 25.547 C 123.475 25.547 124.53 26.178 124.554 27.305 L 124.554 27.449 C 124.194 27.242 123.402 26.926 122.455 26.926 C 120.524 26.926 118.567 27.993 118.567 29.994 C 118.567 31.825 120.15 33.001 121.914 33.001 C 123.268 33.001 124.013 32.383 124.479 31.667 L 124.552 31.667 L 124.552 32.723 L 126.495 32.723 L 126.495 27.498 C 126.495 25.065 124.708 23.718 122.406 23.718 Z M 122.153 31.188 C 121.494 31.188 120.57 30.862 120.57 30.023 C 120.57 28.968 121.722 28.568 122.705 28.568 C 123.593 28.568 124.013 28.761 124.541 29.027 C 124.396 30.252 123.373 31.177 122.153 31.188 Z M 133.586 24.009 L 131.271 29.926 L 131.198 29.926 L 128.8 24.009 L 126.63 24.009 L 130.229 32.28 L 128.178 36.876 L 130.278 36.876 L 135.815 24.009 Z M 115.436 32.74 L 117.453 32.74 L 117.453 19.099 L 115.436 19.099 Z\" fill=\"rgb(255,255,255)\"></path><g><defs><linearGradient id=\"idss12664071511_5g1673948333\" x1=\"0.9929756801595457\" x2=\"0.007024319840454263\" y1=\"0\" y2=\"1\"><stop offset=\"0\" stop-color=\"rgb(0,160,255)\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"rgb(0,227,255)\" stop-opacity=\"1\"></stop></linearGradient></defs><path d=\"M 11.264 8.222 C 10.951 8.562 10.771 9.082 10.771 9.762 L 10.771 33.893 C 10.771 34.574 10.951 35.094 11.274 35.42 L 11.358 35.494 L 24.732 21.973 L 24.732 21.671 L 11.347 8.148 Z\" fill=\"url(#idss12664071511_5g1673948333)\"></path></g><g><defs><linearGradient id=\"idss12664071511_6g43703969\" x1=\"1\" x2=\"0\" y1=\"0.4974874371859296\" y2=\"0.5025125628140704\"><stop offset=\"0\" stop-color=\"rgb(255,224,0)\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"rgb(255,156,0)\" stop-opacity=\"1\"></stop></linearGradient></defs><path d=\"M 29.182 26.494 L 24.721 21.984 L 24.721 21.669 L 29.182 17.159 L 29.279 17.219 L 34.556 20.251 C 36.066 21.111 36.066 22.531 34.556 23.402 L 29.279 26.434 Z\" fill=\"url(#idss12664071511_6g43703969)\"></path></g><g><defs><linearGradient id=\"idss12664071511_7g1458251021\" x1=\"0.9929868573982961\" x2=\"0.007013142601703881\" y1=\"0\" y2=\"1\"><stop offset=\"0\" stop-color=\"rgb(255,58,68)\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"rgb(195,17,98)\" stop-opacity=\"1\"></stop></linearGradient></defs><path d=\"M 29.279 26.434 L 24.721 21.826 L 11.264 35.431 C 11.756 35.965 12.583 36.024 13.506 35.505 L 29.279 26.434\" fill=\"url(#idss12664071511_7g1458251021)\"></path></g><g><defs><linearGradient id=\"idss12664071511_8g-2043038355\" x1=\"0.000021280112607879875\" x2=\"0.9999787198873922\" y1=\"0\" y2=\"1\"><stop offset=\"0\" stop-color=\"rgb(50,160,113)\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"rgb(0,240,118)\" stop-opacity=\"1\"></stop></linearGradient></defs><path d=\"M 29.279 17.219 L 13.506 8.162 C 12.583 7.628 11.754 7.702 11.264 8.235 L 24.721 21.826 Z\" fill=\"url(#idss12664071511_8g-2043038355)\"></path></g><path d=\"M 29.182 26.336 L 13.517 35.333 C 12.642 35.842 11.861 35.807 11.358 35.344 L 11.274 35.428 L 11.358 35.502 C 11.861 35.962 12.642 36 13.517 35.491 L 29.29 26.434 Z\" fill=\"rgb(0,0,0)\" opacity=\"0.2\"></path><path d=\"M 34.556 23.244 L 29.169 26.336 L 29.266 26.434 L 34.542 23.402 C 35.299 22.967 35.67 22.395 35.67 21.826 C 35.624 22.349 35.239 22.844 34.556 23.244 Z\" fill=\"rgb(0,0,0)\" opacity=\"0.12\"></path><path d=\"M 13.506 8.32 L 34.556 20.408 C 35.239 20.798 35.624 21.307 35.684 21.826 C 35.684 21.258 35.312 20.686 34.556 20.251 L 13.506 8.162 C 11.996 7.288 10.771 8.018 10.771 9.762 L 10.771 9.92 C 10.771 8.173 11.996 7.457 13.506 8.32 Z\" fill=\"rgb(255,255,255)\" opacity=\"0.25\"></path></svg>',svgContentId:12664071511},kTX5ATiZU:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 148.78 44.03\"><path d=\"M 143.263 44.544 L 5.512 44.544 C 2.474 44.544 0 42.033 0 38.976 L 0 5.568 C 0 2.499 2.474 0 5.512 0 L 143.263 0 C 146.298 0 148.775 2.499 148.775 5.568 L 148.775 38.976 C 148.775 42.033 146.298 44.544 143.263 44.544 Z\" fill=\"rgb(0,0,0)\"></path><path d=\"M 143.263 0.891 C 145.811 0.891 147.896 2.994 147.896 5.568 L 147.896 38.976 C 147.896 41.55 145.825 43.652 143.263 43.652 L 5.512 43.652 C 2.964 43.652 0.879 41.55 0.879 38.976 L 0.879 5.568 C 0.879 2.994 2.95 0.891 5.512 0.891 Z M 143.263 0 L 5.512 0 C 2.474 0 0 2.51 0 5.568 L 0 38.976 C 0 42.044 2.474 44.544 5.512 44.544 L 143.263 44.544 C 146.298 44.544 148.775 42.044 148.775 38.976 L 148.775 5.568 C 148.775 2.51 146.298 0 143.263 0 Z\" fill=\"rgb(166,166,166)\"></path><path d=\"M 78.375 14.735 C 77.382 14.735 76.544 14.382 75.882 13.688 C 75.225 13.013 74.858 12.083 74.875 11.133 C 74.875 10.12 75.214 9.261 75.882 8.581 C 76.541 7.887 77.379 7.534 78.372 7.534 C 79.355 7.534 80.193 7.887 80.866 8.581 C 81.534 9.284 81.873 10.142 81.873 11.133 C 81.862 12.15 81.523 13.008 80.866 13.685 C 80.206 14.385 79.369 14.735 78.375 14.735 Z M 48.813 14.735 C 47.842 14.735 46.999 14.388 46.309 13.702 C 45.625 13.019 45.277 12.155 45.277 11.136 C 45.277 10.117 45.625 9.253 46.309 8.57 C 46.985 7.884 47.828 7.537 48.813 7.537 C 49.295 7.537 49.763 7.634 50.212 7.831 C 50.653 8.023 51.011 8.284 51.277 8.603 L 51.342 8.684 L 50.601 9.422 L 50.524 9.331 C 50.105 8.825 49.544 8.578 48.803 8.578 C 48.14 8.578 47.563 8.817 47.086 9.289 C 46.607 9.764 46.364 10.386 46.364 11.139 C 46.364 11.891 46.607 12.513 47.086 12.988 C 47.563 13.46 48.14 13.699 48.803 13.699 C 49.509 13.699 50.103 13.46 50.565 12.988 C 50.839 12.71 51.008 12.322 51.069 11.83 L 48.69 11.83 L 48.69 10.792 L 52.09 10.792 L 52.103 10.886 C 52.128 11.061 52.153 11.241 52.153 11.408 C 52.153 12.366 51.868 13.141 51.304 13.713 C 50.664 14.391 49.826 14.735 48.813 14.735 Z M 88.119 14.588 L 87.071 14.588 L 83.86 9.375 L 83.887 10.314 L 83.887 14.585 L 82.839 14.585 L 82.839 7.684 L 84.035 7.684 L 84.068 7.737 L 87.087 12.647 L 87.06 11.711 L 87.06 7.684 L 88.119 7.684 Z M 70.498 14.588 L 69.436 14.588 L 69.436 8.723 L 67.594 8.723 L 67.594 7.684 L 72.338 7.684 L 72.338 8.723 L 70.496 8.723 L 70.496 14.588 Z M 66.73 14.588 L 65.67 14.588 L 65.67 7.684 L 66.73 7.684 Z M 60.777 14.588 L 59.717 14.588 L 59.717 8.723 L 57.876 8.723 L 57.876 7.684 L 62.619 7.684 L 62.619 8.723 L 60.777 8.723 Z M 57.205 14.577 L 53.143 14.577 L 53.143 7.684 L 57.205 7.684 L 57.205 8.723 L 54.205 8.723 L 54.205 10.617 L 56.912 10.617 L 56.912 11.644 L 54.205 11.644 L 54.205 13.538 L 57.205 13.538 Z M 76.659 12.974 C 77.133 13.455 77.707 13.696 78.375 13.696 C 79.062 13.696 79.623 13.46 80.091 12.974 C 80.557 12.502 80.792 11.883 80.792 11.136 C 80.792 10.389 80.557 9.767 80.094 9.298 C 79.621 8.817 79.043 8.575 78.378 8.575 C 77.691 8.575 77.13 8.812 76.665 9.298 C 76.199 9.77 75.964 10.389 75.964 11.136 C 75.964 11.883 76.197 12.505 76.659 12.974 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 74.776 24.227 C 72.19 24.227 70.093 26.218 70.093 28.964 C 70.093 31.686 72.203 33.702 74.776 33.702 C 77.363 33.702 79.459 31.697 79.459 28.964 C 79.459 26.218 77.363 24.227 74.776 24.227 Z M 74.776 31.825 C 73.361 31.825 72.143 30.636 72.143 28.953 C 72.143 27.245 73.364 26.082 74.776 26.082 C 76.191 26.082 77.409 27.245 77.409 28.953 C 77.412 30.647 76.191 31.825 74.776 31.825 Z M 64.559 24.227 C 61.973 24.227 59.876 26.218 59.876 28.964 C 59.876 31.686 61.986 33.702 64.559 33.702 C 67.146 33.702 69.242 31.697 69.242 28.964 C 69.242 26.218 67.143 24.227 64.559 24.227 Z M 64.559 31.825 C 63.144 31.825 61.926 30.636 61.926 28.953 C 61.926 27.245 63.147 26.082 64.559 26.082 C 65.974 26.082 67.192 27.245 67.192 28.953 C 67.192 30.647 65.974 31.825 64.559 31.825 Z M 52.402 25.674 L 52.402 27.679 L 57.145 27.679 C 57 28.803 56.633 29.634 56.072 30.203 C 55.377 30.908 54.304 31.675 52.413 31.675 C 49.498 31.675 47.218 29.287 47.218 26.329 C 47.218 23.372 49.498 20.983 52.413 20.983 C 53.986 20.983 55.133 21.614 55.984 22.419 L 57.386 20.997 C 56.203 19.847 54.629 18.967 52.424 18.967 C 48.425 18.967 45.069 22.272 45.069 26.318 C 45.069 30.375 48.422 33.669 52.424 33.669 C 54.583 33.669 56.203 32.952 57.484 31.603 C 58.79 30.278 59.203 28.409 59.203 26.901 C 59.203 26.432 59.167 26.01 59.093 25.651 L 52.399 25.651 C 52.402 25.649 52.402 25.674 52.402 25.674 Z M 102.129 27.234 C 101.738 26.171 100.555 24.216 98.131 24.216 C 95.727 24.216 93.73 26.135 93.73 28.953 C 93.73 31.614 95.706 33.691 98.363 33.691 C 100.498 33.691 101.741 32.366 102.252 31.589 L 100.668 30.511 C 100.142 31.303 99.411 31.822 98.374 31.822 C 97.326 31.822 96.592 31.339 96.105 30.386 L 102.348 27.762 C 102.348 27.765 102.129 27.234 102.129 27.234 Z M 95.763 28.817 C 95.714 26.987 97.164 26.057 98.202 26.057 C 99.02 26.057 99.702 26.465 99.934 27.059 Z M 90.692 33.408 L 92.741 33.408 L 92.741 19.489 L 90.692 19.489 Z M 87.325 25.279 L 87.251 25.279 C 86.789 24.721 85.91 24.216 84.788 24.216 C 82.459 24.216 80.313 26.296 80.313 28.967 C 80.313 31.628 82.448 33.683 84.788 33.683 C 85.896 33.683 86.789 33.174 87.251 32.605 L 87.325 32.605 L 87.325 33.286 C 87.325 35.093 86.373 36.068 84.837 36.068 C 83.581 36.068 82.801 35.152 82.483 34.385 L 80.702 35.141 C 81.213 36.39 82.579 37.937 84.834 37.937 C 87.237 37.937 89.274 36.501 89.274 32.999 L 89.274 24.499 L 87.336 24.499 L 87.336 25.279 Z M 84.971 31.825 C 83.556 31.825 82.374 30.625 82.374 28.967 C 82.374 27.295 83.556 26.085 84.971 26.085 C 86.373 26.085 87.459 27.309 87.459 28.967 C 87.473 30.625 86.375 31.825 84.971 31.825 Z M 111.728 19.489 L 106.826 19.489 L 106.826 33.408 L 108.876 33.408 L 108.876 28.137 L 111.73 28.137 C 113.999 28.137 116.23 26.468 116.23 23.819 C 116.23 21.169 114.008 19.489 111.728 19.489 Z M 111.788 26.193 L 108.873 26.193 L 108.873 21.416 L 111.788 21.416 C 113.323 21.416 114.191 22.702 114.191 23.805 C 114.191 24.896 113.312 26.193 111.788 26.193 Z M 124.446 24.202 C 122.957 24.202 121.422 24.871 120.787 26.329 L 122.604 27.096 C 122.996 26.329 123.713 26.068 124.471 26.068 C 125.533 26.068 126.606 26.712 126.63 27.862 L 126.63 28.009 C 126.264 27.798 125.459 27.476 124.496 27.476 C 122.533 27.476 120.543 28.565 120.543 30.606 C 120.543 32.475 122.153 33.674 123.945 33.674 C 125.322 33.674 126.08 33.044 126.554 32.314 L 126.628 32.314 L 126.628 33.391 L 128.604 33.391 L 128.604 28.059 C 128.604 25.576 126.786 24.202 124.446 24.202 Z M 124.189 31.825 C 123.518 31.825 122.58 31.492 122.58 30.636 C 122.58 29.559 123.751 29.151 124.75 29.151 C 125.653 29.151 126.08 29.348 126.617 29.62 C 126.469 30.869 125.429 31.814 124.189 31.825 Z M 135.813 24.499 L 133.459 30.536 L 133.385 30.536 L 130.947 24.499 L 128.741 24.499 L 132.4 32.938 L 130.314 37.629 L 132.449 37.629 L 138.079 24.499 Z M 117.36 33.408 L 119.41 33.408 L 119.41 19.489 L 117.36 19.489 Z\" fill=\"rgb(255,255,255)\"></path><g><defs><linearGradient id=\"idss9115454234_5g1673948333\" x1=\"0.9929756801595457\" x2=\"0.007024319840454263\" y1=\"0\" y2=\"1\"><stop offset=\"0\" stop-color=\"rgb(0,160,255)\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"rgb(0,227,255)\" stop-opacity=\"1\"></stop></linearGradient></defs><path d=\"M 11.451 8.389 C 11.134 8.737 10.951 9.267 10.951 9.961 L 10.951 34.585 C 10.951 35.279 11.134 35.81 11.462 36.143 L 11.547 36.218 L 25.144 22.422 L 25.144 22.114 L 11.536 8.314 Z\" fill=\"url(#idss9115454234_5g1673948333)\"></path></g><g><defs><linearGradient id=\"idss9115454234_6g43703969\" x1=\"1\" x2=\"0\" y1=\"0.4974874371859296\" y2=\"0.5025125628140704\"><stop offset=\"0\" stop-color=\"rgb(255,224,0)\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"rgb(255,156,0)\" stop-opacity=\"1\"></stop></linearGradient></defs><path d=\"M 29.669 27.034 L 25.133 22.433 L 25.133 22.111 L 29.669 17.509 L 29.767 17.57 L 35.131 20.664 C 36.667 21.541 36.667 22.991 35.131 23.88 L 29.767 26.973 Z\" fill=\"url(#idss9115454234_6g43703969)\"></path></g><g><defs><linearGradient id=\"idss9115454234_7g1458251021\" x1=\"0.9929868573982961\" x2=\"0.007013142601703881\" y1=\"0\" y2=\"1\"><stop offset=\"0\" stop-color=\"rgb(255,58,68)\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"rgb(195,17,98)\" stop-opacity=\"1\"></stop></linearGradient></defs><path d=\"M 29.767 26.973 L 25.133 22.272 L 11.451 36.154 C 11.952 36.698 12.792 36.76 13.731 36.229 L 29.767 26.973\" fill=\"url(#idss9115454234_7g1458251021)\"></path></g><g><defs><linearGradient id=\"idss9115454234_8g-2043038355\" x1=\"0.000021280112607879875\" x2=\"0.9999787198873922\" y1=\"0\" y2=\"1\"><stop offset=\"0\" stop-color=\"rgb(50,160,113)\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"rgb(0,240,118)\" stop-opacity=\"1\"></stop></linearGradient></defs><path d=\"M 29.767 17.57 L 13.731 8.328 C 12.792 7.784 11.95 7.859 11.451 8.403 L 25.133 22.272 Z\" fill=\"url(#idss9115454234_8g-2043038355)\"></path></g><path d=\"M 29.669 26.873 L 13.742 36.054 C 12.853 36.574 12.059 36.537 11.547 36.065 L 11.462 36.151 L 11.547 36.226 C 12.059 36.696 12.853 36.735 13.742 36.215 L 29.778 26.973 Z\" fill=\"rgb(0,0,0)\" opacity=\"0.2\"></path><path d=\"M 35.131 23.719 L 29.655 26.873 L 29.753 26.973 L 35.118 23.88 C 35.887 23.435 36.265 22.852 36.265 22.272 C 36.218 22.805 35.827 23.31 35.131 23.719 Z\" fill=\"rgb(0,0,0)\" opacity=\"0.12\"></path><path d=\"M 13.731 8.489 L 35.131 20.825 C 35.827 21.222 36.218 21.741 36.278 22.272 C 36.278 21.691 35.901 21.108 35.131 20.664 L 13.731 8.328 C 12.196 7.437 10.951 8.181 10.951 9.961 L 10.951 10.122 C 10.951 8.339 12.196 7.609 13.731 8.489 Z\" fill=\"rgb(255,255,255)\" opacity=\"0.25\"></path></svg>',svgContentId:9115454234}},children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-govek8 framer-j199ke\",\"data-framer-name\":\"Google_Play_Store_badge_EN\",layout:\"position\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 200 59\"><path d=\"M 192.583 59.688 L 7.41 59.688 C 3.326 59.688 0 56.324 0 52.227 L 0 7.461 C 0 3.349 3.326 0 7.41 0 L 192.583 0 C 196.663 0 199.993 3.349 199.993 7.461 L 199.993 52.227 C 199.993 56.324 196.663 59.688 192.583 59.688 Z\" fill=\"rgb(0,0,0)\"></path><path d=\"M 192.583 1.195 C 196.008 1.195 198.812 4.011 198.812 7.461 L 198.812 52.227 C 198.812 55.677 196.026 58.494 192.583 58.494 L 7.41 58.494 C 3.985 58.494 1.181 55.677 1.181 52.227 L 1.181 7.461 C 1.181 4.011 3.966 1.195 7.41 1.195 Z M 192.583 0 L 7.41 0 C 3.326 0 0 3.364 0 7.461 L 0 52.227 C 0 56.339 3.326 59.688 7.41 59.688 L 192.583 59.688 C 196.663 59.688 199.993 56.339 199.993 52.227 L 199.993 7.461 C 199.993 3.364 196.663 0 192.583 0 Z\" fill=\"rgb(166,166,166)\"></path><path d=\"M 105.357 19.745 C 104.021 19.745 102.896 19.272 102.005 18.342 C 101.122 17.438 100.629 16.191 100.651 14.918 C 100.651 13.56 101.107 12.41 102.005 11.499 C 102.892 10.568 104.018 10.096 105.353 10.096 C 106.674 10.096 107.8 10.568 108.705 11.499 C 109.603 12.44 110.059 13.59 110.059 14.918 C 110.044 16.28 109.588 17.43 108.705 18.338 C 107.818 19.276 106.692 19.745 105.357 19.745 Z M 65.618 19.745 C 64.312 19.745 63.179 19.28 62.252 18.361 C 61.332 17.445 60.865 16.288 60.865 14.922 C 60.865 13.556 61.332 12.399 62.252 11.484 C 63.16 10.565 64.294 10.099 65.618 10.099 C 66.266 10.099 66.895 10.23 67.498 10.494 C 68.091 10.751 68.572 11.1 68.929 11.528 L 69.018 11.636 L 68.021 12.626 L 67.918 12.503 C 67.355 11.826 66.6 11.495 65.603 11.495 C 64.713 11.495 63.937 11.815 63.297 12.447 C 62.653 13.084 62.325 13.917 62.325 14.926 C 62.325 15.934 62.653 16.768 63.297 17.404 C 63.937 18.037 64.713 18.357 65.603 18.357 C 66.553 18.357 67.351 18.037 67.973 17.404 C 68.341 17.032 68.569 16.511 68.65 15.852 L 65.453 15.852 L 65.453 14.461 L 70.022 14.461 L 70.04 14.587 C 70.074 14.822 70.107 15.064 70.107 15.287 C 70.107 16.571 69.724 17.609 68.966 18.375 C 68.105 19.283 66.979 19.745 65.618 19.745 Z M 118.455 19.548 L 117.046 19.548 L 112.73 12.563 L 112.767 13.821 L 112.767 19.544 L 111.358 19.544 L 111.358 10.297 L 112.965 10.297 L 113.01 10.367 L 117.068 16.946 L 117.031 15.692 L 117.031 10.297 L 118.455 10.297 Z M 94.768 19.548 L 93.341 19.548 L 93.341 11.688 L 90.865 11.688 L 90.865 10.297 L 97.241 10.297 L 97.241 11.688 L 94.765 11.688 L 94.765 19.548 Z M 89.702 19.548 L 88.278 19.548 L 88.278 10.297 L 89.702 10.297 Z M 81.7 19.548 L 80.276 19.548 L 80.276 11.688 L 77.8 11.688 L 77.8 10.297 L 84.176 10.297 L 84.176 11.688 L 81.7 11.688 Z M 76.898 19.533 L 71.439 19.533 L 71.439 10.297 L 76.898 10.297 L 76.898 11.688 L 72.866 11.688 L 72.866 14.226 L 76.505 14.226 L 76.505 15.603 L 72.866 15.603 L 72.866 18.141 L 76.898 18.141 Z M 103.05 17.386 C 103.687 18.029 104.459 18.353 105.357 18.353 C 106.28 18.353 107.035 18.037 107.664 17.386 C 108.289 16.753 108.606 15.923 108.606 14.922 C 108.606 13.921 108.289 13.088 107.667 12.459 C 107.031 11.815 106.255 11.491 105.361 11.491 C 104.437 11.491 103.683 11.807 103.057 12.459 C 102.432 13.091 102.116 13.921 102.116 14.922 C 102.116 15.923 102.428 16.757 103.05 17.386 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 100.519 32.464 C 97.042 32.464 94.224 35.132 94.224 38.812 C 94.224 42.459 97.06 45.161 100.519 45.161 C 103.996 45.161 106.814 42.474 106.814 38.812 C 106.814 35.132 103.996 32.464 100.519 32.464 Z M 100.519 42.645 C 98.617 42.645 96.979 41.053 96.979 38.797 C 96.979 36.509 98.62 34.95 100.519 34.95 C 102.421 34.95 104.058 36.509 104.058 38.797 C 104.062 41.067 102.421 42.645 100.519 42.645 Z M 86.784 32.464 C 83.308 32.464 80.489 35.132 80.489 38.812 C 80.489 42.459 83.326 45.161 86.784 45.161 C 90.261 45.161 93.079 42.474 93.079 38.812 C 93.079 35.132 90.258 32.464 86.784 32.464 Z M 86.784 42.645 C 84.882 42.645 83.245 41.053 83.245 38.797 C 83.245 36.509 84.886 34.95 86.784 34.95 C 88.687 34.95 90.324 36.509 90.324 38.797 C 90.324 41.067 88.687 42.645 86.784 42.645 Z M 70.442 34.403 L 70.442 37.089 L 76.818 37.089 C 76.623 38.597 76.13 39.709 75.375 40.472 C 74.441 41.417 72.999 42.444 70.456 42.444 C 66.538 42.444 63.473 39.244 63.473 35.281 C 63.473 31.318 66.538 28.118 70.456 28.118 C 72.572 28.118 74.113 28.962 75.258 30.041 L 77.141 28.136 C 75.552 26.596 73.436 25.416 70.471 25.416 C 65.096 25.416 60.585 29.844 60.585 35.266 C 60.585 40.703 65.092 45.116 70.471 45.116 C 73.374 45.116 75.552 44.156 77.274 42.348 C 79.029 40.573 79.584 38.068 79.584 36.047 C 79.584 35.419 79.536 34.853 79.437 34.373 L 70.438 34.373 C 70.442 34.369 70.442 34.403 70.442 34.403 Z M 137.288 36.494 C 136.762 35.069 135.173 32.449 131.913 32.449 C 128.683 32.449 125.997 35.02 125.997 38.797 C 125.997 42.362 128.653 45.146 132.226 45.146 C 135.096 45.146 136.766 43.371 137.454 42.329 L 135.324 40.885 C 134.617 41.946 133.635 42.642 132.241 42.642 C 130.831 42.642 129.845 41.994 129.191 40.718 L 137.583 37.201 C 137.583 37.205 137.288 36.494 137.288 36.494 Z M 128.731 38.615 C 128.664 36.163 130.614 34.916 132.009 34.916 C 133.109 34.916 134.025 35.463 134.338 36.26 Z M 121.913 44.766 L 124.669 44.766 L 124.669 26.116 L 121.913 26.116 Z M 117.388 33.874 L 117.288 33.874 C 116.667 33.126 115.486 32.449 113.977 32.449 C 110.846 32.449 107.962 35.236 107.962 38.816 C 107.962 42.381 110.831 45.135 113.977 45.135 C 115.467 45.135 116.667 44.454 117.288 43.691 L 117.388 43.691 L 117.388 44.603 C 117.388 47.025 116.107 48.331 114.043 48.331 C 112.355 48.331 111.306 47.103 110.879 46.076 L 108.484 47.088 C 109.172 48.763 111.008 50.836 114.04 50.836 C 117.27 50.836 120.007 48.912 120.007 44.219 L 120.007 32.829 L 117.402 32.829 L 117.402 33.874 Z M 114.224 42.645 C 112.322 42.645 110.732 41.038 110.732 38.816 C 110.732 36.576 112.322 34.953 114.224 34.953 C 116.107 34.953 117.568 36.595 117.568 38.816 C 117.586 41.038 116.111 42.645 114.224 42.645 Z M 150.191 26.116 L 143.602 26.116 L 143.602 44.766 L 146.358 44.766 L 146.358 37.703 L 150.195 37.703 C 153.245 37.703 156.244 35.467 156.244 31.917 C 156.244 28.367 153.256 26.116 150.191 26.116 Z M 150.272 35.099 L 146.354 35.099 L 146.354 28.698 L 150.272 28.698 C 152.336 28.698 153.503 30.421 153.503 31.898 C 153.503 33.361 152.322 35.099 150.272 35.099 Z M 167.288 32.43 C 165.287 32.43 163.223 33.327 162.369 35.281 L 164.812 36.308 C 165.338 35.281 166.302 34.931 167.322 34.931 C 168.749 34.931 170.191 35.794 170.224 37.335 L 170.224 37.532 C 169.731 37.249 168.65 36.818 167.355 36.818 C 164.717 36.818 162.042 38.277 162.042 41.012 C 162.042 43.516 164.205 45.124 166.615 45.124 C 168.466 45.124 169.485 44.279 170.121 43.3 L 170.221 43.3 L 170.221 44.744 L 172.877 44.744 L 172.877 37.599 C 172.877 34.272 170.434 32.43 167.288 32.43 Z M 166.943 42.645 C 166.041 42.645 164.779 42.199 164.779 41.053 C 164.779 39.609 166.354 39.062 167.697 39.062 C 168.911 39.062 169.485 39.326 170.206 39.691 C 170.007 41.365 168.609 42.63 166.943 42.645 Z M 182.568 32.829 L 179.404 40.919 L 179.305 40.919 L 176.026 32.829 L 173.061 32.829 L 177.98 44.137 L 175.177 50.423 L 178.046 50.423 L 185.614 32.829 Z M 157.763 44.766 L 160.519 44.766 L 160.519 26.116 L 157.763 26.116 Z\" fill=\"rgb(255,255,255)\"></path><g><defs><linearGradient id=\"idss10182499638_5g1673948333\" x1=\"0.9929756801595457\" x2=\"0.007024319840454263\" y1=\"0\" y2=\"1\"><stop offset=\"0\" stop-color=\"rgb(0,160,255)\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"rgb(0,227,255)\" stop-opacity=\"1\"></stop></linearGradient></defs><path d=\"M 15.394 11.242 C 14.967 11.707 14.72 12.418 14.72 13.348 L 14.72 46.344 C 14.72 47.274 14.967 47.985 15.408 48.432 L 15.522 48.532 L 33.801 30.045 L 33.801 29.632 L 15.508 11.141 Z\" fill=\"url(#idss10182499638_5g1673948333)\"></path></g><g><defs><linearGradient id=\"idss10182499638_6g43703969\" x1=\"1\" x2=\"0\" y1=\"0.4974874371859296\" y2=\"0.5025125628140704\"><stop offset=\"0\" stop-color=\"rgb(255,224,0)\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"rgb(255,156,0)\" stop-opacity=\"1\"></stop></linearGradient></defs><path d=\"M 39.882 36.226 L 33.786 30.06 L 33.786 29.628 L 39.882 23.462 L 40.015 23.544 L 47.226 27.69 C 49.29 28.866 49.29 30.808 47.226 31.999 L 40.015 36.144 Z\" fill=\"url(#idss10182499638_6g43703969)\"></path></g><g><defs><linearGradient id=\"idss10182499638_7g1458251021\" x1=\"0.9929868573982961\" x2=\"0.007013142601703881\" y1=\"0\" y2=\"1\"><stop offset=\"0\" stop-color=\"rgb(255,58,68)\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"rgb(195,17,98)\" stop-opacity=\"1\"></stop></linearGradient></defs><path d=\"M 40.015 36.144 L 33.786 29.844 L 15.394 48.447 C 16.067 49.176 17.196 49.258 18.458 48.547 L 40.015 36.144\" fill=\"url(#idss10182499638_7g1458251021)\"></path></g><g><defs><linearGradient id=\"idss10182499638_8g-2043038355\" x1=\"0.000021280112607879875\" x2=\"0.9999787198873922\" y1=\"0\" y2=\"1\"><stop offset=\"0\" stop-color=\"rgb(50,160,113)\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"rgb(0,240,118)\" stop-opacity=\"1\"></stop></linearGradient></defs><path d=\"M 40.015 23.544 L 18.458 11.16 C 17.196 10.431 16.063 10.531 15.394 11.26 L 33.786 29.844 Z\" fill=\"url(#idss10182499638_8g-2043038355)\"></path></g><path d=\"M 39.882 36.01 L 18.473 48.313 C 17.277 49.009 16.21 48.96 15.522 48.328 L 15.408 48.443 L 15.522 48.543 C 16.21 49.172 17.277 49.224 18.473 48.528 L 40.029 36.144 Z\" fill=\"rgb(0,0,0)\" opacity=\"0.2\"></path><path d=\"M 47.226 31.783 L 39.864 36.01 L 39.996 36.144 L 47.208 31.999 C 48.241 31.403 48.749 30.622 48.749 29.844 C 48.687 30.559 48.16 31.236 47.226 31.783 Z\" fill=\"rgb(0,0,0)\" opacity=\"0.12\"></path><path d=\"M 18.458 11.376 L 47.226 27.905 C 48.16 28.438 48.687 29.133 48.767 29.844 C 48.767 29.066 48.26 28.285 47.226 27.69 L 18.458 11.16 C 16.394 9.965 14.72 10.963 14.72 13.348 L 14.72 13.564 C 14.72 11.175 16.394 10.196 18.458 11.376 Z\" fill=\"rgb(255,255,255)\" opacity=\"0.25\"></path></svg>',svgContentId:10182499638,withExternalLayout:true})})})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"kSkFDz5WG\"},implicitPathVariables:undefined},{href:{webPageId:\"kSkFDz5WG\"},implicitPathVariables:undefined},{href:{webPageId:\"kSkFDz5WG\"},implicitPathVariables:undefined},{href:{webPageId:\"kSkFDz5WG\"},implicitPathVariables:undefined},{href:{webPageId:\"kSkFDz5WG\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BWXLAHg34:{y:(componentViewport?.y||0)+0+1298.2+56+0+0+0+0+1078+1.5+0+251},gDNDy7ppB:{y:(componentViewport?.y||0)+0+1298.2+56+0+0+0+0+1078+1.5+0+251},gvy_GPf11:{y:(componentViewport?.y||0)+0+1397.2+56+0+0+0+0+1078+1.5+0+251},kTX5ATiZU:{y:(componentViewport?.y||0)+0+1199+56+0+0+0+0+1244+0+311+0+236.8}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:41,y:(componentViewport?.y||0)+0+1176+56+0+0+0+0+1273+64+0+321,children:/*#__PURE__*/_jsx(Container,{className:\"framer-14r45g7-container\",nodeId:\"jQg5jp_02\",scopeId:\"uV6Uzs6GE\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BWXLAHg34:{fzPQj5vxM:resolvedLinks2[3]},gDNDy7ppB:{fzPQj5vxM:resolvedLinks2[4]},gvy_GPf11:{fzPQj5vxM:resolvedLinks2[1]},kTX5ATiZU:{fzPQj5vxM:resolvedLinks2[2]}},children:/*#__PURE__*/_jsx(PrimaryButton,{BlJNMfRrN:true,fzPQj5vxM:resolvedLinks2[0],height:\"100%\",icFgveKzp:\"arrow-right\",id:\"jQg5jp_02\",layoutId:\"jQg5jp_02\",qWQ35JEj6:\"Go to Blackfort Wallet\",variant:\"A0qnGCFfC\",width:\"100%\"})})})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1e9cf58\",\"data-framer-name\":\"Right content\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BWXLAHg34:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1298.2+56+0+0+0+0+1078+0+0+0),pixelHeight:1115,pixelWidth:1659,positionX:\"center\",positionY:\"center\",sizes:\"379px\",src:\"https://framerusercontent.com/images/Bz0IcOvv0VFCcGPTtFFi8zNnYo.png\",srcSet:\"https://framerusercontent.com/images/Bz0IcOvv0VFCcGPTtFFi8zNnYo.png?scale-down-to=512 512w,https://framerusercontent.com/images/Bz0IcOvv0VFCcGPTtFFi8zNnYo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Bz0IcOvv0VFCcGPTtFFi8zNnYo.png 1659w\"}},gDNDy7ppB:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1298.2+56+0+0+0+0+1078+0+0+0),pixelHeight:1115,pixelWidth:1659,positionX:\"center\",positionY:\"center\",sizes:\"379px\",src:\"https://framerusercontent.com/images/Bz0IcOvv0VFCcGPTtFFi8zNnYo.png\",srcSet:\"https://framerusercontent.com/images/Bz0IcOvv0VFCcGPTtFFi8zNnYo.png?scale-down-to=512 512w,https://framerusercontent.com/images/Bz0IcOvv0VFCcGPTtFFi8zNnYo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Bz0IcOvv0VFCcGPTtFFi8zNnYo.png 1659w\"}},gvy_GPf11:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1397.2+56+0+0+0+0+1078+0+0+0),pixelHeight:1115,pixelWidth:1659,positionX:\"center\",positionY:\"center\",sizes:\"379px\",src:\"https://framerusercontent.com/images/Bz0IcOvv0VFCcGPTtFFi8zNnYo.png\",srcSet:\"https://framerusercontent.com/images/Bz0IcOvv0VFCcGPTtFFi8zNnYo.png?scale-down-to=512 512w,https://framerusercontent.com/images/Bz0IcOvv0VFCcGPTtFFi8zNnYo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Bz0IcOvv0VFCcGPTtFFi8zNnYo.png 1659w\"}},kTX5ATiZU:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1199+56+0+0+0+0+1244+0+0+0+0),pixelHeight:1115,pixelWidth:1659,positionX:\"center\",positionY:\"center\",sizes:\"318px\",src:\"https://framerusercontent.com/images/Bz0IcOvv0VFCcGPTtFFi8zNnYo.png\",srcSet:\"https://framerusercontent.com/images/Bz0IcOvv0VFCcGPTtFFi8zNnYo.png?scale-down-to=512 512w,https://framerusercontent.com/images/Bz0IcOvv0VFCcGPTtFFi8zNnYo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Bz0IcOvv0VFCcGPTtFFi8zNnYo.png 1659w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1176+56+0+0+0+0+1273+0+0+0),pixelHeight:1115,pixelWidth:1659,positionX:\"center\",positionY:\"center\",sizes:\"630px\",src:\"https://framerusercontent.com/images/Bz0IcOvv0VFCcGPTtFFi8zNnYo.png\",srcSet:\"https://framerusercontent.com/images/Bz0IcOvv0VFCcGPTtFFi8zNnYo.png?scale-down-to=512 512w,https://framerusercontent.com/images/Bz0IcOvv0VFCcGPTtFFi8zNnYo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Bz0IcOvv0VFCcGPTtFFi8zNnYo.png 1659w\"},className:\"framer-1dqfsq5\"})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1kcjui1\",\"data-framer-name\":\"About\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1wqzqdv\",\"data-framer-name\":\"Right content\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BWXLAHg34:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1298.2+56+0+0+0+0+1447+68+0+0),pixelHeight:1449,pixelWidth:1848,positionX:\"center\",positionY:\"center\",sizes:\"379px\",src:\"https://framerusercontent.com/images/NKtzy2kRhb8IwhhXdSu9Oz7CwzY.png\",srcSet:\"https://framerusercontent.com/images/NKtzy2kRhb8IwhhXdSu9Oz7CwzY.png?scale-down-to=512 512w,https://framerusercontent.com/images/NKtzy2kRhb8IwhhXdSu9Oz7CwzY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/NKtzy2kRhb8IwhhXdSu9Oz7CwzY.png 1848w\"}},gDNDy7ppB:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1298.2+56+0+0+0+0+1447+68+0+0),pixelHeight:1449,pixelWidth:1848,positionX:\"center\",positionY:\"center\",sizes:\"379px\",src:\"https://framerusercontent.com/images/NKtzy2kRhb8IwhhXdSu9Oz7CwzY.png\",srcSet:\"https://framerusercontent.com/images/NKtzy2kRhb8IwhhXdSu9Oz7CwzY.png?scale-down-to=512 512w,https://framerusercontent.com/images/NKtzy2kRhb8IwhhXdSu9Oz7CwzY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/NKtzy2kRhb8IwhhXdSu9Oz7CwzY.png 1848w\"}},gvy_GPf11:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1397.2+56+0+0+0+0+1447+68+0+0),pixelHeight:1449,pixelWidth:1848,positionX:\"center\",positionY:\"center\",sizes:\"379px\",src:\"https://framerusercontent.com/images/NKtzy2kRhb8IwhhXdSu9Oz7CwzY.png\",srcSet:\"https://framerusercontent.com/images/NKtzy2kRhb8IwhhXdSu9Oz7CwzY.png?scale-down-to=512 512w,https://framerusercontent.com/images/NKtzy2kRhb8IwhhXdSu9Oz7CwzY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/NKtzy2kRhb8IwhhXdSu9Oz7CwzY.png 1848w\"}},kTX5ATiZU:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1199+56+0+0+0+0+1906.8+0+0+0+0),pixelHeight:1449,pixelWidth:1848,positionX:\"center\",positionY:\"center\",sizes:\"318px\",src:\"https://framerusercontent.com/images/NKtzy2kRhb8IwhhXdSu9Oz7CwzY.png\",srcSet:\"https://framerusercontent.com/images/NKtzy2kRhb8IwhhXdSu9Oz7CwzY.png?scale-down-to=512 512w,https://framerusercontent.com/images/NKtzy2kRhb8IwhhXdSu9Oz7CwzY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/NKtzy2kRhb8IwhhXdSu9Oz7CwzY.png 1848w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1176+56+0+0+0+0+1837+12.5+0+0),pixelHeight:1449,pixelWidth:1848,positionX:\"center\",positionY:\"center\",sizes:\"522px\",src:\"https://framerusercontent.com/images/NKtzy2kRhb8IwhhXdSu9Oz7CwzY.png\",srcSet:\"https://framerusercontent.com/images/NKtzy2kRhb8IwhhXdSu9Oz7CwzY.png?scale-down-to=512 512w,https://framerusercontent.com/images/NKtzy2kRhb8IwhhXdSu9Oz7CwzY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/NKtzy2kRhb8IwhhXdSu9Oz7CwzY.png 1848w\"},className:\"framer-17shdp8\",style:{rotate:-2}})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-55093z\",\"data-framer-name\":\"Left content\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BWXLAHg34:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:271,intrinsicWidth:1196,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1298.2+56+0+0+0+0+1447+111.5+0+0),pixelHeight:274,pixelWidth:1188,sizes:\"327px\",src:\"https://framerusercontent.com/images/zvqdV8ave7EykaCB3KEfjm4yKw.png\",srcSet:\"https://framerusercontent.com/images/zvqdV8ave7EykaCB3KEfjm4yKw.png?scale-down-to=512 512w,https://framerusercontent.com/images/zvqdV8ave7EykaCB3KEfjm4yKw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/zvqdV8ave7EykaCB3KEfjm4yKw.png 1188w\"}},gDNDy7ppB:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:271,intrinsicWidth:1196,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1298.2+56+0+0+0+0+1447+111.5+0+0),pixelHeight:274,pixelWidth:1188,sizes:\"327px\",src:\"https://framerusercontent.com/images/zvqdV8ave7EykaCB3KEfjm4yKw.png\",srcSet:\"https://framerusercontent.com/images/zvqdV8ave7EykaCB3KEfjm4yKw.png?scale-down-to=512 512w,https://framerusercontent.com/images/zvqdV8ave7EykaCB3KEfjm4yKw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/zvqdV8ave7EykaCB3KEfjm4yKw.png 1188w\"}},gvy_GPf11:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:271,intrinsicWidth:1196,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1397.2+56+0+0+0+0+1447+111.5+0+0),pixelHeight:274,pixelWidth:1188,sizes:\"327px\",src:\"https://framerusercontent.com/images/zvqdV8ave7EykaCB3KEfjm4yKw.png\",srcSet:\"https://framerusercontent.com/images/zvqdV8ave7EykaCB3KEfjm4yKw.png?scale-down-to=512 512w,https://framerusercontent.com/images/zvqdV8ave7EykaCB3KEfjm4yKw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/zvqdV8ave7EykaCB3KEfjm4yKw.png 1188w\"}},kTX5ATiZU:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:271,intrinsicWidth:1196,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1199+56+0+0+0+0+1906.8+0+311+0+0),pixelHeight:274,pixelWidth:1188,sizes:\"299px\",src:\"https://framerusercontent.com/images/zvqdV8ave7EykaCB3KEfjm4yKw.png\",srcSet:\"https://framerusercontent.com/images/zvqdV8ave7EykaCB3KEfjm4yKw.png?scale-down-to=512 512w,https://framerusercontent.com/images/zvqdV8ave7EykaCB3KEfjm4yKw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/zvqdV8ave7EykaCB3KEfjm4yKw.png 1188w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:271,intrinsicWidth:1196,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1176+56+0+0+0+0+1837+85.5+0+0),pixelHeight:274,pixelWidth:1188,sizes:\"553px\",src:\"https://framerusercontent.com/images/zvqdV8ave7EykaCB3KEfjm4yKw.png\",srcSet:\"https://framerusercontent.com/images/zvqdV8ave7EykaCB3KEfjm4yKw.png?scale-down-to=512 512w,https://framerusercontent.com/images/zvqdV8ave7EykaCB3KEfjm4yKw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/zvqdV8ave7EykaCB3KEfjm4yKw.png 1188w\"},className:\"framer-1a23clu\",\"data-framer-name\":\"BLK_LOGO_WORDMARK_II_WALLET_NEG\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO0FCQyBTaW1vbiBNb25vIFJlZ3VsYXI=\",\"--framer-font-family\":'\"ABC Simon Mono Regular\", \"ABC Simon Mono Regular Placeholder\", monospace',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"115%\",\"--framer-text-color\":\"var(--token-c14065e7-5a4d-4109-85cf-bca8f791260a, rgb(255, 255, 255))\"},children:\"Reshaping the property market through asset tokenization, enabling secure and transparent ownership of real estate properties via blockchain technology.\"})}),className:\"framer-122ed6s\",fonts:[\"CUSTOM;ABC Simon Mono Regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BWXLAHg34:{y:(componentViewport?.y||0)+0+1298.2+56+0+0+0+0+1447+111.5+0+167},gDNDy7ppB:{y:(componentViewport?.y||0)+0+1298.2+56+0+0+0+0+1447+111.5+0+167},gvy_GPf11:{y:(componentViewport?.y||0)+0+1397.2+56+0+0+0+0+1447+111.5+0+167},kTX5ATiZU:{y:(componentViewport?.y||0)+0+1199+56+0+0+0+0+1906.8+0+311+0+161}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:41,y:(componentViewport?.y||0)+0+1176+56+0+0+0+0+1837+85.5+0+219,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1pd4boe-container\",nodeId:\"XGlqZaD_o\",scopeId:\"uV6Uzs6GE\",children:/*#__PURE__*/_jsx(PrimaryButton,{BlJNMfRrN:false,height:\"100%\",icFgveKzp:\"arrow-right\",id:\"XGlqZaD_o\",layoutId:\"XGlqZaD_o\",qWQ35JEj6:\"Coming soon\",variant:\"A0qnGCFfC\",width:\"100%\"})})})})]})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ywdu7k\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-hybqkz\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-fstml7\",\"data-framer-name\":\"About\"})})})]}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-g811sw\",\"data-framer-name\":\"About section\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-mvadq\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1yo8qrh\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-e70ccp\",\"data-framer-name\":\"About\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1fwkq91\",\"data-framer-name\":\"Left content\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BWXLAHg34:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO0FCQyBXYWx0ZXIgTmV1ZSBFeHRyYWJvbGQ=\",\"--framer-font-family\":'\"ABC Walter Neue Extrabold\", \"ABC Walter Neue Extrabold Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"115%\",\"--framer-text-color\":\"rgb(255, 255, 255)\",\"--framer-text-transform\":\"uppercase\"},children:\"SIGN UP TO OUR NEWSLETTER\"})})},gDNDy7ppB:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO0FCQyBXYWx0ZXIgTmV1ZSBFeHRyYWJvbGQ=\",\"--framer-font-family\":'\"ABC Walter Neue Extrabold\", \"ABC Walter Neue Extrabold Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"115%\",\"--framer-text-color\":\"rgb(255, 255, 255)\",\"--framer-text-transform\":\"uppercase\"},children:\"SIGN UP TO OUR NEWSLETTER\"})})},gvy_GPf11:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO0FCQyBXYWx0ZXIgTmV1ZSBFeHRyYWJvbGQ=\",\"--framer-font-family\":'\"ABC Walter Neue Extrabold\", \"ABC Walter Neue Extrabold Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"115%\",\"--framer-text-color\":\"rgb(255, 255, 255)\",\"--framer-text-transform\":\"uppercase\"},children:\"SIGN UP TO OUR NEWSLETTER\"})})},kTX5ATiZU:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO0FCQyBXYWx0ZXIgTmV1ZSBFeHRyYWJvbGQ=\",\"--framer-font-family\":'\"ABC Walter Neue Extrabold\", \"ABC Walter Neue Extrabold Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"115%\",\"--framer-text-color\":\"rgb(255, 255, 255)\",\"--framer-text-transform\":\"uppercase\"},children:\"SIGN UP TO OUR NEWSLETTER\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO0FCQyBXYWx0ZXIgTmV1ZSBFeHRyYWJvbGQ=\",\"--framer-font-family\":'\"ABC Walter Neue Extrabold\", \"ABC Walter Neue Extrabold Placeholder\", sans-serif',\"--framer-font-size\":\"64px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"115%\",\"--framer-text-color\":\"rgb(255, 255, 255)\",\"--framer-text-transform\":\"uppercase\"},children:\"SIGN UP TO OUR NEWSLETTER\"})}),className:\"framer-1odj6gu\",fonts:[\"CUSTOM;ABC Walter Neue Extrabold\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1tkd2m9\",\"data-framer-name\":\"Right content\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-aznwdi-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"wNXr13ZpY\",scopeId:\"uV6Uzs6GE\",children:/*#__PURE__*/_jsx(Mailchimp,{button:{buttonFont:{},buttonPadding:15,buttonPaddingBottom:15,buttonPaddingLeft:15,buttonPaddingPerSide:false,buttonPaddingRight:15,buttonPaddingTop:15,color:\"rgb(255, 255, 255)\",fill:\"rgb(51, 51, 51)\",insetWhenDocked:5,isDocked:false,label:\"Subscribe\",shouldAppear:true,widthWhenDocked:100},font:{},gap:10,height:\"100%\",id:\"wNXr13ZpY\",input:{borderRadius:8,color:\"rgb(0, 0, 0)\",fill:\"rgb(235, 235, 235)\",fixedHeight:50,height:true,padding:15,paddingBottom:15,paddingLeft:15,paddingPerSide:false,paddingRight:15,paddingTop:15,placeholder:\"name@email.com\",placeholderColor:\"rgba(0, 0, 0, 0.3)\"},layout:\"vertical\",layoutId:\"wNXr13ZpY\",mailchimpURL:\"https://exchange.us18.list-manage.com/subscribe/post?u=887512549b797a2a62f1c6d12&amp;id=5949bdf81e&amp;f_id=00eca5e6f0\",redirectAs:\"overlay\",style:{width:\"100%\"},width:\"100%\"})})})})]})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BWXLAHg34:{y:(componentViewport?.y||0)+0+3501.3999999999996},gDNDy7ppB:{y:(componentViewport?.y||0)+0+3501.3999999999996},gvy_GPf11:{y:(componentViewport?.y||0)+0+3600.3999999999996},kTX5ATiZU:{y:(componentViewport?.y||0)+0+4144.2}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:617,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+3787.6,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1e96sqs-container\",nodeId:\"F5BBM8orC\",scopeId:\"uV6Uzs6GE\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BWXLAHg34:{variant:\"ICX8iJ7yk\"},gDNDy7ppB:{variant:\"ICX8iJ7yk\"},gvy_GPf11:{variant:\"ICX8iJ7yk\"},kTX5ATiZU:{variant:\"f234AAh_i\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"F5BBM8orC\",layoutId:\"F5BBM8orC\",style:{width:\"100%\"},variant:\"hTD7zfFA_\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-D3lMi.framer-j199ke, .framer-D3lMi .framer-j199ke { display: block; }\",\".framer-D3lMi.framer-zo3ycf { align-content: center; align-items: center; background-color: var(--token-8139056f-6eb1-43e3-a0ba-39ab18aa1fb5, #19171e); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1440px; }\",\".framer-D3lMi .framer-qprkgg-container { flex: none; height: auto; left: 50%; position: fixed; top: 0px; transform: translateX(-50%); width: 100%; z-index: 2; }\",\".framer-D3lMi .framer-8kfg20 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-end; overflow: hidden; padding: 222px 0px 120px 0px; position: relative; width: 100%; }\",\".framer-D3lMi .framer-mlcn8m { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 38px; height: 740px; justify-content: center; max-width: 1320px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-D3lMi .framer-11jgpal { 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: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-D3lMi .framer-1507mfv { display: grid; flex: none; gap: 10px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(2, minmax(50px, 1fr)); grid-template-rows: repeat(1, minmax(0, 1fr)); height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-D3lMi .framer-1kdings { -webkit-user-select: none; align-self: start; flex: none; height: 100%; justify-self: start; pointer-events: auto; position: relative; user-select: none; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-D3lMi .framer-1w2ogb9 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-D3lMi .framer-10e25ec-container, .framer-D3lMi .framer-6v2oc6-container, .framer-D3lMi .framer-19a9mco-container, .framer-D3lMi .framer-14r45g7-container, .framer-D3lMi .framer-1pd4boe-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-D3lMi .framer-y435ku { -webkit-backdrop-filter: blur(20px); align-content: center; align-items: center; backdrop-filter: blur(20px); background-color: rgba(78, 78, 78, 0.2); border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 41px; height: min-content; justify-content: flex-start; overflow: visible; padding: 24px 32px 24px 32px; position: relative; width: 100%; }\",\".framer-D3lMi .framer-514zj7 { -webkit-user-select: none; flex: none; height: auto; pointer-events: auto; position: relative; user-select: none; white-space: pre; width: auto; }\",\".framer-D3lMi .framer-hjyr53 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: 1px; }\",\".framer-D3lMi .framer-p40jzr { flex: none; height: 53px; position: relative; width: 154px; }\",\".framer-D3lMi .framer-47p86e { flex: none; height: 50px; position: relative; width: 159px; }\",\".framer-D3lMi .framer-s16jqb { -webkit-user-select: none; flex: 1 0 0px; height: auto; pointer-events: auto; position: relative; user-select: none; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-D3lMi .framer-19n59oj { -webkit-backdrop-filter: blur(20px); align-content: center; align-items: center; backdrop-filter: blur(20px); background-color: rgba(78, 78, 78, 0.2); border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 41px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 32px 0px 32px; position: relative; width: 100%; }\",\".framer-D3lMi .framer-d42bz3-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-D3lMi .framer-12ehtgd { align-content: center; align-items: center; background-color: var(--token-8139056f-6eb1-43e3-a0ba-39ab18aa1fb5, #000000); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 8px 0px 8px 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-D3lMi .framer-1hmt6n2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; max-width: 1320px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-D3lMi .framer-9d129x-container { flex: none; height: 78px; position: relative; width: 100%; }\",\".framer-D3lMi .framer-1kstmd7 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-D3lMi .framer-1xch2ox, .framer-D3lMi .framer-1mb7mj6, .framer-D3lMi .framer-ida5pp { aspect-ratio: 4.335766423357664 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 30px); overflow: visible; position: relative; width: 132px; }\",\".framer-D3lMi .framer-1dd3a3j { aspect-ratio: 4.413284132841328 / 1; flex: none; height: 30px; overflow: visible; position: relative; width: var(--framer-aspect-ratio-supported, 132px); }\",\".framer-D3lMi .framer-1j1a3mx { aspect-ratio: 4.3321167883211675 / 1; flex: none; height: 30px; overflow: visible; position: relative; width: var(--framer-aspect-ratio-supported, 132px); }\",\".framer-D3lMi .framer-133c66a { aspect-ratio: 4.3837638376383765 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 30px); overflow: visible; position: relative; width: 132px; }\",\".framer-D3lMi .framer-kkc5zd { aspect-ratio: 4.396296296296296 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 30px); overflow: visible; position: relative; width: 132px; }\",\".framer-D3lMi .framer-1lb8kzr { align-content: center; align-items: center; background-color: #000000; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 56px 0px 56px 0px; position: relative; width: 100%; }\",\".framer-D3lMi .framer-c4smxe, .framer-D3lMi .framer-ywdu7k, .framer-D3lMi .framer-mvadq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: center; max-width: 1320px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-D3lMi .framer-c6de4z { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 74px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-D3lMi .framer-rx9jil, .framer-D3lMi .framer-1etu4oy, .framer-D3lMi .framer-1hzvzgr, .framer-D3lMi .framer-1339h8i, .framer-D3lMi .framer-122ed6s, .framer-D3lMi .framer-1odj6gu { -webkit-user-select: none; flex: none; height: auto; pointer-events: auto; position: relative; user-select: none; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-D3lMi .framer-h02c03, .framer-D3lMi .framer-1j9kodr { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-D3lMi .framer-1546vs7, .framer-D3lMi .framer-1vrucrh, .framer-D3lMi .framer-1g4eodq, .framer-D3lMi .framer-55093z { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 35px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-D3lMi .framer-pp0gn8, .framer-D3lMi .framer-li7t4w, .framer-D3lMi .framer-1q686ht, .framer-D3lMi .framer-1a23clu { aspect-ratio: 4.413284132841328 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 125px); overflow: visible; position: relative; width: 553px; }\",\".framer-D3lMi .framer-1is294o, .framer-D3lMi .framer-1e9cf58, .framer-D3lMi .framer-1wqzqdv { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-D3lMi .framer-12ez48y { flex: none; height: 490px; position: relative; width: 593px; }\",\".framer-D3lMi .framer-10p3drg, .framer-D3lMi .framer-1kcjui1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 64px; height: 431px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-D3lMi .framer-es40y3 { 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: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-D3lMi .framer-112bblf-container { aspect-ratio: 1.6229116945107398 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 353px); position: relative; width: 572px; z-index: 3; }\",\".framer-D3lMi .framer-1x3n6bi { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-D3lMi .framer-o3yqxv { aspect-ratio: 3 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 67px); position: relative; text-decoration: none; width: 200px; }\",\".framer-D3lMi .framer-govek8 { flex: none; height: 59px; position: relative; text-decoration: none; width: 200px; }\",\".framer-D3lMi .framer-1dqfsq5 { flex: none; height: 490px; position: relative; width: 630px; }\",\".framer-D3lMi .framer-17shdp8 { flex: none; height: 406px; position: relative; width: 522px; }\",\".framer-D3lMi .framer-hybqkz, .framer-D3lMi .framer-1yo8qrh { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-D3lMi .framer-fstml7 { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: flex-start; min-height: 67px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-D3lMi .framer-g811sw { align-content: center; align-items: center; background-color: #000000; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 10px 0px 10px 0px; position: relative; width: 100%; }\",\".framer-D3lMi .framer-e70ccp { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 64px 0px 64px 0px; position: relative; width: 100%; }\",\".framer-D3lMi .framer-1fwkq91 { 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; max-width: 100%; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-D3lMi .framer-1tkd2m9 { display: grid; flex: 1 0 0px; gap: 64px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(1, minmax(50px, 1fr)); grid-template-rows: repeat(1, minmax(0, 1fr)); height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-D3lMi .framer-aznwdi-container { align-self: start; flex: none; height: 100%; justify-self: start; position: relative; width: 100%; }\",\".framer-D3lMi .framer-1e96sqs-container { flex: none; height: auto; pointer-events: auto; position: relative; width: 100%; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-D3lMi.framer-zo3ycf, .framer-D3lMi .framer-8kfg20, .framer-D3lMi .framer-mlcn8m, .framer-D3lMi .framer-11jgpal, .framer-D3lMi .framer-1w2ogb9, .framer-D3lMi .framer-y435ku, .framer-D3lMi .framer-hjyr53, .framer-D3lMi .framer-19n59oj, .framer-D3lMi .framer-12ehtgd, .framer-D3lMi .framer-1hmt6n2, .framer-D3lMi .framer-1kstmd7, .framer-D3lMi .framer-1lb8kzr, .framer-D3lMi .framer-c4smxe, .framer-D3lMi .framer-c6de4z, .framer-D3lMi .framer-h02c03, .framer-D3lMi .framer-1546vs7, .framer-D3lMi .framer-1is294o, .framer-D3lMi .framer-10p3drg, .framer-D3lMi .framer-es40y3, .framer-D3lMi .framer-1vrucrh, .framer-D3lMi .framer-1j9kodr, .framer-D3lMi .framer-1g4eodq, .framer-D3lMi .framer-1x3n6bi, .framer-D3lMi .framer-1e9cf58, .framer-D3lMi .framer-1kcjui1, .framer-D3lMi .framer-1wqzqdv, .framer-D3lMi .framer-55093z, .framer-D3lMi .framer-ywdu7k, .framer-D3lMi .framer-hybqkz, .framer-D3lMi .framer-fstml7, .framer-D3lMi .framer-g811sw, .framer-D3lMi .framer-mvadq, .framer-D3lMi .framer-1yo8qrh, .framer-D3lMi .framer-e70ccp, .framer-D3lMi .framer-1fwkq91 { gap: 0px; } .framer-D3lMi.framer-zo3ycf > *, .framer-D3lMi .framer-12ehtgd > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-D3lMi.framer-zo3ycf > :first-child, .framer-D3lMi .framer-8kfg20 > :first-child, .framer-D3lMi .framer-mlcn8m > :first-child, .framer-D3lMi .framer-11jgpal > :first-child, .framer-D3lMi .framer-12ehtgd > :first-child, .framer-D3lMi .framer-1hmt6n2 > :first-child, .framer-D3lMi .framer-1lb8kzr > :first-child, .framer-D3lMi .framer-c4smxe > :first-child, .framer-D3lMi .framer-c6de4z > :first-child, .framer-D3lMi .framer-1546vs7 > :first-child, .framer-D3lMi .framer-1is294o > :first-child, .framer-D3lMi .framer-es40y3 > :first-child, .framer-D3lMi .framer-1vrucrh > :first-child, .framer-D3lMi .framer-1g4eodq > :first-child, .framer-D3lMi .framer-1e9cf58 > :first-child, .framer-D3lMi .framer-1wqzqdv > :first-child, .framer-D3lMi .framer-55093z > :first-child, .framer-D3lMi .framer-ywdu7k > :first-child, .framer-D3lMi .framer-hybqkz > :first-child, .framer-D3lMi .framer-g811sw > :first-child, .framer-D3lMi .framer-mvadq > :first-child, .framer-D3lMi .framer-1yo8qrh > :first-child, .framer-D3lMi .framer-1fwkq91 > :first-child { margin-top: 0px; } .framer-D3lMi.framer-zo3ycf > :last-child, .framer-D3lMi .framer-8kfg20 > :last-child, .framer-D3lMi .framer-mlcn8m > :last-child, .framer-D3lMi .framer-11jgpal > :last-child, .framer-D3lMi .framer-12ehtgd > :last-child, .framer-D3lMi .framer-1hmt6n2 > :last-child, .framer-D3lMi .framer-1lb8kzr > :last-child, .framer-D3lMi .framer-c4smxe > :last-child, .framer-D3lMi .framer-c6de4z > :last-child, .framer-D3lMi .framer-1546vs7 > :last-child, .framer-D3lMi .framer-1is294o > :last-child, .framer-D3lMi .framer-es40y3 > :last-child, .framer-D3lMi .framer-1vrucrh > :last-child, .framer-D3lMi .framer-1g4eodq > :last-child, .framer-D3lMi .framer-1e9cf58 > :last-child, .framer-D3lMi .framer-1wqzqdv > :last-child, .framer-D3lMi .framer-55093z > :last-child, .framer-D3lMi .framer-ywdu7k > :last-child, .framer-D3lMi .framer-hybqkz > :last-child, .framer-D3lMi .framer-g811sw > :last-child, .framer-D3lMi .framer-mvadq > :last-child, .framer-D3lMi .framer-1yo8qrh > :last-child, .framer-D3lMi .framer-1fwkq91 > :last-child { margin-bottom: 0px; } .framer-D3lMi .framer-8kfg20 > *, .framer-D3lMi .framer-1lb8kzr > *, .framer-D3lMi .framer-g811sw > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-D3lMi .framer-mlcn8m > * { margin: 0px; margin-bottom: calc(38px / 2); margin-top: calc(38px / 2); } .framer-D3lMi .framer-11jgpal > *, .framer-D3lMi .framer-1is294o > *, .framer-D3lMi .framer-es40y3 > *, .framer-D3lMi .framer-1e9cf58 > *, .framer-D3lMi .framer-1wqzqdv > *, .framer-D3lMi .framer-hybqkz > *, .framer-D3lMi .framer-1yo8qrh > *, .framer-D3lMi .framer-1fwkq91 > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-D3lMi .framer-1w2ogb9 > *, .framer-D3lMi .framer-hjyr53 > *, .framer-D3lMi .framer-1x3n6bi > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-D3lMi .framer-1w2ogb9 > :first-child, .framer-D3lMi .framer-y435ku > :first-child, .framer-D3lMi .framer-hjyr53 > :first-child, .framer-D3lMi .framer-19n59oj > :first-child, .framer-D3lMi .framer-1kstmd7 > :first-child, .framer-D3lMi .framer-h02c03 > :first-child, .framer-D3lMi .framer-10p3drg > :first-child, .framer-D3lMi .framer-1j9kodr > :first-child, .framer-D3lMi .framer-1x3n6bi > :first-child, .framer-D3lMi .framer-1kcjui1 > :first-child, .framer-D3lMi .framer-fstml7 > :first-child, .framer-D3lMi .framer-e70ccp > :first-child { margin-left: 0px; } .framer-D3lMi .framer-1w2ogb9 > :last-child, .framer-D3lMi .framer-y435ku > :last-child, .framer-D3lMi .framer-hjyr53 > :last-child, .framer-D3lMi .framer-19n59oj > :last-child, .framer-D3lMi .framer-1kstmd7 > :last-child, .framer-D3lMi .framer-h02c03 > :last-child, .framer-D3lMi .framer-10p3drg > :last-child, .framer-D3lMi .framer-1j9kodr > :last-child, .framer-D3lMi .framer-1x3n6bi > :last-child, .framer-D3lMi .framer-1kcjui1 > :last-child, .framer-D3lMi .framer-fstml7 > :last-child, .framer-D3lMi .framer-e70ccp > :last-child { margin-right: 0px; } .framer-D3lMi .framer-y435ku > *, .framer-D3lMi .framer-19n59oj > * { margin: 0px; margin-left: calc(41px / 2); margin-right: calc(41px / 2); } .framer-D3lMi .framer-1hmt6n2 > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-D3lMi .framer-1kstmd7 > * { margin: 0px; margin-left: calc(50px / 2); margin-right: calc(50px / 2); } .framer-D3lMi .framer-c4smxe > *, .framer-D3lMi .framer-ywdu7k > *, .framer-D3lMi .framer-mvadq > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } .framer-D3lMi .framer-c6de4z > * { margin: 0px; margin-bottom: calc(74px / 2); margin-top: calc(74px / 2); } .framer-D3lMi .framer-h02c03 > *, .framer-D3lMi .framer-10p3drg > *, .framer-D3lMi .framer-1j9kodr > *, .framer-D3lMi .framer-1kcjui1 > *, .framer-D3lMi .framer-fstml7 > *, .framer-D3lMi .framer-e70ccp > * { margin: 0px; margin-left: calc(64px / 2); margin-right: calc(64px / 2); } .framer-D3lMi .framer-1546vs7 > *, .framer-D3lMi .framer-1vrucrh > *, .framer-D3lMi .framer-1g4eodq > *, .framer-D3lMi .framer-55093z > * { margin: 0px; margin-bottom: calc(35px / 2); margin-top: calc(35px / 2); } }\",\"@media (min-width: 810px) and (max-width: 926px) { .framer-D3lMi.framer-zo3ycf { width: 810px; } .framer-D3lMi .framer-qprkgg-container, .framer-D3lMi .framer-11jgpal { order: 0; } .framer-D3lMi .framer-8kfg20 { justify-content: center; order: 1; } .framer-D3lMi .framer-mlcn8m { height: min-content; padding: 0px 30px 0px 30px; } .framer-D3lMi .framer-y435ku { align-content: unset; align-items: unset; display: grid; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(1, minmax(50px, 1fr)); grid-template-rows: repeat(2, minmax(0, 1fr)); height: 357px; justify-content: center; order: 1; } .framer-D3lMi .framer-514zj7 { align-self: start; height: 100%; justify-self: start; order: 0; width: 100%; } .framer-D3lMi .framer-hjyr53 { align-self: start; flex: none; justify-self: start; order: 2; width: 1fr; } .framer-D3lMi .framer-p40jzr { height: 59px; width: 210px; } .framer-D3lMi .framer-47p86e { height: 59px; width: 212px; } .framer-D3lMi .framer-s16jqb { align-self: start; flex: none; height: 100%; justify-self: start; order: 1; width: 100%; } .framer-D3lMi .framer-19n59oj { align-content: unset; align-items: unset; display: grid; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(1, minmax(50px, 1fr)); grid-template-rows: repeat(1, minmax(0, 1fr)); justify-content: center; order: 2; } .framer-D3lMi .framer-d42bz3-container { align-self: start; justify-self: start; order: 0; width: 698px; } .framer-D3lMi .framer-12ehtgd { order: 2; } .framer-D3lMi .framer-1hmt6n2 { max-width: 768px; } .framer-D3lMi .framer-1lb8kzr { order: 3; } .framer-D3lMi .framer-c4smxe, .framer-D3lMi .framer-ywdu7k, .framer-D3lMi .framer-mvadq { padding: 0px 30px 0px 30px; } .framer-D3lMi .framer-h02c03, .framer-D3lMi .framer-10p3drg, .framer-D3lMi .framer-1j9kodr, .framer-D3lMi .framer-1kcjui1 { gap: 0px; } .framer-D3lMi .framer-pp0gn8, .framer-D3lMi .framer-li7t4w, .framer-D3lMi .framer-1q686ht, .framer-D3lMi .framer-1a23clu { height: var(--framer-aspect-ratio-supported, 74px); width: 327px; } .framer-D3lMi .framer-12ez48y, .framer-D3lMi .framer-1dqfsq5 { height: 295px; order: 0; width: 379px; } .framer-D3lMi .framer-112bblf-container { height: var(--framer-aspect-ratio-supported, 191px); width: 310px; } .framer-D3lMi .framer-o3yqxv { height: var(--framer-aspect-ratio-supported, 49px); width: 146px; } .framer-D3lMi .framer-govek8 { height: 43px; width: 146px; } .framer-D3lMi .framer-17shdp8 { height: 295px; width: 379px; } .framer-D3lMi .framer-g811sw { order: 5; } .framer-D3lMi .framer-1e96sqs-container { order: 7; z-index: unset; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-D3lMi .framer-y435ku, .framer-D3lMi .framer-19n59oj, .framer-D3lMi .framer-h02c03, .framer-D3lMi .framer-10p3drg, .framer-D3lMi .framer-1j9kodr, .framer-D3lMi .framer-1kcjui1 { gap: 0px; } .framer-D3lMi .framer-y435ku > *, .framer-D3lMi .framer-y435ku > :first-child, .framer-D3lMi .framer-y435ku > :last-child, .framer-D3lMi .framer-19n59oj > *, .framer-D3lMi .framer-19n59oj > :first-child, .framer-D3lMi .framer-19n59oj > :last-child { margin: 0px; } .framer-D3lMi .framer-h02c03 > *, .framer-D3lMi .framer-10p3drg > *, .framer-D3lMi .framer-1j9kodr > *, .framer-D3lMi .framer-1kcjui1 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-D3lMi .framer-h02c03 > :first-child, .framer-D3lMi .framer-10p3drg > :first-child, .framer-D3lMi .framer-1j9kodr > :first-child, .framer-D3lMi .framer-1kcjui1 > :first-child { margin-left: 0px; } .framer-D3lMi .framer-h02c03 > :last-child, .framer-D3lMi .framer-10p3drg > :last-child, .framer-D3lMi .framer-1j9kodr > :last-child, .framer-D3lMi .framer-1kcjui1 > :last-child { margin-right: 0px; } }}\",\"@media (max-width: 809px) { .framer-D3lMi.framer-zo3ycf { width: 390px; } .framer-D3lMi .framer-8kfg20 { justify-content: flex-start; } .framer-D3lMi .framer-mlcn8m { height: 763px; padding: 0px 20px 0px 20px; } .framer-D3lMi .framer-11jgpal, .framer-D3lMi .framer-514zj7, .framer-D3lMi .framer-d42bz3-container { order: 0; } .framer-D3lMi .framer-1kdings { white-space: pre; width: fit-content; } .framer-D3lMi .framer-y435ku { flex-direction: column; order: 1; } .framer-D3lMi .framer-hjyr53 { align-content: unset; align-items: unset; display: grid; flex: none; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(2, minmax(50px, 1fr)); grid-template-rows: repeat(1, minmax(0, 1fr)); order: 2; width: 100%; } .framer-D3lMi .framer-p40jzr { align-self: start; height: 34px; justify-self: start; width: 100%; } .framer-D3lMi .framer-47p86e { align-self: start; justify-self: start; width: 100%; } .framer-D3lMi .framer-s16jqb, .framer-D3lMi .framer-1546vs7, .framer-D3lMi .framer-1g4eodq, .framer-D3lMi .framer-55093z { flex: none; order: 1; width: 100%; } .framer-D3lMi .framer-19n59oj { flex-direction: column; order: 2; } .framer-D3lMi .framer-12ehtgd { padding: 8px 20px 8px 20px; } .framer-D3lMi .framer-1hmt6n2 { gap: 16px; max-width: 390px; } .framer-D3lMi .framer-c4smxe, .framer-D3lMi .framer-ywdu7k, .framer-D3lMi .framer-mvadq { padding: 0px 20px 0px 20px; } .framer-D3lMi .framer-h02c03, .framer-D3lMi .framer-10p3drg, .framer-D3lMi .framer-1j9kodr, .framer-D3lMi .framer-fstml7, .framer-D3lMi .framer-e70ccp { flex-direction: column; } .framer-D3lMi .framer-pp0gn8, .framer-D3lMi .framer-li7t4w, .framer-D3lMi .framer-1q686ht { height: var(--framer-aspect-ratio-supported, 68px); width: 299px; } .framer-D3lMi .framer-1is294o, .framer-D3lMi .framer-1e9cf58, .framer-D3lMi .framer-1wqzqdv { flex: none; order: 0; width: 100%; } .framer-D3lMi .framer-12ez48y, .framer-D3lMi .framer-1dqfsq5, .framer-D3lMi .framer-17shdp8 { height: 247px; width: 318px; } .framer-D3lMi .framer-es40y3, .framer-D3lMi .framer-1vrucrh, .framer-D3lMi .framer-1fwkq91, .framer-D3lMi .framer-1tkd2m9 { flex: none; width: 100%; } .framer-D3lMi .framer-112bblf-container { aspect-ratio: 1.625 / 1; height: var(--framer-aspect-ratio-supported, 215px); max-width: 400px; width: 100%; } .framer-D3lMi .framer-o3yqxv { height: var(--framer-aspect-ratio-supported, 50px); width: 149px; } .framer-D3lMi .framer-govek8 { height: 44px; width: 149px; } .framer-D3lMi .framer-1kcjui1 { flex-direction: column; height: min-content; } .framer-D3lMi .framer-1a23clu { height: var(--framer-aspect-ratio-supported, 67px); width: 299px; } .framer-D3lMi .framer-g811sw { padding: 10px 0px 120px 0px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-D3lMi .framer-y435ku, .framer-D3lMi .framer-hjyr53, .framer-D3lMi .framer-19n59oj, .framer-D3lMi .framer-1hmt6n2, .framer-D3lMi .framer-h02c03, .framer-D3lMi .framer-10p3drg, .framer-D3lMi .framer-1j9kodr, .framer-D3lMi .framer-1kcjui1, .framer-D3lMi .framer-fstml7, .framer-D3lMi .framer-e70ccp { gap: 0px; } .framer-D3lMi .framer-y435ku > *, .framer-D3lMi .framer-19n59oj > * { margin: 0px; margin-bottom: calc(41px / 2); margin-top: calc(41px / 2); } .framer-D3lMi .framer-y435ku > :first-child, .framer-D3lMi .framer-19n59oj > :first-child, .framer-D3lMi .framer-1hmt6n2 > :first-child, .framer-D3lMi .framer-h02c03 > :first-child, .framer-D3lMi .framer-10p3drg > :first-child, .framer-D3lMi .framer-1j9kodr > :first-child, .framer-D3lMi .framer-1kcjui1 > :first-child, .framer-D3lMi .framer-fstml7 > :first-child, .framer-D3lMi .framer-e70ccp > :first-child { margin-top: 0px; } .framer-D3lMi .framer-y435ku > :last-child, .framer-D3lMi .framer-19n59oj > :last-child, .framer-D3lMi .framer-1hmt6n2 > :last-child, .framer-D3lMi .framer-h02c03 > :last-child, .framer-D3lMi .framer-10p3drg > :last-child, .framer-D3lMi .framer-1j9kodr > :last-child, .framer-D3lMi .framer-1kcjui1 > :last-child, .framer-D3lMi .framer-fstml7 > :last-child, .framer-D3lMi .framer-e70ccp > :last-child { margin-bottom: 0px; } .framer-D3lMi .framer-hjyr53 > *, .framer-D3lMi .framer-hjyr53 > :first-child, .framer-D3lMi .framer-hjyr53 > :last-child { margin: 0px; } .framer-D3lMi .framer-1hmt6n2 > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-D3lMi .framer-h02c03 > *, .framer-D3lMi .framer-10p3drg > *, .framer-D3lMi .framer-1j9kodr > *, .framer-D3lMi .framer-1kcjui1 > *, .framer-D3lMi .framer-fstml7 > *, .framer-D3lMi .framer-e70ccp > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } }}\",\"@media (min-width: 1215px) and (max-width: 1439px) { .framer-D3lMi.framer-zo3ycf { width: 1215px; } .framer-D3lMi .framer-qprkgg-container, .framer-D3lMi .framer-11jgpal { order: 0; } .framer-D3lMi .framer-8kfg20 { justify-content: center; order: 1; } .framer-D3lMi .framer-mlcn8m { height: min-content; padding: 0px 30px 0px 30px; } .framer-D3lMi .framer-y435ku { align-content: unset; align-items: unset; display: grid; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(1, minmax(50px, 1fr)); grid-template-rows: repeat(2, minmax(0, 1fr)); height: 258px; justify-content: center; order: 1; } .framer-D3lMi .framer-514zj7 { align-self: start; height: 100%; justify-self: start; order: 0; width: 100%; } .framer-D3lMi .framer-hjyr53 { align-self: start; flex: none; justify-self: start; order: 2; width: 1fr; } .framer-D3lMi .framer-p40jzr { height: 59px; width: 210px; } .framer-D3lMi .framer-47p86e { height: 59px; width: 212px; } .framer-D3lMi .framer-s16jqb { align-self: start; flex: none; height: 100%; justify-self: start; order: 1; width: 100%; } .framer-D3lMi .framer-19n59oj { align-content: unset; align-items: unset; display: grid; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(1, minmax(50px, 1fr)); grid-template-rows: repeat(1, minmax(0, 1fr)); justify-content: center; order: 2; } .framer-D3lMi .framer-d42bz3-container { align-self: start; justify-self: start; order: 0; width: 1112px; } .framer-D3lMi .framer-12ehtgd { order: 2; } .framer-D3lMi .framer-1hmt6n2 { max-width: 768px; } .framer-D3lMi .framer-1lb8kzr { order: 3; } .framer-D3lMi .framer-c4smxe, .framer-D3lMi .framer-ywdu7k, .framer-D3lMi .framer-mvadq { padding: 0px 30px 0px 30px; } .framer-D3lMi .framer-h02c03, .framer-D3lMi .framer-10p3drg, .framer-D3lMi .framer-1j9kodr, .framer-D3lMi .framer-1kcjui1 { gap: 0px; } .framer-D3lMi .framer-pp0gn8, .framer-D3lMi .framer-li7t4w, .framer-D3lMi .framer-1q686ht, .framer-D3lMi .framer-1a23clu { height: var(--framer-aspect-ratio-supported, 74px); width: 327px; } .framer-D3lMi .framer-12ez48y, .framer-D3lMi .framer-1dqfsq5 { height: 295px; order: 0; width: 379px; } .framer-D3lMi .framer-112bblf-container { height: var(--framer-aspect-ratio-supported, 191px); width: 310px; } .framer-D3lMi .framer-o3yqxv { height: var(--framer-aspect-ratio-supported, 49px); width: 146px; } .framer-D3lMi .framer-govek8 { height: 43px; width: 146px; } .framer-D3lMi .framer-17shdp8 { height: 295px; width: 379px; } .framer-D3lMi .framer-g811sw { order: 5; } .framer-D3lMi .framer-1e96sqs-container { order: 7; z-index: unset; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-D3lMi .framer-y435ku, .framer-D3lMi .framer-19n59oj, .framer-D3lMi .framer-h02c03, .framer-D3lMi .framer-10p3drg, .framer-D3lMi .framer-1j9kodr, .framer-D3lMi .framer-1kcjui1 { gap: 0px; } .framer-D3lMi .framer-y435ku > *, .framer-D3lMi .framer-y435ku > :first-child, .framer-D3lMi .framer-y435ku > :last-child, .framer-D3lMi .framer-19n59oj > *, .framer-D3lMi .framer-19n59oj > :first-child, .framer-D3lMi .framer-19n59oj > :last-child { margin: 0px; } .framer-D3lMi .framer-h02c03 > *, .framer-D3lMi .framer-10p3drg > *, .framer-D3lMi .framer-1j9kodr > *, .framer-D3lMi .framer-1kcjui1 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-D3lMi .framer-h02c03 > :first-child, .framer-D3lMi .framer-10p3drg > :first-child, .framer-D3lMi .framer-1j9kodr > :first-child, .framer-D3lMi .framer-1kcjui1 > :first-child { margin-left: 0px; } .framer-D3lMi .framer-h02c03 > :last-child, .framer-D3lMi .framer-10p3drg > :last-child, .framer-D3lMi .framer-1j9kodr > :last-child, .framer-D3lMi .framer-1kcjui1 > :last-child { margin-right: 0px; } }}\",\"@media (min-width: 927px) and (max-width: 1214px) { .framer-D3lMi.framer-zo3ycf { width: 927px; } .framer-D3lMi .framer-qprkgg-container, .framer-D3lMi .framer-11jgpal { order: 0; } .framer-D3lMi .framer-8kfg20 { justify-content: center; order: 1; } .framer-D3lMi .framer-mlcn8m { height: min-content; padding: 0px 30px 0px 30px; } .framer-D3lMi .framer-y435ku { align-content: unset; align-items: unset; display: grid; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(1, minmax(50px, 1fr)); grid-template-rows: repeat(2, minmax(0, 1fr)); height: 258px; justify-content: center; order: 1; } .framer-D3lMi .framer-514zj7 { align-self: start; height: 100%; justify-self: start; order: 0; width: 100%; } .framer-D3lMi .framer-hjyr53 { align-self: start; flex: none; justify-self: start; order: 2; width: 1fr; } .framer-D3lMi .framer-p40jzr { height: 59px; width: 210px; } .framer-D3lMi .framer-47p86e { height: 59px; width: 212px; } .framer-D3lMi .framer-s16jqb { align-self: start; flex: none; height: 100%; justify-self: start; order: 1; width: 100%; } .framer-D3lMi .framer-19n59oj { align-content: unset; align-items: unset; display: grid; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(1, minmax(50px, 1fr)); grid-template-rows: repeat(1, minmax(0, 1fr)); justify-content: center; order: 2; } .framer-D3lMi .framer-d42bz3-container { align-self: start; justify-self: start; order: 0; width: 823px; } .framer-D3lMi .framer-12ehtgd { order: 2; } .framer-D3lMi .framer-1hmt6n2 { max-width: 768px; } .framer-D3lMi .framer-1lb8kzr { order: 3; } .framer-D3lMi .framer-c4smxe, .framer-D3lMi .framer-ywdu7k, .framer-D3lMi .framer-mvadq { padding: 0px 30px 0px 30px; } .framer-D3lMi .framer-h02c03, .framer-D3lMi .framer-10p3drg, .framer-D3lMi .framer-1j9kodr, .framer-D3lMi .framer-1kcjui1 { gap: 0px; } .framer-D3lMi .framer-pp0gn8, .framer-D3lMi .framer-li7t4w, .framer-D3lMi .framer-1q686ht, .framer-D3lMi .framer-1a23clu { height: var(--framer-aspect-ratio-supported, 74px); width: 327px; } .framer-D3lMi .framer-12ez48y, .framer-D3lMi .framer-1dqfsq5 { height: 295px; order: 0; width: 379px; } .framer-D3lMi .framer-112bblf-container { height: var(--framer-aspect-ratio-supported, 191px); width: 310px; } .framer-D3lMi .framer-o3yqxv { height: var(--framer-aspect-ratio-supported, 49px); width: 146px; } .framer-D3lMi .framer-govek8 { height: 43px; width: 146px; } .framer-D3lMi .framer-17shdp8 { height: 295px; width: 379px; } .framer-D3lMi .framer-g811sw { order: 5; } .framer-D3lMi .framer-1e96sqs-container { order: 7; z-index: unset; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-D3lMi .framer-y435ku, .framer-D3lMi .framer-19n59oj, .framer-D3lMi .framer-h02c03, .framer-D3lMi .framer-10p3drg, .framer-D3lMi .framer-1j9kodr, .framer-D3lMi .framer-1kcjui1 { gap: 0px; } .framer-D3lMi .framer-y435ku > *, .framer-D3lMi .framer-y435ku > :first-child, .framer-D3lMi .framer-y435ku > :last-child, .framer-D3lMi .framer-19n59oj > *, .framer-D3lMi .framer-19n59oj > :first-child, .framer-D3lMi .framer-19n59oj > :last-child { margin: 0px; } .framer-D3lMi .framer-h02c03 > *, .framer-D3lMi .framer-10p3drg > *, .framer-D3lMi .framer-1j9kodr > *, .framer-D3lMi .framer-1kcjui1 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-D3lMi .framer-h02c03 > :first-child, .framer-D3lMi .framer-10p3drg > :first-child, .framer-D3lMi .framer-1j9kodr > :first-child, .framer-D3lMi .framer-1kcjui1 > :first-child { margin-left: 0px; } .framer-D3lMi .framer-h02c03 > :last-child, .framer-D3lMi .framer-10p3drg > :last-child, .framer-D3lMi .framer-1j9kodr > :last-child, .framer-D3lMi .framer-1kcjui1 > :last-child { margin-right: 0px; } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 4519\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"gvy_GPf11\":{\"layout\":[\"fixed\",\"auto\"]},\"kTX5ATiZU\":{\"layout\":[\"fixed\",\"auto\"]},\"BWXLAHg34\":{\"layout\":[\"fixed\",\"auto\"]},\"gDNDy7ppB\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"fwr4yg9Td\":{\"pattern\":\":fwr4yg9Td\",\"name\":\"about\"}}\n * @framerResponsiveScreen\n */const FrameruV6Uzs6GE=withCSS(Component,css,\"framer-D3lMi\");export default FrameruV6Uzs6GE;FrameruV6Uzs6GE.displayName=\"Page\";FrameruV6Uzs6GE.defaultProps={height:4519,width:1440};addFonts(FrameruV6Uzs6GE,[{explicitInter:true,fonts:[{family:\"ABC Walter Neue Extrabold\",source:\"custom\",url:\"https://framerusercontent.com/assets/qfHEooYDKpqs0LyMspvXru5aYg.woff2\"},{family:\"ABC Simon Mono Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/gp4MLgkrG2K1NgCQZ7ovin3ptk.woff2\"}]},...NavigationFonts,...PrimaryButtonFonts,...EmbedFonts,...TickerFonts,...InteractiveCryptoCardFonts,...MailchimpFonts,...FooterFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameruV6Uzs6GE\",\"slots\":[],\"annotations\":{\"framerScrollSections\":\"{\\\"fwr4yg9Td\\\":{\\\"pattern\\\":\\\":fwr4yg9Td\\\",\\\"name\\\":\\\"about\\\"}}\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"4519\",\"framerResponsiveScreen\":\"\",\"framerDisplayContentsDiv\":\"false\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"gvy_GPf11\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"kTX5ATiZU\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"BWXLAHg34\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"gDNDy7ppB\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"1440\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["Embed", "type", "url", "html", "style", "p", "EmbedUrl", "EmbedHtml", "Instructions", "addPropertyControls", "ControlType", "props", "getMinHeight", "emptyStateStyle", "centerTextStyle", "hasAutoHeight", "onCanvas", "useIsOnCanvas", "state", "setState", "ye", "ue", "isLastEffect", "load", "response", "isBlocked", "message", "error", "ErrorMessage", "LoadingIndicator", "iframeStyle", "getSandbox", "result", "hasSplineViewer", "hasComment", "EmbedHtmlWithScripts", "EmbedHtmlInsideIframe", "EmbedHtmlWithoutScripts", "ref", "pe", "iframeHeight", "setIframeHeight", "_ref_current", "iframeWindow", "handleMessage", "event", "data", "height", "window", "srcDoc", "currentStyle", "div", "executeScripts", "htmlStyle", "node", "script", "name", "value", "child", "containerStyles", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "radiusForCorner", "value", "cornerIndex", "segments", "transition1", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "border", "height", "id", "radius", "width", "props", "_ref", "_ref1", "_humanReadableVariantMap_props_variant", "_ref2", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "QfEXGkDYq", "TyLGxfzSo", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "_TyLGxfzSo_borderBottomWidth", "_TyLGxfzSo_borderLeftWidth", "_TyLGxfzSo_borderRightWidth", "_TyLGxfzSo_borderTopWidth", "LayoutGroup", "cx", "u", "Image2", "getLoadingLazyAtYPosition", "css", "Framerto9YfCyJu", "withCSS", "to9YfCyJu_default", "addPropertyControls", "ControlType", "addFonts", "CryptoCardFonts", "getFonts", "to9YfCyJu_default", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1e8kdy4", "args", "onTap1c2p060", "onTap1mmu9g7", "onTapap6bk9", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "ComponentViewportProvider", "css", "FramerA2D5Zy8_W", "withCSS", "A2D5Zy8_W_default", "addPropertyControls", "ControlType", "addFonts", "NavigationFonts", "getFonts", "hXK9kCrre_default", "ContainerWithFX", "withFX", "Container", "PrimaryButtonFonts", "Ju7P2sQZu_default", "MotionDivWithOptimizedAppearEffect", "withOptimizedAppearEffect", "motion", "EmbedFonts", "Embed", "TickerFonts", "Ticker", "InteractiveCryptoCardFonts", "A2D5Zy8_W_default", "MailchimpFonts", "Mailchimp", "FooterFonts", "qAmSjID4_default", "breakpoints", "serializationHash", "variantClassNames", "transition1", "animation", "transformTemplate1", "_", "t", "transition2", "animation1", "animation2", "animation3", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "breakpoints", "gestureVariant", "scopingClassNames", "cx", "ref1", "pe", "router", "useRouter", "elementId", "useRouteElementId", "ref2", "defaultLayoutId", "ae", "useCustomCursors", "componentViewport", "useComponentViewport", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "ComponentViewportProvider", "ContainerWithFX", "PropertyOverrides2", "hXK9kCrre_default", "getLoadingLazyAtYPosition", "Image2", "MotionDivWithOptimizedAppearEffect", "x", "RichText2", "Link", "ResolveLinks", "resolvedLinks", "Container", "Ju7P2sQZu_default", "Embed", "Ticker", "resolvedLinks1", "A2D5Zy8_W_default", "SVG", "resolvedLinks2", "Mailchimp", "qAmSjID4_default", "css", "FrameruV6Uzs6GE", "withCSS", "uV6Uzs6GE_default", "addFonts", "NavigationFonts", "PrimaryButtonFonts", "EmbedFonts", "TickerFonts", "InteractiveCryptoCardFonts", "MailchimpFonts", "FooterFonts", "__FramerMetadata__"]
}
