{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/pVNq3gPwiiJPmLV2YSlc/Embed.js", "ssg:https://framerusercontent.com/modules/6xFcqMPlAq7FmfqHlqKb/WurMJPgJTFMIIbbWrgoT/z9TBtY2ge.js", "ssg:https://framerusercontent.com/modules/v4pXWrkoFdlhP5FlWZj1/6OcWTvAordp2SCl7xHri/AZ7RpNVMa.js", "ssg:https://framerusercontent.com/modules/etpYIZHWhLuIVCA6xgSP/MLJxxWhCfj8BDdYwrjKN/wLS1bYwQi.js", "ssg:https://framerusercontent.com/modules/CZxtiVLEZdw5EF2Vl4ic/okftK2QnL6DPqtK1BH0i/Un1cVV1_8.js", "ssg:https://framerusercontent.com/modules/kj5ntLmaVqMUAgsvIyvS/SbObQCZxLlF9xl5QKtTM/flOIYRy97.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}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 fixed\n */ export default function Embed({type,url,html}){if(type===\"url\"&&url){return /*#__PURE__*/ _jsx(EmbedURL,{url:url});}if(type===\"html\"&&html){return /*#__PURE__*/ _jsx(EmbedHTML,{html:html});}return /*#__PURE__*/ _jsx(Instructions,{});};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\",displayTextArea:true,type:ControlType.String,hidden(props){return props.type!==\"html\";}}});function Instructions(){return /*#__PURE__*/ _jsx(\"div\",{style:{...emptyStateStyle,overflow:\"hidden\"},children:/*#__PURE__*/ _jsx(\"div\",{style:centerTextStyle,children:\"To embed a website or widget, add it to the properties\\xa0panel.\"})});}function EmbedURL({url}){// 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(!url.startsWith(\"https://\")){return /*#__PURE__*/ _jsx(ErrorMessage,{message:\"Unsupported protocol.\"});}if(state===undefined){return /*#__PURE__*/ _jsx(LoadingIndicator,{});}if(state instanceof Error){return /*#__PURE__*/ _jsx(ErrorMessage,{message:state.message});}if(state===true){const message=`Can't embed ${url} due to its content security policy.`;return /*#__PURE__*/ _jsx(ErrorMessage,{message:message});}return /*#__PURE__*/ _jsx(\"iframe\",{src:url,style:iframeStyle,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}){const ref=useRef();// If the HTML contains a script tag we can't use\n// dangerouslySetInnerHTML because it doesn't execute\n// scripts on the client. Otherwise, we can benefit\n// from SSG by using dangerouslySetInnerHTML.\nconst hasScript=html.includes(\"</script>\");useEffect(()=>{if(!hasScript)return;const div=ref.current;div.innerHTML=html;executeScripts(div);return()=>{div.innerHTML=\"\";};},[html,hasScript]);return /*#__PURE__*/ _jsx(\"div\",{ref:ref,style:htmlStyle,dangerouslySetInnerHTML:!hasScript?{__html:html}:undefined});}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}){return /*#__PURE__*/ _jsx(\"div\",{className:\"framerInternalUI-errorPlaceholder\",style:{...containerStyles,overflow:\"hidden\"},children:/*#__PURE__*/ _jsxs(\"div\",{style:centerTextStyle,children:[\"Error: \",message]})});}const centerTextStyle={textAlign:\"center\",minWidth:140};\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Embed\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutWidth\":\"fixed\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicWidth\":\"600\",\"framerIntrinsicHeight\":\"400\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Embed.map", "// Generated by Framer (508aa67)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"vavtzvvD7\",\"GCZhoFeBV\"];const serializationHash=\"framer-E0EKV\";const variantClassNames={GCZhoFeBV:\"framer-v-1bhwz7d\",vavtzvvD7:\"framer-v-19msnu3\"};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:40,delay:0,mass:1,stiffness:600,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={Closed:\"vavtzvvD7\",Open:\"GCZhoFeBV\"};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:\"vavtzvvD7\"};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"vavtzvvD7\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);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__*/_jsx(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-19msnu3\",className,classNames),\"data-framer-name\":\"Closed\",layoutDependency:layoutDependency,layoutId:\"vavtzvvD7\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({GCZhoFeBV:{\"data-framer-name\":\"Open\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-tyzcf2\",layoutDependency:layoutDependency,layoutId:\"dAo8FFgro\",style:{rotate:0},variants:{GCZhoFeBV:{rotate:-180}},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1gedh56\",\"data-framer-name\":\"Icon\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"QVPTUV2Bi\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 14 14\"><path d=\"M 3 5.5 L 7 9.5 L 11 5.5\" fill=\"transparent\" stroke-width=\"2\" stroke=\"rgb(16, 187, 213)\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg>',svgContentId:3277223189,withExternalLayout:true})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-E0EKV.framer-1xz1u4m, .framer-E0EKV .framer-1xz1u4m { display: block; }\",\".framer-E0EKV.framer-19msnu3 { height: 14px; overflow: visible; position: relative; width: 14px; }\",\".framer-E0EKV .framer-tyzcf2 { flex: none; height: 14px; left: calc(50.00000000000002% - 14px / 2); overflow: visible; position: absolute; top: calc(50.00000000000002% - 14px / 2); width: 14px; }\",\".framer-E0EKV .framer-1gedh56 { flex: none; height: 14px; left: calc(50.00000000000002% - 14px / 2); position: absolute; top: calc(50.00000000000002% - 14px / 2); width: 14px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 14\n * @framerIntrinsicWidth 14\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"GCZhoFeBV\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framerz9TBtY2ge=withCSS(Component,css,\"framer-E0EKV\");export default Framerz9TBtY2ge;Framerz9TBtY2ge.displayName=\"Caret\";Framerz9TBtY2ge.defaultProps={height:14,width:14};addPropertyControls(Framerz9TBtY2ge,{variant:{options:[\"vavtzvvD7\",\"GCZhoFeBV\"],optionTitles:[\"Closed\",\"Open\"],title:\"Variant\",type:ControlType.Enum}});addFonts(Framerz9TBtY2ge,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerz9TBtY2ge\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"GCZhoFeBV\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"14\",\"framerIntrinsicHeight\":\"14\",\"framerImmutableVariables\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./z9TBtY2ge.map", "// Generated by Framer (508aa67)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Caret from\"https://framerusercontent.com/modules/6xFcqMPlAq7FmfqHlqKb/WurMJPgJTFMIIbbWrgoT/z9TBtY2ge.js\";const CaretFonts=getFonts(Caret);const enabledGestures={yLEAMGwOU:{hover:true}};const cycleOrder=[\"yLEAMGwOU\"];const serializationHash=\"framer-ks2So\";const variantClassNames={yLEAMGwOU:\"framer-v-76k5x7\"};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: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(React.Fragment);const getProps=({height,hover,id,width,...props})=>{return{...props,ww7aWucPE:hover!==null&&hover!==void 0?hover:props.ww7aWucPE};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,ww7aWucPE,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"yLEAMGwOU\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onMouseEnter1qgnfxk=activeVariantCallback(async(...args)=>{if(ww7aWucPE){const res=await ww7aWucPE(...args);if(res===false)return false;}});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,className:cx(serializationHash,...sharedStyleClassNames,\"framer-76k5x7\",className,classNames),\"data-framer-name\":\"Variant 1\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"yLEAMGwOU\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onMouseEnter:onMouseEnter1qgnfxk,onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{background:\"linear-gradient(78deg, rgba(2, 183, 135, 0.15) 0%, rgba(16, 187, 213, 0.15) 100%)\",borderBottomLeftRadius:40,borderBottomRightRadius:40,borderTopLeftRadius:40,borderTopRightRadius:40,...style},variants:{\"yLEAMGwOU-hover\":{background:\"linear-gradient(78deg, rgba(2, 183, 135, 0.25) 32%, rgba(16, 187, 213, 0.25) 100%)\"}},...addPropertyOverrides({\"yLEAMGwOU-hover\":{\"data-framer-name\":undefined}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0V1Y2xpZCBDaXJjdWxhciBBIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Euclid Circular A Regular\", \"Euclid Circular A Regular Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(motion.span,{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(90deg, rgb(0, 182, 135) 0%, rgb(16, 187, 213) 100%)\"},children:\"The Essential Suite\"})})}),className:\"framer-1p4dlj6\",\"data-framer-name\":\"Supporting text\",fonts:[\"CUSTOM;Euclid Circular A Regular\"],layoutDependency:layoutDependency,layoutId:\"TNKcnOs2N\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-12uzjpd-container\",layoutDependency:layoutDependency,layoutId:\"lpPX0DneJ-container\",children:/*#__PURE__*/_jsx(Caret,{height:\"100%\",id:\"lpPX0DneJ\",layoutId:\"lpPX0DneJ\",variant:\"vavtzvvD7\",width:\"100%\",...addPropertyOverrides({\"yLEAMGwOU-hover\":{variant:\"GCZhoFeBV\"}},baseVariant,gestureVariant)})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-ks2So.framer-1980ptp, .framer-ks2So .framer-1980ptp { display: block; }\",\".framer-ks2So.framer-76k5x7 { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: center; overflow: hidden; padding: 8px 10px 8px 10px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-ks2So .framer-1p4dlj6 { flex: none; height: auto; overflow: visible; position: relative; white-space: pre; width: auto; }\",\".framer-ks2So .framer-12uzjpd-container { flex: none; height: auto; position: relative; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-ks2So.framer-76k5x7 { gap: 0px; } .framer-ks2So.framer-76k5x7 > * { margin: 0px; margin-left: calc(6px / 2); margin-right: calc(6px / 2); } .framer-ks2So.framer-76k5x7 > :first-child { margin-left: 0px; } .framer-ks2So.framer-76k5x7 > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 30\n * @framerIntrinsicWidth 153\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"ySdWTY5wK\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"ww7aWucPE\":\"hover\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerAZ7RpNVMa=withCSS(Component,css,\"framer-ks2So\");export default FramerAZ7RpNVMa;FramerAZ7RpNVMa.displayName=\"Button\";FramerAZ7RpNVMa.defaultProps={height:30,width:153};addPropertyControls(FramerAZ7RpNVMa,{ww7aWucPE:{title:\"Hover\",type:ControlType.EventHandler}});addFonts(FramerAZ7RpNVMa,[{explicitInter:true,fonts:[{family:\"Euclid Circular A Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/xAgGSvpEghG5GJ5uNDWafIGb0.ttf\"}]},...CaretFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerAZ7RpNVMa\",\"slots\":[],\"annotations\":{\"framerVariables\":\"{\\\"ww7aWucPE\\\":\\\"hover\\\"}\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"ySdWTY5wK\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"30\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"153\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./AZ7RpNVMa.map", "// Generated by Framer (890879b)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,Link,RichText,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Icon as Feather}from\"https://framerusercontent.com/modules/f0DboytQenYh21kfme7W/zb1zVBMZJKgPMiedOi0y/Feather.js\";const FeatherFonts=getFonts(Feather);const enabledGestures={v28XWtVth:{hover:true}};const serializationHash=\"framer-gM8RL\";const variantClassNames={v28XWtVth:\"framer-v-3yqslw\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={duration:0,type:\"tween\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({background,height,id,link2,newTab,title,tracking,width,...props})=>{return{...props,AwbMZMg8v:newTab??props.AwbMZMg8v??true,qvJuO9zSn:title??props.qvJuO9zSn??\"Website\",RheN1fVgD:tracking??props.RheN1fVgD,WOcEa42Qs:background??props.WOcEa42Qs??\"rgba(255, 255, 255, 0.15)\",X3HkRf87n:link2??props.X3HkRf87n};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,qvJuO9zSn,WOcEa42Qs,X3HkRf87n,AwbMZMg8v,RheN1fVgD,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"v28XWtVth\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{clickTrackingId:RheN1fVgD,href:X3HkRf87n,motionChild:true,nodeId:\"v28XWtVth\",openInNewTab:AwbMZMg8v,scopeId:\"wLS1bYwQi\",children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(scopingClassNames,\"framer-3yqslw\",className,classNames)} framer-1xszsat`,\"data-framer-name\":\"Variant 1\",\"data-reset\":\"button\",layoutDependency:layoutDependency,layoutId:\"v28XWtVth\",ref:refBinding,style:{backgroundColor:WOcEa42Qs,borderBottomLeftRadius:50,borderBottomRightRadius:50,borderTopLeftRadius:50,borderTopRightRadius:50,...style},variants:{\"v28XWtVth-hover\":{backgroundColor:\"rgb(255, 255, 255)\"}},...addPropertyOverrides({\"v28XWtVth-hover\":{\"data-framer-name\":undefined}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0V1Y2xpZCBDaXJjdWxhciBBIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Euclid Circular A Regular\", \"Euclid Circular A Regular Placeholder\", sans-serif',\"--framer-line-height\":\"28px\",\"--framer-text-alignment\":\"center\"},children:\"Website\"})}),className:\"framer-ztdhaw\",\"data-framer-name\":\"Text\",fonts:[\"CUSTOM;Euclid Circular A Regular\"],layoutDependency:layoutDependency,layoutId:\"ajgAyri7V\",text:qvJuO9zSn,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-xaj746-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"ysBnE6Z68-container\",nodeId:\"ysBnE6Z68\",rendersWithMotion:true,scopeId:\"wLS1bYwQi\",style:{rotate:-90},children:/*#__PURE__*/_jsx(Feather,{color:\"rgb(0, 0, 0)\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"arrow-down\",id:\"ysBnE6Z68\",layoutId:\"ysBnE6Z68\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-gM8RL.framer-1xszsat, .framer-gM8RL .framer-1xszsat { display: block; }\",\".framer-gM8RL.framer-3yqslw { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; padding: 6px 14px 6px 18px; position: relative; text-decoration: none; width: min-content; }\",\".framer-gM8RL .framer-ztdhaw { flex: none; height: auto; overflow: visible; position: relative; white-space: pre; width: auto; }\",\".framer-gM8RL .framer-xaj746-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 21px); position: relative; width: 18px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 40\n * @framerIntrinsicWidth 118.5\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"lf19iRr4o\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"qvJuO9zSn\":\"title\",\"WOcEa42Qs\":\"background\",\"X3HkRf87n\":\"link2\",\"AwbMZMg8v\":\"newTab\",\"RheN1fVgD\":\"tracking\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerwLS1bYwQi=withCSS(Component,css,\"framer-gM8RL\");export default FramerwLS1bYwQi;FramerwLS1bYwQi.displayName=\"Button\";FramerwLS1bYwQi.defaultProps={height:40,width:118.5};addPropertyControls(FramerwLS1bYwQi,{qvJuO9zSn:{defaultValue:\"Website\",displayTextArea:false,title:\"Title\",type:ControlType.String},WOcEa42Qs:{defaultValue:\"rgba(255, 255, 255, 0.15)\",title:\"Background\",type:ControlType.Color},X3HkRf87n:{title:\"Link 2\",type:ControlType.Link},AwbMZMg8v:{defaultValue:true,title:\"New Tab\",type:ControlType.Boolean},RheN1fVgD:{title:\"Tracking\",type:ControlType.TrackingId}});addFonts(FramerwLS1bYwQi,[{explicitInter:true,fonts:[{family:\"Euclid Circular A Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/xAgGSvpEghG5GJ5uNDWafIGb0.ttf\"}]},...FeatherFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerwLS1bYwQi\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"40\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerColorSyntax\":\"true\",\"framerAutoSizeImages\":\"true\",\"framerVariables\":\"{\\\"qvJuO9zSn\\\":\\\"title\\\",\\\"WOcEa42Qs\\\":\\\"background\\\",\\\"X3HkRf87n\\\":\\\"link2\\\",\\\"AwbMZMg8v\\\":\\\"newTab\\\",\\\"RheN1fVgD\\\":\\\"tracking\\\"}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"lf19iRr4o\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"118.5\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./wLS1bYwQi.map", "import{fontStore}from\"framer\";fontStore.loadFonts([\"CUSTOM;Euclid Circular A Medium\",\"Inter-Black\",\"Inter-BlackItalic\",\"Inter-BoldItalic\"]);export const fonts=[{family:\"Euclid Circular A Medium\",source:\"custom\",url:\"https://framerusercontent.com/assets/Pif7Qze1eG4NNww6m7v7fqevvoQ.ttf\"}];export const css=['.framer-L0Jxb .framer-styles-preset-632zyi:not(.rich-text-wrapper), .framer-L0Jxb .framer-styles-preset-632zyi.rich-text-wrapper h5 { --framer-font-family: \"Euclid Circular A Medium\", \"Euclid Circular A Medium Placeholder\", sans-serif; --framer-font-family-bold: \"Inter-Black\", \"Inter\", sans-serif; --framer-font-family-bold-italic: \"Inter-BlackItalic\", \"Inter\", sans-serif; --framer-font-family-italic: \"Inter-BoldItalic\", \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-size: 14px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 400; --framer-font-weight-bold: 900; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 700; --framer-letter-spacing: 3px; --framer-line-height: 1.5em; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: rgba(255, 255, 255, 0.5); --framer-text-decoration: none; --framer-text-transform: uppercase; }'];export const className=\"framer-L0Jxb\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (890879b)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,Floating,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,PropertyOverrides,ResolveLinks,RichText,SVG,useActiveVariantCallback,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useOverlayState,useRouteElementId,useRouter,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{AnimatePresence,LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/XVUmpmPn1EPL0dzocT35/Ticker.js\";import{Icon as Feather}from\"https://framerusercontent.com/modules/f0DboytQenYh21kfme7W/zb1zVBMZJKgPMiedOi0y/Feather.js\";import ChainIcon from\"https://framerusercontent.com/modules/kQ3wOTmgcOnFwBhz4ICC/1iRkmvTWRIUcgMcPMrFd/WJdCz4NYr.js\";import Embed from\"https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/pVNq3gPwiiJPmLV2YSlc/Embed.js\";import Navigation from\"#framer/local/canvasComponent/ArjIK97PF/ArjIK97PF.js\";import Button1 from\"#framer/local/canvasComponent/AZ7RpNVMa/AZ7RpNVMa.js\";import FeatureChip from\"#framer/local/canvasComponent/h44OoCdZ3/h44OoCdZ3.js\";import Footer from\"#framer/local/canvasComponent/LbLEfsNhF/LbLEfsNhF.js\";import Button from\"#framer/local/canvasComponent/pl_6F9wXc/pl_6F9wXc.js\";import ChainIcon5 from\"#framer/local/canvasComponent/SemvyZIoc/SemvyZIoc.js\";import Button2 from\"#framer/local/canvasComponent/wLS1bYwQi/wLS1bYwQi.js\";import Caret from\"#framer/local/canvasComponent/z9TBtY2ge/z9TBtY2ge.js\";import*as sharedStyle from\"#framer/local/css/cTjFiZdnF/cTjFiZdnF.js\";import*as sharedStyle1 from\"#framer/local/css/f_JgQVGd5/f_JgQVGd5.js\";import*as sharedStyle2 from\"#framer/local/css/PPzQHe2LM/PPzQHe2LM.js\";import*as sharedStyle5 from\"#framer/local/css/stylesPresetHeading2/stylesPresetHeading2.js\";import*as sharedStyle3 from\"#framer/local/css/stylesPresetParagraph/stylesPresetParagraph.js\";import*as sharedStyle4 from\"#framer/local/css/Un1cVV1_8/Un1cVV1_8.js\";import metadataProvider from\"#framer/local/webPageMetadata/flOIYRy97/flOIYRy97.js\";const NavigationFonts=getFonts(Navigation);const ChainIconFonts=getFonts(ChainIcon);const FeatherFonts=getFonts(Feather);const ChainIcon5Fonts=getFonts(ChainIcon5);const ButtonFonts=getFonts(Button);const FeatureChipFonts=getFonts(FeatureChip);const TickerFonts=getFonts(Ticker);const MotionDivWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.div);const Button1Fonts=getFonts(Button1);const CaretFonts=getFonts(Caret);const Button2Fonts=getFonts(Button2);const RichTextWithFX=withFX(RichText);const EmbedFonts=getFonts(Embed);const ContainerWithOptimizedAppearEffect=withOptimizedAppearEffect(Container);const MotionDivWithFX=withFX(motion.div);const FooterFonts=getFonts(Footer);const breakpoints={aVMpqy5l3:\"(min-width: 810px) and (max-width: 1279px)\",ljtIhjibA:\"(max-width: 809px)\",NCfgXqDtM:\"(min-width: 1280px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-pJeil\";const variantClassNames={aVMpqy5l3:\"framer-v-nyn7el\",ljtIhjibA:\"framer-v-5xqr3h\",NCfgXqDtM:\"framer-v-d0wpzk\"};const transition1={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.05,skewX:0,skewY:0,transition:transition1};const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.02,skewX:0,skewY:0,transition:transition1};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.1,skewX:0,skewY:0,transition:transition1};const transition2={delay:0,duration:2,ease:[.44,0,.56,1],type:\"tween\"};const animation3={opacity:.5,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:0};const animation4={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const transition3={delay:0,duration:.4,ease:[.44,0,.56,1],type:\"tween\"};const animation5={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition3,x:0,y:0};const animation6={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:30};const animation7={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const animation8={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const animation9={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const Overlay=({children,blockDocumentScrolling,enabled=true})=>{const[visible,setVisible]=useOverlayState({blockDocumentScrolling});return children({hide:()=>setVisible(false),show:()=>setVisible(true),toggle:()=>setVisible(!visible),visible:enabled&&visible});};const animation10={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1930,x:0,y:60};const transition4={damping:30,delay:0,mass:1,stiffness:178,type:\"spring\"};const transition5={delay:.3,duration:.3,ease:[.44,0,.56,1],type:\"tween\"};const animation11={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition5,x:0,y:0};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"NCfgXqDtM\",Phone:\"ljtIhjibA\",Tablet:\"aVMpqy5l3\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"NCfgXqDtM\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const{activeVariantCallback,delay}=useActiveVariantCallback(undefined);const ww7aWucPEtxyyif=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.show();});const onTaptxyyif=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.show();});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"aVMpqy5l3\")return false;return true;};const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"ljtIhjibA\")return true;return false;};const elementId=useRouteElementId(\"S8na5eB66\");const ref1=React.useRef(null);const elementId1=useRouteElementId(\"yxO8MwUcP\");const ref2=React.useRef(null);const router=useRouter();const isDisplayed2=()=>{if(!isBrowser())return true;if(baseVariant===\"ljtIhjibA\")return false;return true;};const elementId2=useRouteElementId(\"OWsCSn4W0\");const ref3=React.useRef(null);const ref4=React.useRef(null);const ref5=React.useRef(null);const ref6=React.useRef(null);const ref7=React.useRef(null);const elementId3=useRouteElementId(\"GymxDPKUE\");const ref8=React.useRef(null);useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"NCfgXqDtM\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: rgb(0, 0, 0); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-d0wpzk\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-11xuj1a\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:80,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1rjc58i-container\",nodeId:\"Z61DHmWLM\",scopeId:\"flOIYRy97\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ljtIhjibA:{variant:\"grJpLQjAG\"}},children:/*#__PURE__*/_jsx(Navigation,{height:\"100%\",id:\"Z61DHmWLM\",layoutId:\"Z61DHmWLM\",style:{width:\"100%\"},variant:\"GfeV1ui3l\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-14i7d6k\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1d6kwsq\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ehofwo\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ljtIhjibA:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0V1Y2xpZCBDaXJjdWxhciBBIExpZ2h0\",\"--framer-font-family\":'\"Euclid Circular A Light\", \"Euclid Circular A Light Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"The Future of DeFi \"})}),fonts:[\"CUSTOM;Euclid Circular A Light\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-11ywj0u\",\"data-styles-preset\":\"cTjFiZdnF\",style:{\"--framer-text-alignment\":\"center\"},children:\"The Future of DeFi \"})}),className:\"framer-gqsw8z\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ljtIhjibA:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0V1Y2xpZCBDaXJjdWxhciBBIExpZ2h0\",\"--framer-font-family\":'\"Euclid Circular A Light\", \"Euclid Circular A Light Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(16, 187, 213)\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(274deg, var(--token-200c722a-4bdf-4764-92f5-06d1d0a969e3, rgb(16, 187, 213)) 40.80349441377626%, rgb(103, 214, 159) 100%)\"},children:\"Starts Here\"})})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0V1Y2xpZCBDaXJjdWxhciBBIExpZ2h0\",\"--framer-font-family\":'\"Euclid Circular A Light\", \"Euclid Circular A Light Placeholder\", sans-serif',\"--framer-font-size\":\"54px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(16, 187, 213)\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(274deg, var(--token-200c722a-4bdf-4764-92f5-06d1d0a969e3, rgb(16, 187, 213)) 40.80349441377626%, rgb(103, 214, 159) 100%)\"},children:\"Starts Here\"})})}),className:\"framer-di52hn\",\"data-framer-name\":\"Starts Here\",fonts:[\"CUSTOM;Euclid Circular A Light\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ljtIhjibA:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0V1Y2xpZCBDaXJjdWxhciBBIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Euclid Circular A Regular\", \"Euclid Circular A Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgba(255, 255, 255, 0.7)\"},children:\"Moving the industry forward with innovative technologies since 2017\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0V1Y2xpZCBDaXJjdWxhciBBIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Euclid Circular A Regular\", \"Euclid Circular A Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgba(255, 255, 255, 0.7)\"},children:[\"Moving the industry forward with innovative technologies \",/*#__PURE__*/_jsx(Link,{clickTrackingId:\"since-2017-home\",href:{webPageId:\"LYExVCZHJ\"},motionChild:true,nodeId:\"LthM17GGI\",openInNewTab:false,scopeId:\"flOIYRy97\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-pbndum\",\"data-styles-preset\":\"f_JgQVGd5\",children:\"since 2017\"})})]})}),className:\"framer-15rqeme\",\"data-framer-name\":\"Title\",fonts:[\"CUSTOM;Euclid Circular A Regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-w8zfd9\",\"data-framer-name\":\"Products\",children:[/*#__PURE__*/_jsx(Link,{clickTrackingId:\"carbon-home\",href:\"https://www.carbondefi.xyz/\",motionChild:true,nodeId:\"kOrX7Ny_R\",openInNewTab:true,scopeId:\"flOIYRy97\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aVMpqy5l3:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1200,intrinsicWidth:840,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+90+40+201.2+0+0),pixelHeight:1200,pixelWidth:840,positionX:\"center\",positionY:\"top\",sizes:`max((min(${componentViewport?.width||\"100vw\"}, 1600px) - 80px) / 3, 200px)`,src:\"https://framerusercontent.com/images/Nf6Ki1dskvZ1kjFa1oAxoQLRWI.png\",srcSet:\"https://framerusercontent.com/images/Nf6Ki1dskvZ1kjFa1oAxoQLRWI.png?scale-down-to=1024 716w,https://framerusercontent.com/images/Nf6Ki1dskvZ1kjFa1oAxoQLRWI.png 840w\"},whileHover:animation1},ljtIhjibA:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1200,intrinsicWidth:840,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+90+20+281.4+0+0),pixelHeight:1200,pixelWidth:840,sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 1600px) - 40px)`,src:\"https://framerusercontent.com/images/Nf6Ki1dskvZ1kjFa1oAxoQLRWI.png\",srcSet:\"https://framerusercontent.com/images/Nf6Ki1dskvZ1kjFa1oAxoQLRWI.png?scale-down-to=1024 716w,https://framerusercontent.com/images/Nf6Ki1dskvZ1kjFa1oAxoQLRWI.png 840w\"}}},children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:1200,intrinsicWidth:840,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+90+40+201.2+0),pixelHeight:1200,pixelWidth:840,sizes:`max((min(${componentViewport?.width||\"100vw\"}, 1600px) - 160px) / 3, 1px)`,src:\"https://framerusercontent.com/images/Nf6Ki1dskvZ1kjFa1oAxoQLRWI.png\",srcSet:\"https://framerusercontent.com/images/Nf6Ki1dskvZ1kjFa1oAxoQLRWI.png?scale-down-to=1024 716w,https://framerusercontent.com/images/Nf6Ki1dskvZ1kjFa1oAxoQLRWI.png 840w\"},className:\"framer-3bwh16 framer-10sqhdz\",\"data-border\":true,\"data-framer-name\":\"Carbon\",whileHover:animation,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-84z093\",\"data-framer-name\":\"Frame 105\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-lphs0r\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-106x8pr\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aVMpqy5l3:{background:{alt:\"Carbon DeFi Icon\",fit:\"fill\",intrinsicHeight:1080,intrinsicWidth:1080,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+90+40+201.2+0+0+0+0+24+0+0+0+0),pixelHeight:1080,pixelWidth:1080,sizes:\"60px\",src:\"https://framerusercontent.com/images/liO5mojke4Zu3U77TiXqTvAq4yw.svg\",srcSet:\"https://framerusercontent.com/images/liO5mojke4Zu3U77TiXqTvAq4yw.svg?scale-down-to=512 512w,https://framerusercontent.com/images/liO5mojke4Zu3U77TiXqTvAq4yw.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/liO5mojke4Zu3U77TiXqTvAq4yw.svg 1080w\"}},ljtIhjibA:{background:{alt:\"Carbon DeFi Icon\",fit:\"fill\",intrinsicHeight:1080,intrinsicWidth:1080,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+90+20+281.4+0+0+0+0+30+0+0+0+0),pixelHeight:1080,pixelWidth:1080,sizes:\"70px\",src:\"https://framerusercontent.com/images/liO5mojke4Zu3U77TiXqTvAq4yw.svg\",srcSet:\"https://framerusercontent.com/images/liO5mojke4Zu3U77TiXqTvAq4yw.svg?scale-down-to=512 512w,https://framerusercontent.com/images/liO5mojke4Zu3U77TiXqTvAq4yw.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/liO5mojke4Zu3U77TiXqTvAq4yw.svg 1080w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Carbon DeFi Icon\",fit:\"fill\",intrinsicHeight:1080,intrinsicWidth:1080,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+90+40+201.2+0+0+0+30+0+0+0+0),pixelHeight:1080,pixelWidth:1080,sizes:\"70px\",src:\"https://framerusercontent.com/images/liO5mojke4Zu3U77TiXqTvAq4yw.svg\",srcSet:\"https://framerusercontent.com/images/liO5mojke4Zu3U77TiXqTvAq4yw.svg?scale-down-to=512 512w,https://framerusercontent.com/images/liO5mojke4Zu3U77TiXqTvAq4yw.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/liO5mojke4Zu3U77TiXqTvAq4yw.svg 1080w\"},className:\"framer-24cfph\",\"data-border\":true})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1t1vwsd\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-a95wmg\",\"data-framer-name\":\"Carbon_DeFi_White_Wordmark\",fill:\"black\",intrinsicHeight:168,intrinsicWidth:1505,svg:'<svg width=\"1505\" height=\"168\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M105.221 167.906c51.339 0 86.095-19.656 99.724-54.992l-34.528-6.626c-8.86 23.41-30.44 35.557-63.605 35.557-42.934 0-70.648-23.189-70.648-57.642 0-35.557 26.578-57.642 69.966-57.642 33.847 0 56.109 13.471 63.605 37.986l35.437-5.08C194.723 22.145 158.831.5 107.039.5 43.434.5.5 34.732.5 84.424c0 50.575 40.435 83.482 104.721 83.482Zm126.469-5.301h36.8l17.264-33.127h103.813l17.264 33.127h36.801L357.537 5.8h-39.753L231.69 162.605Zm66.331-56.538 30.44-58.084c2.271-4.638 6.587-14.355 8.859-20.539h.681c2.272 6.184 6.588 15.901 8.86 20.54l30.439 58.083h-79.279Zm195.778 56.538h34.074v-59.63h59.743l42.252 59.63h39.299L623.962 99c29.304-7.067 39.072-27.827 39.072-45.275 0-22.306-13.857-47.925-62.015-47.925h-107.22v156.805Zm34.074-82.82V29.654h66.104c25.669 0 33.165 12.588 33.165 24.514 0 12.589-7.723 25.619-33.165 25.619h-66.104Zm196.947 82.82h117.67c42.706 0 59.289-19.876 59.289-43.949 0-19.877-10.45-34.011-34.756-37.766 20.445-3.975 30.44-18.772 30.44-34.895 0-21.201-15.902-40.195-55.655-40.195H724.82v156.805Zm34.074-23.631V93.92h77.235c22.262 0 30.667 9.276 30.667 22.527 0 13.472-8.859 22.527-30.667 22.527h-77.235Zm0-67.58V29.431h75.418c22.716 0 28.168 10.6 28.168 19.876 0 10.601-4.089 22.086-28.168 22.086h-75.418Zm290.876 96.512c64.51 0 107.22-33.349 107.22-83.703C1156.99 33.849 1114.06.5 1049.77.5c-64.288 0-106.994 33.349-106.994 83.703 0 50.133 42.706 83.703 106.994 83.703Zm-71.102-83.703c0-34.674 28.622-58.084 71.102-58.084 42.48 0 71.33 23.41 71.33 58.084 0 34.453-28.85 58.084-71.33 58.084s-71.102-23.631-71.102-58.084Zm230.602 78.402h30.89V40.475h.68c2.28 4.416 7.05 10.821 11.82 15.68l104.94 106.45h34.76V5.8h-30.89v99.826c0 7.067.22 13.692.22 20.539h-.68c-2.5-5.301-7.04-11.043-11.81-16.122L1247.43 5.8h-38.16v156.805Z\" fill=\"#fff\"/><path d=\"M1504.21 147.1v15.762h-48.16v-15.898c0-13.92 9.7-22.995 24.01-22.995 14.04 0 24.15 9.007 24.15 23.131Zm-42.74 9.28h37.31v-9.143c0-10.44-8.41-16.376-18.72-16.376-10.72 0-18.59 5.799-18.59 16.239v9.28Zm20.76-55.599h16.55V76.763h5.43v30.5h-48.16V77.24h5.42v23.541h15.33v-22.38h5.43v22.38Zm-26.18-72.143h5.42v23.54h15.33v-22.38h5.43v22.38h21.98v6.482h-48.16V28.638Zm0-23.197h48.16v6.483h-48.16V5.44Z\" fill=\"gray\"/></svg>',title:\"Carbon DeFi\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aVMpqy5l3:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0V1Y2xpZCBDaXJjdWxhciBBIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Euclid Circular A Regular\", \"Euclid Circular A Regular Placeholder\", sans-serif',\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"rgba(255, 255, 255, 0.6)\"},children:\"The ultimate DEX for onchain trading & liquidity.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0V1Y2xpZCBDaXJjdWxhciBBIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Euclid Circular A Regular\", \"Euclid Circular A Regular Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"rgba(255, 255, 255, 0.6)\"},children:\"The ultimate DEX for onchain trading & liquidity.\"})}),className:\"framer-1j647bf\",\"data-framer-name\":\"Supporting text\",fonts:[\"CUSTOM;Euclid Circular A Regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),isDisplayed()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-uxpa4u hidden-nyn7el\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1xafoqp-container\",isModuleExternal:true,nodeId:\"CsBLz0b_D\",scopeId:\"flOIYRy97\",children:/*#__PURE__*/_jsx(ChainIcon,{chFlKtAoN:addImageAlt({pixelHeight:300,pixelWidth:300,src:\"https://framerusercontent.com/images/cDGSyQ6AX5jUy4PVNNz3w69x2Jk.png\"},\"\"),height:\"100%\",id:\"CsBLz0b_D\",layoutId:\"CsBLz0b_D\",SD6drfNR3:\"Ethereum\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-ad16vp-container\",isModuleExternal:true,nodeId:\"qRRbM2Ber\",scopeId:\"flOIYRy97\",children:/*#__PURE__*/_jsx(ChainIcon,{chFlKtAoN:addImageAlt({pixelHeight:300,pixelWidth:300,src:\"https://framerusercontent.com/images/wTXAIaVsrpt0yJfoyJYNXY7U4.png\"},\"\"),height:\"100%\",id:\"qRRbM2Ber\",layoutId:\"qRRbM2Ber\",SD6drfNR3:\"Sei\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-eo5u4g-container\",isModuleExternal:true,nodeId:\"g9s0OuMov\",scopeId:\"flOIYRy97\",children:/*#__PURE__*/_jsx(ChainIcon,{chFlKtAoN:addImageAlt({pixelHeight:300,pixelWidth:300,src:\"https://framerusercontent.com/images/Fsp0AgBxDdb2lVY6PQXHcm8P0ck.png\"},\"\"),height:\"100%\",id:\"g9s0OuMov\",layoutId:\"g9s0OuMov\",SD6drfNR3:\"Celo\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-11yhf0q-container\",isModuleExternal:true,nodeId:\"bVn1dcIVF\",scopeId:\"flOIYRy97\",children:/*#__PURE__*/_jsx(ChainIcon,{chFlKtAoN:addImageAlt({pixelHeight:140,pixelWidth:140,src:\"https://framerusercontent.com/images/Y5eHrRIkE75gE5539wdyz2fnkjI.svg\"},\"Coti Logo\"),height:\"100%\",id:\"bVn1dcIVF\",layoutId:\"bVn1dcIVF\",SD6drfNR3:\"Coti\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-zpw44w-container\",isModuleExternal:true,nodeId:\"Snnr9bDHP\",scopeId:\"flOIYRy97\",children:/*#__PURE__*/_jsx(ChainIcon,{chFlKtAoN:addImageAlt({pixelHeight:44,pixelWidth:44,src:\"https://framerusercontent.com/images/h075nab75IhxGFVikhcKyu71rA.png\"},\"\"),height:\"100%\",id:\"Snnr9bDHP\",layoutId:\"Snnr9bDHP\",SD6drfNR3:\"Base\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-vp41kb-container\",isModuleExternal:true,nodeId:\"eaycHrpVW\",scopeId:\"flOIYRy97\",children:/*#__PURE__*/_jsx(ChainIcon,{chFlKtAoN:addImageAlt({pixelHeight:300,pixelWidth:300,src:\"https://framerusercontent.com/images/rYH1kfNm5I5Q5OZo0IQUNoqpKI.png\"},\"Fantom\"),height:\"100%\",id:\"eaycHrpVW\",layoutId:\"eaycHrpVW\",SD6drfNR3:\"Fantom\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-qg9d16-container\",isModuleExternal:true,nodeId:\"jTTW9tUow\",scopeId:\"flOIYRy97\",children:/*#__PURE__*/_jsx(ChainIcon,{chFlKtAoN:addImageAlt({pixelHeight:300,pixelWidth:300,src:\"https://framerusercontent.com/images/6i2xHuEWhR81SyMTmuZNrmvpdPc.png\"},\"\"),height:\"100%\",id:\"jTTW9tUow\",layoutId:\"jTTW9tUow\",SD6drfNR3:\"Mantle\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-133r38b-container\",isModuleExternal:true,nodeId:\"pvGZnEPz2\",scopeId:\"flOIYRy97\",children:/*#__PURE__*/_jsx(ChainIcon,{chFlKtAoN:addImageAlt({pixelHeight:297,pixelWidth:297,src:\"https://framerusercontent.com/images/004SpHFQ5B24XyoOLblArqockY.png\"},\"IOTA\"),height:\"100%\",id:\"pvGZnEPz2\",layoutId:\"pvGZnEPz2\",SD6drfNR3:\"IOTA\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1sm2ghp-container\",isModuleExternal:true,nodeId:\"T3tiJ31nH\",scopeId:\"flOIYRy97\",children:/*#__PURE__*/_jsx(ChainIcon,{chFlKtAoN:addImageAlt({pixelHeight:140,pixelWidth:140,src:\"https://framerusercontent.com/images/kJkyEZzh4m6m3JFpvuZnbUP43Q.png\"},\"Berachain\"),height:\"100%\",id:\"T3tiJ31nH\",layoutId:\"T3tiJ31nH\",SD6drfNR3:\"Berachain\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-p14hdd-container\",isModuleExternal:true,nodeId:\"w8nlTkrkO\",scopeId:\"flOIYRy97\",children:/*#__PURE__*/_jsx(ChainIcon,{chFlKtAoN:addImageAlt({pixelHeight:301,pixelWidth:300,src:\"https://framerusercontent.com/images/Te2nhtXB0Xe5B6K8H9GiQMZdLD0.png\"},\"Sonic Logo\"),height:\"100%\",id:\"w8nlTkrkO\",layoutId:\"w8nlTkrkO\",SD6drfNR3:\"Sonic\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1k3lta-container\",isModuleExternal:true,nodeId:\"d8RcogeMB\",scopeId:\"flOIYRy97\",children:/*#__PURE__*/_jsx(ChainIcon,{chFlKtAoN:addImageAlt({pixelHeight:140,pixelWidth:140,src:\"https://framerusercontent.com/images/IMS9HuNJFIbtf50BwIwQyEKpDm4.svg\"},\"Arbitrum\"),height:\"100%\",id:\"d8RcogeMB\",layoutId:\"d8RcogeMB\",SD6drfNR3:\"Sonic\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-fehk1o\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-rlpevy\",whileHover:animation2,children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-9v0580-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"M1aRiTxEL\",rendersWithMotion:true,scopeId:\"flOIYRy97\",style:{rotate:-90},children:/*#__PURE__*/_jsx(Feather,{color:\"rgb(255, 255, 255)\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"arrow-down\",id:\"M1aRiTxEL\",layoutId:\"M1aRiTxEL\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})})]})})})}),/*#__PURE__*/_jsx(Link,{clickTrackingId:\"arb-home\",href:{webPageId:\"ed4VILvyE\"},motionChild:true,nodeId:\"u8ahZDQK9\",openInNewTab:false,scopeId:\"flOIYRy97\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aVMpqy5l3:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1200,intrinsicWidth:840,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+90+40+201.2+0+0),pixelHeight:1200,pixelWidth:840,sizes:`max((min(${componentViewport?.width||\"100vw\"}, 1600px) - 80px) / 3, 200px)`,src:\"https://framerusercontent.com/images/AeLKcbfcpUgEyw3yGbuvCu53So.png\",srcSet:\"https://framerusercontent.com/images/AeLKcbfcpUgEyw3yGbuvCu53So.png?scale-down-to=1024 716w,https://framerusercontent.com/images/AeLKcbfcpUgEyw3yGbuvCu53So.png 840w\"},whileHover:animation1},ljtIhjibA:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1200,intrinsicWidth:840,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+90+20+281.4+0+500),pixelHeight:1200,pixelWidth:840,sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 1600px) - 40px)`,src:\"https://framerusercontent.com/images/AeLKcbfcpUgEyw3yGbuvCu53So.png\",srcSet:\"https://framerusercontent.com/images/AeLKcbfcpUgEyw3yGbuvCu53So.png?scale-down-to=1024 716w,https://framerusercontent.com/images/AeLKcbfcpUgEyw3yGbuvCu53So.png 840w\"}}},children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:1200,intrinsicWidth:840,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+90+40+201.2+0),pixelHeight:1200,pixelWidth:840,sizes:`max((min(${componentViewport?.width||\"100vw\"}, 1600px) - 160px) / 3, 1px)`,src:\"https://framerusercontent.com/images/AeLKcbfcpUgEyw3yGbuvCu53So.png\",srcSet:\"https://framerusercontent.com/images/AeLKcbfcpUgEyw3yGbuvCu53So.png?scale-down-to=1024 716w,https://framerusercontent.com/images/AeLKcbfcpUgEyw3yGbuvCu53So.png 840w\"},className:\"framer-26uedx framer-10sqhdz\",\"data-border\":true,\"data-framer-name\":\"Fastlane\",whileHover:animation,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-d6wijr\",\"data-framer-name\":\"Frame 105\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-q079q6\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-bjnwru\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aVMpqy5l3:{background:{alt:\"Bancor Arb Fast Lane Bot\",fit:\"fill\",intrinsicHeight:1080,intrinsicWidth:1080,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+90+40+201.2+0+0+0+0+24+0+0+0+0),pixelHeight:1080,pixelWidth:1080,sizes:\"60px\",src:\"https://framerusercontent.com/images/JdjnJdx3mcjEsCdAFBJZZMQBBs.png\",srcSet:\"https://framerusercontent.com/images/JdjnJdx3mcjEsCdAFBJZZMQBBs.png?scale-down-to=512 512w,https://framerusercontent.com/images/JdjnJdx3mcjEsCdAFBJZZMQBBs.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/JdjnJdx3mcjEsCdAFBJZZMQBBs.png 1080w\"}},ljtIhjibA:{background:{alt:\"Bancor Arb Fast Lane Bot\",fit:\"fill\",intrinsicHeight:1080,intrinsicWidth:1080,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+90+20+281.4+0+500+0+0+30+0+0+0+0),pixelHeight:1080,pixelWidth:1080,sizes:\"70px\",src:\"https://framerusercontent.com/images/JdjnJdx3mcjEsCdAFBJZZMQBBs.png\",srcSet:\"https://framerusercontent.com/images/JdjnJdx3mcjEsCdAFBJZZMQBBs.png?scale-down-to=512 512w,https://framerusercontent.com/images/JdjnJdx3mcjEsCdAFBJZZMQBBs.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/JdjnJdx3mcjEsCdAFBJZZMQBBs.png 1080w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Bancor Arb Fast Lane Bot\",fit:\"fill\",intrinsicHeight:1080,intrinsicWidth:1080,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+90+40+201.2+0+0+0+30+0+0+0+0),pixelHeight:1080,pixelWidth:1080,sizes:\"70px\",src:\"https://framerusercontent.com/images/JdjnJdx3mcjEsCdAFBJZZMQBBs.png\",srcSet:\"https://framerusercontent.com/images/JdjnJdx3mcjEsCdAFBJZZMQBBs.png?scale-down-to=512 512w,https://framerusercontent.com/images/JdjnJdx3mcjEsCdAFBJZZMQBBs.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/JdjnJdx3mcjEsCdAFBJZZMQBBs.png 1080w\"},className:\"framer-68lwvw\",\"data-border\":true})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1dm82ge\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1uabc0r\",\"data-framer-name\":\"Arb_Fast_Lane_Gradient\",fill:\"black\",intrinsicHeight:137,intrinsicWidth:1100,svg:'<svg width=\"1100\" height=\"137\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M109.378 96.533H41.04l-25.79 38.122H0L91.493 0h52.147l-28.426 134.655h-13.931l8.095-38.122Zm-59.49-13.085H112.2l14.684-69.793H96.952L49.888 83.448Zm118.801-43.62h13.178l-2.635 12.896a39.334 39.334 0 0 1 13.178-10.43c5.272-2.53 11.107-3.794 17.508-3.794 1.004 0 2.008.064 3.012.19 1.129 0 2.196.063 3.2.19l-3.012 14.034c-2.51-.633-5.271-.949-8.284-.949-6.024 0-11.546 1.455-16.565 4.363-5.021 2.908-9.163 7.016-12.426 12.327l-13.93 66h-13.179l19.955-94.827ZM243.713 0h13.178l-10.543 48.931c3.766-3.161 8.095-5.69 12.99-7.586 5.02-2.023 10.668-3.035 16.944-3.035 6.4 0 12.111 1.201 17.131 3.604 5.146 2.277 9.413 5.373 12.802 9.293 3.513 3.92 6.15 8.471 7.906 13.655 1.883 5.184 2.825 10.684 2.825 16.5a56.462 56.462 0 0 1-3.955 20.861 53.415 53.415 0 0 1-11.295 17.449c-4.768 4.932-10.48 8.915-17.132 11.948-6.652 3.035-13.992 4.553-22.025 4.553-7.028 0-13.178-1.139-18.449-3.414-5.272-2.277-9.727-5.374-13.367-9.293l-2.258 11.189h-13.178L243.713 0Zm29.744 51.017c-5.648 0-11.17 1.264-16.566 3.794a39.977 39.977 0 0 0-13.931 10.24l-9.225 43.432c2.887 4.804 6.966 8.535 12.237 11.189 5.272 2.53 10.919 3.794 16.943 3.794 5.648 0 10.92-1.012 15.814-3.035 4.895-2.149 9.162-5.058 12.801-8.724a41.127 41.127 0 0 0 8.473-13.086c2.133-5.059 3.199-10.495 3.199-16.311 0-4.551-.69-8.723-2.071-12.517-1.38-3.92-3.389-7.207-6.024-9.861-2.51-2.782-5.647-4.932-9.413-6.45-3.639-1.642-7.718-2.465-12.237-2.465ZM718.858 0h13.931l-25.603 121h62.313l-2.824 13.655h-76.244L718.858 0Zm132.985 125.173c-3.891 3.287-8.346 5.941-13.366 7.965-4.895 2.023-10.543 3.035-16.943 3.035-6.526 0-12.362-1.139-17.508-3.414-5.021-2.403-9.288-5.563-12.802-9.483-3.389-3.92-6.024-8.471-7.906-13.655-1.758-5.184-2.637-10.684-2.637-16.5 0-7.207 1.319-14.098 3.954-20.673 2.761-6.701 6.526-12.516 11.295-17.448 4.769-5.058 10.481-9.104 17.131-12.137 6.778-3.035 14.183-4.553 22.215-4.553 6.904 0 12.99 1.201 18.261 3.604 5.396 2.277 9.852 5.373 13.367 9.293l2.447-11.38h13.366l-19.955 94.828H849.96l1.883-9.482Zm-27.486-1.707c5.648 0 11.107-1.2 16.379-3.604a40 40 0 0 0 13.932-10.241l9.035-43.62c-2.887-4.805-6.965-8.472-12.236-11-5.146-2.656-10.731-3.984-16.755-3.984-5.648 0-10.92 1.075-15.814 3.225a41.817 41.817 0 0 0-12.613 8.723c-3.639 3.668-6.526 8.03-8.661 13.087-2.008 4.931-3.011 10.305-3.011 16.121 0 4.551.69 8.787 2.071 12.707 1.38 3.792 3.325 7.079 5.836 9.861 2.635 2.656 5.773 4.805 9.413 6.449 3.639 1.517 7.78 2.276 12.424 2.276Zm88.171-83.638h12.614l-2.259 10.81c4.141-3.92 8.785-6.953 13.93-9.103 5.146-2.15 10.731-3.225 16.755-3.225 5.648 0 10.732 1.075 15.249 3.225 4.518 2.023 8.221 4.93 11.108 8.723 2.886 3.793 4.831 8.344 5.835 13.656 1.131 5.31 1.005 11.253-.376 17.827l-11.295 52.914h-13.178l10.919-52.724c2.007-9.483.878-17.005-3.389-22.57-4.267-5.562-10.731-8.344-19.39-8.344-5.9 0-11.296 1.391-16.191 4.173-4.895 2.654-9.162 6.511-12.802 11.568l-14.306 67.897h-13.178l19.954-94.827Zm138.932 83.638c5.4 0 10.35-.948 14.87-2.845 4.65-2.023 8.73-4.742 12.24-8.156l8.85 9.483c-4.77 4.426-10.29 7.903-16.57 10.43-6.15 2.531-12.99 3.795-20.52 3.795-7.15 0-13.49-1.201-19.01-3.604-5.53-2.529-10.17-5.816-13.93-9.862a44.598 44.598 0 0 1-8.67-14.224 51.286 51.286 0 0 1-2.82-16.88c0-7.332 1.32-14.223 3.96-20.672 2.76-6.575 6.52-12.265 11.29-17.07 4.77-4.804 10.35-8.597 16.76-11.379 6.52-2.781 13.61-4.172 21.27-4.172 7.53 0 14.05 1.455 19.58 4.363 5.52 2.782 9.98 6.575 13.36 11.38 3.39 4.803 5.65 10.303 6.78 16.499 1.13 6.195 1 12.643-.38 19.344h-78.88c-.12 5.69.69 10.684 2.45 14.984 1.76 4.173 4.14 7.649 7.16 10.431a31.964 31.964 0 0 0 10.16 6.068 35.533 35.533 0 0 0 12.05 2.087Zm6.78-72.828c-4.02 0-8.04.632-12.05 1.896a34.096 34.096 0 0 0-10.73 5.31c-3.27 2.277-6.15 5.121-8.66 8.535-2.51 3.414-4.33 7.334-5.46 11.759h63.82c.37-8.598-2.01-15.298-7.16-20.103-5.02-4.931-11.61-7.397-19.76-7.397Z\" fill=\"#fff\"/><path d=\"M362.013 0h75.491l-3.012 13.655h-61.748l-9.413 45.138h48.758l-2.823 13.655h-48.571l-13.178 62.207h-13.931L362.013 0Zm140.706 125.173c-3.891 3.287-8.346 5.941-13.366 7.965-4.895 2.023-10.543 3.035-16.943 3.035-6.526 0-12.362-1.139-17.508-3.414-5.021-2.403-9.288-5.563-12.801-9.483-3.389-3.92-6.024-8.471-7.907-13.655-1.758-5.184-2.636-10.684-2.636-16.5 0-7.207 1.318-14.098 3.953-20.673 2.762-6.701 6.527-12.516 11.295-17.448 4.77-5.058 10.481-9.104 17.133-12.137 6.777-3.035 14.181-4.553 22.213-4.553 6.904 0 12.99 1.201 18.262 3.604 5.397 2.277 9.853 5.373 13.366 9.293l2.447-11.38h13.367l-19.955 94.828h-12.802l1.882-9.482Zm-27.484-1.707c5.647 0 11.105-1.2 16.377-3.604a40 40 0 0 0 13.932-10.241l9.035-43.62c-2.885-4.805-6.964-8.472-12.236-11-5.146-2.656-10.731-3.984-16.755-3.984-5.648 0-10.919 1.075-15.813 3.225a41.834 41.834 0 0 0-12.614 8.723c-3.639 3.668-6.526 8.03-8.66 13.087-2.007 4.931-3.011 10.305-3.011 16.121 0 4.551.69 8.787 2.07 12.707 1.381 3.792 3.326 7.079 5.836 9.861 2.635 2.656 5.774 4.805 9.413 6.449 3.639 1.517 7.781 2.276 12.426 2.276Zm130.528-14.034c0 3.918-.816 7.522-2.448 10.809-1.631 3.289-3.89 6.133-6.777 8.535-2.761 2.277-6.087 4.11-9.977 5.5-3.891 1.264-8.032 1.897-12.426 1.897-9.287 0-16.755-2.023-22.402-6.069-5.522-4.172-9.475-9.674-11.86-16.5l11.672-5.311c1.756 5.184 4.581 9.167 8.471 11.948 3.891 2.656 8.848 3.984 14.872 3.984 4.895 0 9.037-1.201 12.426-3.604 3.513-2.402 5.271-5.627 5.271-9.672 0-3.92-1.256-7.144-3.765-9.674-2.385-2.527-5.774-5.057-10.167-7.586l-7.906-4.74c-4.894-2.909-9.099-6.45-12.614-10.622-3.388-4.172-5.082-9.102-5.082-14.793 0-3.666.69-7.016 2.071-10.051 1.506-3.16 3.577-5.817 6.212-7.966 2.636-2.277 5.711-4.045 9.224-5.31 3.64-1.264 7.657-1.895 12.048-1.895 6.778 0 12.678 1.578 17.697 4.74 5.02 3.16 8.723 7.586 11.108 13.276l-12.049 5.5c-1.381-3.287-3.514-6.006-6.401-8.156-2.761-2.149-6.464-3.223-11.107-3.223-4.518 0-8.221 1.137-11.107 3.413-2.887 2.15-4.33 5.12-4.33 8.914 0 3.287 1.004 6.195 3.011 8.724 2.009 2.403 4.833 4.677 8.473 6.827l8.094 4.932a92.88 92.88 0 0 1 7.342 4.931 29.826 29.826 0 0 1 6.213 5.689 26.801 26.801 0 0 1 4.519 7.207c1.128 2.529 1.694 5.312 1.694 8.346Zm22.59-69.604h19.202l4.705-21.431 15.061-7.018-6.024 28.449h25.227L683.7 51.965h-25.038l-11.107 51.587c-1.381 6.575-1.319 11.38.188 14.413 1.506 3.035 5.522 4.553 12.048 4.553h9.978l-2.636 12.137h-10.354c-10.04 0-16.88-2.339-20.52-7.017-3.639-4.805-4.393-12.391-2.259-22.759l11.108-52.914h-16.755V39.828Z\" fill=\"url(#a)\"/><defs><linearGradient id=\"a\" x1=\"587.996\" y1=\"98.158\" x2=\"522.066\" y2=\"-72.721\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#10BBD8\"/><stop offset=\"1\" stop-color=\"#00B578\"/></linearGradient></defs></svg>',title:\"Arb Fast Lane Bot\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aVMpqy5l3:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0V1Y2xpZCBDaXJjdWxhciBBIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Euclid Circular A Regular\", \"Euclid Circular A Regular Placeholder\", sans-serif',\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"rgba(255, 255, 255, 0.6)\"},children:\"DeFi's most advanced arbitrage infrastructure for ecosystem growth.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0V1Y2xpZCBDaXJjdWxhciBBIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Euclid Circular A Regular\", \"Euclid Circular A Regular Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"rgba(255, 255, 255, 0.6)\"},children:\"DeFi's most advanced arbitrage infrastructure for ecosystem growth.\"})}),className:\"framer-1wh4o6h\",\"data-framer-name\":\"Supporting text\",fonts:[\"CUSTOM;Euclid Circular A Regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-158cqct\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-wtzqxb-container\",isModuleExternal:true,nodeId:\"oOf_9EBuO\",scopeId:\"flOIYRy97\",children:/*#__PURE__*/_jsx(ChainIcon,{chFlKtAoN:addImageAlt({pixelHeight:300,pixelWidth:300,src:\"https://framerusercontent.com/images/cDGSyQ6AX5jUy4PVNNz3w69x2Jk.png\"},\"\"),height:\"100%\",id:\"oOf_9EBuO\",layoutId:\"oOf_9EBuO\",SD6drfNR3:\"Ethereum\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1tlnosq-container\",isModuleExternal:true,nodeId:\"UVMdd1fTg\",scopeId:\"flOIYRy97\",children:/*#__PURE__*/_jsx(ChainIcon,{chFlKtAoN:addImageAlt({pixelHeight:300,pixelWidth:300,src:\"https://framerusercontent.com/images/wTXAIaVsrpt0yJfoyJYNXY7U4.png\"},\"\"),height:\"100%\",id:\"UVMdd1fTg\",layoutId:\"UVMdd1fTg\",SD6drfNR3:\"Sei\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-5au4my-container\",isModuleExternal:true,nodeId:\"mY5gK2Iae\",scopeId:\"flOIYRy97\",children:/*#__PURE__*/_jsx(ChainIcon,{chFlKtAoN:addImageAlt({pixelHeight:300,pixelWidth:300,src:\"https://framerusercontent.com/images/Fsp0AgBxDdb2lVY6PQXHcm8P0ck.png\"},\"\"),height:\"100%\",id:\"mY5gK2Iae\",layoutId:\"mY5gK2Iae\",SD6drfNR3:\"Celo\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-eez0k4-container\",isModuleExternal:true,nodeId:\"qgPBBjTTw\",scopeId:\"flOIYRy97\",children:/*#__PURE__*/_jsx(ChainIcon,{chFlKtAoN:addImageAlt({pixelHeight:140,pixelWidth:140,src:\"https://framerusercontent.com/images/Y5eHrRIkE75gE5539wdyz2fnkjI.svg\"},\"Coti Logo\"),height:\"100%\",id:\"qgPBBjTTw\",layoutId:\"qgPBBjTTw\",SD6drfNR3:\"Coti\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1scirzq-container\",isModuleExternal:true,nodeId:\"a2grFMyuR\",scopeId:\"flOIYRy97\",children:/*#__PURE__*/_jsx(ChainIcon,{chFlKtAoN:addImageAlt({pixelHeight:44,pixelWidth:44,src:\"https://framerusercontent.com/images/h075nab75IhxGFVikhcKyu71rA.png\"},\"\"),height:\"100%\",id:\"a2grFMyuR\",layoutId:\"a2grFMyuR\",SD6drfNR3:\"Base\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1mq537c-container\",isModuleExternal:true,nodeId:\"NFXQx9wqE\",scopeId:\"flOIYRy97\",children:/*#__PURE__*/_jsx(ChainIcon,{chFlKtAoN:addImageAlt({pixelHeight:140,pixelWidth:140,src:\"https://framerusercontent.com/images/IMS9HuNJFIbtf50BwIwQyEKpDm4.svg\"},\"Arbitrum\"),height:\"100%\",id:\"NFXQx9wqE\",layoutId:\"NFXQx9wqE\",SD6drfNR3:\"Arbitrum\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-28z05-container\",isModuleExternal:true,nodeId:\"xVg4ROgTJ\",scopeId:\"flOIYRy97\",children:/*#__PURE__*/_jsx(ChainIcon,{chFlKtAoN:addImageAlt({pixelHeight:297,pixelWidth:297,src:\"https://framerusercontent.com/images/004SpHFQ5B24XyoOLblArqockY.png\"},\"IOTA EVM Logo\"),height:\"100%\",id:\"xVg4ROgTJ\",layoutId:\"xVg4ROgTJ\",SD6drfNR3:\"IOTA\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aVMpqy5l3:{y:(componentViewport?.y||0)+0+0+0+90+40+201.2+0+0+0+0+24+0+0+80+0+175.7882+15},ljtIhjibA:{y:(componentViewport?.y||0)+0+0+0+90+20+281.4+0+500+0+0+30+0+0+100+0+195.5+15}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:20,width:\"20px\",y:(componentViewport?.y||0)+0+0+0+90+40+201.2+0+0+0+30+0+0+100+0+195.5+15,children:/*#__PURE__*/_jsx(Container,{className:\"framer-xq07hb-container\",nodeId:\"fRAM2sR2X\",scopeId:\"flOIYRy97\",children:/*#__PURE__*/_jsx(ChainIcon5,{height:\"100%\",id:\"fRAM2sR2X\",kYP7EcvmF:\"+6\",layoutId:\"fRAM2sR2X\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})]})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-vknf2i\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-47g6ah\",whileHover:animation2,children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-e1nfdg-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"wMSNyZg38\",rendersWithMotion:true,scopeId:\"flOIYRy97\",style:{rotate:-90},children:/*#__PURE__*/_jsx(Feather,{color:\"rgb(255, 255, 255)\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"arrow-down\",id:\"wMSNyZg38\",layoutId:\"wMSNyZg38\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})})]})})})}),/*#__PURE__*/_jsx(Link,{clickTrackingId:\"sim-home\",href:\"https://carbondefi.xyz/simulate\",motionChild:true,nodeId:\"sr0fzGFKn\",openInNewTab:true,scopeId:\"flOIYRy97\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aVMpqy5l3:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1800,intrinsicWidth:1260,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+90+40+201.2+0+0),pixelHeight:1800,pixelWidth:1260,sizes:`max((min(${componentViewport?.width||\"100vw\"}, 1600px) - 80px) / 3, 200px)`,src:\"https://framerusercontent.com/images/rJd996VfmcUDshth2FHwfElYIbc.png\",srcSet:\"https://framerusercontent.com/images/rJd996VfmcUDshth2FHwfElYIbc.png?scale-down-to=1024 716w,https://framerusercontent.com/images/rJd996VfmcUDshth2FHwfElYIbc.png 1260w\"},whileHover:animation1},ljtIhjibA:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1800,intrinsicWidth:1260,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+90+20+281.4+0+1e3),pixelHeight:1800,pixelWidth:1260,sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 1600px) - 40px)`,src:\"https://framerusercontent.com/images/rJd996VfmcUDshth2FHwfElYIbc.png\",srcSet:\"https://framerusercontent.com/images/rJd996VfmcUDshth2FHwfElYIbc.png?scale-down-to=1024 716w,https://framerusercontent.com/images/rJd996VfmcUDshth2FHwfElYIbc.png 1260w\"}}},children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:1800,intrinsicWidth:1260,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+90+40+201.2+0),pixelHeight:1800,pixelWidth:1260,sizes:`max((min(${componentViewport?.width||\"100vw\"}, 1600px) - 160px) / 3, 1px)`,src:\"https://framerusercontent.com/images/rJd996VfmcUDshth2FHwfElYIbc.png\",srcSet:\"https://framerusercontent.com/images/rJd996VfmcUDshth2FHwfElYIbc.png?scale-down-to=1024 716w,https://framerusercontent.com/images/rJd996VfmcUDshth2FHwfElYIbc.png 1260w\"},className:\"framer-dlwyjw framer-10sqhdz\",\"data-border\":true,\"data-framer-name\":\"Sim\",whileHover:animation,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-e9hbno\",\"data-framer-name\":\"Frame 105\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-453z3v\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1d7c4ts\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aVMpqy5l3:{background:{alt:\"Carbon DeFi Simulator\",fit:\"fill\",intrinsicHeight:1080,intrinsicWidth:1080,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+90+40+201.2+0+0+0+0+24+0+0+0+0),pixelHeight:1080,pixelWidth:1080,sizes:\"60px\",src:\"https://framerusercontent.com/images/FYhQF6e27pGgJCEIve6NZDyar3Y.png\",srcSet:\"https://framerusercontent.com/images/FYhQF6e27pGgJCEIve6NZDyar3Y.png?scale-down-to=512 512w,https://framerusercontent.com/images/FYhQF6e27pGgJCEIve6NZDyar3Y.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/FYhQF6e27pGgJCEIve6NZDyar3Y.png 1080w\"}},ljtIhjibA:{background:{alt:\"Carbon DeFi Simulator\",fit:\"fill\",intrinsicHeight:1080,intrinsicWidth:1080,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+90+20+281.4+0+1e3+0+0+30+0+0+0+0),pixelHeight:1080,pixelWidth:1080,sizes:\"70px\",src:\"https://framerusercontent.com/images/FYhQF6e27pGgJCEIve6NZDyar3Y.png\",srcSet:\"https://framerusercontent.com/images/FYhQF6e27pGgJCEIve6NZDyar3Y.png?scale-down-to=512 512w,https://framerusercontent.com/images/FYhQF6e27pGgJCEIve6NZDyar3Y.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/FYhQF6e27pGgJCEIve6NZDyar3Y.png 1080w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Carbon DeFi Simulator\",fit:\"fill\",intrinsicHeight:1080,intrinsicWidth:1080,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+90+40+201.2+0+0+0+30+0+0+0+0),pixelHeight:1080,pixelWidth:1080,sizes:\"70px\",src:\"https://framerusercontent.com/images/FYhQF6e27pGgJCEIve6NZDyar3Y.png\",srcSet:\"https://framerusercontent.com/images/FYhQF6e27pGgJCEIve6NZDyar3Y.png?scale-down-to=512 512w,https://framerusercontent.com/images/FYhQF6e27pGgJCEIve6NZDyar3Y.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/FYhQF6e27pGgJCEIve6NZDyar3Y.png 1080w\"},className:\"framer-1aibuw6\",\"data-border\":true})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1n6nkh\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aVMpqy5l3:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO0V1Y2xpZCBDaXJjdWxhciBBIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Euclid Circular A Regular\", \"Euclid Circular A Regular Placeholder\", sans-serif',\"--framer-font-size\":\"37px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Simulator\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO0V1Y2xpZCBDaXJjdWxhciBBIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Euclid Circular A Regular\", \"Euclid Circular A Regular Placeholder\", sans-serif',\"--framer-font-size\":\"41px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Simulator\"})}),className:\"framer-1441mp0\",\"data-framer-name\":\"Supporting text\",fonts:[\"CUSTOM;Euclid Circular A Regular\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aVMpqy5l3:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0V1Y2xpZCBDaXJjdWxhciBBIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Euclid Circular A Regular\", \"Euclid Circular A Regular Placeholder\", sans-serif',\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"rgba(255, 255, 255, 0.6)\"},children:\"Backtest the performance of trading strategies using real historical data.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0V1Y2xpZCBDaXJjdWxhciBBIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Euclid Circular A Regular\", \"Euclid Circular A Regular Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"rgba(255, 255, 255, 0.6)\"},children:\"Backtest the performance of trading strategies using real historical data.\"})}),className:\"framer-ws97e5\",\"data-framer-name\":\"Supporting text\",fonts:[\"CUSTOM;Euclid Circular A Regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),isDisplayed()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-pn5hdo hidden-nyn7el\",\"data-framer-name\":\"Chains\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-hhj6fp-container\",isModuleExternal:true,nodeId:\"HLu229dQY\",scopeId:\"flOIYRy97\",children:/*#__PURE__*/_jsx(ChainIcon,{chFlKtAoN:addImageAlt({pixelHeight:300,pixelWidth:300,src:\"https://framerusercontent.com/images/cDGSyQ6AX5jUy4PVNNz3w69x2Jk.png\"},\"\"),height:\"100%\",id:\"HLu229dQY\",layoutId:\"HLu229dQY\",SD6drfNR3:\"Ethereum\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-7fckev-container\",isModuleExternal:true,nodeId:\"L4fEjKi12\",scopeId:\"flOIYRy97\",children:/*#__PURE__*/_jsx(ChainIcon,{chFlKtAoN:addImageAlt({pixelHeight:300,pixelWidth:300,src:\"https://framerusercontent.com/images/wTXAIaVsrpt0yJfoyJYNXY7U4.png\"},\"\"),height:\"100%\",id:\"L4fEjKi12\",layoutId:\"L4fEjKi12\",SD6drfNR3:\"Sei\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-v43qbd-container\",isModuleExternal:true,nodeId:\"OjkorQXax\",scopeId:\"flOIYRy97\",children:/*#__PURE__*/_jsx(ChainIcon,{chFlKtAoN:addImageAlt({pixelHeight:300,pixelWidth:300,src:\"https://framerusercontent.com/images/Fsp0AgBxDdb2lVY6PQXHcm8P0ck.png\"},\"\"),height:\"100%\",id:\"OjkorQXax\",layoutId:\"OjkorQXax\",SD6drfNR3:\"Celo\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-i90o2j-container\",isModuleExternal:true,nodeId:\"iItK1kRi3\",scopeId:\"flOIYRy97\",children:/*#__PURE__*/_jsx(ChainIcon,{chFlKtAoN:addImageAlt({pixelHeight:140,pixelWidth:140,src:\"https://framerusercontent.com/images/Y5eHrRIkE75gE5539wdyz2fnkjI.svg\"},\"Coti Logo\"),height:\"100%\",id:\"iItK1kRi3\",layoutId:\"iItK1kRi3\",SD6drfNR3:\"Coti\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-79k6l7\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-aefvsd\",whileHover:animation2,children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-ldrzbw-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"TdJSi2d9z\",rendersWithMotion:true,scopeId:\"flOIYRy97\",style:{rotate:-90},children:/*#__PURE__*/_jsx(Feather,{color:\"rgb(255, 255, 255)\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"arrow-down\",id:\"TdJSi2d9z\",layoutId:\"TdJSi2d9z\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})})]})})})})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-tg7xtg\",style:{transformPerspective:1930},children:[/*#__PURE__*/_jsx(Link,{clickTrackingId:\"used-by-dexs-home\",href:{webPageId:\"SZyLI0hrT\"},motionChild:true,nodeId:\"hnDiluxMC\",scopeId:\"flOIYRy97\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-1hhf0ok framer-10sqhdz\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1s9uscl\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1u281c5-container\",isModuleExternal:true,nodeId:\"V48k5NJDe\",scopeId:\"flOIYRy97\",children:/*#__PURE__*/_jsx(ChainIcon,{chFlKtAoN:addImageAlt({pixelHeight:300,pixelWidth:300,src:\"https://framerusercontent.com/images/IyOz2o4JI5koqWNHOv8fYKljfNI.png\"},\"\"),height:\"100%\",id:\"V48k5NJDe\",layoutId:\"V48k5NJDe\",SD6drfNR3:\"Alien Base\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-14s5ae4-container\",isModuleExternal:true,nodeId:\"EMppCV8_M\",scopeId:\"flOIYRy97\",children:/*#__PURE__*/_jsx(ChainIcon,{chFlKtAoN:addImageAlt({pixelHeight:300,pixelWidth:300,src:\"https://framerusercontent.com/images/HdJX8QWh8X89UNJpik6eJpsvVDs.png\"},\"\"),height:\"100%\",id:\"EMppCV8_M\",layoutId:\"EMppCV8_M\",SD6drfNR3:\"Velocimeter\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1sk99nu-container\",isModuleExternal:true,nodeId:\"hKSXuC1Hi\",scopeId:\"flOIYRy97\",children:/*#__PURE__*/_jsx(ChainIcon,{chFlKtAoN:addImageAlt({pixelHeight:188,pixelWidth:190,src:\"https://framerusercontent.com/images/EB3Mz8b8egvxedg9ThKXjV9I2gY.png\"},\"\"),height:\"100%\",id:\"hKSXuC1Hi\",layoutId:\"hKSXuC1Hi\",SD6drfNR3:\"FusionX\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-urdexg\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0V1Y2xpZCBDaXJjdWxhciBBIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Euclid Circular A Regular\", \"Euclid Circular A Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Used by 5 DEXs\"})}),className:\"framer-mh3u4i\",\"data-framer-name\":\"Supporting text\",fonts:[\"CUSTOM;Euclid Circular A Regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0V1Y2xpZCBDaXJjdWxhciBBIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Euclid Circular A Regular\", \"Euclid Circular A Regular Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"rgba(255, 255, 255, 0.6)\"},children:\"Across 10 blockchains\"})}),className:\"framer-j5b63m\",\"data-framer-name\":\"Supporting text\",fonts:[\"CUSTOM;Euclid Circular A Regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})}),isDisplayed1()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1x0t34w hidden-d0wpzk hidden-nyn7el\",\"data-framer-name\":\"Line 3\"})]})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-8ebm62\",\"data-framer-name\":\"Governed by\",id:elementId,ref:ref1,style:{transformPerspective:1930},children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-pf01r\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-9376br\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ljtIhjibA:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-u7sykx\",\"data-styles-preset\":\"PPzQHe2LM\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Governed by the community\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-11ywj0u\",\"data-styles-preset\":\"cTjFiZdnF\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Governed by the community\"})}),className:\"framer-1g5dlt8\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ljtIhjibA:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-16bzrdu\",\"data-styles-preset\":\"stylesPresetParagraph\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Bancor Protocols are managed by the Bancor DAO, a global community of BNT token holders and delegates.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-16bzrdu\",\"data-styles-preset\":\"stylesPresetParagraph\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Bancor Protocols are managed by the Bancor DAO, a global community of BNT token holders and delegates.\"})}),className:\"framer-1e0cshz\",\"data-framer-name\":\"Supporting text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aVMpqy5l3:{y:(componentViewport?.y||0)+0+940.2+80+0+0+251.9},ljtIhjibA:{y:(componentViewport?.y||0)+0+2100.4+20+0+40+244.1}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,y:(componentViewport?.y||0)+0+1010.2+80+0+0+251.9,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1p23sth-container\",nodeId:\"L259kh32x\",scopeId:\"flOIYRy97\",children:/*#__PURE__*/_jsx(Button,{bBCqvE0rm:\"gov-home\",height:\"100%\",id:\"L259kh32x\",JLasj7fEe:\"https://gov.bancor.network/top?period=yearly\",layoutId:\"L259kh32x\",MavOXBlCM:true,Oa6EML9yk:\"Governance Forum\",variant:\"Z3Ts2CUv8\",width:\"100%\"})})})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1jw97p0\",\"data-framer-name\":\"Features\",id:elementId1,ref:ref2,children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1k42ei-container\",isModuleExternal:true,nodeId:\"orzr9koP7\",scopeId:\"flOIYRy97\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ljtIhjibA:{fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false}}},children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:20,height:\"100%\",hoverFactor:.5,id:\"orzr9koP7\",layoutId:\"orzr9koP7\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:56,children:/*#__PURE__*/_jsx(Container,{className:\"framer-12ra8qv-container\",\"data-framer-name\":\"Decentralized\",inComponentSlot:true,name:\"Decentralized\",nodeId:\"Dp9sLQDgB\",rendersWithMotion:true,scopeId:\"flOIYRy97\",children:/*#__PURE__*/_jsx(FeatureChip,{height:\"100%\",id:\"Dp9sLQDgB\",layoutId:\"Dp9sLQDgB\",name:\"Decentralized\",NJSU73nz8:addImageAlt({pixelHeight:52,pixelWidth:47,src:\"https://framerusercontent.com/images/Ehe8aNAJQW63adNDVfXCbJGTYh4.svg\"},\"\"),o4yaTXsLJ:\"Decentralized\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:56,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1qfotvu-container\",\"data-framer-name\":\"Fully onchain\",inComponentSlot:true,name:\"Fully onchain\",nodeId:\"SgZQhpKMv\",rendersWithMotion:true,scopeId:\"flOIYRy97\",children:/*#__PURE__*/_jsx(FeatureChip,{height:\"100%\",id:\"SgZQhpKMv\",layoutId:\"SgZQhpKMv\",name:\"Fully onchain\",NJSU73nz8:addImageAlt({pixelHeight:48,pixelWidth:48,src:\"https://framerusercontent.com/images/GalqMZRpE2JMijTLBNRAGOJzLk.svg\"},\"\"),o4yaTXsLJ:\"Fully onchain\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:56,children:/*#__PURE__*/_jsx(Container,{className:\"framer-peqmww-container\",\"data-framer-name\":\"Limit Orders\",inComponentSlot:true,name:\"Limit Orders\",nodeId:\"BTf1zGQZG\",rendersWithMotion:true,scopeId:\"flOIYRy97\",children:/*#__PURE__*/_jsx(FeatureChip,{height:\"100%\",id:\"BTf1zGQZG\",jTHI0vB0P:\"https://app.carbondefi.xyz/trade/disposable\",layoutId:\"BTf1zGQZG\",name:\"Limit Orders\",NJSU73nz8:addImageAlt({pixelHeight:49,pixelWidth:48,src:\"https://framerusercontent.com/images/1enqUHciWTllNHREM0nfqoA.svg\"},\"Limit Orders\"),o4yaTXsLJ:\"Limit Orders\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:56,children:/*#__PURE__*/_jsx(Container,{className:\"framer-np8lbw-container\",\"data-framer-name\":\"Range Orders\",inComponentSlot:true,name:\"Range Orders\",nodeId:\"fsU5nCCgy\",rendersWithMotion:true,scopeId:\"flOIYRy97\",children:/*#__PURE__*/_jsx(FeatureChip,{height:\"100%\",id:\"fsU5nCCgy\",jTHI0vB0P:\"https://app.carbondefi.xyz/trade/disposable\",layoutId:\"fsU5nCCgy\",name:\"Range Orders\",NJSU73nz8:addImageAlt({pixelHeight:104,pixelWidth:104,src:\"https://framerusercontent.com/images/0pDUjiLDqAE2xJGxKO8HC45BTI.svg\"},\"Range Orders\"),o4yaTXsLJ:\"Range Orders\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:56,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1gozbxe-container\",\"data-framer-name\":\"Concentrated Liquidity\",inComponentSlot:true,name:\"Concentrated Liquidity\",nodeId:\"pYQVDJK4X\",rendersWithMotion:true,scopeId:\"flOIYRy97\",children:/*#__PURE__*/_jsx(FeatureChip,{height:\"100%\",id:\"pYQVDJK4X\",jTHI0vB0P:\"https://app.carbondefi.xyz/trade/overlapping\",layoutId:\"pYQVDJK4X\",name:\"Concentrated Liquidity\",NJSU73nz8:addImageAlt({pixelHeight:69,pixelWidth:69,src:\"https://framerusercontent.com/images/ueHoynIFG1j8d3X9GiHB9SsyQA.svg\"},\"Concentrated Overlapping Liquidity\"),o4yaTXsLJ:\"Concentrated Liquidity\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:56,children:/*#__PURE__*/_jsx(Container,{className:\"framer-7xsoal-container\",\"data-framer-name\":\"Linked Rotating Liqudity\",inComponentSlot:true,name:\"Linked Rotating Liqudity\",nodeId:\"nVh7820zc\",rendersWithMotion:true,scopeId:\"flOIYRy97\",children:/*#__PURE__*/_jsx(FeatureChip,{height:\"100%\",id:\"nVh7820zc\",jTHI0vB0P:\"https://app.carbondefi.xyz/trade/recurring\",layoutId:\"nVh7820zc\",name:\"Linked Rotating Liqudity\",NJSU73nz8:addImageAlt({pixelHeight:48,pixelWidth:48,src:\"https://framerusercontent.com/images/E4ZiSYzTzs9LmhFdu5u0bXoi30.svg\"},\"\"),o4yaTXsLJ:\"Rotating Linked Orders\",width:\"100%\"})})})],speed:25,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-lggr87-container\",isModuleExternal:true,nodeId:\"Pm_qpKQHF\",scopeId:\"flOIYRy97\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ljtIhjibA:{fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false}}},children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"right\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:20,height:\"100%\",hoverFactor:.5,id:\"Pm_qpKQHF\",layoutId:\"Pm_qpKQHF\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:56,width:\"256.5px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1vymn3i-container\",\"data-framer-name\":\"Adjustable Positions\",inComponentSlot:true,name:\"Adjustable Positions\",nodeId:\"EDCWFFOXb\",rendersWithMotion:true,scopeId:\"flOIYRy97\",children:/*#__PURE__*/_jsx(FeatureChip,{height:\"100%\",id:\"EDCWFFOXb\",layoutId:\"EDCWFFOXb\",name:\"Adjustable Positions\",NJSU73nz8:addImageAlt({pixelHeight:48,pixelWidth:48,src:\"https://framerusercontent.com/images/q1DFaJ2o0mXCGvv48tBroWDMcgU.png\"},\"Adjustable Paramaters\"),o4yaTXsLJ:\"Adjustable Positions\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:56,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1idodb3-container\",\"data-framer-name\":\"Custom Spread / Fee Tiers\",inComponentSlot:true,name:\"Custom Spread / Fee Tiers\",nodeId:\"B1NxMOmtd\",rendersWithMotion:true,scopeId:\"flOIYRy97\",children:/*#__PURE__*/_jsx(FeatureChip,{height:\"100%\",id:\"B1NxMOmtd\",layoutId:\"B1NxMOmtd\",name:\"Custom Spread / Fee Tiers\",NJSU73nz8:addImageAlt({pixelHeight:48,pixelWidth:48,src:\"https://framerusercontent.com/images/6UYnoELmFD5f9etsWktgWprIOs.svg\"},\"\"),o4yaTXsLJ:\"Custom Spread / Fee Tiers\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:56,children:/*#__PURE__*/_jsx(Container,{className:\"framer-9upk1-container\",\"data-framer-name\":\"MEV Sandwich Attack Resistant\",inComponentSlot:true,name:\"MEV Sandwich Attack Resistant\",nodeId:\"ZNZy9N2hB\",rendersWithMotion:true,scopeId:\"flOIYRy97\",children:/*#__PURE__*/_jsx(FeatureChip,{height:\"100%\",id:\"ZNZy9N2hB\",layoutId:\"ZNZy9N2hB\",name:\"MEV Sandwich Attack Resistant\",NJSU73nz8:addImageAlt({pixelHeight:48,pixelWidth:48,src:\"https://framerusercontent.com/images/Ei1uRlwykGbesCLwg8DqT7A028.svg\"},\"\"),o4yaTXsLJ:\"MEV Sandwich Attack Resistant\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:56,children:/*#__PURE__*/_jsx(Container,{className:\"framer-4ntyrw-container\",\"data-framer-name\":\"Auto-compounding\",inComponentSlot:true,name:\"Auto-compounding\",nodeId:\"MDjX1d2LG\",rendersWithMotion:true,scopeId:\"flOIYRy97\",children:/*#__PURE__*/_jsx(FeatureChip,{height:\"100%\",id:\"MDjX1d2LG\",layoutId:\"MDjX1d2LG\",name:\"Auto-compounding\",NJSU73nz8:addImageAlt({pixelHeight:48,pixelWidth:48,src:\"https://framerusercontent.com/images/2Z4V3VmjmF4LCbS2oe6NzeivDk.svg\"},\"\"),o4yaTXsLJ:\"Auto-compounding\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:56,children:/*#__PURE__*/_jsx(Container,{className:\"framer-3cw3gc-container\",\"data-framer-name\":\"Advanced Analytics\",inComponentSlot:true,name:\"Advanced Analytics\",nodeId:\"b2d0AWlEM\",rendersWithMotion:true,scopeId:\"flOIYRy97\",children:/*#__PURE__*/_jsx(FeatureChip,{height:\"100%\",id:\"b2d0AWlEM\",layoutId:\"b2d0AWlEM\",name:\"Advanced Analytics\",NJSU73nz8:addImageAlt({pixelHeight:48,pixelWidth:48,src:\"https://framerusercontent.com/images/dcdldCGwhhcQkj67Wz1vRrJLLsQ.svg\"},\"\"),o4yaTXsLJ:\"Advanced Analytics\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"d7LrbZwMI\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:56,children:/*#__PURE__*/_jsx(Container,{className:\"framer-tfdbwq-container\",\"data-framer-name\":\"Execution Bot\",inComponentSlot:true,name:\"Execution Bot\",nodeId:\"MlMYfOVMj\",rendersWithMotion:true,scopeId:\"flOIYRy97\",children:/*#__PURE__*/_jsx(FeatureChip,{height:\"100%\",id:\"MlMYfOVMj\",jTHI0vB0P:resolvedLinks[0],layoutId:\"MlMYfOVMj\",name:\"Execution Bot\",NJSU73nz8:addImageAlt({pixelHeight:51,pixelWidth:48,src:\"https://framerusercontent.com/images/uw8xtymSCf2Yrsa1AV14IZB3IEs.svg\"},\"\"),o4yaTXsLJ:\"Execution Bot\",width:\"100%\"})})})})],speed:25,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-akbz6r-container\",isModuleExternal:true,nodeId:\"qz38iCMwu\",scopeId:\"flOIYRy97\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ljtIhjibA:{fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false}}},children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:20,height:\"100%\",hoverFactor:.5,id:\"qz38iCMwu\",layoutId:\"qz38iCMwu\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:56,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1e1xw8-container\",\"data-framer-name\":\"Zero Trading Fees*\",inComponentSlot:true,name:\"Zero Trading Fees*\",nodeId:\"C5esmyx7u\",rendersWithMotion:true,scopeId:\"flOIYRy97\",children:/*#__PURE__*/_jsx(FeatureChip,{height:\"100%\",id:\"C5esmyx7u\",layoutId:\"C5esmyx7u\",name:\"Zero Trading Fees*\",NJSU73nz8:addImageAlt({pixelHeight:48,pixelWidth:48,src:\"https://framerusercontent.com/images/B47VSoWmjnpG0cBuuDarCXpnio.svg\"},\"\"),o4yaTXsLJ:\"Zero Trading Fees for Makers*\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:56,width:\"305px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1nkrevl-container\",\"data-framer-name\":\"Zero Gas Fees*\",inComponentSlot:true,name:\"Zero Gas Fees*\",nodeId:\"ECjpTFTb1\",rendersWithMotion:true,scopeId:\"flOIYRy97\",children:/*#__PURE__*/_jsx(FeatureChip,{height:\"100%\",id:\"ECjpTFTb1\",layoutId:\"ECjpTFTb1\",name:\"Zero Gas Fees*\",NJSU73nz8:addImageAlt({pixelHeight:48,pixelWidth:48,src:\"https://framerusercontent.com/images/LklV6e9jCDsu9TzAt7UhFd32Vac.svg\"},\"No Gas\"),o4yaTXsLJ:\"Zero Gas Fees for Makers*\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:56,width:\"242.5px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-b0boqt-container\",\"data-framer-name\":\"Strategy Simulator\",inComponentSlot:true,name:\"Strategy Simulator\",nodeId:\"HaFBuMdPk\",rendersWithMotion:true,scopeId:\"flOIYRy97\",children:/*#__PURE__*/_jsx(FeatureChip,{height:\"100%\",id:\"HaFBuMdPk\",jTHI0vB0P:\"https://app.carbondefi.xyz/simulate\",layoutId:\"HaFBuMdPk\",name:\"Strategy Simulator\",NJSU73nz8:addImageAlt({pixelHeight:49,pixelWidth:49,src:\"https://framerusercontent.com/images/ykUBeIsCwr3oTpWrrYWhgUr5aI.svg\"},\"\"),o4yaTXsLJ:\"Strategy Simulator\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:56,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1j4j822-container\",\"data-framer-name\":\"No Keepers\",inComponentSlot:true,name:\"No Keepers\",nodeId:\"iBFmlqmtq\",rendersWithMotion:true,scopeId:\"flOIYRy97\",children:/*#__PURE__*/_jsx(FeatureChip,{height:\"100%\",id:\"iBFmlqmtq\",layoutId:\"iBFmlqmtq\",name:\"No Keepers\",NJSU73nz8:addImageAlt({pixelHeight:48,pixelWidth:48,src:\"https://framerusercontent.com/images/t05wtJEg1CLVVzpV7BtsVUCEWxs.svg\"},\"\"),o4yaTXsLJ:\"No Keepers\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:56,children:/*#__PURE__*/_jsx(Container,{className:\"framer-p3a7m6-container\",\"data-framer-name\":\"No Oracles\",inComponentSlot:true,name:\"No Oracles\",nodeId:\"laU0tWmB2\",rendersWithMotion:true,scopeId:\"flOIYRy97\",children:/*#__PURE__*/_jsx(FeatureChip,{height:\"100%\",id:\"laU0tWmB2\",layoutId:\"laU0tWmB2\",name:\"No Oracles\",NJSU73nz8:addImageAlt({pixelHeight:53,pixelWidth:49,src:\"https://framerusercontent.com/images/omvgmXyt8iqeJ3LVfjVB6we5BvU.svg\"},\"\"),o4yaTXsLJ:\"No Oracles\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:56,children:/*#__PURE__*/_jsx(Container,{className:\"framer-e3yfum-container\",\"data-framer-name\":\"No Hooks\",inComponentSlot:true,name:\"No Hooks\",nodeId:\"sycriWi11\",rendersWithMotion:true,scopeId:\"flOIYRy97\",children:/*#__PURE__*/_jsx(FeatureChip,{height:\"100%\",id:\"sycriWi11\",layoutId:\"sycriWi11\",name:\"No Hooks\",NJSU73nz8:addImageAlt({pixelHeight:48,pixelWidth:48,src:\"https://framerusercontent.com/images/slKY03wjlsR338uSbV9OFR3L9WI.svg\"},\"\"),o4yaTXsLJ:\"No Hooks\",width:\"100%\"})})})],speed:25,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-4tx3ii\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ljtIhjibA:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0V1Y2xpZCBDaXJjdWxhciBBIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Euclid Circular A Regular\", \"Euclid Circular A Regular Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"1.8em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgba(255, 255, 255, 0.7)\"},children:\"*Carbon DeFi makers do not pay trading or gas fees when orders are filled. The maker only pays network gas fees when they create, manage, or delete a strategy.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0V1Y2xpZCBDaXJjdWxhciBBIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Euclid Circular A Regular\", \"Euclid Circular A Regular Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"1.8em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgba(255, 255, 255, 0.7)\"},children:\"*Carbon DeFi makers do not pay trading or gas fees when orders are filled. The maker only pays network gas fees when they create, manage, or delete a strategy.\"})}),className:\"framer-93398m\",\"data-framer-name\":\"Supporting text\",fonts:[\"CUSTOM;Euclid Circular A Regular\"],verticalAlignment:\"top\",withExternalLayout:true})})}),isDisplayed2()&&/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation3,className:\"framer-1y73yyu hidden-5xqr3h\",\"data-framer-appear-id\":\"1y73yyu\",initial:animation4,optimized:true,style:{transformPerspective:1200}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-5duy8f\",\"data-framer-name\":\"Use Cases\",id:elementId2,ref:ref3,style:{transformPerspective:1930},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-u4cwnd\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ztayij\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ljtIhjibA:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO0V1Y2xpZCBDaXJjdWxhciBBIExpZ2h0\",\"--framer-font-family\":'\"Euclid Circular A Light\", \"Euclid Circular A Light Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(16, 187, 213)\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(274deg, var(--token-200c722a-4bdf-4764-92f5-06d1d0a969e3, rgb(16, 187, 213)) 40.80349441377626%, rgb(103, 214, 159) 100%)\"},children:\"Empowering DeFi\"})})}),fonts:[\"CUSTOM;Euclid Circular A Light\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-11ywj0u\",\"data-styles-preset\":\"cTjFiZdnF\",style:{\"--framer-text-alignment\":\"center\"},children:\"Empowering DeFi\"})}),className:\"framer-5vkf5b\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ljtIhjibA:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-16bzrdu\",\"data-styles-preset\":\"stylesPresetParagraph\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Bancor's innovative technology allows for unprecedented control, flexibility, and automation onchain.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-16bzrdu\",\"data-styles-preset\":\"stylesPresetParagraph\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Bancor's innovative technology allows for unprecedented control, flexibility, and automation onchain.\"})}),className:\"framer-uydzyl\",\"data-framer-name\":\"Supporting text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1k9hscy\",children:[/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation5,className:\"framer-1yrddzy\",\"data-border\":true,\"data-framer-appear-id\":\"1yrddzy\",\"data-framer-name\":\"Licensee Tile\",initial:animation6,optimized:true,style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-8g3zmi\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aVMpqy5l3:{background:{alt:\"Blockchains\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1708.7+80+0+0+251.9+0+0+24+0+0),pixelHeight:48,pixelWidth:48,src:\"https://framerusercontent.com/images/fybCwqeFqkardH38phNVCi6koCI.svg\"}},ljtIhjibA:{background:{alt:\"Blockchains\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2841.1+0+0+60+255.7+0+0+0+0),pixelHeight:48,pixelWidth:48,src:\"https://framerusercontent.com/images/fybCwqeFqkardH38phNVCi6koCI.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Blockchains\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1778.7+80+0+0+251.9+0+0+40+0+0),pixelHeight:48,pixelWidth:48,src:\"https://framerusercontent.com/images/fybCwqeFqkardH38phNVCi6koCI.svg\"},className:\"framer-1cekgfn\"})}),isDisplayed2()&&/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:false,children:overlay=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aVMpqy5l3:{y:(componentViewport?.y||0)+0+1708.7+80+0+0+251.9+0+0+24+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:30,y:(componentViewport?.y||0)+0+1778.7+80+0+0+251.9+0+0+40+0+0,children:/*#__PURE__*/_jsxs(Container,{className:\"framer-9x211u-container hidden-5xqr3h\",id:\"9x211u\",nodeId:\"kmHk3iCjx\",ref:ref4,scopeId:\"flOIYRy97\",children:[/*#__PURE__*/_jsx(Button1,{height:\"100%\",id:\"kmHk3iCjx\",layoutId:\"kmHk3iCjx\",width:\"100%\",ww7aWucPE:ww7aWucPEtxyyif({overlay})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay.visible&&/*#__PURE__*/_jsx(Floating,{alignment:\"end\",anchorRef:ref4,className:cx(scopingClassNames),collisionDetection:true,collisionDetectionPadding:20,\"data-framer-portal-id\":\"9x211u\",offsetX:0,offsetY:6,onDismiss:overlay.hide,placement:\"bottom\",safeArea:true,zIndex:11,children:/*#__PURE__*/_jsx(motion.div,{animate:animation8,className:\"framer-rs1p2u\",exit:animation7,initial:animation9,ref:ref5,role:\"dialog\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-4cjd9b\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0V1Y2xpZCBDaXJjdWxhciBBIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Euclid Circular A Regular\", \"Euclid Circular A Regular Placeholder\", sans-serif',\"--framer-font-size\":\"10px\",\"--framer-letter-spacing\":\"0.2em\",\"--framer-line-height\":\"1.6em\",\"--framer-text-color\":\"rgba(255, 255, 255, 0.6)\",\"--framer-text-transform\":\"uppercase\"},children:\"The Essential DeFi Suite\"})}),className:\"framer-1cluoxm\",\"data-framer-name\":\"Supporting text\",fonts:[\"CUSTOM;Euclid Circular A Regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Link,{href:{hash:\":Y4M6E6Xcx\",webPageId:\"LYExVCZHJ\"},motionChild:true,nodeId:\"jopI1Ltjr\",openInNewTab:true,scopeId:\"flOIYRy97\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-rvybu1 framer-10sqhdz\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:70,pixelWidth:69,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/PpTI4iY3sRg1h3IXnXpHk4xtnQ.svg\"},className:\"framer-1jlkeos\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0V1Y2xpZCBDaXJjdWxhciBBIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Euclid Circular A Regular\", \"Euclid Circular A Regular Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Constant Product\"})}),className:\"framer-15pygn8\",\"data-framer-name\":\"Supporting text\",fonts:[\"CUSTOM;Euclid Circular A Regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(Link,{href:{hash:\":efOz6cipZ\",webPageId:\"LYExVCZHJ\"},motionChild:true,nodeId:\"F5deix89T\",openInNewTab:true,scopeId:\"flOIYRy97\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-1k2lu4y framer-10sqhdz\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:69,pixelWidth:69,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/ueHoynIFG1j8d3X9GiHB9SsyQA.svg\"},className:\"framer-1byjgj8\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0V1Y2xpZCBDaXJjdWxhciBBIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Euclid Circular A Regular\", \"Euclid Circular A Regular Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Concentrated Liquidity\"})}),className:\"framer-12o9c6r\",\"data-framer-name\":\"Supporting text\",fonts:[\"CUSTOM;Euclid Circular A Regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(Link,{href:{hash:\":qFp_q86UR\",webPageId:\"LYExVCZHJ\"},motionChild:true,nodeId:\"lTpOZlCzA\",openInNewTab:true,scopeId:\"flOIYRy97\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-1k6dqav framer-10sqhdz\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:69,pixelWidth:69,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/yu2M8JqTTq7VjvoiLhxB3aImpI.svg\"},className:\"framer-su4bdq\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0V1Y2xpZCBDaXJjdWxhciBBIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Euclid Circular A Regular\", \"Euclid Circular A Regular Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Asymmetric Liquidity\"})}),className:\"framer-1op04g2\",\"data-framer-name\":\"Supporting text\",fonts:[\"CUSTOM;Euclid Circular A Regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(Link,{href:{hash:\":CjT7fCtwl\",webPageId:\"LYExVCZHJ\"},motionChild:true,nodeId:\"XNpOlu4kS\",openInNewTab:true,scopeId:\"flOIYRy97\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-2azcdh framer-10sqhdz\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:48,pixelWidth:48,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/lCzAIzDTgi129DTME407vHqpIDs.svg\"},className:\"framer-3iu87j\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0V1Y2xpZCBDaXJjdWxhciBBIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Euclid Circular A Regular\", \"Euclid Circular A Regular Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Network-wide Arbitrage\"})}),className:\"framer-w8h96c\",\"data-framer-name\":\"Supporting text\",fonts:[\"CUSTOM;Euclid Circular A Regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})})]})})})})]})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1o96ga0\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-aruq1i\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aVMpqy5l3:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0V1Y2xpZCBDaXJjdWxhciBBIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Euclid Circular A Regular\", \"Euclid Circular A Regular Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Blockchains\"})})},ljtIhjibA:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0V1Y2xpZCBDaXJjdWxhciBBIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Euclid Circular A Regular\", \"Euclid Circular A Regular Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Blockchains\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0V1Y2xpZCBDaXJjdWxhciBBIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Euclid Circular A Regular\", \"Euclid Circular A Regular Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Blockchains\"})}),className:\"framer-r2kzrq\",fonts:[\"CUSTOM;Euclid Circular A Regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0V1Y2xpZCBDaXJjdWxhciBBIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Euclid Circular A Regular\", \"Euclid Circular A Regular Placeholder\", sans-serif',\"--framer-line-height\":\"1.6em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Foster a dynamic DeFi ecosystem with the essential suite of Bancor's technologies\"})}),className:\"framer-4okvm3\",\"data-framer-name\":\"Supporting text\",fonts:[\"CUSTOM;Euclid Circular A Regular\"],verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed1()&&/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:false,children:overlay1=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-vj8z61 hidden-d0wpzk hidden-nyn7el\",\"data-border\":true,id:\"vj8z61\",onTap:onTaptxyyif({overlay:overlay1}),ref:ref6,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0V1Y2xpZCBDaXJjdWxhciBBIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Euclid Circular A Regular\", \"Euclid Circular A Regular Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(90deg, rgb(0, 182, 135) 0%, rgb(16, 187, 213) 100%)\"},children:\"The Essential Suite\"})})}),className:\"framer-by61hp\",\"data-framer-name\":\"Supporting text\",fonts:[\"CUSTOM;Euclid Circular A Regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay1.visible&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ljtIhjibA:{offsetX:0,offsetY:5,placement:\"bottom\",safeArea:false}},children:/*#__PURE__*/_jsx(Floating,{alignment:\"center\",anchorRef:ref6,className:cx(scopingClassNames),collisionDetection:true,collisionDetectionPadding:20,\"data-framer-portal-id\":\"vj8z61\",offsetX:-10,offsetY:0,onDismiss:overlay1.hide,placement:\"left\",safeArea:true,zIndex:11,children:/*#__PURE__*/_jsx(motion.div,{animate:animation8,className:\"framer-1fmsnor\",exit:animation7,initial:animation9,ref:ref7,role:\"dialog\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1fvjg56\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ljtIhjibA:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0V1Y2xpZCBDaXJjdWxhciBBIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Euclid Circular A Regular\", \"Euclid Circular A Regular Placeholder\", sans-serif',\"--framer-font-size\":\"11px\",\"--framer-letter-spacing\":\"0.2em\",\"--framer-line-height\":\"1.6em\",\"--framer-text-color\":\"rgba(255, 255, 255, 0.5)\",\"--framer-text-transform\":\"uppercase\"},children:\"The Essential DeFi Suite\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0V1Y2xpZCBDaXJjdWxhciBBIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Euclid Circular A Regular\", \"Euclid Circular A Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Full DeFi Suite\"})}),className:\"framer-1qw8fur\",\"data-framer-name\":\"Supporting text\",fonts:[\"CUSTOM;Euclid Circular A Regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ljtIhjibA:{href:{hash:\":Y4M6E6Xcx\",webPageId:\"LYExVCZHJ\"},openInNewTab:true}},children:/*#__PURE__*/_jsx(Link,{motionChild:true,nodeId:\"x__yP3V4S\",scopeId:\"flOIYRy97\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-p0hu95 framer-10sqhdz\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:70,pixelWidth:69,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/PpTI4iY3sRg1h3IXnXpHk4xtnQ.svg\"},className:\"framer-lqlzyk\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0V1Y2xpZCBDaXJjdWxhciBBIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Euclid Circular A Regular\", \"Euclid Circular A Regular Placeholder\", sans-serif',\"--framer-line-height\":\"1.6em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Constant Product\"})}),className:\"framer-jz0cry\",\"data-framer-name\":\"Supporting text\",fonts:[\"CUSTOM;Euclid Circular A Regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ljtIhjibA:{href:{hash:\":efOz6cipZ\",webPageId:\"LYExVCZHJ\"},openInNewTab:true}},children:/*#__PURE__*/_jsx(Link,{motionChild:true,nodeId:\"fpszIgUsI\",scopeId:\"flOIYRy97\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-1sin7is framer-10sqhdz\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:69,pixelWidth:69,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/ueHoynIFG1j8d3X9GiHB9SsyQA.svg\"},className:\"framer-wxmf44\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0V1Y2xpZCBDaXJjdWxhciBBIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Euclid Circular A Regular\", \"Euclid Circular A Regular Placeholder\", sans-serif',\"--framer-line-height\":\"1.6em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Concentrated Liquidity\"})}),className:\"framer-alpsgf\",\"data-framer-name\":\"Supporting text\",fonts:[\"CUSTOM;Euclid Circular A Regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ljtIhjibA:{href:{hash:\":qFp_q86UR\",webPageId:\"LYExVCZHJ\"},openInNewTab:true}},children:/*#__PURE__*/_jsx(Link,{motionChild:true,nodeId:\"hmJSITfzZ\",scopeId:\"flOIYRy97\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-eofbj5 framer-10sqhdz\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:69,pixelWidth:69,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/yu2M8JqTTq7VjvoiLhxB3aImpI.svg\"},className:\"framer-6sjkd7\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0V1Y2xpZCBDaXJjdWxhciBBIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Euclid Circular A Regular\", \"Euclid Circular A Regular Placeholder\", sans-serif',\"--framer-line-height\":\"1.6em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Asymmetric Liquidity\"})}),className:\"framer-1om5eq7\",\"data-framer-name\":\"Supporting text\",fonts:[\"CUSTOM;Euclid Circular A Regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ljtIhjibA:{href:{hash:\":CjT7fCtwl\",webPageId:\"LYExVCZHJ\"},openInNewTab:true}},children:/*#__PURE__*/_jsx(Link,{motionChild:true,nodeId:\"n5GnkVvoq\",scopeId:\"flOIYRy97\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-16xyups framer-10sqhdz\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:48,pixelWidth:48,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/lCzAIzDTgi129DTME407vHqpIDs.svg\"},className:\"framer-sdccv8\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0V1Y2xpZCBDaXJjdWxhciBBIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Euclid Circular A Regular\", \"Euclid Circular A Regular Placeholder\", sans-serif',\"--framer-line-height\":\"1.6em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Network-wide Arbitrage\"})}),className:\"framer-1mqinbo\",\"data-framer-name\":\"Supporting text\",fonts:[\"CUSTOM;Euclid Circular A Regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})})})]})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ljtIhjibA:{y:(componentViewport?.y||0)+0+2841.1+0+0+60+255.7+0+0+0+0+178.8+8}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:14,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1x66obx-container\",nodeId:\"ly91xL37G\",scopeId:\"flOIYRy97\",children:/*#__PURE__*/_jsx(Caret,{height:\"100%\",id:\"ly91xL37G\",layoutId:\"ly91xL37G\",variant:\"vavtzvvD7\",width:\"100%\"})})})})]})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"TMtm3YQDW\"},implicitPathVariables:undefined},{href:{webPageId:\"TMtm3YQDW\"},implicitPathVariables:undefined},{href:{webPageId:\"TMtm3YQDW\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aVMpqy5l3:{y:(componentViewport?.y||0)+0+1708.7+80+0+0+251.9+0+0+24+70.4+0+191.6},ljtIhjibA:{y:(componentViewport?.y||0)+0+2841.1+0+0+60+255.7+0+0+0+0+228.8}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,y:(componentViewport?.y||0)+0+1778.7+80+0+0+251.9+0+0+40+32.8+0+197.2,children:/*#__PURE__*/_jsx(Container,{className:\"framer-l7obcg-container\",nodeId:\"rdXyEYmMh\",scopeId:\"flOIYRy97\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aVMpqy5l3:{X3HkRf87n:resolvedLinks1[2]},ljtIhjibA:{X3HkRf87n:resolvedLinks1[1]}},children:/*#__PURE__*/_jsx(Button2,{AwbMZMg8v:false,height:\"100%\",id:\"rdXyEYmMh\",layoutId:\"rdXyEYmMh\",qvJuO9zSn:\"Learn more\",RheN1fVgD:\"blockchain-home\",width:\"100%\",WOcEa42Qs:\"rgb(109, 231, 202)\",X3HkRf87n:resolvedLinks1[0]})})})})})})]})]}),/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation5,className:\"framer-o6v18c\",\"data-border\":true,\"data-framer-appear-id\":\"o6v18c\",\"data-framer-name\":\"Licensee Tile\",initial:animation6,optimized:true,style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aVMpqy5l3:{background:{alt:\"Market Makers\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1708.7+80+0+0+251.9+0+0+24+0),pixelHeight:48,pixelWidth:48,src:\"https://framerusercontent.com/images/2Z4V3VmjmF4LCbS2oe6NzeivDk.svg\"}},ljtIhjibA:{background:{alt:\"Market Makers\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2841.1+0+0+60+255.7+0+306.8+0),pixelHeight:48,pixelWidth:48,src:\"https://framerusercontent.com/images/2Z4V3VmjmF4LCbS2oe6NzeivDk.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Market Makers\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1778.7+80+0+0+251.9+0+0+40+0),pixelHeight:48,pixelWidth:48,src:\"https://framerusercontent.com/images/2Z4V3VmjmF4LCbS2oe6NzeivDk.svg\"},className:\"framer-1rcyus6\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-i6vl38\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1hl1jik\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aVMpqy5l3:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0V1Y2xpZCBDaXJjdWxhciBBIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Euclid Circular A Regular\", \"Euclid Circular A Regular Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Market Makers\"})})},ljtIhjibA:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0V1Y2xpZCBDaXJjdWxhciBBIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Euclid Circular A Regular\", \"Euclid Circular A Regular Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Market Makers\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0V1Y2xpZCBDaXJjdWxhciBBIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Euclid Circular A Regular\", \"Euclid Circular A Regular Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Market Makers\"})}),className:\"framer-1g6b1hk\",fonts:[\"CUSTOM;Euclid Circular A Regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0V1Y2xpZCBDaXJjdWxhciBBIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Euclid Circular A Regular\", \"Euclid Circular A Regular Placeholder\", sans-serif',\"--framer-line-height\":\"1.6em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Sophisticated tools developed to maintain onchain liquidity and depth.\"})}),className:\"framer-mzimor\",\"data-framer-name\":\"Supporting text\",fonts:[\"CUSTOM;Euclid Circular A Regular\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"u9MevpXtx\"},implicitPathVariables:undefined},{href:{webPageId:\"u9MevpXtx\"},implicitPathVariables:undefined},{href:{webPageId:\"u9MevpXtx\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aVMpqy5l3:{y:(componentViewport?.y||0)+0+1708.7+80+0+0+251.9+0+0+24+70.4+0+191.6},ljtIhjibA:{y:(componentViewport?.y||0)+0+2841.1+0+0+60+255.7+0+306.8+0+0+188.8}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,y:(componentViewport?.y||0)+0+1778.7+80+0+0+251.9+0+0+40+32.8+0+197.2,children:/*#__PURE__*/_jsx(Container,{className:\"framer-10s6cwe-container\",nodeId:\"VIyaqo5ir\",scopeId:\"flOIYRy97\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aVMpqy5l3:{X3HkRf87n:resolvedLinks2[2]},ljtIhjibA:{X3HkRf87n:resolvedLinks2[1]}},children:/*#__PURE__*/_jsx(Button2,{AwbMZMg8v:false,height:\"100%\",id:\"VIyaqo5ir\",layoutId:\"VIyaqo5ir\",qvJuO9zSn:\"Learn more\",RheN1fVgD:\"market-maker-home\",width:\"100%\",WOcEa42Qs:\"rgb(109, 231, 202)\",X3HkRf87n:resolvedLinks2[0]})})})})})})]})]}),/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation5,className:\"framer-1gblwf\",\"data-border\":true,\"data-framer-appear-id\":\"1gblwf\",\"data-framer-name\":\"Licensee Tile\",initial:animation6,optimized:true,style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aVMpqy5l3:{background:{alt:\"Token Projects\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1708.7+80+0+0+251.9+0+0+24+0),pixelHeight:48,pixelWidth:48,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/B47VSoWmjnpG0cBuuDarCXpnio.svg\"}},ljtIhjibA:{background:{alt:\"Token Projects\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2841.1+0+0+60+255.7+0+573.6+0),pixelHeight:48,pixelWidth:48,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/B47VSoWmjnpG0cBuuDarCXpnio.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Token Projects\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1778.7+80+0+0+251.9+0+0+40+0),pixelHeight:48,pixelWidth:48,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/B47VSoWmjnpG0cBuuDarCXpnio.svg\"},className:\"framer-1al68wt\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16jnb01\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1bp6awb\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aVMpqy5l3:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0V1Y2xpZCBDaXJjdWxhciBBIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Euclid Circular A Regular\", \"Euclid Circular A Regular Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Token Projects\"})})},ljtIhjibA:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0V1Y2xpZCBDaXJjdWxhciBBIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Euclid Circular A Regular\", \"Euclid Circular A Regular Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Token Projects\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0V1Y2xpZCBDaXJjdWxhciBBIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Euclid Circular A Regular\", \"Euclid Circular A Regular Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Token Projects\"})}),className:\"framer-1m8rikm\",fonts:[\"CUSTOM;Euclid Circular A Regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0V1Y2xpZCBDaXJjdWxhciBBIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Euclid Circular A Regular\", \"Euclid Circular A Regular Placeholder\", sans-serif',\"--framer-line-height\":\"1.6em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Establish price discovery and manage token liquidity with ease.\"})}),className:\"framer-1q2jrc7\",\"data-framer-name\":\"Supporting text\",fonts:[\"CUSTOM;Euclid Circular A Regular\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"qdQzLXDpB\"},implicitPathVariables:undefined},{href:{webPageId:\"qdQzLXDpB\"},implicitPathVariables:undefined},{href:{webPageId:\"qdQzLXDpB\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aVMpqy5l3:{y:(componentViewport?.y||0)+0+1708.7+80+0+0+251.9+0+0+24+70.4+0+191.6},ljtIhjibA:{y:(componentViewport?.y||0)+0+2841.1+0+0+60+255.7+0+573.6+0+0+188.8}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,y:(componentViewport?.y||0)+0+1778.7+80+0+0+251.9+0+0+40+32.8+0+197.2,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1dt4wz-container\",nodeId:\"B7dkxMTf7\",scopeId:\"flOIYRy97\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aVMpqy5l3:{X3HkRf87n:resolvedLinks3[2]},ljtIhjibA:{X3HkRf87n:resolvedLinks3[1]}},children:/*#__PURE__*/_jsx(Button2,{AwbMZMg8v:false,height:\"100%\",id:\"B7dkxMTf7\",layoutId:\"B7dkxMTf7\",qvJuO9zSn:\"Learn more\",RheN1fVgD:\"token-project-home\",width:\"100%\",WOcEa42Qs:\"rgb(109, 231, 202)\",X3HkRf87n:resolvedLinks3[0]})})})})})})]})]}),/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation5,className:\"framer-1dnk0m0\",\"data-border\":true,\"data-framer-appear-id\":\"1dnk0m0\",\"data-framer-name\":\"Licensee Tile\",initial:animation6,optimized:true,style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aVMpqy5l3:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1708.7+80+0+0+251.9+0+370+24+0),pixelHeight:49,pixelWidth:48,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/1enqUHciWTllNHREM0nfqoA.svg\"}},ljtIhjibA:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2841.1+0+0+60+255.7+0+840.4+0),pixelHeight:49,pixelWidth:48,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/1enqUHciWTllNHREM0nfqoA.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1778.7+80+0+0+251.9+0+370+40+0),pixelHeight:49,pixelWidth:48,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/1enqUHciWTllNHREM0nfqoA.svg\"},className:\"framer-u6xa7n\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-17i50mn\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aVMpqy5l3:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0V1Y2xpZCBDaXJjdWxhciBBIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Euclid Circular A Regular\", \"Euclid Circular A Regular Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Traders\"})})},ljtIhjibA:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0V1Y2xpZCBDaXJjdWxhciBBIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Euclid Circular A Regular\", \"Euclid Circular A Regular Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Traders\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0V1Y2xpZCBDaXJjdWxhciBBIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Euclid Circular A Regular\", \"Euclid Circular A Regular Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Traders\"})}),className:\"framer-1brnfva\",fonts:[\"CUSTOM;Euclid Circular A Regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0V1Y2xpZCBDaXJjdWxhciBBIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Euclid Circular A Regular\", \"Euclid Circular A Regular Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Automated trading with zero slippage, immunity to MEV sandwich attacks, and superior orderbook-like features.\"})}),className:\"framer-7zjmql\",\"data-framer-name\":\"Supporting text\",fonts:[\"CUSTOM;Euclid Circular A Regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation5,className:\"framer-1c9nwvy\",\"data-border\":true,\"data-framer-appear-id\":\"1c9nwvy\",\"data-framer-name\":\"Licensee Tile\",initial:animation6,optimized:true,style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aVMpqy5l3:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1708.7+80+0+0+251.9+0+370+24+0),pixelHeight:48,pixelWidth:48,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/dcdldCGwhhcQkj67Wz1vRrJLLsQ.svg\"}},ljtIhjibA:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2841.1+0+0+60+255.7+0+1029.2+0),pixelHeight:48,pixelWidth:48,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/dcdldCGwhhcQkj67Wz1vRrJLLsQ.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1778.7+80+0+0+251.9+0+370+40+0),pixelHeight:48,pixelWidth:48,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/dcdldCGwhhcQkj67Wz1vRrJLLsQ.svg\"},className:\"framer-mkk1nr\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16q33kk\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aVMpqy5l3:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0V1Y2xpZCBDaXJjdWxhciBBIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Euclid Circular A Regular\", \"Euclid Circular A Regular Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Liquidity Providers\"})})},ljtIhjibA:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0V1Y2xpZCBDaXJjdWxhciBBIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Euclid Circular A Regular\", \"Euclid Circular A Regular Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Liquidity Providers\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0V1Y2xpZCBDaXJjdWxhciBBIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Euclid Circular A Regular\", \"Euclid Circular A Regular Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Liquidity Providers\"})}),className:\"framer-huzq6e\",fonts:[\"CUSTOM;Euclid Circular A Regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0V1Y2xpZCBDaXJjdWxhciBBIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Euclid Circular A Regular\", \"Euclid Circular A Regular Placeholder\", sans-serif',\"--framer-line-height\":\"1.6em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Auto-compound your profits with next-gen concentrated liquidity.\"})}),className:\"framer-1j7v2j7\",\"data-framer-name\":\"Supporting text\",fonts:[\"CUSTOM;Euclid Circular A Regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation5,className:\"framer-h606vt\",\"data-border\":true,\"data-framer-appear-id\":\"h606vt\",\"data-framer-name\":\"Licensee Tile\",initial:animation6,optimized:true,style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aVMpqy5l3:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1708.7+80+0+0+251.9+0+370+24+0),pixelHeight:48,pixelWidth:48,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/kynIpuwDgsrm25z0KziEkV4Hs.svg\"}},ljtIhjibA:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2841.1+0+0+60+255.7+0+1226+0),pixelHeight:48,pixelWidth:48,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/kynIpuwDgsrm25z0KziEkV4Hs.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1778.7+80+0+0+251.9+0+370+40+0),pixelHeight:48,pixelWidth:48,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/kynIpuwDgsrm25z0KziEkV4Hs.svg\"},className:\"framer-ajivsz\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-l26n2w\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aVMpqy5l3:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0V1Y2xpZCBDaXJjdWxhciBBIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Euclid Circular A Regular\", \"Euclid Circular A Regular Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"DEX Builders\"})})},ljtIhjibA:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0V1Y2xpZCBDaXJjdWxhciBBIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Euclid Circular A Regular\", \"Euclid Circular A Regular Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"DEX Builders\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0V1Y2xpZCBDaXJjdWxhciBBIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Euclid Circular A Regular\", \"Euclid Circular A Regular Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"DEX Builders\"})}),className:\"framer-19yvx5m\",fonts:[\"CUSTOM;Euclid Circular A Regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0V1Y2xpZCBDaXJjdWxhciBBIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Euclid Circular A Regular\", \"Euclid Circular A Regular Placeholder\", sans-serif',\"--framer-line-height\":\"1.6em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Turn-key DEX technology stack and deployment.\"})}),className:\"framer-1ljaha8\",\"data-framer-name\":\"Supporting text\",fonts:[\"CUSTOM;Euclid Circular A Regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation5,className:\"framer-1ipebl0\",\"data-border\":true,\"data-framer-appear-id\":\"1ipebl0\",\"data-framer-name\":\"Licensee Tile\",initial:animation6,optimized:true,style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aVMpqy5l3:{background:{alt:\"Liquidators\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1708.7+80+0+0+251.9+0+690+24+0),pixelHeight:55,pixelWidth:51,src:\"https://framerusercontent.com/images/KLu7iZTYDiVzXbV5iN7XuTSTiXU.svg\"}},ljtIhjibA:{background:{alt:\"Liquidators\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2841.1+0+0+60+255.7+0+1422.8+0),pixelHeight:55,pixelWidth:51,src:\"https://framerusercontent.com/images/KLu7iZTYDiVzXbV5iN7XuTSTiXU.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Liquidators\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1778.7+80+0+0+251.9+0+740+40+0),pixelHeight:55,pixelWidth:51,src:\"https://framerusercontent.com/images/KLu7iZTYDiVzXbV5iN7XuTSTiXU.svg\"},className:\"framer-o130y1\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-a9s17m\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aVMpqy5l3:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0V1Y2xpZCBDaXJjdWxhciBBIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Euclid Circular A Regular\", \"Euclid Circular A Regular Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Liquidators\"})})},ljtIhjibA:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0V1Y2xpZCBDaXJjdWxhciBBIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Euclid Circular A Regular\", \"Euclid Circular A Regular Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Liquidators\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0V1Y2xpZCBDaXJjdWxhciBBIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Euclid Circular A Regular\", \"Euclid Circular A Regular Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Liquidators\"})}),className:\"framer-1y0uphh\",fonts:[\"CUSTOM;Euclid Circular A Regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0V1Y2xpZCBDaXJjdWxhciBBIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Euclid Circular A Regular\", \"Euclid Circular A Regular Placeholder\", sans-serif',\"--framer-line-height\":\"1.6em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Asset liquidation, custom built to seamlessly meet your needs.\"})}),className:\"framer-10of31m\",\"data-framer-name\":\"Supporting text\",fonts:[\"CUSTOM;Euclid Circular A Regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation5,className:\"framer-1vnqjag\",\"data-border\":true,\"data-framer-appear-id\":\"1vnqjag\",\"data-framer-name\":\"Licensee Tile\",initial:animation6,optimized:true,style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-4pglrn\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ljtIhjibA:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0V1Y2xpZCBDaXJjdWxhciBBIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Euclid Circular A Regular\", \"Euclid Circular A Regular Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Let's build the future\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0V1Y2xpZCBDaXJjdWxhciBBIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Euclid Circular A Regular\", \"Euclid Circular A Regular Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Let's build the future\"})}),className:\"framer-1gd6uid\",fonts:[\"CUSTOM;Euclid Circular A Regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0V1Y2xpZCBDaXJjdWxhciBBIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Euclid Circular A Regular\", \"Euclid Circular A Regular Placeholder\", sans-serif',\"--framer-line-height\":\"1.6em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Reach out if you are interested in learning more about our suite of DeFi technologies.\"})}),className:\"framer-zz5c82\",\"data-framer-name\":\"Supporting text\",fonts:[\"CUSTOM;Euclid Circular A Regular\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0V1Y2xpZCBDaXJjdWxhciBBIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Euclid Circular A Regular\", \"Euclid Circular A Regular Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-color\":\"rgba(255, 255, 255, 0.6)\"},children:/*#__PURE__*/_jsx(Link,{href:\"bizdev@Bancor.network.\",motionChild:true,nodeId:\"S7B7ERA7S\",openInNewTab:true,scopeId:\"flOIYRy97\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-pbndum\",\"data-styles-preset\":\"f_JgQVGd5\",children:\"bizdev@bancor.network\"})})})}),className:\"framer-1nw5dcd\",\"data-framer-name\":\"Supporting text\",fonts:[\"CUSTOM;Euclid Circular A Regular\"],verticalAlignment:\"bottom\",withExternalLayout:true})]})]})]}),isDisplayed2()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-9d1ouo hidden-5xqr3h\",\"data-framer-name\":\"Line 3\"})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1jwwliq\",\"data-framer-name\":\"History\",id:elementId3,ref:ref8,style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1g69h7m\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5seoae\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-i8ueyb\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aVMpqy5l3:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-u7sykx\",\"data-styles-preset\":\"PPzQHe2LM\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"History of Innovation\"})})},ljtIhjibA:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-u7sykx\",\"data-styles-preset\":\"PPzQHe2LM\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"History of Innovation\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-11ywj0u\",\"data-styles-preset\":\"cTjFiZdnF\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"History of Innovation\"})}),className:\"framer-1w5yyzy\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),isDisplayed2()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-16bzrdu\",\"data-styles-preset\":\"stylesPresetParagraph\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Developing DeFi technology since 2017\"})}),className:\"framer-852sbg hidden-5xqr3h\",\"data-framer-name\":\"Supporting text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed2()&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"LYExVCZHJ\"},implicitPathVariables:undefined},{href:{webPageId:\"LYExVCZHJ\"},implicitPathVariables:undefined}],children:resolvedLinks4=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aVMpqy5l3:{y:(componentViewport?.y||0)+0+3111.6+80+0+0+254.1}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,y:(componentViewport?.y||0)+0+3281.6+80+0+0+251.9,children:/*#__PURE__*/_jsx(Container,{className:\"framer-ez6obo-container hidden-5xqr3h\",nodeId:\"OfiUC_3X6\",scopeId:\"flOIYRy97\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aVMpqy5l3:{JLasj7fEe:resolvedLinks4[1]}},children:/*#__PURE__*/_jsx(Button,{bBCqvE0rm:\"history-home\",height:\"100%\",id:\"OfiUC_3X6\",JLasj7fEe:resolvedLinks4[0],layoutId:\"OfiUC_3X6\",MavOXBlCM:false,Oa6EML9yk:\"Learn more\",variant:\"Z3Ts2CUv8\",width:\"100%\"})})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-sfh75c\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ljfkmg\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-hsim65\",\"data-framer-name\":\"Constant_Product\",fill:\"black\",intrinsicHeight:70,intrinsicWidth:69,svg:'<svg width=\"69\" height=\"70\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M48.526 9.49a5.71 5.71 0 0 0-5.709 5.71 5.71 5.71 0 0 0 5.71 5.709 5.71 5.71 0 0 0 5.708-5.71 5.71 5.71 0 0 0-5.709-5.708Zm0 14.274c-6.237 0-11.418 2.594-11.418 6.33v2.233a2.855 2.855 0 0 0 2.855 2.855H57.09a2.855 2.855 0 0 0 2.854-2.855v-2.234c0-3.735-5.181-6.33-11.418-6.33ZM18.312 42.329a1.843 1.843 0 0 0-1.532.54l-7.203 7.206a3.154 3.154 0 0 0 0 4.464l7.204 7.21c1.181 1.179 3.2.343 3.2-1.326v-5.26h2.854a2.855 2.855 0 0 0 0-5.709h-2.854v-5.259c0-1.04-.788-1.762-1.67-1.866Z\" fill=\"url(#a)\"/><g opacity=\".6\"><path d=\"M19.98 23.764c-6.236 0-11.418 2.594-11.418 6.33v2.233a2.855 2.855 0 0 0 2.855 2.855h17.127a2.855 2.855 0 0 0 2.855-2.855v-2.234c0-3.735-5.181-6.33-11.418-6.33Z\" fill=\"url(#b)\"/><path d=\"M19.98 9.49a5.71 5.71 0 0 0-5.708 5.71 5.71 5.71 0 0 0 5.709 5.709 5.71 5.71 0 0 0 5.709-5.71 5.71 5.71 0 0 0-5.71-5.708Z\" fill=\"url(#c)\"/><path d=\"M50.191 42.33c-.877.103-1.665.824-1.665 1.865v5.26h-2.854a2.855 2.855 0 0 0 0 5.708h2.854v5.26c0 1.669 2.018 2.505 3.2 1.327l7.204-7.211a3.154 3.154 0 0 0 0-4.464l-7.204-7.207a1.847 1.847 0 0 0-1.535-.539Z\" fill=\"url(#d)\"/></g><path opacity=\".74\" d=\"M34.253 49.454a2.855 2.855 0 1 0 .002 5.71 2.855 2.855 0 0 0-.002-5.71Z\" fill=\"url(#e)\"/><defs><linearGradient id=\"a\" x1=\"45.6\" y1=\"47.562\" x2=\"7.547\" y2=\"10.539\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#10BBD8\"/><stop offset=\"1\" stop-color=\"#67D79F\"/></linearGradient><linearGradient id=\"b\" x1=\"45.6\" y1=\"47.562\" x2=\"7.547\" y2=\"10.539\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#10BBD8\"/><stop offset=\"1\" stop-color=\"#67D79F\"/></linearGradient><linearGradient id=\"c\" x1=\"45.6\" y1=\"47.562\" x2=\"7.547\" y2=\"10.539\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#10BBD8\"/><stop offset=\"1\" stop-color=\"#67D79F\"/></linearGradient><linearGradient id=\"d\" x1=\"45.6\" y1=\"47.562\" x2=\"7.547\" y2=\"10.539\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#10BBD8\"/><stop offset=\"1\" stop-color=\"#67D79F\"/></linearGradient><linearGradient id=\"e\" x1=\"45.6\" y1=\"47.562\" x2=\"7.547\" y2=\"10.539\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#10BBD8\"/><stop offset=\"1\" stop-color=\"#67D79F\"/></linearGradient></defs></svg>',title:\"Constant Product AMM Icon\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1x44v76\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-632zyi\",\"data-styles-preset\":\"Un1cVV1_8\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(270deg, var(--token-8ea1e3fd-ac7f-4974-a2f3-133409ff7f08, rgb(18, 187, 213)) 0%, rgb(99, 213, 163) 100%)\"},children:\"2017 \u2022 Fully decentralized amm powered exchange\"})})}),className:\"framer-dubawi\",\"data-framer-name\":\"Supporting text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ljtIhjibA:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Bancor\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Bancor\"})}),className:\"framer-338jyd\",\"data-framer-name\":\"Heading\",fonts:[\"GF;Outfit-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1nomrzh\",\"data-framer-name\":\"Line\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-11r9p8q\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-hvmtke\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-eca47i\",\"data-framer-name\":\"LP_Liquidity_Tokens\",fill:\"black\",intrinsicHeight:69,intrinsicWidth:69,svg:'<svg width=\"69\" height=\"69\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M30.54 7.58c-6.468 7.604-19.12 23.944-19.12 35.355 0 12.722 10.114 22.836 22.836 22.836v-5.71c-9.604 0-17.127-7.522-17.127-17.127 0-8.006 9.285-21.643 17.131-30.96v-6.12a4.856 4.856 0 0 0-3.72 1.726Z\" fill=\"url(#a)\"/><g opacity=\".4\"><path d=\"M51.383 42.934c0 9.605-7.523 17.128-17.128 17.128l-.003-48.089c7.846 9.318 17.13 22.955 17.13 30.962Z\" fill=\"url(#b)\"/><path d=\"M37.972 7.58c6.468 7.604 19.12 23.944 19.12 35.355 0 12.722-10.114 22.836-22.837 22.836v-5.71c9.605 0 17.128-7.522 17.128-17.127 0-8.006-9.285-21.643-17.131-30.96v-6.12a4.856 4.856 0 0 1 3.72 1.726Z\" fill=\"url(#c)\"/></g><defs><linearGradient id=\"a\" x1=\"44.342\" y1=\"49.049\" x2=\"2.696\" y2=\"17.304\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#10BBD8\"/><stop offset=\"1\" stop-color=\"#67D79F\"/></linearGradient><linearGradient id=\"b\" x1=\"24.169\" y1=\"49.049\" x2=\"65.816\" y2=\"17.304\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#10BBD8\"/><stop offset=\"1\" stop-color=\"#67D79F\"/></linearGradient><linearGradient id=\"c\" x1=\"24.169\" y1=\"49.049\" x2=\"65.816\" y2=\"17.304\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#10BBD8\"/><stop offset=\"1\" stop-color=\"#67D79F\"/></linearGradient></defs></svg>',title:\"Smart Liquidity Tokens Icon\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-wx7idw\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-632zyi\",\"data-styles-preset\":\"Un1cVV1_8\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(270deg, var(--token-8ea1e3fd-ac7f-4974-a2f3-133409ff7f08, rgb(18, 187, 213)) 0%, rgb(99, 213, 163) 100%)\"},children:\"2017\"})})}),className:\"framer-1qg63go\",\"data-framer-name\":\"Supporting text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-va1owz\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aVMpqy5l3:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Smart Tokens\"})})},ljtIhjibA:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Smart Tokens\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Smart Tokens\"})}),className:\"framer-16o446s\",\"data-framer-name\":\"Heading\",fonts:[\"GF;Outfit-regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aVMpqy5l3:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"rgba(255, 255, 255, 0.66)\"},children:\"AKA, LP tokens\"})})},ljtIhjibA:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"rgba(255, 255, 255, 0.66)\"},children:\"AKA, LP tokens\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"rgba(255, 255, 255, 0.66)\"},children:\"AKA, LP tokens\"})}),className:\"framer-1thabri\",\"data-framer-name\":\"Heading\",fonts:[\"GF;Outfit-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-xpvrvs\",\"data-framer-name\":\"Line\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-300ddd\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-73a1h9\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1p5xsav\",\"data-framer-name\":\"Concentrated_Amplified_Liquidity\",fill:\"black\",intrinsicHeight:69,intrinsicWidth:69,svg:'<svg width=\"69\" height=\"69\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M23.407 34.56a1.88 1.88 0 0 0-.557-1.342l-8.43-7.824c-.925-.859-2.43-.2-2.43 1.06v5.251H6.28a2.852 2.852 0 0 0-2.505 1.416 2.846 2.846 0 0 0 0 2.877 2.853 2.853 0 0 0 2.505 1.416h5.71v5.252c0 1.26 1.505 1.922 2.43 1.067l8.43-7.824c.372-.372.557-.862.557-1.35ZM42.203 8.828a2.855 2.855 0 0 0-2.81 2.895v45.673a2.853 2.853 0 0 0 1.416 2.505c.888.52 1.989.52 2.877 0a2.852 2.852 0 0 0 1.416-2.505V11.723a2.857 2.857 0 0 0-2.9-2.895Z\" fill=\"url(#a)\"/><g opacity=\".6\"><path d=\"M26.217 8.828a2.855 2.855 0 0 0-2.81 2.895v45.673a2.852 2.852 0 0 0 1.417 2.505 2.853 2.853 0 0 0 4.293-2.505V11.723a2.857 2.857 0 0 0-2.9-2.895Z\" fill=\"url(#b)\"/><path d=\"M45.102 34.56c0 .487.186.977.558 1.349l8.43 7.824c.925.855 2.43.193 2.43-1.067v-5.252h5.71a2.853 2.853 0 0 0 2.505-1.416c.52-.888.52-1.988 0-2.877a2.852 2.852 0 0 0-2.506-1.416H56.52v-5.252c0-1.26-1.505-1.918-2.43-1.059l-8.43 7.824a1.883 1.883 0 0 0-.558 1.342Z\" fill=\"url(#c)\"/></g><defs><linearGradient id=\"a\" x1=\"46.88\" y1=\"45.929\" x2=\"9.988\" y2=\"4.944\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#10BBD8\"/><stop offset=\"1\" stop-color=\"#67D79F\"/></linearGradient><linearGradient id=\"b\" x1=\"46.88\" y1=\"45.929\" x2=\"9.988\" y2=\"4.944\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#10BBD8\"/><stop offset=\"1\" stop-color=\"#67D79F\"/></linearGradient><linearGradient id=\"c\" x1=\"46.88\" y1=\"45.929\" x2=\"9.988\" y2=\"4.944\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#10BBD8\"/><stop offset=\"1\" stop-color=\"#67D79F\"/></linearGradient></defs></svg>',title:\"Aplified Liquidity / AKA Concentrated Liquidity Icon\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ylmuak\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-632zyi\",\"data-styles-preset\":\"Un1cVV1_8\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(270deg, var(--token-8ea1e3fd-ac7f-4974-a2f3-133409ff7f08, rgb(18, 187, 213)) 0%, rgb(99, 213, 163) 100%)\"},children:\"2020\"})})}),className:\"framer-1rirhmq\",\"data-framer-name\":\"Supporting text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ablzfu\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aVMpqy5l3:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Amplified Liquidity\"})})},ljtIhjibA:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Amplified Liquidity\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Amplified Liquidity\"})}),className:\"framer-19huayr\",\"data-framer-name\":\"Heading\",fonts:[\"GF;Outfit-regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aVMpqy5l3:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"rgba(255, 255, 255, 0.66)\"},children:\"AKA, Concentrated Liquidity\"})})},ljtIhjibA:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"rgba(255, 255, 255, 0.66)\"},children:\"AKA, Concentrated Liquidity\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"rgba(255, 255, 255, 0.66)\"},children:\"AKA, Concentrated Liquidity\"})}),className:\"framer-17xsp5m\",\"data-framer-name\":\"Heading\",fonts:[\"GF;Outfit-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1fgpf6t\",\"data-framer-name\":\"Line\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-11bcyem\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-hy7gfz\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-t8ute\",\"data-framer-name\":\"Asummetric_Liquidity\",fill:\"black\",intrinsicHeight:69,intrinsicWidth:69,svg:'<svg width=\"69\" height=\"69\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\" fill-rule=\"evenodd\" clip-rule=\"evenodd\"><path opacity=\".4\" d=\"M33.766 19.468c-4.475 3.587-7.34 9.1-7.34 15.281 0 6.182 2.865 11.694 7.34 15.282a19.492 19.492 0 0 1-12.233 4.292c-10.81 0-19.574-8.763-19.574-19.574 0-10.81 8.764-19.574 19.574-19.574 4.629 0 8.882 1.607 12.233 4.293Z\" fill=\"url(#b)\"/><path d=\"M39.427 42.7a19.641 19.641 0 0 1-5.657 7.33 19.565 19.565 0 0 0 4.682 2.783 22.86 22.86 0 0 0 6.083-7.164L39.427 42.7Zm1.15-3.401 10.927-2.928A2.855 2.855 0 0 1 55 38.389l3.14 11.72c4.53-3.586 7.438-9.133 7.438-15.36 0-10.81-8.764-19.574-19.574-19.574-4.63 0-8.883 1.607-12.234 4.294 4.474 3.587 7.34 9.1 7.34 15.28 0 1.566-.185 3.09-.532 4.55Zm14.825 12.625-5.964-3.444a28.787 28.787 0 0 1-4.199 5.829 19.487 19.487 0 0 0 10.163-2.385Z\" fill=\"url(#c)\"/><path d=\"M15.063 33.127a2.855 2.855 0 0 1-3.496-2.019L8.242 18.701a1.429 1.429 0 0 1 2.09-1.607l6.796 3.924a28.68 28.68 0 0 1 4.587-6.235 2.89 2.89 0 0 1 .667-.598c3.35-3.234 7.514-5.72 12.325-7.009a2.852 2.852 0 0 1 2.786.72 2.846 2.846 0 0 1 .745 2.779 2.852 2.852 0 0 1-2.054 2.016 22.749 22.749 0 0 0-14.153 11.157l5.782 3.338c.682.394.917 1.27.523 1.953a1.434 1.434 0 0 1-.865.663l-12.408 3.325Z\" fill=\"url(#d)\"/><path opacity=\".4\" d=\"M51.5 36.371a2.855 2.855 0 0 1 3.496 2.018l3.324 12.408a1.429 1.429 0 0 1-2.09 1.607l-6.796-3.924a28.68 28.68 0 0 1-4.586 6.235 2.89 2.89 0 0 1-.667.598c-3.351 3.234-7.514 5.72-12.325 7.008a2.852 2.852 0 0 1-2.787-.72 2.846 2.846 0 0 1-.744-2.778 2.852 2.852 0 0 1 2.053-2.016 22.749 22.749 0 0 0 14.153-11.158l-5.781-3.337a1.431 1.431 0 0 1-.523-1.953c.198-.338.513-.569.865-.663L51.5 36.37Z\" fill=\"url(#e)\"/></g><defs><linearGradient id=\"b\" x1=\"24.887\" y1=\"43.398\" x2=\"-2.735\" y2=\"20.956\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#10BBD8\"/><stop offset=\"1\" stop-color=\"#67D79F\"/></linearGradient><linearGradient id=\"c\" x1=\"56.698\" y1=\"43.398\" x2=\"29.076\" y2=\"20.955\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#10BBD8\"/><stop offset=\"1\" stop-color=\"#67D79F\"/></linearGradient><linearGradient id=\"d\" x1=\"51.014\" y1=\"19.307\" x2=\"21.914\" y2=\"69.709\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#10BBD8\"/><stop offset=\"1\" stop-color=\"#67D79F\"/></linearGradient><linearGradient id=\"e\" x1=\"15.548\" y1=\"50.191\" x2=\"44.648\" y2=\"-.211\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#10BBD8\"/><stop offset=\"1\" stop-color=\"#67D79F\"/></linearGradient><clipPath id=\"a\"><path fill=\"#fff\" transform=\"translate(0 .494)\" d=\"M0 0h68.509v68.509H0z\"/></clipPath></defs></svg>',title:\"Asymmetric Liquidity DEX AKA Carbon DeFi Icon\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-n1gb9h\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-632zyi\",\"data-styles-preset\":\"Un1cVV1_8\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(270deg, var(--token-8ea1e3fd-ac7f-4974-a2f3-133409ff7f08, rgb(18, 187, 213)) 0%, rgb(99, 213, 163) 100%)\"},children:\"2022\"})})}),className:\"framer-1i3ceuu\",\"data-framer-name\":\"Supporting text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aVMpqy5l3:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Asymmetric Liquidity DEX\"})})},ljtIhjibA:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Asymmetric Liquidity DEX\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Asymmetric Liquidity DEX\"})}),className:\"framer-v5yzvw\",\"data-framer-name\":\"Heading\",fonts:[\"GF;Outfit-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1s1dfg0\",\"data-framer-name\":\"Line\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-15bblef\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1sdst4t\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1iur77y\",\"data-framer-name\":\"Adjustable_Bonding_Curves\",fill:\"black\",intrinsicHeight:70,intrinsicWidth:69,svg:'<svg width=\"69\" height=\"70\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\"><path opacity=\".4\" d=\"M28.547 57.775a2.855 2.855 0 0 1-2.855-2.855v-2.854H11.214A5.704 5.704 0 0 1 6.28 54.92a5.71 5.71 0 0 1-5.709-5.709 5.706 5.706 0 0 1 10.649-2.855h9.097c-3.717-3.635-6.044-8.682-6.044-14.272v-2.855H11.42a2.855 2.855 0 0 1-2.855-2.854V14.957a2.855 2.855 0 0 1 2.854-2.855h11.419a2.855 2.855 0 0 1 2.854 2.854v11.419a2.855 2.855 0 0 1-2.854 2.854h-2.855v2.855c0 4.683 2.249 8.82 5.71 11.418a2.855 2.855 0 0 1 2.854-2.855h11.418a2.855 2.855 0 0 1 2.854 2.855 14.239 14.239 0 0 0 5.71-11.418v-2.855h-2.855a2.855 2.855 0 0 1-2.855-2.854V14.957a2.855 2.855 0 0 1 2.855-2.855h11.418a2.855 2.855 0 0 1 2.855 2.854v11.419a2.855 2.855 0 0 1-2.855 2.854h-2.854v2.855c0 5.59-2.327 10.637-6.044 14.272h9.1a5.715 5.715 0 0 1 4.937-2.854 5.71 5.71 0 0 1 5.708 5.709 5.705 5.705 0 0 1-10.649 2.855H42.82v2.854a2.855 2.855 0 0 1-2.855 2.855H28.547Z\" fill=\"url(#b)\"/><path opacity=\".8\" fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M28.546 57.775a2.855 2.855 0 0 1-2.854-2.855V43.502a2.855 2.855 0 0 1 2.854-2.855h11.419a2.855 2.855 0 0 1 2.854 2.855V54.92a2.855 2.855 0 0 1-2.854 2.855H28.546Zm19.982-28.546h-2.854a2.855 2.855 0 0 1-2.855-2.854V14.957a2.855 2.855 0 0 1 2.855-2.855h11.418a2.855 2.855 0 0 1 2.854 2.854v11.419a2.855 2.855 0 0 1-2.854 2.854h-8.564Zm-37.109 0h11.418a2.855 2.855 0 0 0 2.855-2.854V14.957a2.855 2.855 0 0 0-2.855-2.855H11.42a2.855 2.855 0 0 0-2.854 2.854v11.419a2.855 2.855 0 0 0 2.854 2.854Z\" fill=\"url(#c)\"/><circle cx=\"6.913\" cy=\"49.211\" r=\"6.28\" fill=\"url(#d)\"/><circle cx=\"61.721\" cy=\"49.211\" r=\"6.28\" fill=\"url(#e)\"/></g><defs><linearGradient id=\"b\" x1=\"48.124\" y1=\"24.848\" x2=\"16.803\" y2=\"67.915\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#10BBD8\"/><stop offset=\"1\" stop-color=\"#67D79F\"/></linearGradient><linearGradient id=\"c\" x1=\"48.124\" y1=\"24.848\" x2=\"16.803\" y2=\"67.915\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#10BBD8\"/><stop offset=\"1\" stop-color=\"#67D79F\"/></linearGradient><linearGradient id=\"d\" x1=\"9.686\" y1=\"51.986\" x2=\".633\" y2=\"42.932\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#10BBD8\"/><stop offset=\"1\" stop-color=\"#67D79F\"/></linearGradient><linearGradient id=\"e\" x1=\"64.495\" y1=\"51.986\" x2=\"55.441\" y2=\"42.932\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#10BBD8\"/><stop offset=\"1\" stop-color=\"#67D79F\"/></linearGradient><clipPath id=\"a\"><path fill=\"#fff\" transform=\"translate(0 .684)\" d=\"M0 0h68.509v68.509H0z\"/></clipPath></defs></svg>',title:\"Adjustable Bonding Curves Icon\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-101b4ez\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-632zyi\",\"data-styles-preset\":\"Un1cVV1_8\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(270deg, var(--token-8ea1e3fd-ac7f-4974-a2f3-133409ff7f08, rgb(18, 187, 213)) 0%, rgb(99, 213, 163) 100%)\"},children:\"2022\"})})}),className:\"framer-1bdqtvx\",\"data-framer-name\":\"Supporting text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aVMpqy5l3:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Adjustable Bonding Curves\"})})},ljtIhjibA:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Adjustable Bonding Curves\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Adjustable Bonding Curves\"})}),className:\"framer-sejimy\",\"data-framer-name\":\"Heading\",fonts:[\"GF;Outfit-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-yl7ibk\",\"data-framer-name\":\"Line\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-eupz3r\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-dubv48\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-ns82dt\",\"data-framer-name\":\"Arb_Bot\",fill:\"black\",intrinsicHeight:30,intrinsicWidth:30,svg:'<svg width=\"30\" height=\"30\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\"><path d=\"M15.25 4.82h-.79v2.884h.79V4.82Z\" fill=\"url(#b)\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M1.766 16.281a1.612 1.612 0 1 0 0 3.224h.502v-3.224h-.502Zm27.48 1.612c0-.89-.723-1.612-1.613-1.612v3.224c.89 0 1.612-.721 1.612-1.612Z\" fill=\"url(#c)\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M14.152 7.64h1.711c1.3 0 2.352 0 3.282.202a8.739 8.739 0 0 1 6.673 6.671c.203.93.202 1.98.202 3.28v1.219c0 .382 0 .693-.02.983a8.738 8.738 0 0 1-6.371 7.84 15.474 15.474 0 0 1-1.033.235l-.026.005c-.255.053-.418.087-.583.119a16.815 16.815 0 0 1-6.804-.12l-.026-.005-.074-.015a15.448 15.448 0 0 1-.959-.22 8.738 8.738 0 0 1-6.371-7.839c-.02-.29-.02-.6-.02-.983v-1.218c0-1.3-.001-2.352.202-3.28a8.739 8.739 0 0 1 6.673-6.672c.93-.203 1.981-.202 3.282-.201h.262Zm-7.665 7.43c-.141.647-.141 1.426-.141 2.986v.881c0 .456 0 .684.013.886a6.126 6.126 0 0 0 4.468 5.496c.195.054.418.101.864.194.28.059.42.088.56.114 1.735.327 3.516.327 5.252 0 .14-.026.279-.055.558-.114.447-.093.67-.14.865-.194a6.126 6.126 0 0 0 4.468-5.496c.013-.202.013-.43.013-.886v-.881c0-1.56 0-2.34-.141-2.986a6.127 6.127 0 0 0-4.679-4.677c-.646-.14-1.426-.14-2.986-.14h-1.449c-1.56 0-2.34 0-2.986.14a6.127 6.127 0 0 0-4.679 4.677Z\" fill=\"url(#d)\"/><path d=\"M12.925 18.216a1.612 1.612 0 1 0-3.224 0 1.612 1.612 0 0 0 3.224 0Zm7.095 0a1.612 1.612 0 1 0-3.224 0 1.612 1.612 0 0 0 3.225 0Z\" fill=\"#fff\"/><path d=\"M14.86 4.836a2.418 2.418 0 1 0 .001-4.837 2.418 2.418 0 0 0 0 4.837Z\" fill=\"url(#e)\"/></g><defs><radialGradient id=\"b\" cx=\"0\" cy=\"0\" r=\"1\" gradientUnits=\"userSpaceOnUse\" gradientTransform=\"matrix(-.00212 4.74827 -2.1582 -.00096 14.96 4.74)\"><stop stop-color=\"#00B578\" stop-opacity=\".6\"/><stop offset=\"1\" stop-color=\"#10BBD5\" stop-opacity=\".3\"/></radialGradient><radialGradient id=\"c\" cx=\"0\" cy=\"0\" r=\"1\" gradientUnits=\"userSpaceOnUse\" gradientTransform=\"rotate(90.844 1.312 17.25) scale(5.30888 79.4272)\"><stop stop-color=\"#00B578\" stop-opacity=\".6\"/><stop offset=\"1\" stop-color=\"#10BBD5\" stop-opacity=\".3\"/></radialGradient><linearGradient id=\"d\" x1=\"14.877\" y1=\"7.657\" x2=\"14.877\" y2=\"28.484\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#10BBD8\"/><stop offset=\"1\" stop-color=\"#67D79F\"/></linearGradient><linearGradient id=\"e\" x1=\"17.279\" y1=\"0\" x2=\"18.902\" y2=\"4.211\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#10BBD8\"/><stop offset=\".638\" stop-color=\"#67D79F\"/></linearGradient><clipPath id=\"a\"><path fill=\"#fff\" d=\"M0 0h29.245v30H0z\"/></clipPath></defs></svg>',title:\"Arb Fast Lane Bot\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-fvz89a\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-632zyi\",\"data-styles-preset\":\"Un1cVV1_8\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(270deg, var(--token-8ea1e3fd-ac7f-4974-a2f3-133409ff7f08, rgb(18, 187, 213)) 0%, rgb(99, 213, 163) 100%)\"},children:\"2023\"})})}),className:\"framer-2ci2p\",\"data-framer-name\":\"Supporting text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aVMpqy5l3:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Arb Fast Lane Protocol\"})})},ljtIhjibA:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Arb Fast Lane Protocol\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Arb Fast Lane Protocol\"})}),className:\"framer-1lx4wbd\",\"data-framer-name\":\"Heading\",fonts:[\"GF;Outfit-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]})]}),isDisplayed1()&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"LYExVCZHJ\"},implicitPathVariables:undefined},{href:{webPageId:\"LYExVCZHJ\"},implicitPathVariables:undefined}],children:resolvedLinks5=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ljtIhjibA:{height:44,y:(componentViewport?.y||0)+0+5187.2+0+0+759.6}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-fakblk-container hidden-d0wpzk hidden-nyn7el\",nodeId:\"zMBSQWoxM\",scopeId:\"flOIYRy97\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ljtIhjibA:{JLasj7fEe:resolvedLinks5[1]}},children:/*#__PURE__*/_jsx(Button,{height:\"100%\",id:\"zMBSQWoxM\",JLasj7fEe:resolvedLinks5[0],layoutId:\"zMBSQWoxM\",MavOXBlCM:true,Oa6EML9yk:\"Learn more\",variant:\"Z3Ts2CUv8\",width:\"100%\"})})})})})})]}),isDisplayed1()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-kpdi2b hidden-d0wpzk hidden-nyn7el\"})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation10,__framer__exit:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-122pg63\",\"data-framer-name\":\"Email\",style:{transformPerspective:1930},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aVMpqy5l3:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:793,intrinsicWidth:1400,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3876.2+0),pixelHeight:793,pixelWidth:1400,sizes:`min(${componentViewport?.width||\"100vw\"} * 0.9506, 1100px)`,src:\"https://framerusercontent.com/images/sPyTBiALtz5mG2EohaDSFOoiGSw.gif\",srcSet:\"https://framerusercontent.com/images/sPyTBiALtz5mG2EohaDSFOoiGSw.gif?scale-down-to=512 512w,https://framerusercontent.com/images/sPyTBiALtz5mG2EohaDSFOoiGSw.gif?scale-down-to=1024 1024w,https://framerusercontent.com/images/sPyTBiALtz5mG2EohaDSFOoiGSw.gif 1400w\"}},ljtIhjibA:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:793,intrinsicWidth:1400,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6050.8+0),pixelHeight:793,pixelWidth:1400,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/sPyTBiALtz5mG2EohaDSFOoiGSw.gif\",srcSet:\"https://framerusercontent.com/images/sPyTBiALtz5mG2EohaDSFOoiGSw.gif?scale-down-to=512 512w,https://framerusercontent.com/images/sPyTBiALtz5mG2EohaDSFOoiGSw.gif?scale-down-to=1024 1024w,https://framerusercontent.com/images/sPyTBiALtz5mG2EohaDSFOoiGSw.gif 1400w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:793,intrinsicWidth:1400,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4179.2+0),pixelHeight:793,pixelWidth:1400,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/sPyTBiALtz5mG2EohaDSFOoiGSw.gif\",srcSet:\"https://framerusercontent.com/images/sPyTBiALtz5mG2EohaDSFOoiGSw.gif?scale-down-to=512 512w,https://framerusercontent.com/images/sPyTBiALtz5mG2EohaDSFOoiGSw.gif?scale-down-to=1024 1024w,https://framerusercontent.com/images/sPyTBiALtz5mG2EohaDSFOoiGSw.gif 1400w\"},className:\"framer-gwv960\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1yqzd6f\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aVMpqy5l3:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-1m9bzi2\",\"data-styles-preset\":\"stylesPresetHeading2\",children:[\"Get the latest updates \",/*#__PURE__*/_jsx(\"br\",{}),\"on the Bancor ecosystem\"]})})},ljtIhjibA:{__framer__styleAppearEffectEnabled:undefined,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0V1Y2xpZCBDaXJjdWxhciBBIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Euclid Circular A Regular\", \"Euclid Circular A Regular Placeholder\", sans-serif',\"--framer-font-size\":\"25px\",\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Get the latest updates on the Bancor ecosystem\"})}),fonts:[\"CUSTOM;Euclid Circular A Regular\"],style:{}}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation10,__framer__exit:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1m9bzi2\",\"data-styles-preset\":\"stylesPresetHeading2\",children:\"Get the latest updates on the Bancor ecosystem\"})}),className:\"framer-91o2mn\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],style:{transformPerspective:1930},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ljtIhjibA:{animate:undefined,initial:undefined,optimized:undefined,style:{}}},children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation11,className:\"framer-1oxjpue-container\",\"data-framer-appear-id\":\"1oxjpue\",initial:animation6,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"j5as6pN7y\",optimized:true,rendersWithMotion:true,scopeId:\"flOIYRy97\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aVMpqy5l3:{html:'<style type=\"text/css\">@import url(\"https://assets.mlcdn.com/fonts.css?version=1682350\");</style>\\n    <style type=\"text/css\">\\n    /* LOADER */\\n    .ml-form-embedSubmitLoad {\\n      display: inline-block;\\n      width: 20px;\\n      height: 20px;\\n    }\\n\\n    .g-recaptcha {\\n    transform: scale(1);\\n    -webkit-transform: scale(1);\\n    transform-origin: 0 0;\\n    -webkit-transform-origin: 0 0;\\n    height: ;\\n    }\\n\\n    .sr-only {\\n      position: absolute;\\n      width: 1px;\\n      height: 1px;\\n      padding: 0;\\n      margin: -1px;\\n      overflow: hidden;\\n      clip: rect(0,0,0,0);\\n      border: 0;\\n    }\\n\\n    .ml-form-embedSubmitLoad:after {\\n      content: \" \";\\n      display: block;\\n      width: 11px;\\n      height: 11px;\\n      margin: 1px;\\n      border-radius: 50%;\\n      border: 4px solid #fff;\\n    border-color: #000000 #000000 #000000 transparent;\\n    animation: ml-form-embedSubmitLoad 1.2s linear infinite;\\n    }\\n    @keyframes ml-form-embedSubmitLoad {\\n      0% {\\n      transform: rotate(0deg);\\n      }\\n      100% {\\n      transform: rotate(360deg);\\n      }\\n    }\\n      #mlb2-4918094.ml-form-embedContainer {\\n        box-sizing: border-box;\\n        display: table;\\n        margin: 0 auto;\\n        position: static;\\n        width: 100% !important;\\n      }\\n      #mlb2-4918094.ml-form-embedContainer h4,\\n      #mlb2-4918094.ml-form-embedContainer p,\\n      #mlb2-4918094.ml-form-embedContainer span,\\n      #mlb2-4918094.ml-form-embedContainer button {\\n        text-transform: none !important;\\n        letter-spacing: normal !important;\\n      }\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper {\\n        background-color: #00000000;\\n        \\n        border-width: 0px;\\n        border-color: transparent;\\n        border-radius: 4px;\\n        border-style: solid;\\n        box-sizing: border-box;\\n        display: inline-block !important;\\n        margin: 0;\\n        padding: 0;\\n        position: relative;\\n              }\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper.embedPopup,\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper.embedDefault { width: 400px; }\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper.embedForm { max-width: 400px; width: 100%; }\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-align-left { text-align: left; }\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-align-center { text-align: center; }\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-align-default { display: table-cell !important; vertical-align: middle !important; text-align: center !important; }\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-align-right { text-align: right; }\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedHeader img {\\n        border-top-left-radius: 4px;\\n        border-top-right-radius: 4px;\\n        height: auto;\\n        margin: 0 auto !important;\\n        max-width: 100%;\\n        width: undefinedpx;\\n      }\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody,\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody {\\n        padding: 20px 20px 0 20px;\\n      }\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody.ml-form-embedBodyHorizontal {\\n        padding-bottom: 0;\\n      }\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedContent,\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody .ml-form-successContent {\\n        text-align: left;\\n        margin: 0 0 20px 0;\\n      }\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedContent h4,\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody .ml-form-successContent h4 {\\n        color: #ffffff;\\n        font-family: \\'Open Sans\\', Arial, Helvetica, sans-serif;\\n        font-size: 30px;\\n        font-weight: 400;\\n        margin: 0 0 10px 0;\\n        text-align: left;\\n        word-break: break-word;\\n      }\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedContent p,\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody .ml-form-successContent p {\\n        color: #b8b8b8;\\n        font-family: \\'Open Sans\\', Arial, Helvetica, sans-serif;\\n        font-size: 14px;\\n        font-weight: 400;\\n        line-height: 20px;\\n        margin: 0 0 10px 0;\\n        text-align: left;\\n      }\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedContent ul,\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedContent ol,\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody .ml-form-successContent ul,\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody .ml-form-successContent ol {\\n        color: #b8b8b8;\\n        font-family: \\'Open Sans\\', Arial, Helvetica, sans-serif;\\n        font-size: 14px;\\n      }\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedContent ol ol,\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody .ml-form-successContent ol ol {\\n        list-style-type: lower-alpha;\\n      }\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedContent ol ol ol,\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody .ml-form-successContent ol ol ol {\\n        list-style-type: lower-roman;\\n      }\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedContent p a,\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody .ml-form-successContent p a {\\n        color: #000000;\\n        text-decoration: underline;\\n      }\\n\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-block-form .ml-field-group {\\n        text-align: left!important;\\n      }\\n\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-block-form .ml-field-group label {\\n        margin-bottom: 5px;\\n        color: #D1D3D3;\\n        font-size: 14px;\\n        font-family: \\'Open Sans\\', Arial, Helvetica, sans-serif;\\n        font-weight: normal; font-style: normal; text-decoration: none;;\\n        display: inline-block;\\n        line-height: 20px;\\n      }\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedContent p:last-child,\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody .ml-form-successContent p:last-child {\\n        margin: 0;\\n      }\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody form {\\n        margin: 0;\\n        width: 100%;\\n      }\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-formContent,\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow {\\n        margin: 0 0 20px 0;\\n        width: 100%;\\n      }\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow {\\n        float: left;\\n      }\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-formContent.horozintalForm {\\n        margin: 0;\\n        padding: 0 0 20px 0;\\n        width: 100%;\\n        height: auto;\\n        float: left;\\n      }\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow {\\n        margin: 0 0 10px 0;\\n        width: 100%;\\n      }\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow.ml-last-item {\\n        margin: 0;\\n      }\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow.ml-formfieldHorizintal {\\n        margin: 0;\\n      }\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow input {\\n        background-color: #343439 !important;\\n        color: #ffffff !important;\\n        border-color: #cccccc;\\n        border-radius: 4px !important;\\n        border-style: solid !important;\\n        border-width: 0px !important;\\n        font-family: \\'Open Sans\\', Arial, Helvetica, sans-serif;\\n        font-size: 14px !important;\\n        height: auto;\\n        line-height: 21px !important;\\n        margin-bottom: 0;\\n        margin-top: 0;\\n        margin-left: 0;\\n        margin-right: 0;\\n        padding: 10px 10px !important;\\n        width: 100% !important;\\n        box-sizing: border-box !important;\\n        max-width: 100% !important;\\n      }\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow input::-webkit-input-placeholder,\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow input::-webkit-input-placeholder { color: #ffffff; }\\n\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow input::-moz-placeholder,\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow input::-moz-placeholder { color: #ffffff; }\\n\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow input:-ms-input-placeholder,\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow input:-ms-input-placeholder { color: #ffffff; }\\n\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow input:-moz-placeholder,\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow input:-moz-placeholder { color: #ffffff; }\\n\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow textarea, #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow textarea {\\n        background-color: #343439 !important;\\n        color: #ffffff !important;\\n        border-color: #cccccc;\\n        border-radius: 4px !important;\\n        border-style: solid !important;\\n        border-width: 0px !important;\\n        font-family: \\'Open Sans\\', Arial, Helvetica, sans-serif;\\n        font-size: 14px !important;\\n        height: auto;\\n        line-height: 21px !important;\\n        margin-bottom: 0;\\n        margin-top: 0;\\n        padding: 10px 10px !important;\\n        width: 100% !important;\\n        box-sizing: border-box !important;\\n        max-width: 100% !important;\\n      }\\n\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-radio .custom-control-label::before, #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-radio .custom-control-label::before, #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-checkbox .custom-control-label::before, #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-checkbox .custom-control-label::before, #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions .ml-form-embedPermissionsOptionsCheckbox .label-description::before, #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-interestGroupsRow .ml-form-interestGroupsRowCheckbox .label-description::before, #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow .label-description::before {\\n          border-color: #cccccc!important;\\n          background-color: #343439!important;\\n      }\\n\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow input.custom-control-input[type=\"checkbox\"]{\\n        box-sizing: border-box;\\n        padding: 0;\\n        position: absolute;\\n        z-index: -1;\\n        opacity: 0;\\n        margin-top: 5px;\\n        margin-left: -1.5rem;\\n        overflow: visible;\\n      }\\n\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-checkbox .custom-control-label::before, #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-checkbox .custom-control-label::before, #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions .ml-form-embedPermissionsOptionsCheckbox .label-description::before, #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-interestGroupsRow .ml-form-interestGroupsRowCheckbox .label-description::before, #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow .label-description::before {\\n        border-radius: 4px!important;\\n      }\\n\\n\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow input[type=checkbox]:checked~.label-description::after, #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions .ml-form-embedPermissionsOptionsCheckbox input[type=checkbox]:checked~.label-description::after, #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-checkbox .custom-control-input:checked~.custom-control-label::after, #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-checkbox .custom-control-input:checked~.custom-control-label::after, #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-interestGroupsRow .ml-form-interestGroupsRowCheckbox input[type=checkbox]:checked~.label-description::after {\\n        background-image: url(\"data:image/svg+xml,%3csvg xmlns=\\'http://www.w3.org/2000/svg\\' viewBox=\\'0 0 8 8\\'%3e%3cpath fill=\\'%23fff\\' d=\\'M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z\\'/%3e%3c/svg%3e\");\\n      }\\n\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-radio .custom-control-input:checked~.custom-control-label::after, #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-radio .custom-control-input:checked~.custom-control-label::after {\\n        background-image: url(\"data:image/svg+xml,%3csvg xmlns=\\'http://www.w3.org/2000/svg\\' viewBox=\\'-4 -4 8 8\\'%3e%3ccircle r=\\'3\\' fill=\\'%23fff\\'/%3e%3c/svg%3e\");\\n      }\\n\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-radio .custom-control-input:checked~.custom-control-label::before, #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-radio .custom-control-input:checked~.custom-control-label::before, #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-checkbox .custom-control-input:checked~.custom-control-label::before, #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-checkbox .custom-control-input:checked~.custom-control-label::before, #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions .ml-form-embedPermissionsOptionsCheckbox input[type=checkbox]:checked~.label-description::before, #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-interestGroupsRow .ml-form-interestGroupsRowCheckbox input[type=checkbox]:checked~.label-description::before, #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow input[type=checkbox]:checked~.label-description::before  {\\n          border-color: #ffffff!important;\\n          background-color: #ffffff!important;\\n          color: #000000!important;\\n      }\\n\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-radio .custom-control-label::before, #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-radio .custom-control-label::before, #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-radio .custom-control-label::after, #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-radio .custom-control-label::after, #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-checkbox .custom-control-label::before, #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-checkbox .custom-control-label::after, #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-checkbox .custom-control-label::before, #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-checkbox .custom-control-label::after {\\n           top: 2px;\\n           box-sizing: border-box;\\n      }\\n\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions .ml-form-embedPermissionsOptionsCheckbox .label-description::before, #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions .ml-form-embedPermissionsOptionsCheckbox .label-description::after, #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow .label-description::before, #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow .label-description::after {\\n           top: 0px!important;\\n           box-sizing: border-box!important;\\n      }\\n\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow .label-description::before, #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow .label-description::after {\\n        top: 0px!important;\\n           box-sizing: border-box!important;\\n      }\\n\\n       #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-interestGroupsRow .ml-form-interestGroupsRowCheckbox .label-description::after {\\n            top: 0px!important;\\n            box-sizing: border-box!important;\\n            position: absolute;\\n            left: -1.5rem;\\n            display: block;\\n            width: 1rem;\\n            height: 1rem;\\n            content: \"\";\\n       }\\n\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-interestGroupsRow .ml-form-interestGroupsRowCheckbox .label-description::before {\\n        top: 0px!important;\\n        box-sizing: border-box!important;\\n      }\\n\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .custom-control-label::before {\\n          position: absolute;\\n          top: 4px;\\n          left: -1.5rem;\\n          display: block;\\n          width: 16px;\\n          height: 16px;\\n          pointer-events: none;\\n          content: \"\";\\n          background-color: #ffffff;\\n          border: #adb5bd solid 1px;\\n          border-radius: 50%;\\n      }\\n\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .custom-control-label::after {\\n          position: absolute;\\n          top: 2px!important;\\n          left: -1.5rem;\\n          display: block;\\n          width: 1rem;\\n          height: 1rem;\\n          content: \"\";\\n      }\\n\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions .ml-form-embedPermissionsOptionsCheckbox .label-description::before, #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-interestGroupsRow .ml-form-interestGroupsRowCheckbox .label-description::before, #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow .label-description::before {\\n          position: absolute;\\n          top: 4px;\\n          left: -1.5rem;\\n          display: block;\\n          width: 16px;\\n          height: 16px;\\n          pointer-events: none;\\n          content: \"\";\\n          background-color: #ffffff;\\n          border: #adb5bd solid 1px;\\n          border-radius: 50%;\\n      }\\n\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions .ml-form-embedPermissionsOptionsCheckbox .label-description::after {\\n          position: absolute;\\n          top: 0px!important;\\n          left: -1.5rem;\\n          display: block;\\n          width: 1rem;\\n          height: 1rem;\\n          content: \"\";\\n      }\\n\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow .label-description::after {\\n          position: absolute;\\n          top: 0px!important;\\n          left: -1.5rem;\\n          display: block;\\n          width: 1rem;\\n          height: 1rem;\\n          content: \"\";\\n      }\\n\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .custom-radio .custom-control-label::after {\\n          background: no-repeat 50%/50% 50%;\\n      }\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .custom-checkbox .custom-control-label::after, #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions .ml-form-embedPermissionsOptionsCheckbox .label-description::after, #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-interestGroupsRow .ml-form-interestGroupsRowCheckbox .label-description::after, #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow .label-description::after {\\n          background: no-repeat 50%/50% 50%;\\n      }\\n\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-control, #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-control {\\n        position: relative;\\n        display: block;\\n        min-height: 1.5rem;\\n        padding-left: 1.5rem;\\n      }\\n\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-radio .custom-control-input, #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-radio .custom-control-input, #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-checkbox .custom-control-input, #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-checkbox .custom-control-input {\\n          position: absolute;\\n          z-index: -1;\\n          opacity: 0;\\n          box-sizing: border-box;\\n          padding: 0;\\n      }\\n\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-radio .custom-control-label, #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-radio .custom-control-label, #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-checkbox .custom-control-label, #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-checkbox .custom-control-label {\\n          color: #000000;\\n          font-size: 12px!important;\\n          font-family: \\'Open Sans\\', Arial, Helvetica, sans-serif;\\n          line-height: 22px;\\n          margin-bottom: 0;\\n          position: relative;\\n          vertical-align: top;\\n          font-style: normal;\\n          font-weight: 700;\\n      }\\n\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-select, #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-select {\\n        background-color: #343439 !important;\\n        color: #ffffff !important;\\n        border-color: #cccccc;\\n        border-radius: 4px !important;\\n        border-style: solid !important;\\n        border-width: 0px !important;\\n        font-family: \\'Open Sans\\', Arial, Helvetica, sans-serif;\\n        font-size: 14px !important;\\n        line-height: 20px !important;\\n        margin-bottom: 0;\\n        margin-top: 0;\\n        padding: 10px 28px 10px 12px !important;\\n        width: 100% !important;\\n        box-sizing: border-box !important;\\n        max-width: 100% !important;\\n        height: auto;\\n        display: inline-block;\\n        vertical-align: middle;\\n        background: url(\\'https://assets.mlcdn.com/ml/images/default/dropdown.svg\\') no-repeat right .75rem center/8px 10px;\\n        -webkit-appearance: none;\\n        -moz-appearance: none;\\n        appearance: none;\\n      }\\n\\n\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow {\\n        height: auto;\\n        width: 100%;\\n        float: left;\\n      }\\n      .ml-form-formContent.horozintalForm .ml-form-horizontalRow .ml-input-horizontal { width: 70%; float: left; }\\n      .ml-form-formContent.horozintalForm .ml-form-horizontalRow .ml-button-horizontal { width: 30%; float: left; }\\n      .ml-form-formContent.horozintalForm .ml-form-horizontalRow .ml-button-horizontal.labelsOn { padding-top: 25px;  }\\n      .ml-form-formContent.horozintalForm .ml-form-horizontalRow .horizontal-fields { box-sizing: border-box; float: left; padding-right: 10px;  }\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow input {\\n        background-color: #343439;\\n        color: #ffffff;\\n        border-color: #cccccc;\\n        border-radius: 4px;\\n        border-style: solid;\\n        border-width: 0px;\\n        font-family: \\'Open Sans\\', Arial, Helvetica, sans-serif;\\n        font-size: 14px;\\n        line-height: 20px;\\n        margin-bottom: 0;\\n        margin-top: 0;\\n        padding: 10px 10px;\\n        width: 100%;\\n        box-sizing: border-box;\\n        overflow-y: initial;\\n      }\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow button {\\n        background-color: #ffffff !important;\\n        border-color: #ffffff;\\n        border-style: solid;\\n        border-width: 0px;\\n        border-radius: 6px;\\n        box-shadow: none;\\n        color: #000000 !important;\\n        cursor: pointer;\\n        font-family: \\'Montserrat\\', sans-serif;\\n        font-size: 14px !important;\\n        font-weight: 400;\\n        line-height: 20px;\\n        margin: 0 !important;\\n        padding: 10px !important;\\n        width: 100%;\\n        height: auto;\\n      }\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow button:hover {\\n        background-color: #10bbd8 !important;\\n        border-color: #10bbd8 !important;\\n      }\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow input[type=\"checkbox\"] {\\n        box-sizing: border-box;\\n        padding: 0;\\n        position: absolute;\\n        z-index: -1;\\n        opacity: 0;\\n        margin-top: 5px;\\n        margin-left: -1.5rem;\\n        overflow: visible;\\n      }\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow .label-description {\\n        color: #000000;\\n        display: block;\\n        font-family: \\'Open Sans\\', Arial, Helvetica, sans-serif;\\n        font-size: 12px;\\n        text-align: left;\\n        margin-bottom: 0;\\n        position: relative;\\n        vertical-align: top;\\n      }\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow label {\\n        font-weight: normal;\\n        margin: 0;\\n        padding: 0;\\n        position: relative;\\n        display: block;\\n        min-height: 24px;\\n        padding-left: 24px;\\n\\n      }\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow label a {\\n        color: #000000;\\n        text-decoration: underline;\\n      }\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow label p {\\n        color: #000000 !important;\\n        font-family: \\'Open Sans\\', Arial, Helvetica, sans-serif !important;\\n        font-size: 12px !important;\\n        font-weight: normal !important;\\n        line-height: 18px !important;\\n        padding: 0 !important;\\n        margin: 0 5px 0 0 !important;\\n      }\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow label p:last-child {\\n        margin: 0;\\n      }\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedSubmit {\\n        margin: 0 0 20px 0;\\n        float: left;\\n        width: 100%;\\n      }\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedSubmit button {\\n        background-color: #ffffff !important;\\n        border: none !important;\\n        border-radius: 6px !important;\\n        box-shadow: none !important;\\n        color: #000000 !important;\\n        cursor: pointer;\\n        font-family: \\'Montserrat\\', sans-serif !important;\\n        font-size: 14px !important;\\n        font-weight: 400 !important;\\n        line-height: 21px !important;\\n        height: auto;\\n        padding: 10px !important;\\n        width: 100% !important;\\n        box-sizing: border-box !important;\\n      }\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedSubmit button.loading {\\n        display: none;\\n      }\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedSubmit button:hover {\\n        background-color: #10bbd8 !important;\\n      }\\n      .ml-subscribe-close {\\n        width: 30px;\\n        height: 30px;\\n        background: url(\\'https://assets.mlcdn.com/ml/images/default/modal_close.png\\') no-repeat;\\n        background-size: 30px;\\n        cursor: pointer;\\n        margin-top: -10px;\\n        margin-right: -10px;\\n        position: absolute;\\n        top: 0;\\n        right: 0;\\n      }\\n      .ml-error input, .ml-error textarea, .ml-error select {\\n        border-color: red!important;\\n      }\\n\\n      .ml-error .custom-checkbox-radio-list {\\n        border: 1px solid red !important;\\n        border-radius: 4px;\\n        padding: 10px;\\n      }\\n\\n      .ml-error .label-description,\\n      .ml-error .label-description p,\\n      .ml-error .label-description p a,\\n      .ml-error label:first-child {\\n        color: #ff0000 !important;\\n      }\\n\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow.ml-error .label-description p,\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow.ml-error .label-description p:first-letter {\\n        color: #ff0000 !important;\\n      }\\n            @media only screen and (max-width: 400px){\\n\\n        .ml-form-embedWrapper.embedDefault, .ml-form-embedWrapper.embedPopup { width: 100%!important; }\\n        .ml-form-formContent.horozintalForm { float: left!important; }\\n        .ml-form-formContent.horozintalForm .ml-form-horizontalRow { height: auto!important; width: 100%!important; float: left!important; }\\n        .ml-form-formContent.horozintalForm .ml-form-horizontalRow .ml-input-horizontal { width: 100%!important; }\\n        .ml-form-formContent.horozintalForm .ml-form-horizontalRow .ml-input-horizontal > div { padding-right: 0px!important; padding-bottom: 10px; }\\n        .ml-form-formContent.horozintalForm .ml-button-horizontal { width: 100%!important; }\\n        .ml-form-formContent.horozintalForm .ml-button-horizontal.labelsOn { padding-top: 0px!important; }\\n\\n      }\\n    </style>\\n\\n    <style type=\"text/css\">\\n\\n      .ml-mobileButton-horizontal { display: none; }\\n\\n      #mlb2-4918094 .ml-mobileButton-horizontal button {\\n\\n        background-color: #ffffff !important;\\n        border-color: #ffffff !important;\\n        border-style: solid !important;\\n        border-width: 0px !important;\\n        border-radius: 6px !important;\\n        box-shadow: none !important;\\n        color: #000000 !important;\\n        cursor: pointer;\\n        font-family: \\'Montserrat\\', sans-serif !important;\\n        font-size: 14px !important;\\n        font-weight: 400 !important;\\n        line-height: 20px !important;\\n        padding: 10px !important;\\n        width: 100% !important;\\n\\n      }\\n\\n      @media only screen and (max-width: 400px) {\\n        #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-formContent.horozintalForm {\\n          padding: 0 0 10px 0 !important;\\n        }\\n        .ml-hide-horizontal { display: none !important; }\\n        .ml-form-formContent.horozintalForm .ml-button-horizontal { display: none!important; }\\n        .ml-mobileButton-horizontal { display: inline-block !important; margin-bottom: 20px;width:100%; }\\n        .ml-form-formContent.horozintalForm .ml-form-horizontalRow .ml-input-horizontal > div { padding-bottom: 0px !important; }\\n      }\\n\\n    </style>\\n  <style type=\"text/css\">\\n    @media only screen and (max-width: 400px) {\\n       .ml-form-formContent.horozintalForm .ml-form-horizontalRow .horizontal-fields {\\n        margin-bottom: 10px !important;\\n        width: 100% !important;\\n      }\\n    }\\n  </style>\\n    \\n    \\n\\n    \\n    \\n\\n    \\n    \\n\\n    \\n\\n      \\n        \\n        \\n      \\n\\n      \\n        \\n        \\n      \\n\\n      \\n\\n            \\n            \\n            \\n            \\n            \\n            \\n      \\n\\n      \\n\\n      \\n        \\n        \\n         \\n        \\n        \\n      \\n\\n        \\n        \\n        \\n        \\n        \\n        \\n      \\n\\n       \\n\\n        \\n        \\n        \\n        \\n        \\n        \\n        \\n       \\n\\n\\n      \\n        \\n        \\n        \\n        \\n  \\n\\n\\n\\n  \\n        \\n        \\n        \\n      \\n\\n\\n      \\n    \\n    \\n    \\n    \\n    \\n  \\n\\n  \\n        \\n        \\n        \\n        \\n        \\n      \\n\\n      \\n        \\n        \\n        \\n        \\n        \\n      \\n\\n      \\n        \\n        \\n        \\n        \\n        \\n      \\n\\n       \\n\\n        \\n        \\n        \\n        \\n       \\n\\n       \\n        \\n        \\n        \\n        \\n      \\n\\n      \\n        \\n        \\n        \\n        \\n        \\n        \\n        \\n       \\n\\n    \\n\\n    \\n\\n\\n      \\n\\n\\n      \\n\\n      \\n      \\n\\n      \\n\\n      \\n\\n\\n\\n\\n\\n    \\n\\n      \\n    <div id=\"mlb2-4918094\" class=\"ml-form-embedContainer ml-subscribe-form ml-subscribe-form-4918094\">\\n      <div class=\"ml-form-align-center \">\\n        <div class=\"ml-form-embedWrapper embedForm\">\\n\\n          \\n          \\n\\n          <div class=\"ml-form-embedBody ml-form-embedBodyHorizontal row-form\">\\n\\n            <div class=\"ml-form-embedContent\" style=\"margin-bottom: 0px; \">\\n              \\n            </div>\\n\\n            <form class=\"ml-block-form\" action=\"https://assets.mailerlite.com/jsonp/424030/forms/87085291469276523/subscribe\" data-code=\"\" method=\"post\" target=\"_blank\">\\n              \\n\\n              <div class=\"ml-form-formContent horozintalForm\">\\n                <div class=\"ml-form-horizontalRow\">\\n                  <div class=\"ml-input-horizontal\">\\n                    \\n                      \\n                      <div style=\"width: 100%;\" class=\"horizontal-fields\">\\n\\n\\n\\n\\n\\n\\n                        <div class=\"ml-field-group ml-field-email ml-validate-email ml-validate-required\">\\n                          \\n                          <!-- input -->\\n                      <input type=\"email\" class=\"form-control\" data-inputmask=\"\" name=\"fields[email]\" placeholder=\"Email\" autocomplete=\"email\">\\n                      <!-- /input -->\\n                        </div>\\n\\n\\n\\n                      </div>\\n                    \\n                  </div>\\n\\n\\n                  <div class=\"ml-button-horizontal primary \">\\n                    \\n                      <button type=\"submit\" class=\"primary\">Subscribe</button>\\n                    \\n                    <button disabled=\"disabled\" style=\"display: none;\" type=\"button\" class=\"loading\">\\n                      <div class=\"ml-form-embedSubmitLoad\"></div>\\n                      <span class=\"sr-only\">Loading...</span>\\n                    </button>\\n                  </div>\\n                </div>\\n              </div>\\n\\n              <!-- Privacy policy -->\\n              \\n              <!-- /Privacy policy -->\\n\\n              \\n\\n              \\n\\n              \\n\\n\\n\\n\\n\\n\\n              \\n              <input type=\"hidden\" name=\"ml-submit\" value=\"1\">\\n\\n              \\n\\n              <div class=\"ml-mobileButton-horizontal\">\\n                <button type=\"submit\" class=\"primary\">Subscribe</button>\\n                <button disabled=\"disabled\" style=\"display: none;\" type=\"button\" class=\"loading\">\\n                  <div class=\"ml-form-embedSubmitLoad\"></div>\\n                  <span class=\"sr-only\">Loading...</span>\\n                </button>\\n              </div>\\n              <input type=\"hidden\" name=\"anticsrf\" value=\"true\">\\n            </form>\\n          </div>\\n\\n          <div class=\"ml-form-successBody row-success\" style=\"display: none\">\\n\\n            <div class=\"ml-form-successContent\">\\n              \\n                <h4>Subscribed!</h4>\\n                <p><br></p>\\n              \\n            </div>\\n\\n          </div>\\n        </div>\\n      </div>\\n    </div>\\n\\n  \\n\\n  \\n  \\n  <script>\\n    function ml_webform_success_4918094() {\\n      var $ = ml_jQuery || jQuery;\\n      $(\\'.ml-subscribe-form-4918094 .row-success\\').show();\\n      $(\\'.ml-subscribe-form-4918094 .row-form\\').hide();\\n    }\\n      </script>\\n  \\n  \\n      <script src=\"https://groot.mailerlite.com/js/w/webforms.min.js?v08a893c96141fbc55feeeeac1fda7508\" type=\"text/javascript\"></script>\\n        <script>\\n            fetch(\"https://assets.mailerlite.com/jsonp/424030/forms/87085291469276523/track-view\")\\n        </script>'},ljtIhjibA:{html:'<style type=\"text/css\">@import url(\"https://assets.mlcdn.com/fonts.css?version=1682350\");</style>\\n    <style type=\"text/css\">\\n    /* LOADER */\\n    .ml-form-embedSubmitLoad {\\n      display: inline-block;\\n      width: 20px;\\n      height: 20px;\\n    }\\n\\n    .g-recaptcha {\\n    transform: scale(1);\\n    -webkit-transform: scale(1);\\n    transform-origin: 0 0;\\n    -webkit-transform-origin: 0 0;\\n    height: ;\\n    }\\n\\n    .sr-only {\\n      position: absolute;\\n      width: 1px;\\n      height: 1px;\\n      padding: 0;\\n      margin: -1px;\\n      overflow: hidden;\\n      clip: rect(0,0,0,0);\\n      border: 0;\\n    }\\n\\n    .ml-form-embedSubmitLoad:after {\\n      content: \" \";\\n      display: block;\\n      width: 11px;\\n      height: 11px;\\n      margin: 1px;\\n      border-radius: 50%;\\n      border: 4px solid #fff;\\n    border-color: #000000 #000000 #000000 transparent;\\n    animation: ml-form-embedSubmitLoad 1.2s linear infinite;\\n    }\\n    @keyframes ml-form-embedSubmitLoad {\\n      0% {\\n      transform: rotate(0deg);\\n      }\\n      100% {\\n      transform: rotate(360deg);\\n      }\\n    }\\n      #mlb2-4918094.ml-form-embedContainer {\\n        box-sizing: border-box;\\n        display: table;\\n        margin: 0 auto;\\n        position: static;\\n        width: 100% !important;\\n      }\\n      #mlb2-4918094.ml-form-embedContainer h4,\\n      #mlb2-4918094.ml-form-embedContainer p,\\n      #mlb2-4918094.ml-form-embedContainer span,\\n      #mlb2-4918094.ml-form-embedContainer button {\\n        text-transform: none !important;\\n        letter-spacing: normal !important;\\n      }\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper {\\n        background-color: #00000000;\\n        \\n        border-width: 0px;\\n        border-color: transparent;\\n        border-radius: 4px;\\n        border-style: solid;\\n        box-sizing: border-box;\\n        display: inline-block !important;\\n        margin: 0;\\n        padding: 0;\\n        position: relative;\\n              }\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper.embedPopup,\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper.embedDefault { width: 400px; }\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper.embedForm { max-width: 400px; width: 100%; }\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-align-left { text-align: left; }\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-align-center { text-align: center; }\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-align-default { display: table-cell !important; vertical-align: middle !important; text-align: center !important; }\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-align-right { text-align: right; }\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedHeader img {\\n        border-top-left-radius: 4px;\\n        border-top-right-radius: 4px;\\n        height: auto;\\n        margin: 0 auto !important;\\n        max-width: 100%;\\n        width: undefinedpx;\\n      }\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody,\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody {\\n        padding: 20px 20px 0 20px;\\n      }\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody.ml-form-embedBodyHorizontal {\\n        padding-bottom: 0;\\n      }\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedContent,\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody .ml-form-successContent {\\n        text-align: left;\\n        margin: 0 0 20px 0;\\n      }\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedContent h4,\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody .ml-form-successContent h4 {\\n        color: #ffffff;\\n        font-family: \\'Open Sans\\', Arial, Helvetica, sans-serif;\\n        font-size: 30px;\\n        font-weight: 400;\\n        margin: 0 0 10px 0;\\n        text-align: left;\\n        word-break: break-word;\\n      }\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedContent p,\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody .ml-form-successContent p {\\n        color: #b8b8b8;\\n        font-family: \\'Open Sans\\', Arial, Helvetica, sans-serif;\\n        font-size: 14px;\\n        font-weight: 400;\\n        line-height: 20px;\\n        margin: 0 0 10px 0;\\n        text-align: left;\\n      }\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedContent ul,\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedContent ol,\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody .ml-form-successContent ul,\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody .ml-form-successContent ol {\\n        color: #b8b8b8;\\n        font-family: \\'Open Sans\\', Arial, Helvetica, sans-serif;\\n        font-size: 14px;\\n      }\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedContent ol ol,\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody .ml-form-successContent ol ol {\\n        list-style-type: lower-alpha;\\n      }\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedContent ol ol ol,\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody .ml-form-successContent ol ol ol {\\n        list-style-type: lower-roman;\\n      }\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedContent p a,\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody .ml-form-successContent p a {\\n        color: #000000;\\n        text-decoration: underline;\\n      }\\n\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-block-form .ml-field-group {\\n        text-align: left!important;\\n      }\\n\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-block-form .ml-field-group label {\\n        margin-bottom: 5px;\\n        color: #D1D3D3;\\n        font-size: 14px;\\n        font-family: \\'Open Sans\\', Arial, Helvetica, sans-serif;\\n        font-weight: normal; font-style: normal; text-decoration: none;;\\n        display: inline-block;\\n        line-height: 20px;\\n      }\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedContent p:last-child,\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody .ml-form-successContent p:last-child {\\n        margin: 0;\\n      }\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody form {\\n        margin: 0;\\n        width: 100%;\\n      }\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-formContent,\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow {\\n        margin: 0 0 20px 0;\\n        width: 100%;\\n      }\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow {\\n        float: left;\\n      }\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-formContent.horozintalForm {\\n        margin: 0;\\n        padding: 0 0 20px 0;\\n        width: 100%;\\n        height: auto;\\n        float: left;\\n      }\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow {\\n        margin: 0 0 10px 0;\\n        width: 100%;\\n      }\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow.ml-last-item {\\n        margin: 0;\\n      }\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow.ml-formfieldHorizintal {\\n        margin: 0;\\n      }\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow input {\\n        background-color: #343439 !important;\\n        color: #ffffff !important;\\n        border-color: #cccccc;\\n        border-radius: 4px !important;\\n        border-style: solid !important;\\n        border-width: 0px !important;\\n        font-family: \\'Open Sans\\', Arial, Helvetica, sans-serif;\\n        font-size: 14px !important;\\n        height: auto;\\n        line-height: 21px !important;\\n        margin-bottom: 0;\\n        margin-top: 0;\\n        margin-left: 0;\\n        margin-right: 0;\\n        padding: 10px 10px !important;\\n        width: 100% !important;\\n        box-sizing: border-box !important;\\n        max-width: 100% !important;\\n      }\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow input::-webkit-input-placeholder,\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow input::-webkit-input-placeholder { color: #ffffff; }\\n\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow input::-moz-placeholder,\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow input::-moz-placeholder { color: #ffffff; }\\n\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow input:-ms-input-placeholder,\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow input:-ms-input-placeholder { color: #ffffff; }\\n\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow input:-moz-placeholder,\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow input:-moz-placeholder { color: #ffffff; }\\n\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow textarea, #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow textarea {\\n        background-color: #343439 !important;\\n        color: #ffffff !important;\\n        border-color: #cccccc;\\n        border-radius: 4px !important;\\n        border-style: solid !important;\\n        border-width: 0px !important;\\n        font-family: \\'Open Sans\\', Arial, Helvetica, sans-serif;\\n        font-size: 14px !important;\\n        height: auto;\\n        line-height: 21px !important;\\n        margin-bottom: 0;\\n        margin-top: 0;\\n        padding: 10px 10px !important;\\n        width: 100% !important;\\n        box-sizing: border-box !important;\\n        max-width: 100% !important;\\n      }\\n\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-radio .custom-control-label::before, #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-radio .custom-control-label::before, #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-checkbox .custom-control-label::before, #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-checkbox .custom-control-label::before, #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions .ml-form-embedPermissionsOptionsCheckbox .label-description::before, #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-interestGroupsRow .ml-form-interestGroupsRowCheckbox .label-description::before, #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow .label-description::before {\\n          border-color: #cccccc!important;\\n          background-color: #343439!important;\\n      }\\n\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow input.custom-control-input[type=\"checkbox\"]{\\n        box-sizing: border-box;\\n        padding: 0;\\n        position: absolute;\\n        z-index: -1;\\n        opacity: 0;\\n        margin-top: 5px;\\n        margin-left: -1.5rem;\\n        overflow: visible;\\n      }\\n\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-checkbox .custom-control-label::before, #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-checkbox .custom-control-label::before, #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions .ml-form-embedPermissionsOptionsCheckbox .label-description::before, #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-interestGroupsRow .ml-form-interestGroupsRowCheckbox .label-description::before, #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow .label-description::before {\\n        border-radius: 4px!important;\\n      }\\n\\n\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow input[type=checkbox]:checked~.label-description::after, #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions .ml-form-embedPermissionsOptionsCheckbox input[type=checkbox]:checked~.label-description::after, #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-checkbox .custom-control-input:checked~.custom-control-label::after, #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-checkbox .custom-control-input:checked~.custom-control-label::after, #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-interestGroupsRow .ml-form-interestGroupsRowCheckbox input[type=checkbox]:checked~.label-description::after {\\n        background-image: url(\"data:image/svg+xml,%3csvg xmlns=\\'http://www.w3.org/2000/svg\\' viewBox=\\'0 0 8 8\\'%3e%3cpath fill=\\'%23fff\\' d=\\'M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z\\'/%3e%3c/svg%3e\");\\n      }\\n\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-radio .custom-control-input:checked~.custom-control-label::after, #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-radio .custom-control-input:checked~.custom-control-label::after {\\n        background-image: url(\"data:image/svg+xml,%3csvg xmlns=\\'http://www.w3.org/2000/svg\\' viewBox=\\'-4 -4 8 8\\'%3e%3ccircle r=\\'3\\' fill=\\'%23fff\\'/%3e%3c/svg%3e\");\\n      }\\n\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-radio .custom-control-input:checked~.custom-control-label::before, #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-radio .custom-control-input:checked~.custom-control-label::before, #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-checkbox .custom-control-input:checked~.custom-control-label::before, #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-checkbox .custom-control-input:checked~.custom-control-label::before, #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions .ml-form-embedPermissionsOptionsCheckbox input[type=checkbox]:checked~.label-description::before, #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-interestGroupsRow .ml-form-interestGroupsRowCheckbox input[type=checkbox]:checked~.label-description::before, #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow input[type=checkbox]:checked~.label-description::before  {\\n          border-color: #ffffff!important;\\n          background-color: #ffffff!important;\\n          color: #000000!important;\\n      }\\n\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-radio .custom-control-label::before, #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-radio .custom-control-label::before, #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-radio .custom-control-label::after, #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-radio .custom-control-label::after, #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-checkbox .custom-control-label::before, #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-checkbox .custom-control-label::after, #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-checkbox .custom-control-label::before, #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-checkbox .custom-control-label::after {\\n           top: 2px;\\n           box-sizing: border-box;\\n      }\\n\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions .ml-form-embedPermissionsOptionsCheckbox .label-description::before, #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions .ml-form-embedPermissionsOptionsCheckbox .label-description::after, #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow .label-description::before, #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow .label-description::after {\\n           top: 0px!important;\\n           box-sizing: border-box!important;\\n      }\\n\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow .label-description::before, #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow .label-description::after {\\n        top: 0px!important;\\n           box-sizing: border-box!important;\\n      }\\n\\n       #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-interestGroupsRow .ml-form-interestGroupsRowCheckbox .label-description::after {\\n            top: 0px!important;\\n            box-sizing: border-box!important;\\n            position: absolute;\\n            left: -1.5rem;\\n            display: block;\\n            width: 1rem;\\n            height: 1rem;\\n            content: \"\";\\n       }\\n\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-interestGroupsRow .ml-form-interestGroupsRowCheckbox .label-description::before {\\n        top: 0px!important;\\n        box-sizing: border-box!important;\\n      }\\n\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .custom-control-label::before {\\n          position: absolute;\\n          top: 4px;\\n          left: -1.5rem;\\n          display: block;\\n          width: 16px;\\n          height: 16px;\\n          pointer-events: none;\\n          content: \"\";\\n          background-color: #ffffff;\\n          border: #adb5bd solid 1px;\\n          border-radius: 50%;\\n      }\\n\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .custom-control-label::after {\\n          position: absolute;\\n          top: 2px!important;\\n          left: -1.5rem;\\n          display: block;\\n          width: 1rem;\\n          height: 1rem;\\n          content: \"\";\\n      }\\n\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions .ml-form-embedPermissionsOptionsCheckbox .label-description::before, #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-interestGroupsRow .ml-form-interestGroupsRowCheckbox .label-description::before, #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow .label-description::before {\\n          position: absolute;\\n          top: 4px;\\n          left: -1.5rem;\\n          display: block;\\n          width: 16px;\\n          height: 16px;\\n          pointer-events: none;\\n          content: \"\";\\n          background-color: #ffffff;\\n          border: #adb5bd solid 1px;\\n          border-radius: 50%;\\n      }\\n\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions .ml-form-embedPermissionsOptionsCheckbox .label-description::after {\\n          position: absolute;\\n          top: 0px!important;\\n          left: -1.5rem;\\n          display: block;\\n          width: 1rem;\\n          height: 1rem;\\n          content: \"\";\\n      }\\n\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow .label-description::after {\\n          position: absolute;\\n          top: 0px!important;\\n          left: -1.5rem;\\n          display: block;\\n          width: 1rem;\\n          height: 1rem;\\n          content: \"\";\\n      }\\n\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .custom-radio .custom-control-label::after {\\n          background: no-repeat 50%/50% 50%;\\n      }\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .custom-checkbox .custom-control-label::after, #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions .ml-form-embedPermissionsOptionsCheckbox .label-description::after, #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-interestGroupsRow .ml-form-interestGroupsRowCheckbox .label-description::after, #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow .label-description::after {\\n          background: no-repeat 50%/50% 50%;\\n      }\\n\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-control, #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-control {\\n        position: relative;\\n        display: block;\\n        min-height: 1.5rem;\\n        padding-left: 1.5rem;\\n      }\\n\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-radio .custom-control-input, #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-radio .custom-control-input, #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-checkbox .custom-control-input, #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-checkbox .custom-control-input {\\n          position: absolute;\\n          z-index: -1;\\n          opacity: 0;\\n          box-sizing: border-box;\\n          padding: 0;\\n      }\\n\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-radio .custom-control-label, #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-radio .custom-control-label, #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-checkbox .custom-control-label, #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-checkbox .custom-control-label {\\n          color: #000000;\\n          font-size: 12px!important;\\n          font-family: \\'Open Sans\\', Arial, Helvetica, sans-serif;\\n          line-height: 22px;\\n          margin-bottom: 0;\\n          position: relative;\\n          vertical-align: top;\\n          font-style: normal;\\n          font-weight: 700;\\n      }\\n\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-select, #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-select {\\n        background-color: #343439 !important;\\n        color: #ffffff !important;\\n        border-color: #cccccc;\\n        border-radius: 4px !important;\\n        border-style: solid !important;\\n        border-width: 0px !important;\\n        font-family: \\'Open Sans\\', Arial, Helvetica, sans-serif;\\n        font-size: 14px !important;\\n        line-height: 20px !important;\\n        margin-bottom: 0;\\n        margin-top: 0;\\n        padding: 10px 28px 10px 12px !important;\\n        width: 100% !important;\\n        box-sizing: border-box !important;\\n        max-width: 100% !important;\\n        height: auto;\\n        display: inline-block;\\n        vertical-align: middle;\\n        background: url(\\'https://assets.mlcdn.com/ml/images/default/dropdown.svg\\') no-repeat right .75rem center/8px 10px;\\n        -webkit-appearance: none;\\n        -moz-appearance: none;\\n        appearance: none;\\n      }\\n\\n\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow {\\n        height: auto;\\n        width: 100%;\\n        float: left;\\n      }\\n      .ml-form-formContent.horozintalForm .ml-form-horizontalRow .ml-input-horizontal { width: 70%; float: left; }\\n      .ml-form-formContent.horozintalForm .ml-form-horizontalRow .ml-button-horizontal { width: 30%; float: left; }\\n      .ml-form-formContent.horozintalForm .ml-form-horizontalRow .ml-button-horizontal.labelsOn { padding-top: 25px;  }\\n      .ml-form-formContent.horozintalForm .ml-form-horizontalRow .horizontal-fields { box-sizing: border-box; float: left; padding-right: 10px;  }\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow input {\\n        background-color: #343439;\\n        color: #ffffff;\\n        border-color: #cccccc;\\n        border-radius: 4px;\\n        border-style: solid;\\n        border-width: 0px;\\n        font-family: \\'Open Sans\\', Arial, Helvetica, sans-serif;\\n        font-size: 14px;\\n        line-height: 20px;\\n        margin-bottom: 0;\\n        margin-top: 0;\\n        padding: 10px 10px;\\n        width: 100%;\\n        box-sizing: border-box;\\n        overflow-y: initial;\\n      }\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow button {\\n        background-color: #ffffff !important;\\n        border-color: #ffffff;\\n        border-style: solid;\\n        border-width: 0px;\\n        border-radius: 6px;\\n        box-shadow: none;\\n        color: #000000 !important;\\n        cursor: pointer;\\n        font-family: \\'Montserrat\\', sans-serif;\\n        font-size: 14px !important;\\n        font-weight: 400;\\n        line-height: 20px;\\n        margin: 0 !important;\\n        padding: 10px !important;\\n        width: 100%;\\n        height: auto;\\n      }\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow button:hover {\\n        background-color: #10bbd8 !important;\\n        border-color: #10bbd8 !important;\\n      }\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow input[type=\"checkbox\"] {\\n        box-sizing: border-box;\\n        padding: 0;\\n        position: absolute;\\n        z-index: -1;\\n        opacity: 0;\\n        margin-top: 5px;\\n        margin-left: -1.5rem;\\n        overflow: visible;\\n      }\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow .label-description {\\n        color: #000000;\\n        display: block;\\n        font-family: \\'Open Sans\\', Arial, Helvetica, sans-serif;\\n        font-size: 12px;\\n        text-align: left;\\n        margin-bottom: 0;\\n        position: relative;\\n        vertical-align: top;\\n      }\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow label {\\n        font-weight: normal;\\n        margin: 0;\\n        padding: 0;\\n        position: relative;\\n        display: block;\\n        min-height: 24px;\\n        padding-left: 24px;\\n\\n      }\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow label a {\\n        color: #000000;\\n        text-decoration: underline;\\n      }\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow label p {\\n        color: #000000 !important;\\n        font-family: \\'Open Sans\\', Arial, Helvetica, sans-serif !important;\\n        font-size: 12px !important;\\n        font-weight: normal !important;\\n        line-height: 18px !important;\\n        padding: 0 !important;\\n        margin: 0 5px 0 0 !important;\\n      }\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow label p:last-child {\\n        margin: 0;\\n      }\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedSubmit {\\n        margin: 0 0 20px 0;\\n        float: left;\\n        width: 100%;\\n      }\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedSubmit button {\\n        background-color: #ffffff !important;\\n        border: none !important;\\n        border-radius: 6px !important;\\n        box-shadow: none !important;\\n        color: #000000 !important;\\n        cursor: pointer;\\n        font-family: \\'Montserrat\\', sans-serif !important;\\n        font-size: 14px !important;\\n        font-weight: 400 !important;\\n        line-height: 21px !important;\\n        height: auto;\\n        padding: 10px !important;\\n        width: 100% !important;\\n        box-sizing: border-box !important;\\n      }\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedSubmit button.loading {\\n        display: none;\\n      }\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedSubmit button:hover {\\n        background-color: #10bbd8 !important;\\n      }\\n      .ml-subscribe-close {\\n        width: 30px;\\n        height: 30px;\\n        background: url(\\'https://assets.mlcdn.com/ml/images/default/modal_close.png\\') no-repeat;\\n        background-size: 30px;\\n        cursor: pointer;\\n        margin-top: -10px;\\n        margin-right: -10px;\\n        position: absolute;\\n        top: 0;\\n        right: 0;\\n      }\\n      .ml-error input, .ml-error textarea, .ml-error select {\\n        border-color: red!important;\\n      }\\n\\n      .ml-error .custom-checkbox-radio-list {\\n        border: 1px solid red !important;\\n        border-radius: 4px;\\n        padding: 10px;\\n      }\\n\\n      .ml-error .label-description,\\n      .ml-error .label-description p,\\n      .ml-error .label-description p a,\\n      .ml-error label:first-child {\\n        color: #ff0000 !important;\\n      }\\n\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow.ml-error .label-description p,\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow.ml-error .label-description p:first-letter {\\n        color: #ff0000 !important;\\n      }\\n            @media only screen and (max-width: 400px){\\n\\n        .ml-form-embedWrapper.embedDefault, .ml-form-embedWrapper.embedPopup { width: 100%!important; }\\n        .ml-form-formContent.horozintalForm { float: left!important; }\\n        .ml-form-formContent.horozintalForm .ml-form-horizontalRow { height: auto!important; width: 100%!important; float: left!important; }\\n        .ml-form-formContent.horozintalForm .ml-form-horizontalRow .ml-input-horizontal { width: 100%!important; }\\n        .ml-form-formContent.horozintalForm .ml-form-horizontalRow .ml-input-horizontal > div { padding-right: 0px!important; padding-bottom: 10px; }\\n        .ml-form-formContent.horozintalForm .ml-button-horizontal { width: 100%!important; }\\n        .ml-form-formContent.horozintalForm .ml-button-horizontal.labelsOn { padding-top: 0px!important; }\\n\\n      }\\n    </style>\\n\\n    <style type=\"text/css\">\\n\\n      .ml-mobileButton-horizontal { display: none; }\\n\\n      #mlb2-4918094 .ml-mobileButton-horizontal button {\\n\\n        background-color: #ffffff !important;\\n        border-color: #ffffff !important;\\n        border-style: solid !important;\\n        border-width: 0px !important;\\n        border-radius: 6px !important;\\n        box-shadow: none !important;\\n        color: #000000 !important;\\n        cursor: pointer;\\n        font-family: \\'Montserrat\\', sans-serif !important;\\n        font-size: 14px !important;\\n        font-weight: 400 !important;\\n        line-height: 20px !important;\\n        padding: 10px !important;\\n        width: 100% !important;\\n\\n      }\\n\\n      @media only screen and (max-width: 400px) {\\n        #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-formContent.horozintalForm {\\n          padding: 0 0 10px 0 !important;\\n        }\\n        .ml-hide-horizontal { display: none !important; }\\n        .ml-form-formContent.horozintalForm .ml-button-horizontal { display: none!important; }\\n        .ml-mobileButton-horizontal { display: inline-block !important; margin-bottom: 20px;width:100%; }\\n        .ml-form-formContent.horozintalForm .ml-form-horizontalRow .ml-input-horizontal > div { padding-bottom: 0px !important; }\\n      }\\n\\n    </style>\\n  <style type=\"text/css\">\\n    @media only screen and (max-width: 400px) {\\n       .ml-form-formContent.horozintalForm .ml-form-horizontalRow .horizontal-fields {\\n        margin-bottom: 10px !important;\\n        width: 100% !important;\\n      }\\n    }\\n  </style>\\n    \\n    \\n\\n    \\n    \\n\\n    \\n    \\n\\n    \\n\\n      \\n        \\n        \\n      \\n\\n      \\n        \\n        \\n      \\n\\n      \\n\\n            \\n            \\n            \\n            \\n            \\n            \\n      \\n\\n      \\n\\n      \\n        \\n        \\n         \\n        \\n        \\n      \\n\\n        \\n        \\n        \\n        \\n        \\n        \\n      \\n\\n       \\n\\n        \\n        \\n        \\n        \\n        \\n        \\n        \\n       \\n\\n\\n      \\n        \\n        \\n        \\n        \\n  \\n\\n\\n\\n  \\n        \\n        \\n        \\n      \\n\\n\\n      \\n    \\n    \\n    \\n    \\n    \\n  \\n\\n  \\n        \\n        \\n        \\n        \\n        \\n      \\n\\n      \\n        \\n        \\n        \\n        \\n        \\n      \\n\\n      \\n        \\n        \\n        \\n        \\n        \\n      \\n\\n       \\n\\n        \\n        \\n        \\n        \\n       \\n\\n       \\n        \\n        \\n        \\n        \\n      \\n\\n      \\n        \\n        \\n        \\n        \\n        \\n        \\n        \\n       \\n\\n    \\n\\n    \\n\\n\\n      \\n\\n\\n      \\n\\n      \\n      \\n\\n      \\n\\n      \\n\\n\\n\\n\\n\\n    \\n\\n      \\n    <div id=\"mlb2-4918094\" class=\"ml-form-embedContainer ml-subscribe-form ml-subscribe-form-4918094\">\\n      <div class=\"ml-form-align-center \">\\n        <div class=\"ml-form-embedWrapper embedForm\">\\n\\n          \\n          \\n\\n          <div class=\"ml-form-embedBody ml-form-embedBodyHorizontal row-form\">\\n\\n            <div class=\"ml-form-embedContent\" style=\"margin-bottom: 0px; \">\\n              \\n            </div>\\n\\n            <form class=\"ml-block-form\" action=\"https://assets.mailerlite.com/jsonp/424030/forms/87085291469276523/subscribe\" data-code=\"\" method=\"post\" target=\"_blank\">\\n              \\n\\n              <div class=\"ml-form-formContent horozintalForm\">\\n                <div class=\"ml-form-horizontalRow\">\\n                  <div class=\"ml-input-horizontal\">\\n                    \\n                      \\n                      <div style=\"width: 100%;\" class=\"horizontal-fields\">\\n\\n\\n\\n\\n\\n\\n                        <div class=\"ml-field-group ml-field-email ml-validate-email ml-validate-required\">\\n                          \\n                          <!-- input -->\\n                      <input type=\"email\" class=\"form-control\" data-inputmask=\"\" name=\"fields[email]\" placeholder=\"Email\" autocomplete=\"email\">\\n                      <!-- /input -->\\n                        </div>\\n\\n\\n\\n                      </div>\\n                    \\n                  </div>\\n\\n\\n                  <div class=\"ml-button-horizontal primary \">\\n                    \\n                      <button type=\"submit\" class=\"primary\">Subscribe</button>\\n                    \\n                    <button disabled=\"disabled\" style=\"display: none;\" type=\"button\" class=\"loading\">\\n                      <div class=\"ml-form-embedSubmitLoad\"></div>\\n                      <span class=\"sr-only\">Loading...</span>\\n                    </button>\\n                  </div>\\n                </div>\\n              </div>\\n\\n              <!-- Privacy policy -->\\n              \\n              <!-- /Privacy policy -->\\n\\n              \\n\\n              \\n\\n              \\n\\n\\n\\n\\n\\n\\n              \\n              <input type=\"hidden\" name=\"ml-submit\" value=\"1\">\\n\\n              \\n\\n              <div class=\"ml-mobileButton-horizontal\">\\n                <button type=\"submit\" class=\"primary\">Subscribe</button>\\n                <button disabled=\"disabled\" style=\"display: none;\" type=\"button\" class=\"loading\">\\n                  <div class=\"ml-form-embedSubmitLoad\"></div>\\n                  <span class=\"sr-only\">Loading...</span>\\n                </button>\\n              </div>\\n              <input type=\"hidden\" name=\"anticsrf\" value=\"true\">\\n            </form>\\n          </div>\\n\\n          <div class=\"ml-form-successBody row-success\" style=\"display: none\">\\n\\n            <div class=\"ml-form-successContent\">\\n              \\n                <h4>Subscribed!</h4>\\n                <p><br></p>\\n              \\n            </div>\\n\\n          </div>\\n        </div>\\n      </div>\\n    </div>\\n\\n  \\n\\n  \\n  \\n  <script>\\n    function ml_webform_success_4918094() {\\n      var $ = ml_jQuery || jQuery;\\n      $(\\'.ml-subscribe-form-4918094 .row-success\\').show();\\n      $(\\'.ml-subscribe-form-4918094 .row-form\\').hide();\\n    }\\n      </script>\\n  \\n  \\n      <script src=\"https://groot.mailerlite.com/js/w/webforms.min.js?v08a893c96141fbc55feeeeac1fda7508\" type=\"text/javascript\"></script>\\n        <script>\\n            fetch(\"https://assets.mailerlite.com/jsonp/424030/forms/87085291469276523/track-view\")\\n        </script>'}},children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:'<style type=\"text/css\">@import url(\"https://assets.mlcdn.com/fonts.css?version=1682350\");</style>\\n    <style type=\"text/css\">\\n    /* LOADER */\\n    .ml-form-embedSubmitLoad {\\n      display: inline-block;\\n      width: 20px;\\n      height: 20px;\\n    }\\n\\n    .g-recaptcha {\\n    transform: scale(1);\\n    -webkit-transform: scale(1);\\n    transform-origin: 0 0;\\n    -webkit-transform-origin: 0 0;\\n    height: ;\\n    }\\n\\n    .sr-only {\\n      position: absolute;\\n      width: 1px;\\n      height: 1px;\\n      padding: 0;\\n      margin: -1px;\\n      overflow: hidden;\\n      clip: rect(0,0,0,0);\\n      border: 0;\\n    }\\n\\n    .ml-form-embedSubmitLoad:after {\\n      content: \" \";\\n      display: block;\\n      width: 11px;\\n      height: 11px;\\n      margin: 1px;\\n      border-radius: 50%;\\n      border: 4px solid #fff;\\n    border-color: #000000 #000000 #000000 transparent;\\n    animation: ml-form-embedSubmitLoad 1.2s linear infinite;\\n    }\\n    @keyframes ml-form-embedSubmitLoad {\\n      0% {\\n      transform: rotate(0deg);\\n      }\\n      100% {\\n      transform: rotate(360deg);\\n      }\\n    }\\n      #mlb2-4918094.ml-form-embedContainer {\\n        box-sizing: border-box;\\n        display: table;\\n        margin: 0 auto;\\n        position: static;\\n        width: 100% !important;\\n      }\\n      #mlb2-4918094.ml-form-embedContainer h4,\\n      #mlb2-4918094.ml-form-embedContainer p,\\n      #mlb2-4918094.ml-form-embedContainer span,\\n      #mlb2-4918094.ml-form-embedContainer button {\\n        text-transform: none !important;\\n        letter-spacing: normal !important;\\n      }\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper {\\n        background-color: #00000000;\\n        \\n        border-width: 0px;\\n        border-color: transparent;\\n        border-radius: 4px;\\n        border-style: solid;\\n        box-sizing: border-box;\\n        display: inline-block !important;\\n        margin: 0;\\n        padding: 0;\\n        position: relative;\\n              }\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper.embedPopup,\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper.embedDefault { width: 100%; }\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper.embedForm { max-width: 100%; width: 100%; }\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-align-left { text-align: left; }\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-align-center { text-align: center; }\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-align-default { display: table-cell !important; vertical-align: middle !important; text-align: center !important; }\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-align-right { text-align: right; }\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedHeader img {\\n        border-top-left-radius: 4px;\\n        border-top-right-radius: 4px;\\n        height: auto;\\n        margin: 0 auto !important;\\n        max-width: 100%;\\n        width: undefinedpx;\\n      }\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody,\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody {\\n        padding: 20px 20px 0 20px;\\n      }\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody.ml-form-embedBodyHorizontal {\\n        padding-bottom: 0;\\n      }\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedContent,\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody .ml-form-successContent {\\n        text-align: left;\\n        margin: 0 0 20px 0;\\n      }\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedContent h4,\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody .ml-form-successContent h4 {\\n        color: #ffffff;\\n        font-family: \\'Montserrat\\', sans-serif;\\n        font-size: 30px;\\n        font-weight: 400;\\n        margin: 0 0 10px 0;\\n        text-align: center;\\n        word-break: break-word;\\n      }\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedContent p,\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody .ml-form-successContent p {\\n        color: #b8b8b8;\\n        font-family: \\'Open Sans\\', Arial, Helvetica, sans-serif;\\n        font-size: 14px;\\n        font-weight: 400;\\n        line-height: 20px;\\n        margin: 0 0 10px 0;\\n        text-align: left;\\n      }\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedContent ul,\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedContent ol,\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody .ml-form-successContent ul,\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody .ml-form-successContent ol {\\n        color: #b8b8b8;\\n        font-family: \\'Open Sans\\', Arial, Helvetica, sans-serif;\\n        font-size: 14px;\\n      }\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedContent ol ol,\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody .ml-form-successContent ol ol {\\n        list-style-type: lower-alpha;\\n      }\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedContent ol ol ol,\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody .ml-form-successContent ol ol ol {\\n        list-style-type: lower-roman;\\n      }\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedContent p a,\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody .ml-form-successContent p a {\\n        color: #000000;\\n        text-decoration: underline;\\n      }\\n\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-block-form .ml-field-group {\\n        text-align: left!important;\\n      }\\n\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-block-form .ml-field-group label {\\n        margin-bottom: 5px;\\n        color: #D1D3D3;\\n        font-size: 14px;\\n        font-family: \\'Open Sans\\', Arial, Helvetica, sans-serif;\\n        font-weight: normal; font-style: normal; text-decoration: none;;\\n        display: inline-block;\\n        line-height: 20px;\\n      }\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedContent p:last-child,\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody .ml-form-successContent p:last-child {\\n        margin: 0;\\n      }\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody form {\\n        margin: 0;\\n        width: 100%;\\n      }\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-formContent,\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow {\\n        margin: 0 0 20px 0;\\n        width: 100%;\\n      }\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow {\\n        float: left;\\n      }\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-formContent.horozintalForm {\\n        margin: 0;\\n        padding: 0 0 20px 0;\\n        width: 100%;\\n        height: auto;\\n        float: left;\\n      }\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow {\\n        margin: 0 0 10px 0;\\n        width: 100%;\\n      }\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow.ml-last-item {\\n        margin: 0;\\n      }\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow.ml-formfieldHorizintal {\\n        margin: 0;\\n      }\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow input {\\n        background-color: #343439 !important;\\n        color: #ffffff !important;\\n        border-color: #cccccc;\\n        border-radius: 4px !important;\\n        border-style: solid !important;\\n        border-width: 0px !important;\\n        font-family: \\'Open Sans\\', Arial, Helvetica, sans-serif;\\n        font-size: 14px !important;\\n        height: auto;\\n        line-height: 21px !important;\\n        margin-bottom: 0;\\n        margin-top: 0;\\n        margin-left: 0;\\n        margin-right: 0;\\n        padding: 10px 10px !important;\\n        width: 100% !important;\\n        box-sizing: border-box !important;\\n        max-width: 100% !important;\\n      }\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow input::-webkit-input-placeholder,\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow input::-webkit-input-placeholder { color: #ffffff; }\\n\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow input::-moz-placeholder,\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow input::-moz-placeholder { color: #ffffff; }\\n\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow input:-ms-input-placeholder,\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow input:-ms-input-placeholder { color: #ffffff; }\\n\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow input:-moz-placeholder,\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow input:-moz-placeholder { color: #ffffff; }\\n\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow textarea, #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow textarea {\\n        background-color: #343439 !important;\\n        color: #ffffff !important;\\n        border-color: #cccccc;\\n        border-radius: 4px !important;\\n        border-style: solid !important;\\n        border-width: 0px !important;\\n        font-family: \\'Open Sans\\', Arial, Helvetica, sans-serif;\\n        font-size: 14px !important;\\n        height: auto;\\n        line-height: 21px !important;\\n        margin-bottom: 0;\\n        margin-top: 0;\\n        padding: 10px 10px !important;\\n        width: 100% !important;\\n        box-sizing: border-box !important;\\n        max-width: 100% !important;\\n      }\\n\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-radio .custom-control-label::before, #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-radio .custom-control-label::before, #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-checkbox .custom-control-label::before, #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-checkbox .custom-control-label::before, #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions .ml-form-embedPermissionsOptionsCheckbox .label-description::before, #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-interestGroupsRow .ml-form-interestGroupsRowCheckbox .label-description::before, #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow .label-description::before {\\n          border-color: #cccccc!important;\\n          background-color: #343439!important;\\n      }\\n\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow input.custom-control-input[type=\"checkbox\"]{\\n        box-sizing: border-box;\\n        padding: 0;\\n        position: absolute;\\n        z-index: -1;\\n        opacity: 0;\\n        margin-top: 5px;\\n        margin-left: -1.5rem;\\n        overflow: visible;\\n      }\\n\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-checkbox .custom-control-label::before, #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-checkbox .custom-control-label::before, #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions .ml-form-embedPermissionsOptionsCheckbox .label-description::before, #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-interestGroupsRow .ml-form-interestGroupsRowCheckbox .label-description::before, #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow .label-description::before {\\n        border-radius: 4px!important;\\n      }\\n\\n\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow input[type=checkbox]:checked~.label-description::after, #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions .ml-form-embedPermissionsOptionsCheckbox input[type=checkbox]:checked~.label-description::after, #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-checkbox .custom-control-input:checked~.custom-control-label::after, #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-checkbox .custom-control-input:checked~.custom-control-label::after, #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-interestGroupsRow .ml-form-interestGroupsRowCheckbox input[type=checkbox]:checked~.label-description::after {\\n        background-image: url(\"data:image/svg+xml,%3csvg xmlns=\\'http://www.w3.org/2000/svg\\' viewBox=\\'0 0 8 8\\'%3e%3cpath fill=\\'%23fff\\' d=\\'M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z\\'/%3e%3c/svg%3e\");\\n      }\\n\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-radio .custom-control-input:checked~.custom-control-label::after, #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-radio .custom-control-input:checked~.custom-control-label::after {\\n        background-image: url(\"data:image/svg+xml,%3csvg xmlns=\\'http://www.w3.org/2000/svg\\' viewBox=\\'-4 -4 8 8\\'%3e%3ccircle r=\\'3\\' fill=\\'%23fff\\'/%3e%3c/svg%3e\");\\n      }\\n\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-radio .custom-control-input:checked~.custom-control-label::before, #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-radio .custom-control-input:checked~.custom-control-label::before, #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-checkbox .custom-control-input:checked~.custom-control-label::before, #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-checkbox .custom-control-input:checked~.custom-control-label::before, #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions .ml-form-embedPermissionsOptionsCheckbox input[type=checkbox]:checked~.label-description::before, #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-interestGroupsRow .ml-form-interestGroupsRowCheckbox input[type=checkbox]:checked~.label-description::before, #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow input[type=checkbox]:checked~.label-description::before  {\\n          border-color: #ffffff!important;\\n          background-color: #ffffff!important;\\n          color: #000000!important;\\n      }\\n\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-radio .custom-control-label::before, #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-radio .custom-control-label::before, #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-radio .custom-control-label::after, #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-radio .custom-control-label::after, #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-checkbox .custom-control-label::before, #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-checkbox .custom-control-label::after, #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-checkbox .custom-control-label::before, #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-checkbox .custom-control-label::after {\\n           top: 2px;\\n           box-sizing: border-box;\\n      }\\n\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions .ml-form-embedPermissionsOptionsCheckbox .label-description::before, #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions .ml-form-embedPermissionsOptionsCheckbox .label-description::after, #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow .label-description::before, #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow .label-description::after {\\n           top: 0px!important;\\n           box-sizing: border-box!important;\\n      }\\n\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow .label-description::before, #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow .label-description::after {\\n        top: 0px!important;\\n           box-sizing: border-box!important;\\n      }\\n\\n       #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-interestGroupsRow .ml-form-interestGroupsRowCheckbox .label-description::after {\\n            top: 0px!important;\\n            box-sizing: border-box!important;\\n            position: absolute;\\n            left: -1.5rem;\\n            display: block;\\n            width: 1rem;\\n            height: 1rem;\\n            content: \"\";\\n       }\\n\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-interestGroupsRow .ml-form-interestGroupsRowCheckbox .label-description::before {\\n        top: 0px!important;\\n        box-sizing: border-box!important;\\n      }\\n\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .custom-control-label::before {\\n          position: absolute;\\n          top: 4px;\\n          left: -1.5rem;\\n          display: block;\\n          width: 16px;\\n          height: 16px;\\n          pointer-events: none;\\n          content: \"\";\\n          background-color: #ffffff;\\n          border: #adb5bd solid 1px;\\n          border-radius: 50%;\\n      }\\n\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .custom-control-label::after {\\n          position: absolute;\\n          top: 2px!important;\\n          left: -1.5rem;\\n          display: block;\\n          width: 1rem;\\n          height: 1rem;\\n          content: \"\";\\n      }\\n\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions .ml-form-embedPermissionsOptionsCheckbox .label-description::before, #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-interestGroupsRow .ml-form-interestGroupsRowCheckbox .label-description::before, #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow .label-description::before {\\n          position: absolute;\\n          top: 4px;\\n          left: -1.5rem;\\n          display: block;\\n          width: 16px;\\n          height: 16px;\\n          pointer-events: none;\\n          content: \"\";\\n          background-color: #ffffff;\\n          border: #adb5bd solid 1px;\\n          border-radius: 50%;\\n      }\\n\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions .ml-form-embedPermissionsOptionsCheckbox .label-description::after {\\n          position: absolute;\\n          top: 0px!important;\\n          left: -1.5rem;\\n          display: block;\\n          width: 1rem;\\n          height: 1rem;\\n          content: \"\";\\n      }\\n\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow .label-description::after {\\n          position: absolute;\\n          top: 0px!important;\\n          left: -1.5rem;\\n          display: block;\\n          width: 1rem;\\n          height: 1rem;\\n          content: \"\";\\n      }\\n\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .custom-radio .custom-control-label::after {\\n          background: no-repeat 50%/50% 50%;\\n      }\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .custom-checkbox .custom-control-label::after, #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions .ml-form-embedPermissionsOptionsCheckbox .label-description::after, #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-interestGroupsRow .ml-form-interestGroupsRowCheckbox .label-description::after, #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow .label-description::after {\\n          background: no-repeat 50%/50% 50%;\\n      }\\n\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-control, #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-control {\\n        position: relative;\\n        display: block;\\n        min-height: 1.5rem;\\n        padding-left: 1.5rem;\\n      }\\n\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-radio .custom-control-input, #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-radio .custom-control-input, #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-checkbox .custom-control-input, #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-checkbox .custom-control-input {\\n          position: absolute;\\n          z-index: -1;\\n          opacity: 0;\\n          box-sizing: border-box;\\n          padding: 0;\\n      }\\n\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-radio .custom-control-label, #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-radio .custom-control-label, #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-checkbox .custom-control-label, #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-checkbox .custom-control-label {\\n          color: #000000;\\n          font-size: 12px!important;\\n          font-family: \\'Open Sans\\', Arial, Helvetica, sans-serif;\\n          line-height: 22px;\\n          margin-bottom: 0;\\n          position: relative;\\n          vertical-align: top;\\n          font-style: normal;\\n          font-weight: 700;\\n      }\\n\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-select, #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-select {\\n        background-color: #343439 !important;\\n        color: #ffffff !important;\\n        border-color: #cccccc;\\n        border-radius: 4px !important;\\n        border-style: solid !important;\\n        border-width: 0px !important;\\n        font-family: \\'Open Sans\\', Arial, Helvetica, sans-serif;\\n        font-size: 14px !important;\\n        line-height: 20px !important;\\n        margin-bottom: 0;\\n        margin-top: 0;\\n        padding: 10px 28px 10px 12px !important;\\n        width: 100% !important;\\n        box-sizing: border-box !important;\\n        max-width: 100% !important;\\n        height: auto;\\n        display: inline-block;\\n        vertical-align: middle;\\n        background: url(\\'https://assets.mlcdn.com/ml/images/default/dropdown.svg\\') no-repeat right .75rem center/8px 10px;\\n        -webkit-appearance: none;\\n        -moz-appearance: none;\\n        appearance: none;\\n      }\\n\\n\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow {\\n        height: auto;\\n        width: 100%;\\n        float: left;\\n      }\\n      .ml-form-formContent.horozintalForm .ml-form-horizontalRow .ml-input-horizontal { width: 70%; float: left; }\\n      .ml-form-formContent.horozintalForm .ml-form-horizontalRow .ml-button-horizontal { width: 30%; float: left; }\\n      .ml-form-formContent.horozintalForm .ml-form-horizontalRow .ml-button-horizontal.labelsOn { padding-top: 25px;  }\\n      .ml-form-formContent.horozintalForm .ml-form-horizontalRow .horizontal-fields { box-sizing: border-box; float: left; padding-right: 10px;  }\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow input {\\n        background-color: #343439;\\n        color: #ffffff;\\n        border-color: #cccccc;\\n        border-radius: 4px;\\n        border-style: solid;\\n        border-width: 0px;\\n        font-family: \\'Open Sans\\', Arial, Helvetica, sans-serif;\\n        font-size: 14px;\\n        line-height: 20px;\\n        margin-bottom: 0;\\n        margin-top: 0;\\n        padding: 10px 10px;\\n        width: 100%;\\n        box-sizing: border-box;\\n        overflow-y: initial;\\n      }\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow button {\\n        background-color: #ffffff !important;\\n        border-color: #ffffff;\\n        border-style: solid;\\n        border-width: 0px;\\n        border-radius: 6px;\\n        box-shadow: none;\\n        color: #000000 !important;\\n        cursor: pointer;\\n        font-family: \\'Montserrat\\', sans-serif;\\n        font-size: 14px !important;\\n        font-weight: 400;\\n        line-height: 20px;\\n        margin: 0 !important;\\n        padding: 10px !important;\\n        width: 100%;\\n        height: auto;\\n      }\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow button:hover {\\n        background-color: #10bbd8 !important;\\n        border-color: #10bbd8 !important;\\n      }\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow input[type=\"checkbox\"] {\\n        box-sizing: border-box;\\n        padding: 0;\\n        position: absolute;\\n        z-index: -1;\\n        opacity: 0;\\n        margin-top: 5px;\\n        margin-left: -1.5rem;\\n        overflow: visible;\\n      }\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow .label-description {\\n        color: #000000;\\n        display: block;\\n        font-family: \\'Open Sans\\', Arial, Helvetica, sans-serif;\\n        font-size: 12px;\\n        text-align: left;\\n        margin-bottom: 0;\\n        position: relative;\\n        vertical-align: top;\\n      }\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow label {\\n        font-weight: normal;\\n        margin: 0;\\n        padding: 0;\\n        position: relative;\\n        display: block;\\n        min-height: 24px;\\n        padding-left: 24px;\\n\\n      }\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow label a {\\n        color: #000000;\\n        text-decoration: underline;\\n      }\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow label p {\\n        color: #000000 !important;\\n        font-family: \\'Open Sans\\', Arial, Helvetica, sans-serif !important;\\n        font-size: 12px !important;\\n        font-weight: normal !important;\\n        line-height: 18px !important;\\n        padding: 0 !important;\\n        margin: 0 5px 0 0 !important;\\n      }\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow label p:last-child {\\n        margin: 0;\\n      }\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedSubmit {\\n        margin: 0 0 20px 0;\\n        float: left;\\n        width: 100%;\\n      }\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedSubmit button {\\n        background-color: #ffffff !important;\\n        border: none !important;\\n        border-radius: 6px !important;\\n        box-shadow: none !important;\\n        color: #000000 !important;\\n        cursor: pointer;\\n        font-family: \\'Montserrat\\', sans-serif !important;\\n        font-size: 14px !important;\\n        font-weight: 400 !important;\\n        line-height: 21px !important;\\n        height: auto;\\n        padding: 10px !important;\\n        width: 100% !important;\\n        box-sizing: border-box !important;\\n      }\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedSubmit button.loading {\\n        display: none;\\n      }\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedSubmit button:hover {\\n        background-color: #10bbd8 !important;\\n      }\\n      .ml-subscribe-close {\\n        width: 30px;\\n        height: 30px;\\n        background: url(\\'https://assets.mlcdn.com/ml/images/default/modal_close.png\\') no-repeat;\\n        background-size: 30px;\\n        cursor: pointer;\\n        margin-top: -10px;\\n        margin-right: -10px;\\n        position: absolute;\\n        top: 0;\\n        right: 0;\\n      }\\n      .ml-error input, .ml-error textarea, .ml-error select {\\n        border-color: red!important;\\n      }\\n\\n      .ml-error .custom-checkbox-radio-list {\\n        border: 1px solid red !important;\\n        border-radius: 4px;\\n        padding: 10px;\\n      }\\n\\n      .ml-error .label-description,\\n      .ml-error .label-description p,\\n      .ml-error .label-description p a,\\n      .ml-error label:first-child {\\n        color: #ff0000 !important;\\n      }\\n\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow.ml-error .label-description p,\\n      #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow.ml-error .label-description p:first-letter {\\n        color: #ff0000 !important;\\n      }\\n            @media only screen and (max-width: 400px){\\n\\n        .ml-form-embedWrapper.embedDefault, .ml-form-embedWrapper.embedPopup { width: 100%!important; }\\n        .ml-form-formContent.horozintalForm { float: left!important; }\\n        .ml-form-formContent.horozintalForm .ml-form-horizontalRow { height: auto!important; width: 100%!important; float: left!important; }\\n        .ml-form-formContent.horozintalForm .ml-form-horizontalRow .ml-input-horizontal { width: 100%!important; }\\n        .ml-form-formContent.horozintalForm .ml-form-horizontalRow .ml-input-horizontal > div { padding-right: 0px!important; padding-bottom: 10px; }\\n        .ml-form-formContent.horozintalForm .ml-button-horizontal { width: 100%!important; }\\n        .ml-form-formContent.horozintalForm .ml-button-horizontal.labelsOn { padding-top: 0px!important; }\\n\\n      }\\n    </style>\\n\\n    <style type=\"text/css\">\\n\\n      .ml-mobileButton-horizontal { display: none; }\\n\\n      #mlb2-4918094 .ml-mobileButton-horizontal button {\\n\\n        background-color: #ffffff !important;\\n        border-color: #ffffff !important;\\n        border-style: solid !important;\\n        border-width: 0px !important;\\n        border-radius: 6px !important;\\n        box-shadow: none !important;\\n        color: #000000 !important;\\n        cursor: pointer;\\n        font-family: \\'Montserrat\\', sans-serif !important;\\n        font-size: 14px !important;\\n        font-weight: 400 !important;\\n        line-height: 20px !important;\\n        padding: 10px !important;\\n        width: 100% !important;\\n\\n      }\\n\\n      @media only screen and (max-width: 400px) {\\n        #mlb2-4918094.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-formContent.horozintalForm {\\n          padding: 0 0 10px 0 !important;\\n        }\\n        .ml-hide-horizontal { display: none !important; }\\n        .ml-form-formContent.horozintalForm .ml-button-horizontal { display: none!important; }\\n        .ml-mobileButton-horizontal { display: inline-block !important; margin-bottom: 20px;width:100%; }\\n        .ml-form-formContent.horozintalForm .ml-form-horizontalRow .ml-input-horizontal > div { padding-bottom: 0px !important; }\\n      }\\n\\n    </style>\\n  <style type=\"text/css\">\\n    @media only screen and (max-width: 400px) {\\n       .ml-form-formContent.horozintalForm .ml-form-horizontalRow .horizontal-fields {\\n        margin-bottom: 10px !important;\\n        width: 100% !important;\\n      }\\n    }\\n  </style>\\n    \\n    \\n\\n    \\n    \\n\\n    \\n    \\n\\n    \\n\\n      \\n        \\n        \\n      \\n\\n      \\n        \\n        \\n      \\n\\n      \\n\\n            \\n            \\n            \\n            \\n            \\n            \\n      \\n\\n      \\n\\n      \\n        \\n        \\n         \\n        \\n        \\n      \\n\\n        \\n        \\n        \\n        \\n        \\n        \\n      \\n\\n       \\n\\n        \\n        \\n        \\n        \\n        \\n        \\n        \\n       \\n\\n\\n      \\n        \\n        \\n        \\n        \\n  \\n\\n\\n\\n  \\n        \\n        \\n        \\n      \\n\\n\\n      \\n    \\n    \\n    \\n    \\n    \\n  \\n\\n  \\n        \\n        \\n        \\n        \\n        \\n      \\n\\n      \\n        \\n        \\n        \\n        \\n        \\n      \\n\\n      \\n        \\n        \\n        \\n        \\n        \\n      \\n\\n       \\n\\n        \\n        \\n        \\n        \\n       \\n\\n       \\n        \\n        \\n        \\n        \\n      \\n\\n      \\n        \\n        \\n        \\n        \\n        \\n        \\n        \\n       \\n\\n    \\n\\n    \\n\\n\\n      \\n\\n\\n      \\n\\n      \\n      \\n\\n      \\n\\n      \\n\\n\\n\\n\\n\\n    \\n\\n      \\n    <div id=\"mlb2-4918094\" class=\"ml-form-embedContainer ml-subscribe-form ml-subscribe-form-4918094\">\\n      <div class=\"ml-form-align-center \">\\n        <div class=\"ml-form-embedWrapper embedForm\">\\n\\n          \\n          \\n\\n          <div class=\"ml-form-embedBody ml-form-embedBodyHorizontal row-form\">\\n\\n            <div class=\"ml-form-embedContent\" style=\"margin-bottom: 0px; \">\\n              \\n            </div>\\n\\n            <form class=\"ml-block-form\" action=\"https://assets.mailerlite.com/jsonp/424030/forms/87085291469276523/subscribe\" data-code=\"\" method=\"post\" target=\"_blank\">\\n              \\n\\n              <div class=\"ml-form-formContent horozintalForm\">\\n                <div class=\"ml-form-horizontalRow\">\\n                  <div class=\"ml-input-horizontal\">\\n                    \\n                      \\n                      <div style=\"width: 100%;\" class=\"horizontal-fields\">\\n\\n\\n\\n\\n\\n\\n                        <div class=\"ml-field-group ml-field-email ml-validate-email ml-validate-required\">\\n                          \\n                          <!-- input -->\\n                      <input type=\"email\" class=\"form-control\" data-inputmask=\"\" name=\"fields[email]\" placeholder=\"Email\" autocomplete=\"email\">\\n                      <!-- /input -->\\n                        </div>\\n\\n\\n\\n                      </div>\\n                    \\n                  </div>\\n\\n\\n                  <div class=\"ml-button-horizontal primary \">\\n                    \\n                      <button type=\"submit\" class=\"primary\">Subscribe</button>\\n                    \\n                    <button disabled=\"disabled\" style=\"display: none;\" type=\"button\" class=\"loading\">\\n                      <div class=\"ml-form-embedSubmitLoad\"></div>\\n                      <span class=\"sr-only\">Loading...</span>\\n                    </button>\\n                  </div>\\n                </div>\\n              </div>\\n\\n              <!-- Privacy policy -->\\n              \\n              <!-- /Privacy policy -->\\n\\n              \\n\\n              \\n\\n              \\n\\n\\n\\n\\n\\n\\n              \\n              <input type=\"hidden\" name=\"ml-submit\" value=\"1\">\\n\\n              \\n\\n              <div class=\"ml-mobileButton-horizontal\">\\n                <button type=\"submit\" class=\"primary\">Subscribe</button>\\n                <button disabled=\"disabled\" style=\"display: none;\" type=\"button\" class=\"loading\">\\n                  <div class=\"ml-form-embedSubmitLoad\"></div>\\n                  <span class=\"sr-only\">Loading...</span>\\n                </button>\\n              </div>\\n              <input type=\"hidden\" name=\"anticsrf\" value=\"true\">\\n            </form>\\n          </div>\\n\\n          <div class=\"ml-form-successBody row-success\" style=\"display: none\">\\n\\n            <div class=\"ml-form-successContent\">\\n              \\n                <h4>Subscribed!</h4>\\n                <p style=\"text-align: center;\"><br></p>\\n              \\n            </div>\\n\\n          </div>\\n        </div>\\n      </div>\\n    </div>\\n\\n  \\n\\n  \\n  \\n  <script>\\n    function ml_webform_success_4918094() {\\n      var $ = ml_jQuery || jQuery;\\n      $(\\'.ml-subscribe-form-4918094 .row-success\\').show();\\n      $(\\'.ml-subscribe-form-4918094 .row-form\\').hide();\\n    }\\n      </script>\\n  \\n  \\n      <script src=\"https://groot.mailerlite.com/js/w/webforms.min.js?v08a893c96141fbc55feeeeac1fda7508\" type=\"text/javascript\"></script>\\n        <script>\\n            fetch(\"https://assets.mailerlite.com/jsonp/424030/forms/87085291469276523/track-view\")\\n        </script>',id:\"j5as6pN7y\",layoutId:\"j5as6pN7y\",style:{height:\"100%\",width:\"100%\"},type:\"html\",url:\"\",width:\"100%\"})})})})})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aVMpqy5l3:{y:(componentViewport?.y||0)+0+4067.2},ljtIhjibA:{y:(componentViewport?.y||0)+0+6392.8}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:509,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+4529.2,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ujfmyz-container\",nodeId:\"U87uUaCiY\",scopeId:\"flOIYRy97\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ljtIhjibA:{variant:\"JtN9IprO3\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"U87uUaCiY\",layoutId:\"U87uUaCiY\",style:{width:\"100%\"},variant:\"AkSVgu0bt\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-pJeil.framer-10sqhdz, .framer-pJeil .framer-10sqhdz { display: block; }\",\".framer-pJeil.framer-d0wpzk { align-content: center; align-items: center; background-color: #000000; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1280px; }\",\".framer-pJeil .framer-11xuj1a { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px 0px 80px 0px; position: relative; width: 100%; }\",\".framer-pJeil .framer-1rjc58i-container { flex: none; height: auto; position: relative; width: 100%; z-index: 10; }\",\".framer-pJeil .framer-14i7d6k { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; max-width: 1600px; overflow: visible; padding: 40px 40px 0px 40px; position: relative; width: 100%; z-index: 1; }\",\".framer-pJeil .framer-1d6kwsq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 0px 20px 0px; position: relative; width: 100%; }\",\".framer-pJeil .framer-ehofwo { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 650px; }\",\".framer-pJeil .framer-gqsw8z, .framer-pJeil .framer-di52hn, .framer-pJeil .framer-1j647bf, .framer-pJeil .framer-1wh4o6h, .framer-pJeil .framer-ws97e5, .framer-pJeil .framer-1g5dlt8, .framer-pJeil .framer-1w5yyzy, .framer-pJeil .framer-338jyd, .framer-pJeil .framer-v5yzvw, .framer-pJeil .framer-sejimy, .framer-pJeil .framer-1lx4wbd { flex: none; height: auto; overflow: hidden; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-pJeil .framer-15rqeme { --framer-text-wrap: balance; flex: none; height: auto; overflow: hidden; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-pJeil .framer-w8zfd9 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-pJeil .framer-3bwh16, .framer-pJeil .framer-dlwyjw { --border-bottom-width: 1px; --border-color: rgba(2, 179, 118, 0.2); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 500px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: 1px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-pJeil .framer-84z093, .framer-pJeil .framer-d6wijr, .framer-pJeil .framer-e9hbno { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; height: 1px; justify-content: space-between; overflow: visible; padding: 30px; position: relative; width: 100%; }\",\".framer-pJeil .framer-lphs0r, .framer-pJeil .framer-q079q6, .framer-pJeil .framer-453z3v { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-end; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-pJeil .framer-106x8pr { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-pJeil .framer-24cfph, .framer-pJeil .framer-1aibuw6 { --border-bottom-width: 1px; --border-color: rgba(2, 181, 120, 0.2); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; aspect-ratio: 1 / 1; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; flex: none; height: var(--framer-aspect-ratio-supported, 70px); overflow: visible; position: relative; width: 70px; }\",\".framer-pJeil .framer-1t1vwsd, .framer-pJeil .framer-1dm82ge, .framer-pJeil .framer-1n6nkh { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-pJeil .framer-a95wmg { aspect-ratio: 8.958333333333334 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 28px); position: relative; width: 251px; }\",\".framer-pJeil .framer-uxpa4u, .framer-pJeil .framer-pn5hdo { align-content: center; align-items: center; border-bottom-left-radius: 33px; border-bottom-right-radius: 33px; border-top-left-radius: 33px; border-top-right-radius: 33px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-pJeil .framer-1xafoqp-container, .framer-pJeil .framer-ad16vp-container, .framer-pJeil .framer-eo5u4g-container, .framer-pJeil .framer-11yhf0q-container, .framer-pJeil .framer-zpw44w-container, .framer-pJeil .framer-vp41kb-container, .framer-pJeil .framer-qg9d16-container, .framer-pJeil .framer-133r38b-container, .framer-pJeil .framer-1sm2ghp-container, .framer-pJeil .framer-p14hdd-container, .framer-pJeil .framer-1k3lta-container, .framer-pJeil .framer-wtzqxb-container, .framer-pJeil .framer-1tlnosq-container, .framer-pJeil .framer-5au4my-container, .framer-pJeil .framer-eez0k4-container, .framer-pJeil .framer-1scirzq-container, .framer-pJeil .framer-1mq537c-container, .framer-pJeil .framer-28z05-container, .framer-pJeil .framer-xq07hb-container, .framer-pJeil .framer-hhj6fp-container, .framer-pJeil .framer-7fckev-container, .framer-pJeil .framer-v43qbd-container, .framer-pJeil .framer-i90o2j-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 20px); position: relative; width: 20px; }\",\".framer-pJeil .framer-fehk1o, .framer-pJeil .framer-vknf2i, .framer-pJeil .framer-79k6l7 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-end; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-pJeil .framer-rlpevy, .framer-pJeil .framer-aefvsd { align-content: center; align-items: center; background-color: rgba(6, 180, 120, 0.2); border-bottom-left-radius: 50px; border-bottom-right-radius: 50px; border-top-left-radius: 50px; border-top-right-radius: 50px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 60px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 60px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-pJeil .framer-9v0580-container, .framer-pJeil .framer-e1nfdg-container, .framer-pJeil .framer-ldrzbw-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 33px); position: relative; width: 30px; }\",\".framer-pJeil .framer-26uedx { --border-bottom-width: 1px; --border-color: rgba(16, 187, 213, 0.2); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 500px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: 1px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-pJeil .framer-bjnwru, .framer-pJeil .framer-1d7c4ts, .framer-pJeil .framer-8g3zmi { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-pJeil .framer-68lwvw { --border-bottom-width: 1px; --border-color: rgba(16, 187, 213, 0.2); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; aspect-ratio: 1 / 1; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; flex: none; height: var(--framer-aspect-ratio-supported, 70px); overflow: hidden; position: relative; width: 70px; will-change: var(--framer-will-change-override, transform); }\",\".framer-pJeil .framer-1uabc0r { aspect-ratio: 8.02919708029197 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 28px); position: relative; width: 225px; }\",\".framer-pJeil .framer-158cqct { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-pJeil .framer-47g6ah { align-content: center; align-items: center; background-color: rgba(16, 187, 213, 0.2); border-bottom-left-radius: 50px; border-bottom-right-radius: 50px; border-top-left-radius: 50px; border-top-right-radius: 50px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 60px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 60px; will-change: var(--framer-will-change-effect-override, transform); z-index: 3; }\",\".framer-pJeil .framer-1441mp0 { flex: none; height: 31px; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-pJeil .framer-tg7xtg { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; max-width: 1440px; padding: 20px; position: relative; width: 100%; z-index: 2; }\",\".framer-pJeil .framer-1hhf0ok { align-content: center; align-items: center; border-bottom-left-radius: 33px; border-bottom-right-radius: 33px; border-top-left-radius: 33px; border-top-right-radius: 33px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px 6px 1px 0px; position: relative; text-decoration: none; width: 100%; }\",\".framer-pJeil .framer-1s9uscl { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-pJeil .framer-1u281c5-container, .framer-pJeil .framer-14s5ae4-container, .framer-pJeil .framer-1sk99nu-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 45px); position: relative; width: 45px; }\",\".framer-pJeil .framer-urdexg { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 0px 10px; position: relative; width: min-content; }\",\".framer-pJeil .framer-mh3u4i, .framer-pJeil .framer-j5b63m, .framer-pJeil .framer-15pygn8, .framer-pJeil .framer-12o9c6r, .framer-pJeil .framer-1op04g2, .framer-pJeil .framer-w8h96c, .framer-pJeil .framer-16o446s, .framer-pJeil .framer-1thabri, .framer-pJeil .framer-19huayr, .framer-pJeil .framer-17xsp5m { flex: none; height: auto; overflow: visible; position: relative; white-space: pre; width: auto; }\",\".framer-pJeil .framer-1x0t34w, .framer-pJeil .framer-9d1ouo { background-color: rgba(238, 238, 238, 0.15); flex: none; height: 1px; overflow: visible; position: relative; width: 100%; }\",\".framer-pJeil .framer-8ebm62 { align-content: center; align-items: center; background: radial-gradient(50% 100% at 50% 0%, #295640 0%, rgb(5, 56, 64) 46.2010838963964%, rgb(0, 0, 0) 100%); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; padding: 80px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-pJeil .framer-pf01r { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; padding: 0px 0px 80px 0px; position: relative; width: 1100px; }\",\".framer-pJeil .framer-9376br, .framer-pJeil .framer-ztayij { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-pJeil .framer-1e0cshz, .framer-pJeil .framer-uydzyl, .framer-pJeil .framer-852sbg, .framer-pJeil .framer-dubawi, .framer-pJeil .framer-1qg63go, .framer-pJeil .framer-1rirhmq, .framer-pJeil .framer-1i3ceuu, .framer-pJeil .framer-1bdqtvx, .framer-pJeil .framer-2ci2p { flex: none; height: auto; opacity: 0.8; overflow: hidden; position: relative; white-space: pre-wrap; width: 75%; word-break: break-word; word-wrap: break-word; }\",\".framer-pJeil .framer-1p23sth-container, .framer-pJeil .framer-9x211u-container, .framer-pJeil .framer-1x66obx-container, .framer-pJeil .framer-l7obcg-container, .framer-pJeil .framer-10s6cwe-container, .framer-pJeil .framer-1dt4wz-container, .framer-pJeil .framer-ez6obo-container, .framer-pJeil .framer-fakblk-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-pJeil .framer-1jw97p0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-pJeil .framer-1k42ei-container, .framer-pJeil .framer-lggr87-container, .framer-pJeil .framer-akbz6r-container { flex: none; height: 57px; position: relative; width: 100%; }\",\".framer-pJeil .framer-12ra8qv-container, .framer-pJeil .framer-1qfotvu-container, .framer-pJeil .framer-peqmww-container, .framer-pJeil .framer-np8lbw-container, .framer-pJeil .framer-1gozbxe-container, .framer-pJeil .framer-7xsoal-container, .framer-pJeil .framer-1vymn3i-container, .framer-pJeil .framer-1idodb3-container, .framer-pJeil .framer-9upk1-container, .framer-pJeil .framer-4ntyrw-container, .framer-pJeil .framer-3cw3gc-container, .framer-pJeil .framer-tfdbwq-container, .framer-pJeil .framer-1e1xw8-container, .framer-pJeil .framer-1nkrevl-container, .framer-pJeil .framer-b0boqt-container, .framer-pJeil .framer-1j4j822-container, .framer-pJeil .framer-p3a7m6-container, .framer-pJeil .framer-e3yfum-container { height: auto; position: relative; width: auto; }\",\".framer-pJeil .framer-4tx3ii { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 50px 20px 30px 20px; position: relative; width: 100%; }\",\".framer-pJeil .framer-93398m { flex: none; height: auto; opacity: 0.5; overflow: hidden; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-pJeil .framer-1y73yyu { aspect-ratio: 1 / 1; background: radial-gradient(50% 50% at 50% 50%, rgba(102, 255, 173, 0.8) 0%, rgba(16, 187, 213, 0.6) 28.67981790591806%, rgba(0, 0, 0, 0) 100%); bottom: 972px; flex: none; gap: 10px; height: var(--framer-aspect-ratio-supported, 1318px); opacity: 0.5; overflow: hidden; position: absolute; right: -679px; width: 1318px; will-change: var(--framer-will-change-effect-override, transform); z-index: 0; }\",\".framer-pJeil .framer-5duy8f { align-content: center; align-items: center; background: linear-gradient(180deg, #16161a 0%, rgba(22, 22, 26, 0.3) 100%); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; padding: 80px 40px 0px 40px; position: relative; width: 100%; }\",\".framer-pJeil .framer-u4cwnd { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; max-width: 1600px; padding: 0px 0px 80px 0px; position: relative; width: 100%; z-index: 2; }\",\".framer-pJeil .framer-5vkf5b { flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-pJeil .framer-1k9hscy { display: grid; flex: none; gap: 20px; grid-auto-rows: min-content; grid-template-columns: repeat(3, minmax(220px, 1fr)); grid-template-rows: repeat(2, min-content); height: min-content; justify-content: start; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-pJeil .framer-1yrddzy, .framer-pJeil .framer-o6v18c, .framer-pJeil .framer-1gblwf, .framer-pJeil .framer-1dnk0m0, .framer-pJeil .framer-1c9nwvy, .framer-pJeil .framer-h606vt, .framer-pJeil .framer-1ipebl0 { --border-bottom-width: 1px; --border-color: rgba(255, 255, 255, 0.2); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; align-self: start; background-color: #000000; 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: column; flex-wrap: nowrap; height: 350px; justify-content: space-between; justify-self: start; overflow: visible; padding: 40px; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-pJeil .framer-1cekgfn, .framer-pJeil .framer-1rcyus6, .framer-pJeil .framer-1al68wt, .framer-pJeil .framer-u6xa7n, .framer-pJeil .framer-ajivsz, .framer-pJeil .framer-o130y1 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 50px); overflow: hidden; position: relative; width: 50px; }\",\".framer-pJeil .framer-rs1p2u { align-content: center; align-items: center; background-color: #18181a; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.05); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 22px; position: relative; width: min-content; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-pJeil .framer-4cjd9b { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 4px 0px 0px; position: relative; width: min-content; }\",\".framer-pJeil .framer-1cluoxm, .framer-pJeil .framer-1qw8fur { align-self: stretch; flex: none; height: auto; overflow: hidden; position: relative; white-space: pre-wrap; width: auto; word-break: break-word; word-wrap: break-word; }\",\".framer-pJeil .framer-rvybu1, .framer-pJeil .framer-1k2lu4y, .framer-pJeil .framer-1k6dqav, .framer-pJeil .framer-2azcdh { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-pJeil .framer-1jlkeos, .framer-pJeil .framer-1byjgj8, .framer-pJeil .framer-su4bdq, .framer-pJeil .framer-3iu87j { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 24px); overflow: hidden; position: relative; width: 24px; }\",\".framer-pJeil .framer-1o96ga0, .framer-pJeil .framer-i6vl38, .framer-pJeil .framer-16jnb01 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-pJeil .framer-aruq1i { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 306px; }\",\".framer-pJeil .framer-r2kzrq, .framer-pJeil .framer-1g6b1hk, .framer-pJeil .framer-1m8rikm, .framer-pJeil .framer-huzq6e, .framer-pJeil .framer-19yvx5m, .framer-pJeil .framer-1y0uphh, .framer-pJeil .framer-1gd6uid { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-pJeil .framer-4okvm3, .framer-pJeil .framer-mzimor, .framer-pJeil .framer-1q2jrc7, .framer-pJeil .framer-7zjmql, .framer-pJeil .framer-1j7v2j7, .framer-pJeil .framer-1ljaha8, .framer-pJeil .framer-10of31m { flex: none; height: auto; opacity: 0.6; overflow: hidden; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-pJeil .framer-vj8z61 { --border-bottom-width: 1px; --border-color: #222222; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; border-bottom-left-radius: 40px; border-bottom-right-radius: 40px; border-top-left-radius: 40px; border-top-right-radius: 40px; cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 10px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-pJeil .framer-by61hp { flex: none; height: auto; opacity: 0.6; overflow: visible; position: relative; white-space: pre; width: auto; }\",\".framer-pJeil .framer-1fmsnor { align-content: center; align-items: center; background-color: #18181a; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.05); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 30px; position: relative; width: min-content; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-pJeil .framer-1fvjg56 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-pJeil .framer-p0hu95, .framer-pJeil .framer-1sin7is, .framer-pJeil .framer-eofbj5, .framer-pJeil .framer-16xyups { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-pJeil .framer-lqlzyk, .framer-pJeil .framer-wxmf44, .framer-pJeil .framer-6sjkd7, .framer-pJeil .framer-sdccv8 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 34px); overflow: hidden; position: relative; width: 34px; }\",\".framer-pJeil .framer-jz0cry, .framer-pJeil .framer-alpsgf, .framer-pJeil .framer-1om5eq7, .framer-pJeil .framer-1mqinbo { flex: 1 0 0px; height: auto; opacity: 0.8; overflow: hidden; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-pJeil .framer-1hl1jik, .framer-pJeil .framer-1bp6awb { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-pJeil .framer-17i50mn, .framer-pJeil .framer-16q33kk, .framer-pJeil .framer-l26n2w, .framer-pJeil .framer-a9s17m { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-pJeil .framer-1brnfva { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-pJeil .framer-mkk1nr { aspect-ratio: 0.975609756097561 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 52px); overflow: hidden; position: relative; width: 50px; }\",\".framer-pJeil .framer-1vnqjag { --border-bottom-width: 1px; --border-color: rgba(255, 255, 255, 0.2); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; align-self: start; 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: column; flex-wrap: nowrap; grid-column: span 2; height: 350px; justify-content: space-between; justify-self: start; overflow: visible; padding: 40px; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-pJeil .framer-4pglrn { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 59px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-pJeil .framer-zz5c82 { flex: 1 0 0px; height: 1px; opacity: 0.6; overflow: hidden; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-pJeil .framer-1nw5dcd { flex: 1 0 0px; height: 1px; overflow: hidden; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-pJeil .framer-1jwwliq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; padding: 80px 40px 140px 40px; position: relative; width: 100%; }\",\".framer-pJeil .framer-1g69h7m { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 1600px; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-pJeil .framer-5seoae { align-content: flex-start; align-items: flex-start; display: flex; flex: 0.66 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 1px; }\",\".framer-pJeil .framer-i8ueyb { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-pJeil .framer-sfh75c { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 1px; }\",\".framer-pJeil .framer-ljfkmg, .framer-pJeil .framer-hvmtke, .framer-pJeil .framer-73a1h9, .framer-pJeil .framer-hy7gfz, .framer-pJeil .framer-1sdst4t, .framer-pJeil .framer-dubv48 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-pJeil .framer-hsim65, .framer-pJeil .framer-1iur77y { aspect-ratio: 0.9857142857142858 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 50px); position: relative; width: 49px; }\",\".framer-pJeil .framer-1x44v76, .framer-pJeil .framer-wx7idw, .framer-pJeil .framer-1ylmuak, .framer-pJeil .framer-n1gb9h, .framer-pJeil .framer-101b4ez, .framer-pJeil .framer-fvz89a { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-pJeil .framer-1nomrzh, .framer-pJeil .framer-xpvrvs, .framer-pJeil .framer-1fgpf6t, .framer-pJeil .framer-1s1dfg0, .framer-pJeil .framer-yl7ibk { align-content: center; align-items: center; aspect-ratio: 1 / 1; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 50px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 50px; }\",\".framer-pJeil .framer-11r9p8q, .framer-pJeil .framer-300ddd, .framer-pJeil .framer-11bcyem, .framer-pJeil .framer-15bblef, .framer-pJeil .framer-eupz3r { background: linear-gradient(180deg, var(--token-8ea1e3fd-ac7f-4974-a2f3-133409ff7f08, #12bbd5) 0%, rgb(2, 183, 147) 100%); border-bottom-left-radius: 30px; border-bottom-right-radius: 30px; border-top-left-radius: 30px; border-top-right-radius: 30px; flex: none; height: 50px; opacity: 0.15; overflow: hidden; position: relative; width: 3px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-pJeil .framer-eca47i, .framer-pJeil .framer-1p5xsav, .framer-pJeil .framer-t8ute, .framer-pJeil .framer-ns82dt { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 50px); position: relative; width: 50px; }\",\".framer-pJeil .framer-va1owz, .framer-pJeil .framer-1ablzfu { 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-pJeil .framer-kpdi2b { background-color: rgba(255, 255, 255, 0.1); flex: 1 0 0px; height: 1px; overflow: hidden; position: relative; width: 1px; }\",\".framer-pJeil .framer-122pg63 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 40px 0px 40px; position: relative; width: 100%; }\",\".framer-pJeil .framer-gwv960 { border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; bottom: -1px; flex: none; left: calc(50.00000000000002% - 100% / 2); opacity: 0.8; overflow: hidden; position: absolute; top: 0px; width: 100%; will-change: var(--framer-will-change-override, transform); z-index: 0; }\",\".framer-pJeil .framer-1yqzd6f { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 350px; justify-content: flex-start; max-width: 1600px; overflow: visible; padding: 40px; position: relative; width: 100%; }\",\".framer-pJeil .framer-91o2mn { flex: 1 0 0px; height: auto; overflow: hidden; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-pJeil .framer-1oxjpue-container { flex: 1 0 0px; height: 155px; position: relative; width: 1px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-pJeil .framer-1ujfmyz-container { flex: none; height: auto; position: relative; width: 100%; z-index: 0; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,'.framer-pJeil[data-border=\"true\"]::after, .framer-pJeil [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@media (max-width: 809px) { .framer-pJeil.framer-d0wpzk { width: 390px; } .framer-pJeil .framer-11xuj1a { order: 1; } .framer-pJeil .framer-14i7d6k { gap: 30px; padding: 20px; z-index: 4; } .framer-pJeil .framer-ehofwo, .framer-pJeil .framer-1e0cshz, .framer-pJeil .framer-uydzyl, .framer-pJeil .framer-dubawi, .framer-pJeil .framer-1qg63go, .framer-pJeil .framer-1rirhmq, .framer-pJeil .framer-1i3ceuu, .framer-pJeil .framer-1bdqtvx, .framer-pJeil .framer-2ci2p { width: 100%; } .framer-pJeil .framer-w8zfd9 { flex-direction: column; } .framer-pJeil .framer-3bwh16, .framer-pJeil .framer-26uedx, .framer-pJeil .framer-dlwyjw { flex: none; height: 460px; width: 100%; } .framer-pJeil .framer-tg7xtg { gap: 10px; padding: 0px 0px 20px 0px; } .framer-pJeil .framer-1hhf0ok { align-content: flex-start; align-items: flex-start; flex-direction: column; justify-content: flex-start; order: 2; padding: 0px 30px 20px 30px; } .framer-pJeil .framer-1s9uscl { overflow: hidden; } .framer-pJeil .framer-1u281c5-container, .framer-pJeil .framer-14s5ae4-container, .framer-pJeil .framer-1sk99nu-container { height: var(--framer-aspect-ratio-supported, 20px); width: 20px; } .framer-pJeil .framer-urdexg { padding: 0px; } .framer-pJeil .framer-1x0t34w { order: 3; } .framer-pJeil .framer-8ebm62 { order: 3; padding: 20px 20px 0px 20px; } .framer-pJeil .framer-pf01r { align-content: flex-start; align-items: flex-start; gap: 30px; order: 0; padding: 40px 0px 80px 0px; width: 100%; } .framer-pJeil .framer-1jw97p0 { order: 4; } .framer-pJeil .framer-4tx3ii { order: 5; } .framer-pJeil .framer-5duy8f { order: 6; padding: 0px 20px 0px 20px; } .framer-pJeil .framer-u4cwnd { align-content: flex-start; align-items: flex-start; gap: 60px; order: 0; overflow: visible; padding: 60px 0px 20px 0px; } .framer-pJeil .framer-1k9hscy { gap: 38px; grid-template-columns: repeat(1, minmax(220px, 1fr)); } .framer-pJeil .framer-1yrddzy, .framer-pJeil .framer-o6v18c, .framer-pJeil .framer-1gblwf, .framer-pJeil .framer-1dnk0m0, .framer-pJeil .framer-1c9nwvy, .framer-pJeil .framer-h606vt, .framer-pJeil .framer-1ipebl0 { --border-bottom-width: unset; --border-left-width: unset; --border-right-width: unset; --border-top-width: unset; background-color: unset; flex-direction: row; gap: 24px; height: min-content; justify-content: flex-start; padding: 0px; } .framer-pJeil .framer-8g3zmi { gap: 0px; justify-content: center; width: min-content; } .framer-pJeil .framer-1cekgfn, .framer-pJeil .framer-1rcyus6, .framer-pJeil .framer-1al68wt, .framer-pJeil .framer-u6xa7n, .framer-pJeil .framer-ajivsz, .framer-pJeil .framer-o130y1 { height: var(--framer-aspect-ratio-supported, 34px); width: 34px; } .framer-pJeil .framer-1o96ga0, .framer-pJeil .framer-i6vl38, .framer-pJeil .framer-16jnb01, .framer-pJeil .framer-17i50mn, .framer-pJeil .framer-16q33kk, .framer-pJeil .framer-l26n2w, .framer-pJeil .framer-a9s17m { flex: 1 0 0px; width: 1px; } .framer-pJeil .framer-aruq1i { gap: 0px; order: 0; width: 100%; } .framer-pJeil .framer-vj8z61 { --border-bottom-width: unset; --border-left-width: unset; --border-right-width: unset; --border-top-width: unset; background: linear-gradient(78deg, rgba(2, 183, 135, 0.15) 0%, rgba(16, 187, 213, 0.15) 100%); order: 1; padding: 8px 10px 8px 10px; } .framer-pJeil .framer-by61hp { opacity: unset; } .framer-pJeil .framer-1fmsnor { padding: 24px; } .framer-pJeil .framer-1fvjg56 { padding: 0px 4px 0px 0px; } .framer-pJeil .framer-p0hu95, .framer-pJeil .framer-1sin7is, .framer-pJeil .framer-eofbj5, .framer-pJeil .framer-16xyups { text-decoration: none; } .framer-pJeil .framer-lqlzyk, .framer-pJeil .framer-wxmf44, .framer-pJeil .framer-6sjkd7, .framer-pJeil .framer-sdccv8 { height: var(--framer-aspect-ratio-supported, 24px); width: 24px; } .framer-pJeil .framer-jz0cry, .framer-pJeil .framer-alpsgf, .framer-pJeil .framer-1om5eq7, .framer-pJeil .framer-1mqinbo { flex: none; opacity: unset; overflow: visible; white-space: pre; width: auto; } .framer-pJeil .framer-l7obcg-container { order: 2; } .framer-pJeil .framer-mkk1nr { height: var(--framer-aspect-ratio-supported, 35px); width: 34px; } .framer-pJeil .framer-1vnqjag { --border-bottom-width: unset; --border-left-width: unset; --border-right-width: unset; --border-top-width: unset; background-color: #18181a; gap: 24px; grid-column: span 1; height: min-content; justify-content: flex-start; } .framer-pJeil .framer-4pglrn { height: min-content; } .framer-pJeil .framer-zz5c82, .framer-pJeil .framer-1nw5dcd { flex: none; height: auto; width: 302px; } .framer-pJeil .framer-1jwwliq { order: 7; padding: 0px 20px 0px 20px; } .framer-pJeil .framer-1g69h7m { flex: none; flex-direction: column; order: 1; padding: 0px 0px 60px 0px; width: 100%; } .framer-pJeil .framer-5seoae { flex: none; gap: 30px; padding: 30px 0px 0px 0px; width: 100%; } .framer-pJeil .framer-sfh75c { flex: none; padding: 30px 0px 40px 0px; width: 100%; } .framer-pJeil .framer-1nomrzh, .framer-pJeil .framer-xpvrvs, .framer-pJeil .framer-1fgpf6t, .framer-pJeil .framer-1s1dfg0, .framer-pJeil .framer-yl7ibk { aspect-ratio: unset; height: min-content; } .framer-pJeil .framer-11r9p8q, .framer-pJeil .framer-300ddd, .framer-pJeil .framer-11bcyem, .framer-pJeil .framer-15bblef, .framer-pJeil .framer-eupz3r { height: 30px; } .framer-pJeil .framer-va1owz, .framer-pJeil .framer-1ablzfu { align-content: flex-start; align-items: flex-start; flex-direction: column; } .framer-pJeil .framer-kpdi2b { order: 0; } .framer-pJeil .framer-122pg63 { height: 342px; order: 9; padding: 0px; } .framer-pJeil .framer-gwv960 { left: 0px; } .framer-pJeil .framer-1yqzd6f { flex-direction: column; gap: 40px; height: 252px; justify-content: center; padding: 0px 40px 0px 40px; } .framer-pJeil .framer-91o2mn { flex: none; width: 100%; } .framer-pJeil .framer-1oxjpue-container { flex: none; height: 94px; width: 100%; will-change: unset; } .framer-pJeil .framer-1ujfmyz-container { order: 11; }}\",\"@media (min-width: 810px) and (max-width: 1279px) { .framer-pJeil.framer-d0wpzk { width: 810px; } .framer-pJeil .framer-14i7d6k { padding: 40px 20px 0px 20px; } .framer-pJeil .framer-w8zfd9 { align-content: unset; align-items: unset; display: grid; gap: 20px; grid-auto-rows: min-content; grid-template-columns: repeat(3, minmax(200px, 1fr)); grid-template-rows: repeat(2, min-content); } .framer-pJeil .framer-3bwh16, .framer-pJeil .framer-26uedx, .framer-pJeil .framer-dlwyjw { align-self: start; flex: none; height: 420px; justify-self: start; width: 100%; } .framer-pJeil .framer-84z093, .framer-pJeil .framer-d6wijr, .framer-pJeil .framer-e9hbno { padding: 24px; } .framer-pJeil .framer-lphs0r, .framer-pJeil .framer-q079q6, .framer-pJeil .framer-453z3v { gap: 20px; } .framer-pJeil .framer-24cfph, .framer-pJeil .framer-68lwvw, .framer-pJeil .framer-1aibuw6 { height: var(--framer-aspect-ratio-supported, 60px); width: 60px; } .framer-pJeil .framer-1t1vwsd, .framer-pJeil .framer-1dm82ge, .framer-pJeil .framer-1n6nkh { gap: 16px; } .framer-pJeil .framer-a95wmg { height: var(--framer-aspect-ratio-supported, 22px); width: 191px; } .framer-pJeil .framer-1uabc0r { height: var(--framer-aspect-ratio-supported, 24px); width: 191px; } .framer-pJeil .framer-tg7xtg { padding: 0px 20px 20px 20px; } .framer-pJeil .framer-1hhf0ok { padding: 10px 6px 1px 0px; } .framer-pJeil .framer-8ebm62, .framer-pJeil .framer-1jwwliq { padding: 80px 60px 80px 60px; } .framer-pJeil .framer-pf01r { padding: 0px; width: 100%; } .framer-pJeil .framer-1y73yyu { bottom: 655px; height: var(--framer-aspect-ratio-supported, 1616px); left: 0px; right: -806px; width: unset; } .framer-pJeil .framer-5duy8f { padding: 80px 0px 0px 0px; } .framer-pJeil .framer-u4cwnd { padding: 0px; } .framer-pJeil .framer-1k9hscy { padding: 0px 20px 80px 20px; } .framer-pJeil .framer-1yrddzy { order: 0; padding: 24px; } .framer-pJeil .framer-1cekgfn, .framer-pJeil .framer-1rcyus6, .framer-pJeil .framer-1al68wt, .framer-pJeil .framer-u6xa7n, .framer-pJeil .framer-ajivsz, .framer-pJeil .framer-o130y1 { height: var(--framer-aspect-ratio-supported, 40px); width: 40px; } .framer-pJeil .framer-aruq1i { width: 100%; } .framer-pJeil .framer-o6v18c { order: 1; padding: 24px; } .framer-pJeil .framer-1gblwf { order: 2; padding: 24px; } .framer-pJeil .framer-1dnk0m0 { height: 300px; order: 3; padding: 24px; } .framer-pJeil .framer-1c9nwvy { height: 300px; order: 4; padding: 24px; } .framer-pJeil .framer-mkk1nr { height: var(--framer-aspect-ratio-supported, 41px); width: 40px; } .framer-pJeil .framer-h606vt { height: 300px; order: 6; padding: 24px; } .framer-pJeil .framer-1ipebl0 { height: 300px; order: 9; padding: 24px; } .framer-pJeil .framer-1vnqjag { height: 300px; order: 10; padding: 24px; } .framer-pJeil .framer-4pglrn { order: 0; } .framer-pJeil .framer-1nw5dcd { flex: none; height: auto; order: 2; overflow: visible; white-space: pre; width: auto; } .framer-pJeil .framer-1nomrzh, .framer-pJeil .framer-xpvrvs, .framer-pJeil .framer-1fgpf6t, .framer-pJeil .framer-1s1dfg0, .framer-pJeil .framer-yl7ibk { aspect-ratio: unset; height: min-content; } .framer-pJeil .framer-11r9p8q, .framer-pJeil .framer-300ddd, .framer-pJeil .framer-11bcyem, .framer-pJeil .framer-15bblef, .framer-pJeil .framer-eupz3r { height: 40px; } .framer-pJeil .framer-122pg63 { padding: 0px 20px 0px 20px; } .framer-pJeil .framer-gwv960 { bottom: 0px; left: calc(50.00000000000002% - min(1100px, 95.06172839506173%) / 2); max-width: 1100px; width: 95%; } .framer-pJeil .framer-1yqzd6f { height: min-content; max-width: unset; } .framer-pJeil .framer-1oxjpue-container { height: 111px; }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 4880\n * @framerIntrinsicWidth 1280\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"ljtIhjibA\":{\"layout\":[\"fixed\",\"auto\"]},\"aVMpqy5l3\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerTrackingIds [{\"id\":\"since-2017-home\",\"nodeId\":\"LthM17GGI\",\"type\":\"click\"},{\"id\":\"carbon-home\",\"nodeId\":\"kOrX7Ny_R\",\"type\":\"click\"},{\"id\":\"arb-home\",\"nodeId\":\"u8ahZDQK9\",\"type\":\"click\"},{\"id\":\"sim-home\",\"nodeId\":\"sr0fzGFKn\",\"type\":\"click\"},{\"id\":\"used-by-dexs-home\",\"nodeId\":\"hnDiluxMC\",\"type\":\"click\"},{\"id\":\"gov-home\"},{\"id\":\"blockchain-home\"},{\"id\":\"market-maker-home\"},{\"id\":\"token-project-home\"},{\"id\":\"history-home\"}]\n * @framerScrollSections {\"S8na5eB66\":{\"pattern\":\":S8na5eB66\",\"name\":\"bnt\"},\"yxO8MwUcP\":{\"pattern\":\":yxO8MwUcP\",\"name\":\"features\"},\"OWsCSn4W0\":{\"pattern\":\":OWsCSn4W0\",\"name\":\"use-cases\"},\"GymxDPKUE\":{\"pattern\":\":GymxDPKUE\",\"name\":\"history\"}}\n * @framerResponsiveScreen\n */const FramerflOIYRy97=withCSS(Component,css,\"framer-pJeil\");export default FramerflOIYRy97;FramerflOIYRy97.displayName=\"Home\";FramerflOIYRy97.defaultProps={height:4880,width:1280};addFonts(FramerflOIYRy97,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Euclid Circular A Light\",source:\"custom\",url:\"https://framerusercontent.com/assets/UNCI6keFMzUOO9HCAPfRRT5DKdY.ttf\"},{family:\"Euclid Circular A Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/xAgGSvpEghG5GJ5uNDWafIGb0.ttf\"},{family:\"Outfit\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/outfit/v11/QGYyz_MVcBeNP4NjuGObqx1XmO1I4TC1C4S-EiAou6Y.woff2\",weight:\"400\"}]},...NavigationFonts,...ChainIconFonts,...FeatherFonts,...ChainIcon5Fonts,...ButtonFonts,...FeatureChipFonts,...TickerFonts,...Button1Fonts,...CaretFonts,...Button2Fonts,...EmbedFonts,...FooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerflOIYRy97\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ljtIhjibA\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"aVMpqy5l3\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"4880\",\"framerScrollSections\":\"{\\\"S8na5eB66\\\":{\\\"pattern\\\":\\\":S8na5eB66\\\",\\\"name\\\":\\\"bnt\\\"},\\\"yxO8MwUcP\\\":{\\\"pattern\\\":\\\":yxO8MwUcP\\\",\\\"name\\\":\\\"features\\\"},\\\"OWsCSn4W0\\\":{\\\"pattern\\\":\\\":OWsCSn4W0\\\",\\\"name\\\":\\\"use-cases\\\"},\\\"GymxDPKUE\\\":{\\\"pattern\\\":\\\":GymxDPKUE\\\",\\\"name\\\":\\\"history\\\"}}\",\"framerIntrinsicWidth\":\"1280\",\"framerImmutableVariables\":\"true\",\"framerColorSyntax\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerTrackingIds\":\"[{\\\"id\\\":\\\"since-2017-home\\\",\\\"nodeId\\\":\\\"LthM17GGI\\\",\\\"type\\\":\\\"click\\\"},{\\\"id\\\":\\\"carbon-home\\\",\\\"nodeId\\\":\\\"kOrX7Ny_R\\\",\\\"type\\\":\\\"click\\\"},{\\\"id\\\":\\\"arb-home\\\",\\\"nodeId\\\":\\\"u8ahZDQK9\\\",\\\"type\\\":\\\"click\\\"},{\\\"id\\\":\\\"sim-home\\\",\\\"nodeId\\\":\\\"sr0fzGFKn\\\",\\\"type\\\":\\\"click\\\"},{\\\"id\\\":\\\"used-by-dexs-home\\\",\\\"nodeId\\\":\\\"hnDiluxMC\\\",\\\"type\\\":\\\"click\\\"},{\\\"id\\\":\\\"gov-home\\\"},{\\\"id\\\":\\\"blockchain-home\\\"},{\\\"id\\\":\\\"market-maker-home\\\"},{\\\"id\\\":\\\"token-project-home\\\"},{\\\"id\\\":\\\"history-home\\\"}]\",\"framerAutoSizeImages\":\"true\",\"framerResponsiveScreen\":\"\",\"framerComponentViewportWidth\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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A;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,mBAAsmsC,EAAE,UAAU,CAAC,KAAK;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,mBAAsmsC,CAAC,EAAE,SAAsB7B,EAAKxC,GAAM,CAAC,OAAO,OAAO,KAAK;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;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",
  "names": ["Embed", "type", "url", "html", "p", "EmbedURL", "EmbedHTML", "Instructions", "addPropertyControls", "ControlType", "props", "emptyStateStyle", "centerTextStyle", "onCanvas", "useIsOnCanvas", "state", "setState", "ye", "ue", "isLastEffect", "load", "response", "isBlocked", "message", "error", "ErrorMessage", "LoadingIndicator", "iframeStyle", "getSandbox", "result", "ref", "pe", "hasScript", "div", "executeScripts", "htmlStyle", "node", "script", "name", "value", "child", "containerStyles", "u", "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", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "SVG", "css", "Framerz9TBtY2ge", "withCSS", "z9TBtY2ge_default", "addPropertyControls", "ControlType", "addFonts", "CaretFonts", "getFonts", "z9TBtY2ge_default", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "hover", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "ww7aWucPE", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onMouseEnter1qgnfxk", "args", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "RichText2", "ComponentViewportProvider", "css", "FramerAZ7RpNVMa", "withCSS", "AZ7RpNVMa_default", "addPropertyControls", "ControlType", "addFonts", "FeatherFonts", "getFonts", "Icon", "enabledGestures", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "background", "height", "id", "link2", "newTab", "title", "tracking", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "qvJuO9zSn", "WOcEa42Qs", "X3HkRf87n", "AwbMZMg8v", "RheN1fVgD", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "LayoutGroup", "Link", "u", "RichText2", "ComponentViewportProvider", "SmartComponentScopedContainer", "css", "FramerwLS1bYwQi", "withCSS", "wLS1bYwQi_default", "addPropertyControls", "ControlType", "addFonts", "fontStore", "fonts", "css", "className", "NavigationFonts", "getFonts", "ArjIK97PF_default", "ChainIconFonts", "WJdCz4NYr_default", "FeatherFonts", "Icon", "ChainIcon5Fonts", "SemvyZIoc_default", "ButtonFonts", "pl_6F9wXc_default", "FeatureChipFonts", "h44OoCdZ3_default", "TickerFonts", "Ticker", "MotionDivWithOptimizedAppearEffect", "withOptimizedAppearEffect", "motion", "Button1Fonts", "AZ7RpNVMa_default", "CaretFonts", "z9TBtY2ge_default", "Button2Fonts", "wLS1bYwQi_default", "RichTextWithFX", "withFX", "RichText2", "EmbedFonts", "Embed", "ContainerWithOptimizedAppearEffect", "Container", "MotionDivWithFX", "FooterFonts", "LbLEfsNhF_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transition1", "animation", "animation1", "addImageAlt", "image", "alt", "animation2", "transition2", "animation3", "animation4", "transition3", "animation5", "animation6", "animation7", "animation8", "animation9", "Overlay", "children", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "animation10", "transition4", "transition5", "animation11", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "activeVariantCallback", "delay", "useActiveVariantCallback", "ww7aWucPEtxyyif", "overlay", "loadMore", "args", "onTaptxyyif", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "elementId", "useRouteElementId", "ref1", "elementId1", "ref2", "router", "useRouter", "isDisplayed2", "elementId2", "ref3", "ref4", "ref5", "ref6", "ref7", "elementId3", "ref8", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "ComponentViewportProvider", "PropertyOverrides2", "x", "Link", "getLoadingLazyAtYPosition", "Image2", "SVG", "ResolveLinks", "resolvedLinks", "l", "AnimatePresence", "Floating", "overlay1", "resolvedLinks1", "resolvedLinks2", "resolvedLinks3", "resolvedLinks4", "resolvedLinks5", "css", "FramerflOIYRy97", "withCSS", "flOIYRy97_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
