{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/I1DC9cTt2FcHsDUAaRxW/OobIpExjjda7YDjHO9YN/SVG.js", "ssg:https://framerusercontent.com/modules/CbyFIs9KoRhPjTsPTKcq/T3mL3ZilewULsoT60AnN/eMAX511LU.js", "ssg:https://framerusercontent.com/modules/pzULA9ZkLlnwDMEaxqRr/lzIzC8RVlkIvrYgswI2e/Hnr02ULNi.js", "ssg:https://framerusercontent.com/modules/vuYJjvBKWw39av0kGo34/z2CyEUwQik5Zo5R29o6x/NTBX0l6Io.js", "ssg:https://framerusercontent.com/modules/2lOPS4zsuDJesE30uDxq/xxsVP58LGeLjhCdKhA0k/yEmAo6nk7.js", "ssg:https://framerusercontent.com/modules/0wq0GoKSyiN9IFgFOkop/529iKgd5LYGUDw7liMv2/ScrollToggle.js", "ssg:https://framerusercontent.com/modules/KR3p09L6Yg5goiriyrHL/x9ol346919VLnshG1b6S/bYhiwO7QJ.js", "ssg:https://framerusercontent.com/modules/xqyuHHKjlTOswb6nVbNI/Ak8VZQzvZzyjFvrLkefz/FJcN2qQXX.js", "ssg:https://framerusercontent.com/modules/bgyYyk6LvAOobekRcn3N/8TF36jwMstpylxN0lQj9/Od8026J91.js", "ssg:https://framerusercontent.com/modules/sNIHMkiSOl9hxX8J7e4k/fCZHKxa2svSFt9mJojMz/setpHQJqg.js", "ssg:https://framerusercontent.com/modules/mW4o5Eps5syt806qXsuY/v6UUJYStOW0dhRyUzmgA/xAomRXpzG.js", "ssg:https://framerusercontent.com/modules/UzVVIwc5pjlQ5Bhu5hdM/knwH9zhp1CKTopxGUfhi/TJtdcnIgW.js"],
  "sourcesContent": ["import{jsx as _jsx}from\"react/jsx-runtime\";import{useState,useEffect}from\"react\";import{addPropertyControls,ControlType}from\"framer\";/**\n * @framerDisableUnlink\n *\n * @framerIntrinsicWidth 24\n * @framerIntrinsicHeight 24\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */function SVG(props){const[customSvgElement,setCustomSvgElement]=useState(null);useEffect(()=>{const svgContent=props.customSvgCode;processCustomSVGContent(svgContent);});const processCustomSVGContent=svgContent=>{const replacements=[[/width=\"[^\"]*\"/,'width=\"100%\"'],[/height=\"[^\"]*\"/,'height=\"100%\"']];const hasCustomStroke=svgContent.includes('stroke=\"');const hasCustomStrokeWidth=svgContent.includes('stroke-width=\"');const hasLineCap=svgContent.includes('stroke-linecap=\"');const hasLineJoin=svgContent.includes('stroke-linejoin=\"');if(svgContent.includes(\"<circle\")){// Find the circle element and update its fill attribute\nconst circleFillRegex=/<circle[^>]*fill=\"([^\"]*)\"/;const match=svgContent.match(circleFillRegex);if(match){// Update the fill attribute with the custom color\nconst updatedCircle=match[0].replace(match[1],props.customColor);svgContent=svgContent.replace(circleFillRegex,updatedCircle);}else{// If there is no fill attribute, add it with the custom color\nreplacements.push([/<circle/g,`<circle fill=\"${props.customColor}\"`]);}}if(hasCustomStroke){if(!hasLineCap){replacements.push([/<path/g,`<path stroke=\"${props.customColor}\"`]);}else{replacements.push([/<path/g,`<path stroke=\"${props.customColor}\" stroke-linecap=\"${props.lineCap}\"`]);}if(hasCustomStrokeWidth){replacements.push([/stroke-width=\"(?!0\\b)\\d+(\\.\\d+)?\"/g,`stroke-width=\"${props.customStrokeWidth}\"`]);}}else{replacements.push([/<path/g,`<path fill=\"${props.customColor}\"`]);}if(svgContent.includes('overflow=\"')){replacements.push([/overflow=\"[^\"]*\"/,`overflow=\"visible\"`]);}else{replacements.push([/<svg/,`<svg overflow=\"visible\"`]);}if(!hasLineJoin){replacements.push([/<path/g,`<path stroke-linejoin=\"${props.lineJoin}\"`]);}else{replacements.push([/stroke-linejoin=\"[^\"]*\"/,`stroke-linejoin=\"${props.lineJoin}\"`]);}replacements.forEach(([regex,replacement])=>{svgContent=svgContent.replace(regex,replacement);});setCustomSvgElement(svgContent);};const customContainerStyle={padding:`${props.customPadding}px`,display:\"flex\",flexDirection:\"column\",alignItems:\"center\",justifyContent:\"center\",overflow:\"visible\"};return /*#__PURE__*/_jsx(\"div\",{dangerouslySetInnerHTML:{__html:customSvgElement},style:customContainerStyle});}SVG.defaultProps={customSvgCode:`<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <g clip-path=\"url(#clip0_967_124)\"> <path d=\"M18 6.09674C18 6.0348 18.0246 5.97539 18.0684 5.93159L23.6013 0.398708C23.7484 0.251575 24 0.35578 24 0.563858V11.9033C24 11.9652 23.9754 12.0246 23.9316 12.0684L18 18V6.09674Z\" fill=\"white\"/> <path d=\"M6 18V6.56386C6 6.35578 5.74843 6.25158 5.60129 6.39871L0.0684074 11.9316C0.0246069 11.9754 0 12.0348 0 12.0967V23.7664C0 23.8954 0.104567 24 0.233557 24H11.9033C11.9652 24 12.0246 23.9754 12.0684 23.9316L18 18H6Z\" fill=\"white\"/> </g> <defs> <clipPath id=\"clip0_967_124\"> <rect width=\"24\" height=\"24\" fill=\"white\"/> </clipPath> </defs> </svg>`,customColor:\"#ffffff\",customPadding:0,customStrokeWidth:2,lineCap:\"butt\",lineJoin:\"miter\"};addPropertyControls(SVG,{customSvgCode:{type:ControlType.String,title:\"SVG Code\",displayTextArea:false},customColor:{type:ControlType.Color,title:\"Color\",defaultValue:\"#ffffff\"},customPadding:{type:ControlType.Number,title:\"Padding\",defaultValue:0,min:0,step:1,displayStepper:true,description:\"More components at [Framer University](https://frameruni.link/cc).\"},customStrokeWidth:{type:ControlType.Number,title:\"Stroke\",defaultValue:2,min:0,step:.1,displayStepper:true,hidden:props=>!props.customSvgCode.includes('stroke=\"')},lineCap:{type:ControlType.Enum,title:\"Line Cap\",options:[\"butt\",\"round\",\"square\"],optionTitles:[\"Butt\",\"Round\",\"Square\"],defaultValue:\"butt\",hidden:props=>!props.customSvgCode.includes('stroke=\"')},lineJoin:{type:ControlType.Enum,title:\"Line Join\",options:[\"round\",\"miter\",\"bevel\"],optionTitles:[\"Round\",\"Miter\",\"Bevel\"],defaultValue:\"miter\",hidden:props=>!props.customSvgCode.includes('stroke=\"')}});export default SVG;\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"SVG\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"24\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicWidth\":\"24\",\"framerDisableUnlink\":\"*\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./SVG.map", "// Generated by Framer (c563d2c)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,Link,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import SVG from\"https://framerusercontent.com/modules/I1DC9cTt2FcHsDUAaRxW/OobIpExjjda7YDjHO9YN/SVG.js\";const SVGFonts=getFonts(SVG);const enabledGestures={Bjx2_zxQl:{hover:true},DYxgkJlQB:{hover:true},Ftkwl8KrB:{hover:true},iisuRppiE:{hover:true},lrmcRZpKM:{hover:true},Q0eUCA0Dy:{hover:true},Sk5Gu91Ro:{hover:true},tz5iF1kHn:{hover:true},UkpOzrO_j:{hover:true},uYrIOXUhB:{hover:true},ybIX8v1ci:{hover:true},Z0xuvZuJ_:{hover:true},ZRJSAwbJC:{hover:true}};const cycleOrder=[\"iisuRppiE\",\"Sk5Gu91Ro\",\"Q0eUCA0Dy\",\"ZRJSAwbJC\",\"Ftkwl8KrB\",\"Z0xuvZuJ_\",\"uYrIOXUhB\",\"Bjx2_zxQl\",\"ybIX8v1ci\",\"tz5iF1kHn\",\"lrmcRZpKM\",\"DYxgkJlQB\",\"UkpOzrO_j\"];const serializationHash=\"framer-yk3LB\";const variantClassNames={Bjx2_zxQl:\"framer-v-tlnepw\",DYxgkJlQB:\"framer-v-1crdh83\",Ftkwl8KrB:\"framer-v-1tzykoy\",iisuRppiE:\"framer-v-11qgjlg\",lrmcRZpKM:\"framer-v-ri6lhk\",Q0eUCA0Dy:\"framer-v-1u150ym\",Sk5Gu91Ro:\"framer-v-28uo5d\",tz5iF1kHn:\"framer-v-1juh7hy\",UkpOzrO_j:\"framer-v-1d98xps\",uYrIOXUhB:\"framer-v-1wpsrdj\",ybIX8v1ci:\"framer-v-qtv6r8\",Z0xuvZuJ_:\"framer-v-1fznon3\",ZRJSAwbJC:\"framer-v-10cd8mb\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={delay:0,duration:.15,ease:[.12,.23,.5,1],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 humanReadableEnumMap={\"Space Around\":\"space-around\",\"Space Between\":\"space-between\",\"Space Evenly\":\"space-evenly\",Center:\"center\",End:\"flex-end\",Start:\"flex-start\"};const humanReadableVariantMap={\"Blue L: Icon\":\"Z0xuvZuJ_\",\"Blue L\":\"Ftkwl8KrB\",\"Blue M: Icon\":\"DYxgkJlQB\",\"Blue M\":\"lrmcRZpKM\",\"Primary L: Icon\":\"ZRJSAwbJC\",\"Primary L\":\"iisuRppiE\",\"Primary M: Icon\":\"Bjx2_zxQl\",\"Primary M\":\"uYrIOXUhB\",\"Secondary L: Icon\":\"Sk5Gu91Ro\",\"Secondary L\":\"Q0eUCA0Dy\",\"Secondary M: Icon Only\":\"UkpOzrO_j\",\"Secondary M: Icon\":\"tz5iF1kHn\",\"Secondary M\":\"ybIX8v1ci\"};const getProps=({click,distribute,height,icon,iconColor,id,link,stroke,text,width,...props})=>{return{...props,BL_hxI2b_:link??props.BL_hxI2b_,BnmH_z3oH:icon??props.BnmH_z3oH??'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\" height=\"12\" viewBox=\"0 0 12 12\" fill=\"none\">   <path d=\"M4.5 9L7.5 6L4.5 3\" stroke=\"white\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/> </svg>',GxuiU3lbe:stroke??props.GxuiU3lbe??1.25,I4KuTahqi:text??props.I4KuTahqi??\"Get Started\",q8NV5vffb:humanReadableEnumMap[distribute]??distribute??props.q8NV5vffb??\"center\",r3Wpubva0:click??props.r3Wpubva0,RSajvyivS:iconColor??props.RSajvyivS??\"var(--token-c4634c61-c453-49aa-834c-3d21e51f5eb0, rgb(163, 163, 163))\",variant:humanReadableVariantMap[props.variant]??props.variant??\"iisuRppiE\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,I4KuTahqi,BL_hxI2b_,q8NV5vffb,BnmH_z3oH,RSajvyivS,GxuiU3lbe,r3Wpubva0,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"iisuRppiE\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1mugfga=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(r3Wpubva0){const res=await r3Wpubva0(...args);if(res===false)return false;}});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const isDisplayed=()=>{if(gestureVariant===\"UkpOzrO_j-hover\")return false;if(baseVariant===\"UkpOzrO_j\")return false;return true;};const isDisplayed1=()=>{if([\"Sk5Gu91Ro-hover\",\"ZRJSAwbJC-hover\",\"Z0xuvZuJ_-hover\",\"Bjx2_zxQl-hover\",\"tz5iF1kHn-hover\",\"DYxgkJlQB-hover\",\"UkpOzrO_j-hover\"].includes(gestureVariant))return true;if([\"Sk5Gu91Ro\",\"ZRJSAwbJC\",\"Z0xuvZuJ_\",\"Bjx2_zxQl\",\"tz5iF1kHn\",\"DYxgkJlQB\",\"UkpOzrO_j\"].includes(baseVariant))return true;return false;};const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();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,{href:BL_hxI2b_,nodeId:\"iisuRppiE\",openInNewTab:false,children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(scopingClassNames,\"framer-11qgjlg\",className,classNames)} framer-yiae`,\"data-framer-name\":\"Primary L\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"iisuRppiE\",onTap:onTap1mugfga,ref:ref??ref1,style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgba(0, 0, 0, 0)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",\"--lvi846\":q8NV5vffb,backgroundColor:\"var(--token-986afb1c-84ad-46b2-a807-6bd407af3abe, rgb(250, 250, 250))\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100,...style},variants:{\"Bjx2_zxQl-hover\":{backgroundColor:\"var(--token-80197f60-5b03-4245-879a-f8f7bd718bb3, rgb(229, 229, 229))\"},\"DYxgkJlQB-hover\":{backgroundColor:\"var(--token-69936fcf-3f89-40fc-aade-adfd4349bb62, rgb(61, 130, 246))\"},\"Ftkwl8KrB-hover\":{backgroundColor:\"var(--token-69936fcf-3f89-40fc-aade-adfd4349bb62, rgb(61, 130, 246))\"},\"iisuRppiE-hover\":{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",backgroundColor:\"var(--token-80197f60-5b03-4245-879a-f8f7bd718bb3, rgb(229, 229, 229))\"},\"lrmcRZpKM-hover\":{backgroundColor:\"var(--token-69936fcf-3f89-40fc-aade-adfd4349bb62, rgb(61, 130, 246))\"},\"Q0eUCA0Dy-hover\":{backgroundColor:\"var(--token-c3261aba-f7cb-480a-88c7-9732b17547ca, rgb(23, 23, 23))\"},\"Sk5Gu91Ro-hover\":{backgroundColor:\"var(--token-c3261aba-f7cb-480a-88c7-9732b17547ca, rgb(23, 23, 23))\"},\"tz5iF1kHn-hover\":{backgroundColor:\"var(--token-c3261aba-f7cb-480a-88c7-9732b17547ca, rgb(23, 23, 23))\"},\"UkpOzrO_j-hover\":{backgroundColor:\"var(--token-c3261aba-f7cb-480a-88c7-9732b17547ca, rgb(23, 23, 23))\"},\"uYrIOXUhB-hover\":{backgroundColor:\"var(--token-80197f60-5b03-4245-879a-f8f7bd718bb3, rgb(229, 229, 229))\"},\"ybIX8v1ci-hover\":{backgroundColor:\"var(--token-c3261aba-f7cb-480a-88c7-9732b17547ca, rgb(23, 23, 23))\"},\"Z0xuvZuJ_-hover\":{backgroundColor:\"var(--token-69936fcf-3f89-40fc-aade-adfd4349bb62, rgb(61, 130, 246))\"},\"ZRJSAwbJC-hover\":{backgroundColor:\"var(--token-80197f60-5b03-4245-879a-f8f7bd718bb3, rgb(229, 229, 229))\"},Bjx2_zxQl:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",backgroundColor:\"var(--token-d095d4f4-b9c6-44d7-8496-68276b3d5054, rgb(255, 255, 255))\"},DYxgkJlQB:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",backgroundColor:\"var(--token-6fd8621c-3c6c-4a1a-8ded-e8cccc14a2a1, rgb(38, 99, 235))\"},Ftkwl8KrB:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",backgroundColor:\"var(--token-6fd8621c-3c6c-4a1a-8ded-e8cccc14a2a1, rgb(38, 99, 235))\"},lrmcRZpKM:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",backgroundColor:\"var(--token-6fd8621c-3c6c-4a1a-8ded-e8cccc14a2a1, rgb(38, 99, 235))\"},Q0eUCA0Dy:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-c577e02e-f43d-46dc-969d-cdb91fd83990, rgb(38, 38, 38))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-3b98b97f-17e0-41b1-8bc6-f8dae04475db, rgb(10, 10, 10))\"},Sk5Gu91Ro:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-c577e02e-f43d-46dc-969d-cdb91fd83990, rgb(38, 38, 38))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-3b98b97f-17e0-41b1-8bc6-f8dae04475db, rgb(10, 10, 10))\"},tz5iF1kHn:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-c577e02e-f43d-46dc-969d-cdb91fd83990, rgb(38, 38, 38))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-3b98b97f-17e0-41b1-8bc6-f8dae04475db, rgb(10, 10, 10))\"},UkpOzrO_j:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-c577e02e-f43d-46dc-969d-cdb91fd83990, rgb(38, 38, 38))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-3b98b97f-17e0-41b1-8bc6-f8dae04475db, rgb(10, 10, 10))\"},uYrIOXUhB:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",backgroundColor:\"var(--token-d095d4f4-b9c6-44d7-8496-68276b3d5054, rgb(255, 255, 255))\"},ybIX8v1ci:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-c577e02e-f43d-46dc-969d-cdb91fd83990, rgb(38, 38, 38))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-3b98b97f-17e0-41b1-8bc6-f8dae04475db, rgb(10, 10, 10))\"},Z0xuvZuJ_:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",backgroundColor:\"var(--token-6fd8621c-3c6c-4a1a-8ded-e8cccc14a2a1, rgb(38, 99, 235))\"},ZRJSAwbJC:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\"}},...addPropertyOverrides({\"Bjx2_zxQl-hover\":{\"data-framer-name\":undefined},\"DYxgkJlQB-hover\":{\"data-framer-name\":undefined},\"Ftkwl8KrB-hover\":{\"data-framer-name\":undefined},\"iisuRppiE-hover\":{\"data-framer-name\":undefined},\"lrmcRZpKM-hover\":{\"data-framer-name\":undefined},\"Q0eUCA0Dy-hover\":{\"data-framer-name\":undefined},\"Sk5Gu91Ro-hover\":{\"data-framer-name\":undefined},\"tz5iF1kHn-hover\":{\"data-framer-name\":undefined},\"UkpOzrO_j-hover\":{\"data-framer-name\":undefined},\"uYrIOXUhB-hover\":{\"data-framer-name\":undefined},\"ybIX8v1ci-hover\":{\"data-framer-name\":undefined},\"Z0xuvZuJ_-hover\":{\"data-framer-name\":undefined},\"ZRJSAwbJC-hover\":{\"data-framer-name\":undefined},Bjx2_zxQl:{\"data-framer-name\":\"Primary M: Icon\"},DYxgkJlQB:{\"data-framer-name\":\"Blue M: Icon\"},Ftkwl8KrB:{\"data-framer-name\":\"Blue L\"},lrmcRZpKM:{\"data-framer-name\":\"Blue M\"},Q0eUCA0Dy:{\"data-border\":true,\"data-framer-name\":\"Secondary L\"},Sk5Gu91Ro:{\"data-border\":true,\"data-framer-name\":\"Secondary L: Icon\"},tz5iF1kHn:{\"data-border\":true,\"data-framer-name\":\"Secondary M: Icon\"},UkpOzrO_j:{\"data-border\":true,\"data-framer-name\":\"Secondary M: Icon Only\"},uYrIOXUhB:{\"data-framer-name\":\"Primary M\"},ybIX8v1ci:{\"data-border\":true,\"data-framer-name\":\"Secondary M\"},Z0xuvZuJ_:{\"data-framer-name\":\"Blue L: Icon\"},ZRJSAwbJC:{\"data-framer-name\":\"Primary L: Icon\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-3b98b97f-17e0-41b1-8bc6-f8dae04475db, rgb(10, 10, 10)))\"},children:\"Get Started\"})}),className:\"framer-16eogto\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"hvrN21ygW\",style:{\"--extracted-r6o4lv\":\"var(--token-3b98b97f-17e0-41b1-8bc6-f8dae04475db, rgb(10, 10, 10))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:I4KuTahqi,variants:{\"Q0eUCA0Dy-hover\":{\"--extracted-r6o4lv\":\"var(--token-986afb1c-84ad-46b2-a807-6bd407af3abe, rgb(250, 250, 250))\"},\"Sk5Gu91Ro-hover\":{\"--extracted-r6o4lv\":\"var(--token-986afb1c-84ad-46b2-a807-6bd407af3abe, rgb(250, 250, 250))\"},\"tz5iF1kHn-hover\":{\"--extracted-r6o4lv\":\"var(--token-986afb1c-84ad-46b2-a807-6bd407af3abe, rgb(250, 250, 250))\"},\"ybIX8v1ci-hover\":{\"--extracted-r6o4lv\":\"var(--token-986afb1c-84ad-46b2-a807-6bd407af3abe, rgb(250, 250, 250))\"},DYxgkJlQB:{\"--extracted-r6o4lv\":\"var(--token-d095d4f4-b9c6-44d7-8496-68276b3d5054, rgb(255, 255, 255))\"},Ftkwl8KrB:{\"--extracted-r6o4lv\":\"var(--token-d095d4f4-b9c6-44d7-8496-68276b3d5054, rgb(255, 255, 255))\"},lrmcRZpKM:{\"--extracted-r6o4lv\":\"var(--token-d095d4f4-b9c6-44d7-8496-68276b3d5054, rgb(255, 255, 255))\"},Q0eUCA0Dy:{\"--extracted-r6o4lv\":\"var(--token-c4634c61-c453-49aa-834c-3d21e51f5eb0, rgb(163, 163, 163))\"},Sk5Gu91Ro:{\"--extracted-r6o4lv\":\"var(--token-c4634c61-c453-49aa-834c-3d21e51f5eb0, rgb(163, 163, 163))\"},tz5iF1kHn:{\"--extracted-r6o4lv\":\"var(--token-c4634c61-c453-49aa-834c-3d21e51f5eb0, rgb(163, 163, 163))\"},ybIX8v1ci:{\"--extracted-r6o4lv\":\"var(--token-c4634c61-c453-49aa-834c-3d21e51f5eb0, rgb(163, 163, 163))\"},Z0xuvZuJ_:{\"--extracted-r6o4lv\":\"var(--token-d095d4f4-b9c6-44d7-8496-68276b3d5054, rgb(255, 255, 255))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"Q0eUCA0Dy-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-986afb1c-84ad-46b2-a807-6bd407af3abe, rgb(250, 250, 250)))\"},children:\"Get Started\"})})},\"Sk5Gu91Ro-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-986afb1c-84ad-46b2-a807-6bd407af3abe, rgb(250, 250, 250)))\"},children:\"Get Started\"})})},\"tz5iF1kHn-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-986afb1c-84ad-46b2-a807-6bd407af3abe, rgb(250, 250, 250)))\"},children:\"Get Started\"})})},\"ybIX8v1ci-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-986afb1c-84ad-46b2-a807-6bd407af3abe, rgb(250, 250, 250)))\"},children:\"Get Started\"})})},Bjx2_zxQl:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-3b98b97f-17e0-41b1-8bc6-f8dae04475db, rgb(10, 10, 10)))\"},children:\"Get Started\"})})},DYxgkJlQB:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-d095d4f4-b9c6-44d7-8496-68276b3d5054, rgb(255, 255, 255)))\"},children:\"Get Started\"})})},Ftkwl8KrB:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-d095d4f4-b9c6-44d7-8496-68276b3d5054, rgb(255, 255, 255)))\"},children:\"Get Started\"})})},lrmcRZpKM:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-d095d4f4-b9c6-44d7-8496-68276b3d5054, rgb(255, 255, 255)))\"},children:\"Get Started\"})})},Q0eUCA0Dy:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c4634c61-c453-49aa-834c-3d21e51f5eb0, rgb(163, 163, 163)))\"},children:\"Get Started\"})})},Sk5Gu91Ro:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c4634c61-c453-49aa-834c-3d21e51f5eb0, rgb(163, 163, 163)))\"},children:\"Get Started\"})})},tz5iF1kHn:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c4634c61-c453-49aa-834c-3d21e51f5eb0, rgb(163, 163, 163)))\"},children:\"Get Started\"})})},uYrIOXUhB:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-3b98b97f-17e0-41b1-8bc6-f8dae04475db, rgb(10, 10, 10)))\"},children:\"Get Started\"})})},ybIX8v1ci:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c4634c61-c453-49aa-834c-3d21e51f5eb0, rgb(163, 163, 163)))\"},children:\"Get Started\"})})},Z0xuvZuJ_:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-d095d4f4-b9c6-44d7-8496-68276b3d5054, rgb(255, 255, 255)))\"},children:\"Get Started\"})})}},baseVariant,gestureVariant)}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-znv6zr-container\",layoutDependency:layoutDependency,layoutId:\"g224jB6L3-container\",style:{opacity:1},variants:{\"Bjx2_zxQl-hover\":{opacity:1},\"Sk5Gu91Ro-hover\":{opacity:1},\"tz5iF1kHn-hover\":{opacity:1},\"UkpOzrO_j-hover\":{opacity:1},\"Z0xuvZuJ_-hover\":{opacity:1},\"ZRJSAwbJC-hover\":{opacity:1},DYxgkJlQB:{opacity:1},tz5iF1kHn:{opacity:.5},UkpOzrO_j:{opacity:.5}},children:/*#__PURE__*/_jsx(SVG,{customColor:RSajvyivS,customPadding:0,customStrokeWidth:GxuiU3lbe,customSvgCode:BnmH_z3oH,height:\"100%\",id:\"g224jB6L3\",layoutId:\"g224jB6L3\",lineCap:\"round\",lineJoin:\"round\",style:{height:\"100%\",width:\"100%\"},width:\"100%\",...addPropertyOverrides({\"Sk5Gu91Ro-hover\":{customColor:\"var(--token-986afb1c-84ad-46b2-a807-6bd407af3abe, rgb(250, 250, 250))\"},Bjx2_zxQl:{customColor:\"var(--token-3b98b97f-17e0-41b1-8bc6-f8dae04475db, rgb(10, 10, 10))\"},DYxgkJlQB:{customColor:\"var(--token-d095d4f4-b9c6-44d7-8496-68276b3d5054, rgb(255, 255, 255))\"},tz5iF1kHn:{customColor:\"var(--token-986afb1c-84ad-46b2-a807-6bd407af3abe, rgb(250, 250, 250))\"},UkpOzrO_j:{customColor:\"var(--token-986afb1c-84ad-46b2-a807-6bd407af3abe, rgb(250, 250, 250))\"},Z0xuvZuJ_:{customColor:\"var(--token-d095d4f4-b9c6-44d7-8496-68276b3d5054, rgb(255, 255, 255))\"},ZRJSAwbJC:{customColor:\"var(--token-3b98b97f-17e0-41b1-8bc6-f8dae04475db, rgb(10, 10, 10))\"}},baseVariant,gestureVariant)})})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-yk3LB.framer-yiae, .framer-yk3LB .framer-yiae { display: block; }\",\".framer-yk3LB.framer-11qgjlg { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: var(--lvi846); padding: 12px 20px 12px 20px; position: relative; text-decoration: none; width: min-content; }\",\".framer-yk3LB .framer-16eogto { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre; width: auto; z-index: 2; }\",\".framer-yk3LB .framer-znv6zr-container { flex: none; height: 20px; position: relative; width: 20px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-yk3LB.framer-11qgjlg { gap: 0px; } .framer-yk3LB.framer-11qgjlg > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-yk3LB.framer-11qgjlg > :first-child { margin-left: 0px; } .framer-yk3LB.framer-11qgjlg > :last-child { margin-right: 0px; } }\",\".framer-yk3LB.framer-v-28uo5d.framer-11qgjlg, .framer-yk3LB.framer-v-10cd8mb.framer-11qgjlg, .framer-yk3LB.framer-v-1fznon3.framer-11qgjlg { gap: 6px; padding: 12px 12px 12px 20px; }\",\".framer-yk3LB.framer-v-28uo5d .framer-znv6zr-container, .framer-yk3LB.framer-v-10cd8mb .framer-znv6zr-container, .framer-yk3LB.framer-v-1fznon3 .framer-znv6zr-container, .framer-yk3LB.framer-v-tlnepw .framer-znv6zr-container, .framer-yk3LB.framer-v-1juh7hy .framer-znv6zr-container, .framer-yk3LB.framer-v-1crdh83 .framer-znv6zr-container { height: 16px; width: 16px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-yk3LB.framer-v-28uo5d.framer-11qgjlg { gap: 0px; } .framer-yk3LB.framer-v-28uo5d.framer-11qgjlg > * { margin: 0px; margin-left: calc(6px / 2); margin-right: calc(6px / 2); } .framer-yk3LB.framer-v-28uo5d.framer-11qgjlg > :first-child { margin-left: 0px; } .framer-yk3LB.framer-v-28uo5d.framer-11qgjlg > :last-child { margin-right: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-yk3LB.framer-v-10cd8mb.framer-11qgjlg { gap: 0px; } .framer-yk3LB.framer-v-10cd8mb.framer-11qgjlg > * { margin: 0px; margin-left: calc(6px / 2); margin-right: calc(6px / 2); } .framer-yk3LB.framer-v-10cd8mb.framer-11qgjlg > :first-child { margin-left: 0px; } .framer-yk3LB.framer-v-10cd8mb.framer-11qgjlg > :last-child { margin-right: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-yk3LB.framer-v-1fznon3.framer-11qgjlg { gap: 0px; } .framer-yk3LB.framer-v-1fznon3.framer-11qgjlg > * { margin: 0px; margin-left: calc(6px / 2); margin-right: calc(6px / 2); } .framer-yk3LB.framer-v-1fznon3.framer-11qgjlg > :first-child { margin-left: 0px; } .framer-yk3LB.framer-v-1fznon3.framer-11qgjlg > :last-child { margin-right: 0px; } }\",\".framer-yk3LB.framer-v-1wpsrdj.framer-11qgjlg, .framer-yk3LB.framer-v-qtv6r8.framer-11qgjlg, .framer-yk3LB.framer-v-ri6lhk.framer-11qgjlg { padding: 10px 20px 10px 20px; }\",\".framer-yk3LB.framer-v-tlnepw.framer-11qgjlg, .framer-yk3LB.framer-v-1juh7hy.framer-11qgjlg, .framer-yk3LB.framer-v-1crdh83.framer-11qgjlg { gap: 6px; padding: 10px 14px 10px 20px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-yk3LB.framer-v-tlnepw.framer-11qgjlg { gap: 0px; } .framer-yk3LB.framer-v-tlnepw.framer-11qgjlg > * { margin: 0px; margin-left: calc(6px / 2); margin-right: calc(6px / 2); } .framer-yk3LB.framer-v-tlnepw.framer-11qgjlg > :first-child { margin-left: 0px; } .framer-yk3LB.framer-v-tlnepw.framer-11qgjlg > :last-child { margin-right: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-yk3LB.framer-v-1juh7hy.framer-11qgjlg { gap: 0px; } .framer-yk3LB.framer-v-1juh7hy.framer-11qgjlg > * { margin: 0px; margin-left: calc(6px / 2); margin-right: calc(6px / 2); } .framer-yk3LB.framer-v-1juh7hy.framer-11qgjlg > :first-child { margin-left: 0px; } .framer-yk3LB.framer-v-1juh7hy.framer-11qgjlg > :last-child { margin-right: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-yk3LB.framer-v-1crdh83.framer-11qgjlg { gap: 0px; } .framer-yk3LB.framer-v-1crdh83.framer-11qgjlg > * { margin: 0px; margin-left: calc(6px / 2); margin-right: calc(6px / 2); } .framer-yk3LB.framer-v-1crdh83.framer-11qgjlg > :first-child { margin-left: 0px; } .framer-yk3LB.framer-v-1crdh83.framer-11qgjlg > :last-child { margin-right: 0px; } }\",\".framer-yk3LB.framer-v-1d98xps.framer-11qgjlg { gap: 6px; height: 40px; padding: 10px 0px 10px 0px; width: 40px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-yk3LB.framer-v-1d98xps.framer-11qgjlg { gap: 0px; } .framer-yk3LB.framer-v-1d98xps.framer-11qgjlg > * { margin: 0px; margin-left: calc(6px / 2); margin-right: calc(6px / 2); } .framer-yk3LB.framer-v-1d98xps.framer-11qgjlg > :first-child { margin-left: 0px; } .framer-yk3LB.framer-v-1d98xps.framer-11qgjlg > :last-child { margin-right: 0px; } }\",'.framer-yk3LB[data-border=\"true\"]::after, .framer-yk3LB [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 48\n * @framerIntrinsicWidth 127\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"Sk5Gu91Ro\":{\"layout\":[\"auto\",\"auto\"]},\"Q0eUCA0Dy\":{\"layout\":[\"auto\",\"auto\"]},\"ZRJSAwbJC\":{\"layout\":[\"auto\",\"auto\"]},\"Ftkwl8KrB\":{\"layout\":[\"auto\",\"auto\"]},\"Z0xuvZuJ_\":{\"layout\":[\"auto\",\"auto\"]},\"uYrIOXUhB\":{\"layout\":[\"auto\",\"auto\"]},\"Bjx2_zxQl\":{\"layout\":[\"auto\",\"auto\"]},\"ybIX8v1ci\":{\"layout\":[\"auto\",\"auto\"]},\"tz5iF1kHn\":{\"layout\":[\"auto\",\"auto\"]},\"lrmcRZpKM\":{\"layout\":[\"auto\",\"auto\"]},\"DYxgkJlQB\":{\"layout\":[\"auto\",\"auto\"]},\"UkpOzrO_j\":{\"layout\":[\"fixed\",\"fixed\"]},\"zXynrtG1K\":{\"layout\":[\"auto\",\"auto\"]},\"lgUOJcmt9\":{\"layout\":[\"auto\",\"auto\"]},\"kvxyJ0RJY\":{\"layout\":[\"auto\",\"auto\"]},\"gXRt1Hpl8\":{\"layout\":[\"auto\",\"auto\"]},\"xrNT9ml0k\":{\"layout\":[\"auto\",\"auto\"]},\"TgSiynH_s\":{\"layout\":[\"auto\",\"auto\"]},\"N3SH_znF8\":{\"layout\":[\"auto\",\"auto\"]},\"Nfo5ok214\":{\"layout\":[\"auto\",\"auto\"]},\"pyibDlkNx\":{\"layout\":[\"auto\",\"auto\"]},\"vjJO_gHJt\":{\"layout\":[\"auto\",\"auto\"]},\"kEUYfym6d\":{\"layout\":[\"auto\",\"auto\"]},\"UsfpTzMA_\":{\"layout\":[\"auto\",\"auto\"]},\"cLBXdtAI8\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"I4KuTahqi\":\"text\",\"BL_hxI2b_\":\"link\",\"q8NV5vffb\":\"distribute\",\"BnmH_z3oH\":\"icon\",\"RSajvyivS\":\"iconColor\",\"GxuiU3lbe\":\"stroke\",\"r3Wpubva0\":\"click\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramereMAX511LU=withCSS(Component,css,\"framer-yk3LB\");export default FramereMAX511LU;FramereMAX511LU.displayName=\"Buttons / Button\";FramereMAX511LU.defaultProps={height:48,width:127};addPropertyControls(FramereMAX511LU,{variant:{options:[\"iisuRppiE\",\"Sk5Gu91Ro\",\"Q0eUCA0Dy\",\"ZRJSAwbJC\",\"Ftkwl8KrB\",\"Z0xuvZuJ_\",\"uYrIOXUhB\",\"Bjx2_zxQl\",\"ybIX8v1ci\",\"tz5iF1kHn\",\"lrmcRZpKM\",\"DYxgkJlQB\",\"UkpOzrO_j\"],optionTitles:[\"Primary L\",\"Secondary L: Icon\",\"Secondary L\",\"Primary L: Icon\",\"Blue L\",\"Blue L: Icon\",\"Primary M\",\"Primary M: Icon\",\"Secondary M\",\"Secondary M: Icon\",\"Blue M\",\"Blue M: Icon\",\"Secondary M: Icon Only\"],title:\"Variant\",type:ControlType.Enum},I4KuTahqi:{defaultValue:\"Get Started\",displayTextArea:false,title:\"Text\",type:ControlType.String},BL_hxI2b_:{title:\"Link\",type:ControlType.Link},q8NV5vffb:{defaultValue:\"center\",options:[\"flex-start\",\"center\",\"flex-end\",\"space-between\",\"space-around\",\"space-evenly\"],optionTitles:[\"Start\",\"Center\",\"End\",\"Space Between\",\"Space Around\",\"Space Evenly\"],title:\"Distribute\",type:ControlType.Enum},BnmH_z3oH:{defaultValue:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\" height=\"12\" viewBox=\"0 0 12 12\" fill=\"none\">   <path d=\"M4.5 9L7.5 6L4.5 3\" stroke=\"white\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/> </svg>',displayTextArea:false,title:\"Icon\",type:ControlType.String},RSajvyivS:{defaultValue:'var(--token-c4634c61-c453-49aa-834c-3d21e51f5eb0, rgb(163, 163, 163)) /* {\"name\":\"Gray/400\"} */',title:\"Icon Color\",type:ControlType.Color},GxuiU3lbe:{defaultValue:1.25,displayStepper:true,min:0,step:.1,title:\"Stroke\",type:ControlType.Number},r3Wpubva0:{title:\"Click\",type:ControlType.EventHandler}});addFonts(FramereMAX511LU,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5A3Ce6C9YYmCjpQx9M4inSaKU.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/Qx95Xyt0Ka3SGhinnbXIGpEIyP4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/6mJuEAguuIuMog10gGvH5d3cl8.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/xYYWaj7wCU5zSQH0eXvSaS19wo.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/otTaNuNpVK4RbdlT7zDDdKvQBA.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/d3tHnaQIAeqiE5hGcRw4mmgWYU.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/DolVirEGb34pEXEp8t8FQBSK4.woff2\",weight:\"500\"}]},...SVGFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramereMAX511LU\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"Sk5Gu91Ro\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"Q0eUCA0Dy\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"ZRJSAwbJC\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"Ftkwl8KrB\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"Z0xuvZuJ_\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"uYrIOXUhB\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"Bjx2_zxQl\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"ybIX8v1ci\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"tz5iF1kHn\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"lrmcRZpKM\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"DYxgkJlQB\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"UkpOzrO_j\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"zXynrtG1K\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"lgUOJcmt9\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"kvxyJ0RJY\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"gXRt1Hpl8\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"xrNT9ml0k\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"TgSiynH_s\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"N3SH_znF8\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"Nfo5ok214\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"pyibDlkNx\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"vjJO_gHJt\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"kEUYfym6d\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"UsfpTzMA_\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"cLBXdtAI8\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerVariables\":\"{\\\"I4KuTahqi\\\":\\\"text\\\",\\\"BL_hxI2b_\\\":\\\"link\\\",\\\"q8NV5vffb\\\":\\\"distribute\\\",\\\"BnmH_z3oH\\\":\\\"icon\\\",\\\"RSajvyivS\\\":\\\"iconColor\\\",\\\"GxuiU3lbe\\\":\\\"stroke\\\",\\\"r3Wpubva0\\\":\\\"click\\\"}\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"48\",\"framerIntrinsicWidth\":\"127\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./eMAX511LU.map", "// Generated by Framer (ddd30d5)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"Inter\",\"Inter-Bold\",\"Inter-BoldItalic\",\"Inter-Italic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/H89BbHkbHDzlxZzxi8uPzTsp90.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/u6gJwDuwB143kpNK1T1MDKDWkMc.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/43sJ6MfOPh1LCJt46OvyDuSbA6o.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/wccHG0r4gBDAIRhfHiOlq6oEkqw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/WZ367JPwf9bRW6LdTHN8rXgSjw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/QxmhnWTzLtyjIiZcfaLIJ8EFBXU.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/2A4Xx7CngadFGlVV4xrO06OBHY.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/CfMzU8w2e7tHgF4T4rATMPuWosA.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/867QObYax8ANsfX4TGEVU9YiCM.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Oyn2ZbENFdnW7mt2Lzjk1h9Zb9k.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/cdAe8hgZ1cMyLu9g005pAW3xMo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/DOfvtmE1UplCq161m6Hj8CSQYg.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vFzuJY0c65av44uhEKB6vyjFMg.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/tKtBcDnBMevsEEJKdNGhhkLzYo.woff2\",weight:\"400\"}]}];export const css=['.framer-Z9S1i .framer-styles-preset-1qk663m:not(.rich-text-wrapper), .framer-Z9S1i .framer-styles-preset-1qk663m.rich-text-wrapper p { --framer-font-family: \"Inter\", sans-serif; --framer-font-family-bold: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 14px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: 0em; --framer-line-height: 20px; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: var(--token-986afb1c-84ad-46b2-a807-6bd407af3abe, #fafafa); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }'];export const className=\"framer-Z9S1i\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (38f2e7f)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"Inter-Medium\",\"Inter-Bold\",\"Inter-BoldItalic\",\"Inter-MediumItalic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5A3Ce6C9YYmCjpQx9M4inSaKU.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/Qx95Xyt0Ka3SGhinnbXIGpEIyP4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/6mJuEAguuIuMog10gGvH5d3cl8.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/xYYWaj7wCU5zSQH0eXvSaS19wo.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/otTaNuNpVK4RbdlT7zDDdKvQBA.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/d3tHnaQIAeqiE5hGcRw4mmgWYU.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/DolVirEGb34pEXEp8t8FQBSK4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/H89BbHkbHDzlxZzxi8uPzTsp90.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/u6gJwDuwB143kpNK1T1MDKDWkMc.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/43sJ6MfOPh1LCJt46OvyDuSbA6o.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/wccHG0r4gBDAIRhfHiOlq6oEkqw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/WZ367JPwf9bRW6LdTHN8rXgSjw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/QxmhnWTzLtyjIiZcfaLIJ8EFBXU.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/2A4Xx7CngadFGlVV4xrO06OBHY.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/khkJkwSL66WFg8SX6Wa726c.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/0E7IMbDzcGABpBwwqNEt60wU0w.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/NTJ0nQgIF0gcDelS14zQ9NR9Q.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/QrcNhgEPfRl0LS8qz5Ln8olanl8.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JEXmejW8mXOYMtt0hyRg811kHac.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/ksvR4VsLksjpSwnC2fPgHRNMw.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/uy9s0iWuxiNnVt8EpTI3gzohpwo.woff2\",weight:\"500\"}]}];export const css=['.framer-swlHP .framer-styles-preset-npxqny:not(.rich-text-wrapper), .framer-swlHP .framer-styles-preset-npxqny.rich-text-wrapper p { --framer-font-family: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 14px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 500; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 500; --framer-letter-spacing: 0em; --framer-line-height: 20px; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: var(--token-d095d4f4-b9c6-44d7-8496-68276b3d5054, #ffffff); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }'];export const className=\"framer-swlHP\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (2fef4c5)\nimport{fontStore}from\"framer\";fontStore.loadFonts([]);export const fonts=[{explicitInter:true,fonts:[]}];export const css=['.framer-uZqBG .framer-styles-preset-yplq5h:not(.rich-text-wrapper), .framer-uZqBG .framer-styles-preset-yplq5h.rich-text-wrapper a { --framer-link-current-text-decoration: none; --framer-link-hover-text-color: var(--token-986afb1c-84ad-46b2-a807-6bd407af3abe, #fafafa) /* {\"name\":\"Gray/50\"} */; --framer-link-hover-text-decoration: underline; --framer-link-text-color: var(--token-cd19a8dc-4962-414b-82de-98ea9601eb32, #d4d4d4); --framer-link-text-decoration: none; transition: color 0.15s cubic-bezier(0.12, 0.23, 0.5, 1) 0s; }'];export const className=\"framer-uZqBG\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{jsx as _jsx}from\"react/jsx-runtime\";import{useRef,useEffect}from\"react\";export function withToggleScroll(Component){return props=>{const bodyElement=useRef(null);useEffect(()=>{var _document;bodyElement.current=(_document=document)===null||_document===void 0?void 0:_document.getElementsByTagName(\"body\")[0];bodyElement.current.style.overflow=\"hidden scroll\";},[]);const clickEvent=()=>{if(bodyElement.current.style.overflow===\"hidden\"){bodyElement.current.style.overflow=\"hidden scroll\";}else{bodyElement.current.style.overflow=\"hidden\";}};return /*#__PURE__*/_jsx(Component,{...props,onTap:clickEvent});};}\nexport const __FramerMetadata__ = {\"exports\":{\"withToggleScroll\":{\"type\":\"reactHoc\",\"name\":\"withToggleScroll\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./ScrollToggle.map", "// Generated by Framer (83b8097)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/vuYJjvBKWw39av0kGo34/z2CyEUwQik5Zo5R29o6x/NTBX0l6Io.js\";const enabledGestures={xNFM592PV:{hover:true}};const cycleOrder=[\"xNFM592PV\",\"I0Z7swbBW\"];const serializationHash=\"framer-XcesS\";const variantClassNames={I0Z7swbBW:\"framer-v-2czza5\",xNFM592PV:\"framer-v-6cmprs\"};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={bounce:.2,delay:0,duration:.4,type:\"spring\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Default:\"xNFM592PV\",Mobile:\"I0Z7swbBW\"};const getProps=({description,height,id,image,link,title,width,...props})=>{var _ref,_ref1,_humanReadableVariantMap_props_variant,_ref2,_ref3;return{...props,DZKmBZ71m:link!==null&&link!==void 0?link:props.DZKmBZ71m,f_OWzkWPM:(_ref=description!==null&&description!==void 0?description:props.f_OWzkWPM)!==null&&_ref!==void 0?_ref:\"Onboard, authenticate and manage users\",sEqIccMsb:(_ref1=image!==null&&image!==void 0?image:props.sEqIccMsb)!==null&&_ref1!==void 0?_ref1:{src:\"https://framerusercontent.com/images/YDgfiQR4D0XR23KHli0hzYlKsY.png\"},variant:(_ref2=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref2!==void 0?_ref2:\"xNFM592PV\",x7ezT7rx8:(_ref3=title!==null&&title!==void 0?title:props.x7ezT7rx8)!==null&&_ref3!==void 0?_ref3:\"Connect\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,x7ezT7rx8,f_OWzkWPM,DZKmBZ71m,sEqIccMsb,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"xNFM592PV\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"I0Z7swbBW\")return false;return true;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:DZKmBZ71m,nodeId:\"xNFM592PV\",openInNewTab:false,children:/*#__PURE__*/_jsx(motion.a,{...restProps,...gestureHandlers,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-6cmprs\",className,classNames)} framer-wg4a46`,\"data-framer-name\":\"Default\",layoutDependency:layoutDependency,layoutId:\"xNFM592PV\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,...style},...addPropertyOverrides({\"xNFM592PV-hover\":{\"data-framer-name\":undefined},I0Z7swbBW:{\"data-framer-name\":\"Mobile\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-flzjva\",layoutDependency:layoutDependency,layoutId:\"Ipha2lmmN\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ubpzgo\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"sjQ7o48r3\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-c577e02e-f43d-46dc-969d-cdb91fd83990, rgb(38, 38, 38))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-f596dd75-4366-457f-a18a-6f599542eefd, rgb(0, 0, 0))\",borderBottomLeftRadius:6,borderBottomRightRadius:6,borderTopLeftRadius:6,borderTopRightRadius:6},variants:{\"xNFM592PV-hover\":{backgroundColor:\"var(--token-c3261aba-f7cb-480a-88c7-9732b17547ca, rgb(15, 15, 15))\"},I0Z7swbBW:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(12+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||62)-24-182)/2)+75+0+6),sizes:\"20px\",...toResponsiveImage(sEqIccMsb),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-1vg2uc0\",layoutDependency:layoutDependency,layoutId:\"tG6MigmbN\",...addPropertyOverrides({I0Z7swbBW:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(12+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||48)-24-120)/2)+52+0+-2),sizes:\"20px\",...toResponsiveImage(sEqIccMsb),...{positionX:\"center\",positionY:\"center\"}}}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1a06hld\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"GX1Fja2Vp\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1etuv7b\",\"data-framer-name\":\"Text\",layoutDependency:layoutDependency,layoutId:\"DEravAgnS\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-npxqny\",\"data-styles-preset\":\"NTBX0l6Io\",children:\"Connect\"})}),className:\"framer-yp09q5\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"RsKhhMYUk\",style:{\"--framer-paragraph-spacing\":\"0px\"},text:x7ezT7rx8,variants:{I0Z7swbBW:{\"--extracted-r6o4lv\":\"var(--token-c4634c61-c453-49aa-834c-3d21e51f5eb0, rgb(163, 163, 163))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({I0Z7swbBW:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c4634c61-c453-49aa-834c-3d21e51f5eb0, rgb(163, 163, 163)))\"},children:\"Connect\"})}),fonts:[\"Inter-Medium\"]}},baseVariant,gestureVariant)}),isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"16px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c4634c61-c453-49aa-834c-3d21e51f5eb0, rgb(163, 163, 163)))\"},children:\"Onboard, authenticate and manage users\"})}),className:\"framer-1legyuc\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"dy8Ziwaoc\",style:{\"--extracted-r6o4lv\":\"var(--token-c4634c61-c453-49aa-834c-3d21e51f5eb0, rgb(163, 163, 163))\",\"--framer-paragraph-spacing\":\"0px\"},text:f_OWzkWPM,variants:{\"xNFM592PV-hover\":{\"--extracted-r6o4lv\":\"var(--token-986afb1c-84ad-46b2-a807-6bd407af3abe, rgb(250, 250, 250))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"xNFM592PV-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"16px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-986afb1c-84ad-46b2-a807-6bd407af3abe, rgb(250, 250, 250)))\"},children:\"Onboard, authenticate and manage users\"})})}},baseVariant,gestureVariant)})]})})]})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-XcesS.framer-wg4a46, .framer-XcesS .framer-wg4a46 { display: block; }\",\".framer-XcesS.framer-6cmprs { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 12px; position: relative; text-decoration: none; width: 332px; will-change: var(--framer-will-change-override, transform); }\",\".framer-XcesS .framer-flzjva { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-XcesS .framer-1ubpzgo { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 32px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 32px; will-change: var(--framer-will-change-override, transform); }\",\".framer-XcesS .framer-1vg2uc0 { flex: none; height: 20px; overflow: hidden; position: relative; width: 20px; }\",\".framer-XcesS .framer-1a06hld { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 2px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-XcesS .framer-1etuv7b { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 2px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-XcesS .framer-yp09q5, .framer-XcesS .framer-1legyuc { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-XcesS.framer-6cmprs, .framer-XcesS .framer-flzjva, .framer-XcesS .framer-1ubpzgo, .framer-XcesS .framer-1a06hld, .framer-XcesS .framer-1etuv7b { gap: 0px; } .framer-XcesS.framer-6cmprs > *, .framer-XcesS .framer-flzjva > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } .framer-XcesS.framer-6cmprs > :first-child, .framer-XcesS .framer-flzjva > :first-child { margin-left: 0px; } .framer-XcesS.framer-6cmprs > :last-child, .framer-XcesS .framer-flzjva > :last-child { margin-right: 0px; } .framer-XcesS .framer-1ubpzgo > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-XcesS .framer-1ubpzgo > :first-child, .framer-XcesS .framer-1a06hld > :first-child, .framer-XcesS .framer-1etuv7b > :first-child { margin-top: 0px; } .framer-XcesS .framer-1ubpzgo > :last-child, .framer-XcesS .framer-1a06hld > :last-child, .framer-XcesS .framer-1etuv7b > :last-child { margin-bottom: 0px; } .framer-XcesS .framer-1a06hld > *, .framer-XcesS .framer-1etuv7b > * { margin: 0px; margin-bottom: calc(2px / 2); margin-top: calc(2px / 2); } }\",\".framer-XcesS.framer-v-2czza5.framer-6cmprs { cursor: unset; height: 48px; }\",\".framer-XcesS.framer-v-2czza5 .framer-1ubpzgo { height: 16px; width: 16px; }\",...sharedStyle.css,'.framer-XcesS[data-border=\"true\"]::after, .framer-XcesS [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 62\n * @framerIntrinsicWidth 332\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"I0Z7swbBW\":{\"layout\":[\"fixed\",\"fixed\"]},\"twCjmx39u\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"x7ezT7rx8\":\"title\",\"f_OWzkWPM\":\"description\",\"DZKmBZ71m\":\"link\",\"sEqIccMsb\":\"image\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerbYhiwO7QJ=withCSS(Component,css,\"framer-XcesS\");export default FramerbYhiwO7QJ;FramerbYhiwO7QJ.displayName=\"Navigation / Navigation Dropdown Item\";FramerbYhiwO7QJ.defaultProps={height:62,width:332};addPropertyControls(FramerbYhiwO7QJ,{variant:{options:[\"xNFM592PV\",\"I0Z7swbBW\"],optionTitles:[\"Default\",\"Mobile\"],title:\"Variant\",type:ControlType.Enum},x7ezT7rx8:{defaultValue:\"Connect\",displayTextArea:false,title:\"Title\",type:ControlType.String},f_OWzkWPM:{defaultValue:\"Onboard, authenticate and manage users\",displayTextArea:false,title:\"Description\",type:ControlType.String},DZKmBZ71m:{title:\"Link\",type:ControlType.Link},sEqIccMsb:{__defaultAssetReference:\"data:framer/asset-reference,YDgfiQR4D0XR23KHli0hzYlKsY.png?originalFilename=icon-sign-in.png&preferredSize=auto\",title:\"Image\",type:ControlType.ResponsiveImage}});addFonts(FramerbYhiwO7QJ,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5A3Ce6C9YYmCjpQx9M4inSaKU.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/Qx95Xyt0Ka3SGhinnbXIGpEIyP4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/6mJuEAguuIuMog10gGvH5d3cl8.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/xYYWaj7wCU5zSQH0eXvSaS19wo.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/otTaNuNpVK4RbdlT7zDDdKvQBA.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/d3tHnaQIAeqiE5hGcRw4mmgWYU.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/DolVirEGb34pEXEp8t8FQBSK4.woff2\",weight:\"500\"}]},...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerbYhiwO7QJ\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"62\",\"framerIntrinsicWidth\":\"332\",\"framerDisplayContentsDiv\":\"false\",\"framerVariables\":\"{\\\"x7ezT7rx8\\\":\\\"title\\\",\\\"f_OWzkWPM\\\":\\\"description\\\",\\\"DZKmBZ71m\\\":\\\"link\\\",\\\"sEqIccMsb\\\":\\\"image\\\"}\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"I0Z7swbBW\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"twCjmx39u\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./bYhiwO7QJ.map", "// Generated by Framer (cf4c6d7)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,ResolveLinks,RichText,SmartComponentScopedContainer,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useRouter,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import SVG from\"https://framerusercontent.com/modules/I1DC9cTt2FcHsDUAaRxW/OobIpExjjda7YDjHO9YN/SVG.js\";import NavigationNavigationDropdownItem from\"https://framerusercontent.com/modules/KR3p09L6Yg5goiriyrHL/x9ol346919VLnshG1b6S/bYhiwO7QJ.js\";const NavigationNavigationDropdownItemFonts=getFonts(NavigationNavigationDropdownItem);const SVGFonts=getFonts(SVG);const cycleOrder=[\"bH2emI93a\",\"ScahxRD97\",\"kLcJZnmEd\",\"Nz2AbCewU\",\"dez9JJdxV\",\"rR2_PuvFN\",\"XRZmrqXWr\",\"Nn65t9o0Z\",\"R2o9ed1nb\",\"Atz5daY8g\",\"T8sMIMJ9w\",\"vNbhnXS57\",\"LAig6L3qM\",\"e3yhbEX_d\",\"jqryaPGGn\",\"xzgIV8Sif\"];const serializationHash=\"framer-OqVmN\";const variantClassNames={Atz5daY8g:\"framer-v-q38cf6\",bH2emI93a:\"framer-v-uk38wi\",dez9JJdxV:\"framer-v-stlnfj\",e3yhbEX_d:\"framer-v-qr82pp\",jqryaPGGn:\"framer-v-17qx3ra\",kLcJZnmEd:\"framer-v-zjrthp\",LAig6L3qM:\"framer-v-1a5r6r6\",Nn65t9o0Z:\"framer-v-1hhfutz\",Nz2AbCewU:\"framer-v-rg7b9k\",R2o9ed1nb:\"framer-v-l4d7s2\",rR2_PuvFN:\"framer-v-huml0j\",ScahxRD97:\"framer-v-mfldsd\",T8sMIMJ9w:\"framer-v-1ngqe30\",vNbhnXS57:\"framer-v-12ztrlz\",XRZmrqXWr:\"framer-v-1100gup\",xzgIV8Sif:\"framer-v-solkdp\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};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 humanReadableVariantMap={\"Desktop: Company\":\"kLcJZnmEd\",\"Desktop: Developer\":\"Nz2AbCewU\",\"Desktop: Products\":\"bH2emI93a\",\"Desktop: Solutions\":\"ScahxRD97\",\"Mobile: Company Collapsed\":\"Atz5daY8g\",\"Mobile: Company Expanded\":\"XRZmrqXWr\",\"Mobile: Developers - Dev Tools Collapsed\":\"jqryaPGGn\",\"Mobile: Developers - Dev Tools Expanded\":\"vNbhnXS57\",\"Mobile: Developers - Resources Collapsed\":\"e3yhbEX_d\",\"Mobile: Developers - Resources Expanded\":\"T8sMIMJ9w\",\"Mobile: Developers - SDKs Collapsed\":\"xzgIV8Sif\",\"Mobile: Developers - SDKS Expanded\":\"LAig6L3qM\",\"Mobile: Products Collapsed\":\"Nn65t9o0Z\",\"Mobile: Products Expanded\":\"dez9JJdxV\",\"Mobile: Solutions Collapsed\":\"R2o9ed1nb\",\"Mobile: Solutions Expanded\":\"rR2_PuvFN\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"bH2emI93a\"};};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,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"bH2emI93a\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1geafuf=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"dez9JJdxV\");});const onTap13ae4zz=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"rR2_PuvFN\");});const onTap1do3b0p=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"XRZmrqXWr\");});const onTapdxuk8t=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"T8sMIMJ9w\");});const onTap7z0szf=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"vNbhnXS57\");});const onTap1asgkxe=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"LAig6L3qM\");});const onTapzhqlim=activeVariantCallback(async(...args)=>{setVariant(\"Nn65t9o0Z\");});const onTap10o7lfq=activeVariantCallback(async(...args)=>{setVariant(\"e3yhbEX_d\");});const onTapd1asq2=activeVariantCallback(async(...args)=>{setVariant(\"xzgIV8Sif\");});const onTap15te8ni=activeVariantCallback(async(...args)=>{setVariant(\"R2o9ed1nb\");});const onTapeylbgt=activeVariantCallback(async(...args)=>{setVariant(\"jqryaPGGn\");});const onTap1gcbvu9=activeVariantCallback(async(...args)=>{setVariant(\"Atz5daY8g\");});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if([\"Nn65t9o0Z\",\"R2o9ed1nb\",\"Atz5daY8g\",\"vNbhnXS57\",\"LAig6L3qM\",\"e3yhbEX_d\",\"jqryaPGGn\",\"xzgIV8Sif\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if([\"ScahxRD97\",\"kLcJZnmEd\",\"Nz2AbCewU\",\"rR2_PuvFN\",\"XRZmrqXWr\",\"T8sMIMJ9w\"].includes(baseVariant))return false;return true;};const router=useRouter();const isDisplayed2=()=>{if([\"kLcJZnmEd\",\"Nz2AbCewU\",\"rR2_PuvFN\",\"XRZmrqXWr\",\"T8sMIMJ9w\"].includes(baseVariant))return false;return true;};const isDisplayed3=()=>{if([\"ScahxRD97\",\"kLcJZnmEd\",\"Nz2AbCewU\",\"rR2_PuvFN\",\"XRZmrqXWr\"].includes(baseVariant))return false;return true;};const isDisplayed4=()=>{if([\"ScahxRD97\",\"T8sMIMJ9w\"].includes(baseVariant))return false;return true;};const isDisplayed5=()=>{if(baseVariant===\"XRZmrqXWr\")return true;return false;};const isDisplayed6=()=>{if(baseVariant===\"kLcJZnmEd\")return true;return false;};const isDisplayed7=()=>{if([\"ScahxRD97\",\"rR2_PuvFN\",\"T8sMIMJ9w\"].includes(baseVariant))return true;return false;};const isDisplayed8=()=>{if(baseVariant===\"Nz2AbCewU\")return true;return false;};const isDisplayed9=()=>{if([\"ScahxRD97\",\"Nz2AbCewU\",\"rR2_PuvFN\",\"T8sMIMJ9w\"].includes(baseVariant))return true;return false;};const isDisplayed10=()=>{if([\"Nz2AbCewU\",\"T8sMIMJ9w\"].includes(baseVariant))return true;return false;};const isDisplayed11=()=>{if([\"Nz2AbCewU\",\"vNbhnXS57\"].includes(baseVariant))return true;return false;};const isDisplayed12=()=>{if(baseVariant===\"vNbhnXS57\")return false;return true;};const isDisplayed13=()=>{if([\"Nz2AbCewU\",\"vNbhnXS57\"].includes(baseVariant))return false;return true;};const isDisplayed14=()=>{if([\"Nz2AbCewU\",\"LAig6L3qM\"].includes(baseVariant))return true;return false;};const isDisplayed15=()=>{if(baseVariant===\"LAig6L3qM\")return false;return true;};const isDisplayed16=()=>{if([\"dez9JJdxV\",\"Nn65t9o0Z\",\"T8sMIMJ9w\",\"LAig6L3qM\",\"e3yhbEX_d\",\"xzgIV8Sif\"].includes(baseVariant))return true;return false;};const isDisplayed17=()=>{if([\"rR2_PuvFN\",\"R2o9ed1nb\",\"vNbhnXS57\",\"jqryaPGGn\"].includes(baseVariant))return true;return false;};const isDisplayed18=()=>{if([\"XRZmrqXWr\",\"Atz5daY8g\"].includes(baseVariant))return true;return false;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-uk38wi\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Desktop: Products\",layoutDependency:layoutDependency,layoutId:\"bH2emI93a\",ref:refBinding,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-c577e02e-f43d-46dc-969d-cdb91fd83990, rgb(38, 38, 38))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-f596dd75-4366-457f-a18a-6f599542eefd, rgb(0, 0, 0))\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,...style},variants:{Atz5daY8g:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0},dez9JJdxV:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0},e3yhbEX_d:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0},jqryaPGGn:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0},LAig6L3qM:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0},Nn65t9o0Z:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0},R2o9ed1nb:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0},rR2_PuvFN:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0},T8sMIMJ9w:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0},vNbhnXS57:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0},XRZmrqXWr:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0},xzgIV8Sif:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0}},...addPropertyOverrides({Atz5daY8g:{\"data-framer-name\":\"Mobile: Company Collapsed\",\"data-highlight\":true,onTap:onTap1do3b0p},dez9JJdxV:{\"data-framer-name\":\"Mobile: Products Expanded\"},e3yhbEX_d:{\"data-framer-name\":\"Mobile: Developers - Resources Collapsed\",\"data-highlight\":true,onTap:onTapdxuk8t},jqryaPGGn:{\"data-framer-name\":\"Mobile: Developers - Dev Tools Collapsed\",\"data-highlight\":true,onTap:onTap7z0szf},kLcJZnmEd:{\"data-framer-name\":\"Desktop: Company\"},LAig6L3qM:{\"data-framer-name\":\"Mobile: Developers - SDKS Expanded\"},Nn65t9o0Z:{\"data-framer-name\":\"Mobile: Products Collapsed\",\"data-highlight\":true,onTap:onTap1geafuf},Nz2AbCewU:{\"data-framer-name\":\"Desktop: Developer\"},R2o9ed1nb:{\"data-framer-name\":\"Mobile: Solutions Collapsed\",\"data-highlight\":true,onTap:onTap13ae4zz},rR2_PuvFN:{\"data-framer-name\":\"Mobile: Solutions Expanded\"},ScahxRD97:{\"data-framer-name\":\"Desktop: Solutions\"},T8sMIMJ9w:{\"data-framer-name\":\"Mobile: Developers - Resources Expanded\"},vNbhnXS57:{\"data-framer-name\":\"Mobile: Developers - Dev Tools Expanded\"},XRZmrqXWr:{\"data-framer-name\":\"Mobile: Company Expanded\"},xzgIV8Sif:{\"data-framer-name\":\"Mobile: Developers - SDKs Collapsed\",\"data-highlight\":true,onTap:onTap1asgkxe}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ksf9ra\",\"data-framer-name\":\"Row 1\",layoutDependency:layoutDependency,layoutId:\"KD6XFgOHK\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-va4txx\",layoutDependency:layoutDependency,layoutId:\"aTinq8Xri\",children:[isDisplayed1()&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"MuY0q63DE\"},implicitPathVariables:undefined},{href:{webPageId:\"MuY0q63DE\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:62,width:`calc(${componentViewport?.width||\"100vw\"} - 16px)`,y:(componentViewport?.y||0)+8+0+0+0+0+0,...addPropertyOverrides({dez9JJdxV:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+48+0+0+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-ha5an3-container\",layoutDependency:layoutDependency,layoutId:\"mEXef3yCv-container\",nodeId:\"mEXef3yCv\",rendersWithMotion:true,scopeId:\"FJcN2qQXX\",children:/*#__PURE__*/_jsx(NavigationNavigationDropdownItem,{DZKmBZ71m:resolvedLinks[0],f_OWzkWPM:\"Powerful AI for Blockchain\",height:\"100%\",id:\"mEXef3yCv\",layoutId:\"mEXef3yCv\",sEqIccMsb:addImageAlt({src:\"https://framerusercontent.com/images/50dM8FrEELM2i0HVryAk3wef0xw.png\"},\"\"),style:{width:\"100%\"},variant:\"xNFM592PV\",width:\"100%\",x7ezT7rx8:\"Nebula\",...addPropertyOverrides({dez9JJdxV:{DZKmBZ71m:resolvedLinks[1]}},baseVariant,gestureVariant)})})})}),isDisplayed2()&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"nwTjEDde9\"},implicitPathVariables:undefined},{href:{webPageId:\"DkRsI8qOR\"},implicitPathVariables:undefined},{href:{webPageId:\"nwTjEDde9\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:62,width:`calc(${componentViewport?.width||\"100vw\"} - 16px)`,y:(componentViewport?.y||0)+8+0+0+0+0+66,...addPropertyOverrides({dez9JJdxV:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+48+0+0+0+66},ScahxRD97:{width:\"360px\",y:(componentViewport?.y||0)+8+0+0+0+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1a9ka8u-container\",layoutDependency:layoutDependency,layoutId:\"GAg7jIi9N-container\",nodeId:\"GAg7jIi9N\",rendersWithMotion:true,scopeId:\"FJcN2qQXX\",children:/*#__PURE__*/_jsx(NavigationNavigationDropdownItem,{DZKmBZ71m:resolvedLinks1[0],f_OWzkWPM:\"Instant blockchain data on any EVM\",height:\"100%\",id:\"GAg7jIi9N\",layoutId:\"GAg7jIi9N\",sEqIccMsb:addImageAlt({src:\"https://framerusercontent.com/images/okF3qDWgrZKx9gtEd5hrlPpJD8.png\"},\"\"),style:{width:\"100%\"},variant:\"xNFM592PV\",width:\"100%\",x7ezT7rx8:\"Insight\",...addPropertyOverrides({dez9JJdxV:{DZKmBZ71m:resolvedLinks1[2]},ScahxRD97:{DZKmBZ71m:resolvedLinks1[1],f_OWzkWPM:\"Supercharge your ecosystem\",sEqIccMsb:addImageAlt({src:\"https://framerusercontent.com/images/r5v2uH1RQrSDrnOQHmChI128V0.png\"},\"\"),x7ezT7rx8:\"Ecosystems\"}},baseVariant,gestureVariant)})})})}),isDisplayed3()&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"B71Wh5qU9\"},implicitPathVariables:undefined},{href:{webPageId:\"B71Wh5qU9\"},implicitPathVariables:undefined},{href:{webPageId:\"gGWA3YWzo\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:62,width:`calc(${componentViewport?.width||\"100vw\"} - 16px)`,y:(componentViewport?.y||0)+8+0+0+0+0+132,...addPropertyOverrides({dez9JJdxV:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+48+0+0+0+132},T8sMIMJ9w:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+48+0+0+0+66}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1j7tx3s-container\",layoutDependency:layoutDependency,layoutId:\"j_YpPpL4A-container\",nodeId:\"j_YpPpL4A\",rendersWithMotion:true,scopeId:\"FJcN2qQXX\",children:/*#__PURE__*/_jsx(NavigationNavigationDropdownItem,{DZKmBZ71m:resolvedLinks2[0],f_OWzkWPM:\"Onboard, authenticate and manage users\",height:\"100%\",id:\"j_YpPpL4A\",layoutId:\"j_YpPpL4A\",sEqIccMsb:addImageAlt({src:\"https://framerusercontent.com/images/fqzH3V1xm7mRnLCyYTSphnOqa5M.png\"},\"\"),style:{width:\"100%\"},variant:\"xNFM592PV\",width:\"100%\",x7ezT7rx8:\"Connect\",...addPropertyOverrides({dez9JJdxV:{DZKmBZ71m:resolvedLinks2[1]},T8sMIMJ9w:{DZKmBZ71m:resolvedLinks2[2],sEqIccMsb:addImageAlt({src:\"https://framerusercontent.com/images/jFT5ayQyXSvt20uWXoaMAV2rnC0.png\"},\"\"),x7ezT7rx8:\"Templates\"}},baseVariant,gestureVariant)})})})}),isDisplayed4()&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"nPB2hWWqG\"},implicitPathVariables:undefined},{href:{webPageId:\"gGWA3YWzo\"},implicitPathVariables:undefined},{href:{webPageId:\"nPB2hWWqG\"},implicitPathVariables:undefined},{href:{webPageId:\"DkRsI8qOR\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:62,width:`calc(${componentViewport?.width||\"100vw\"} - 16px)`,y:(componentViewport?.y||0)+8+0+0+0+0+198,...addPropertyOverrides({dez9JJdxV:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+48+0+0+0+198},kLcJZnmEd:{y:(componentViewport?.y||0)+8+0+0+0+0+0},Nz2AbCewU:{width:\"360px\",y:(componentViewport?.y||0)+8+0+116+0+66},rR2_PuvFN:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+48+0+0+0+0},XRZmrqXWr:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+48+0+0+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1s4l7fk-container\",layoutDependency:layoutDependency,layoutId:\"vRPXbyEuy-container\",nodeId:\"vRPXbyEuy\",rendersWithMotion:true,scopeId:\"FJcN2qQXX\",children:/*#__PURE__*/_jsx(NavigationNavigationDropdownItem,{DZKmBZ71m:resolvedLinks3[0],f_OWzkWPM:\"Create, deploy, and interact with smart contracts\",height:\"100%\",id:\"vRPXbyEuy\",layoutId:\"vRPXbyEuy\",sEqIccMsb:addImageAlt({src:\"https://framerusercontent.com/images/3Y8G6QUfbYRvfZ3CK64EyjgbAN4.png\"},\"\"),style:{width:\"100%\"},variant:\"xNFM592PV\",width:\"100%\",x7ezT7rx8:\"Contracts\",...addPropertyOverrides({dez9JJdxV:{DZKmBZ71m:resolvedLinks3[2]},kLcJZnmEd:{DZKmBZ71m:\"https://blog.thirdweb.com/\",f_OWzkWPM:\"Our latest news and updates\",sEqIccMsb:addImageAlt({src:\"https://framerusercontent.com/images/XjxY3PuezndrqzOQYOuIQ5Q2QQ0.png\"},\"\"),x7ezT7rx8:\"Blog\"},Nz2AbCewU:{DZKmBZ71m:resolvedLinks3[1],f_OWzkWPM:\"Ready-to-ship repositories\",sEqIccMsb:addImageAlt({src:\"https://framerusercontent.com/images/jFT5ayQyXSvt20uWXoaMAV2rnC0.png\"},\"\"),x7ezT7rx8:\"Templates\"},rR2_PuvFN:{DZKmBZ71m:resolvedLinks3[3],f_OWzkWPM:\"Supercharge your ecosystem\",sEqIccMsb:addImageAlt({src:\"https://framerusercontent.com/images/r5v2uH1RQrSDrnOQHmChI128V0.png\"},\"\"),x7ezT7rx8:\"Ecosystems\"},XRZmrqXWr:{DZKmBZ71m:\"https://blog.thirdweb.com/\",f_OWzkWPM:\"Our latest news and updates\",sEqIccMsb:addImageAlt({src:\"https://framerusercontent.com/images/XjxY3PuezndrqzOQYOuIQ5Q2QQ0.png\"},\"\"),x7ezT7rx8:\"Blog\"}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"AE8abzaCf\"},implicitPathVariables:undefined},{href:{webPageId:\"qaZNFAwlM\"},implicitPathVariables:undefined},{href:{webPageId:\"AE8abzaCf\"},implicitPathVariables:undefined},{href:{webPageId:\"qaZNFAwlM\"},implicitPathVariables:undefined}],children:resolvedLinks4=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:62,width:`calc(${componentViewport?.width||\"100vw\"} - 16px)`,y:(componentViewport?.y||0)+8+0+0+0+0+264,...addPropertyOverrides({dez9JJdxV:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+48+0+0+0+264},kLcJZnmEd:{y:(componentViewport?.y||0)+8+0+0+0+0+66},Nz2AbCewU:{width:\"360px\",y:(componentViewport?.y||0)+8+0+116+0+0},rR2_PuvFN:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+48+0+0+0+66},ScahxRD97:{width:\"360px\",y:(componentViewport?.y||0)+8+0+0+0+0+66},T8sMIMJ9w:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+48+0+0+0+0},XRZmrqXWr:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+48+0+0+0+66}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-ffw9js-container\",layoutDependency:layoutDependency,layoutId:\"eL6LaG9RX-container\",nodeId:\"eL6LaG9RX\",rendersWithMotion:true,scopeId:\"FJcN2qQXX\",children:/*#__PURE__*/_jsx(NavigationNavigationDropdownItem,{DZKmBZ71m:resolvedLinks4[0],f_OWzkWPM:\"Connect your apps to decentralized networks\",height:\"100%\",id:\"eL6LaG9RX\",layoutId:\"eL6LaG9RX\",sEqIccMsb:addImageAlt({src:\"https://framerusercontent.com/images/NE7Aan78khcwTlAMi5z3d4n8d0g.png\"},\"\"),style:{width:\"100%\"},variant:\"xNFM592PV\",width:\"100%\",x7ezT7rx8:\"Engine\",...addPropertyOverrides({dez9JJdxV:{DZKmBZ71m:resolvedLinks4[2]},kLcJZnmEd:{DZKmBZ71m:\"https://wellfound.com/company/thirdweb-1/jobs\",f_OWzkWPM:\"Open job positions at thirdweb\",sEqIccMsb:addImageAlt({src:\"https://framerusercontent.com/images/d3qvwH2XkRu1LgTWbZIuf93OnQA.png\"},\"\"),x7ezT7rx8:\"Careers\"},Nz2AbCewU:{DZKmBZ71m:\"https://portal.thirdweb.com/\",f_OWzkWPM:\"Complete thirdweb documentation\",sEqIccMsb:addImageAlt({src:\"https://framerusercontent.com/images/5RiQLp50JSzEDr5tflX5Yo7Hkgk.png\"},\"\"),x7ezT7rx8:\"Documentation\"},rR2_PuvFN:{DZKmBZ71m:resolvedLinks4[3],f_OWzkWPM:\"Integrate web3 into games\",sEqIccMsb:addImageAlt({src:\"https://framerusercontent.com/images/AuNMN9HDCBZWRlZEi3w5P2fGs.png\"},\"\"),x7ezT7rx8:\"Gaming\"},ScahxRD97:{DZKmBZ71m:resolvedLinks4[1],f_OWzkWPM:\"Integrate web3 into games\",sEqIccMsb:addImageAlt({src:\"https://framerusercontent.com/images/AuNMN9HDCBZWRlZEi3w5P2fGs.png\"},\"\"),x7ezT7rx8:\"Gaming\"},T8sMIMJ9w:{DZKmBZ71m:\"https://portal.thirdweb.com/\",f_OWzkWPM:\"Learn how to contribute to thirdweb\",sEqIccMsb:addImageAlt({src:\"https://framerusercontent.com/images/5RiQLp50JSzEDr5tflX5Yo7Hkgk.png\"},\"\"),x7ezT7rx8:\"Documentation\"},XRZmrqXWr:{DZKmBZ71m:\"https://wellfound.com/company/thirdweb-1/jobs\",f_OWzkWPM:\"Open job positions at thirdweb\",sEqIccMsb:addImageAlt({src:\"https://framerusercontent.com/images/d3qvwH2XkRu1LgTWbZIuf93OnQA.png\"},\"\"),x7ezT7rx8:\"Careers\"}},baseVariant,gestureVariant)})})})}),isDisplayed5()&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"XkaZjM3LB\"},implicitPathVariables:undefined},{href:{webPageId:\"XkaZjM3LB\"},implicitPathVariables:undefined}],children:resolvedLinks5=>/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({XRZmrqXWr:{height:62,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+48+0+0+0+132}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-191620v-container\",layoutDependency:layoutDependency,layoutId:\"hdBjsaKbC-container\",nodeId:\"hdBjsaKbC\",rendersWithMotion:true,scopeId:\"FJcN2qQXX\",children:/*#__PURE__*/_jsx(NavigationNavigationDropdownItem,{DZKmBZ71m:resolvedLinks5[0],f_OWzkWPM:\"Accelerator program for web3\",height:\"100%\",id:\"hdBjsaKbC\",layoutId:\"hdBjsaKbC\",sEqIccMsb:addImageAlt({src:\"https://framerusercontent.com/images/8bT9CNuDlINH9howWTSeYDrWFk.png\"},\"\"),style:{width:\"100%\"},variant:\"xNFM592PV\",width:\"100%\",x7ezT7rx8:\"Startup Program\",...addPropertyOverrides({XRZmrqXWr:{DZKmBZ71m:resolvedLinks5[1]}},baseVariant,gestureVariant)})})})}),isDisplayed5()&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"Ntq7Fzztz\"},implicitPathVariables:undefined},{href:{webPageId:\"Ntq7Fzztz\"},implicitPathVariables:undefined}],children:resolvedLinks6=>/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({XRZmrqXWr:{height:62,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+48+0+0+0+198}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1wxomso-container\",layoutDependency:layoutDependency,layoutId:\"TQpT_XSi9-container\",nodeId:\"TQpT_XSi9\",rendersWithMotion:true,scopeId:\"FJcN2qQXX\",children:/*#__PURE__*/_jsx(NavigationNavigationDropdownItem,{DZKmBZ71m:resolvedLinks6[0],f_OWzkWPM:\"Curated builder program\",height:\"100%\",id:\"TQpT_XSi9\",layoutId:\"TQpT_XSi9\",sEqIccMsb:addImageAlt({src:\"https://framerusercontent.com/images/jEZpcC5rFwCyI91RV9OOiGYY.png\"},\"\"),style:{width:\"100%\"},variant:\"xNFM592PV\",width:\"100%\",x7ezT7rx8:\"Ambassadors\",...addPropertyOverrides({XRZmrqXWr:{DZKmBZ71m:resolvedLinks6[1]}},baseVariant,gestureVariant)})})})}),isDisplayed5()&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"dO3fveCaq\"},implicitPathVariables:undefined},{href:{webPageId:\"dO3fveCaq\"},implicitPathVariables:undefined}],children:resolvedLinks7=>/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({XRZmrqXWr:{height:62,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+48+0+0+0+264}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-u1k1kw-container\",layoutDependency:layoutDependency,layoutId:\"iEYRB4kCu-container\",nodeId:\"iEYRB4kCu\",rendersWithMotion:true,scopeId:\"FJcN2qQXX\",children:/*#__PURE__*/_jsx(NavigationNavigationDropdownItem,{DZKmBZ71m:resolvedLinks7[0],f_OWzkWPM:\"$3m fund for Superchain network\",height:\"100%\",id:\"iEYRB4kCu\",layoutId:\"iEYRB4kCu\",sEqIccMsb:addImageAlt({src:\"https://framerusercontent.com/images/ThbKah498klZTFSLeFkoiZ65ltM.png\"},\"\"),style:{width:\"100%\"},variant:\"xNFM592PV\",width:\"100%\",x7ezT7rx8:\"Superchain\",...addPropertyOverrides({XRZmrqXWr:{DZKmBZ71m:resolvedLinks7[1]}},baseVariant,gestureVariant)})})})}),isDisplayed6()&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"XkaZjM3LB\"},implicitPathVariables:undefined},{href:{webPageId:\"XkaZjM3LB\"},implicitPathVariables:undefined}],children:resolvedLinks8=>/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({kLcJZnmEd:{height:62,width:`calc(${componentViewport?.width||\"100vw\"} - 16px)`,y:(componentViewport?.y||0)+8+0+0+0+0+132}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-3hayqz-container\",layoutDependency:layoutDependency,layoutId:\"jm5ewIXpZ-container\",nodeId:\"jm5ewIXpZ\",rendersWithMotion:true,scopeId:\"FJcN2qQXX\",children:/*#__PURE__*/_jsx(NavigationNavigationDropdownItem,{DZKmBZ71m:resolvedLinks8[0],f_OWzkWPM:\"Accelerator program for web3\",height:\"100%\",id:\"jm5ewIXpZ\",layoutId:\"jm5ewIXpZ\",sEqIccMsb:addImageAlt({src:\"https://framerusercontent.com/images/8bT9CNuDlINH9howWTSeYDrWFk.png\"},\"\"),style:{width:\"100%\"},variant:\"xNFM592PV\",width:\"100%\",x7ezT7rx8:\"Startup Program\",...addPropertyOverrides({kLcJZnmEd:{DZKmBZ71m:resolvedLinks8[1]}},baseVariant,gestureVariant)})})})}),isDisplayed6()&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"Ntq7Fzztz\"},implicitPathVariables:undefined},{href:{webPageId:\"Ntq7Fzztz\"},implicitPathVariables:undefined}],children:resolvedLinks9=>/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({kLcJZnmEd:{height:62,width:`calc(${componentViewport?.width||\"100vw\"} - 16px)`,y:(componentViewport?.y||0)+8+0+0+0+0+198}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-p9wxsq-container\",layoutDependency:layoutDependency,layoutId:\"vGfIMptz3-container\",nodeId:\"vGfIMptz3\",rendersWithMotion:true,scopeId:\"FJcN2qQXX\",children:/*#__PURE__*/_jsx(NavigationNavigationDropdownItem,{DZKmBZ71m:resolvedLinks9[0],f_OWzkWPM:\"Curated builder program\",height:\"100%\",id:\"vGfIMptz3\",layoutId:\"vGfIMptz3\",sEqIccMsb:addImageAlt({src:\"https://framerusercontent.com/images/jEZpcC5rFwCyI91RV9OOiGYY.png\"},\"\"),style:{width:\"100%\"},variant:\"xNFM592PV\",width:\"100%\",x7ezT7rx8:\"Ambassadors\",...addPropertyOverrides({kLcJZnmEd:{DZKmBZ71m:resolvedLinks9[1]}},baseVariant,gestureVariant)})})})}),isDisplayed6()&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"dO3fveCaq\"},implicitPathVariables:undefined},{href:{webPageId:\"dO3fveCaq\"},implicitPathVariables:undefined}],children:resolvedLinks10=>/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({kLcJZnmEd:{height:62,width:`calc(${componentViewport?.width||\"100vw\"} - 16px)`,y:(componentViewport?.y||0)+8+0+0+0+0+264}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1kt2r5x-container\",layoutDependency:layoutDependency,layoutId:\"j2MU2HQ2J-container\",nodeId:\"j2MU2HQ2J\",rendersWithMotion:true,scopeId:\"FJcN2qQXX\",children:/*#__PURE__*/_jsx(NavigationNavigationDropdownItem,{DZKmBZ71m:resolvedLinks10[0],f_OWzkWPM:\"$3m fund for Superchain network\",height:\"100%\",id:\"j2MU2HQ2J\",layoutId:\"j2MU2HQ2J\",sEqIccMsb:addImageAlt({src:\"https://framerusercontent.com/images/ThbKah498klZTFSLeFkoiZ65ltM.png\"},\"\"),style:{width:\"100%\"},variant:\"xNFM592PV\",width:\"100%\",x7ezT7rx8:\"Superchain\",...addPropertyOverrides({kLcJZnmEd:{DZKmBZ71m:resolvedLinks10[1]}},baseVariant,gestureVariant)})})})}),isDisplayed7()&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"TAozq3X3l\"},implicitPathVariables:undefined},{href:{webPageId:\"TAozq3X3l\"},implicitPathVariables:undefined}],children:resolvedLinks11=>/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({rR2_PuvFN:{height:62,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+48+0+0+0+132},ScahxRD97:{height:62,width:\"360px\",y:(componentViewport?.y||0)+8+0+0+0+0+132},T8sMIMJ9w:{height:62,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+48+0+0+0+132}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-13rla0f-container\",layoutDependency:layoutDependency,layoutId:\"Uj2TuRdjh-container\",nodeId:\"Uj2TuRdjh\",rendersWithMotion:true,scopeId:\"FJcN2qQXX\",children:/*#__PURE__*/_jsx(NavigationNavigationDropdownItem,{DZKmBZ71m:\"https://thirdweb.com/engine\",f_OWzkWPM:\"Connect your apps to decentralized\",height:\"100%\",id:\"Uj2TuRdjh\",layoutId:\"Uj2TuRdjh\",sEqIccMsb:addImageAlt({src:\"https://framerusercontent.com/images/jhGSnt3O5FF9nkWbX6lzYPT0M7w.webp\"},\"\"),style:{width:\"100%\"},variant:\"xNFM592PV\",width:\"100%\",x7ezT7rx8:\"Minting\",...addPropertyOverrides({rR2_PuvFN:{DZKmBZ71m:resolvedLinks11[1],f_OWzkWPM:\"Build onchain applications for consumers\",sEqIccMsb:addImageAlt({src:\"https://framerusercontent.com/images/01KXnB2F78yejfinEeWqcFTik.png\"},\"\"),x7ezT7rx8:\"Consumer Apps\"},ScahxRD97:{DZKmBZ71m:resolvedLinks11[0],f_OWzkWPM:\"Build onchain applications for consumers\",sEqIccMsb:addImageAlt({src:\"https://framerusercontent.com/images/01KXnB2F78yejfinEeWqcFTik.png\"},\"\"),x7ezT7rx8:\"Consumer Apps\"},T8sMIMJ9w:{DZKmBZ71m:\"https://blog.thirdweb.com/guides/\",sEqIccMsb:addImageAlt({src:\"https://framerusercontent.com/images/KXuuKKKncGAFa59ISiZTyQjyo4.png\"},\"\"),x7ezT7rx8:\"Guides\"}},baseVariant,gestureVariant)})})})}),isDisplayed8()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({Nz2AbCewU:{height:62,width:\"360px\",y:(componentViewport?.y||0)+8+0+116+0+132}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-uny961-container\",layoutDependency:layoutDependency,layoutId:\"VYdDDeeIk-container\",nodeId:\"VYdDDeeIk\",rendersWithMotion:true,scopeId:\"FJcN2qQXX\",children:/*#__PURE__*/_jsx(NavigationNavigationDropdownItem,{DZKmBZ71m:\"https://thirdweb.com/learn\",f_OWzkWPM:\"Web3 Development Guides\",height:\"100%\",id:\"VYdDDeeIk\",layoutId:\"VYdDDeeIk\",sEqIccMsb:addImageAlt({src:\"https://framerusercontent.com/images/auJheiNwSgnxgROb3ZoHBpaIc.png\"},\"\"),style:{width:\"100%\"},variant:\"xNFM592PV\",width:\"100%\",x7ezT7rx8:\"Learn\"})})}),isDisplayed9()&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"QmMOyRrKJ\"},implicitPathVariables:undefined},{href:{webPageId:\"lGB7rSdOG\"},implicitPathVariables:undefined},{href:{webPageId:\"QmMOyRrKJ\"},implicitPathVariables:undefined},{href:{webPageId:\"lGB7rSdOG\"},implicitPathVariables:undefined}],children:resolvedLinks12=>/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({Nz2AbCewU:{height:62,width:\"360px\",y:(componentViewport?.y||0)+8+0+116+0+330},rR2_PuvFN:{height:62,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+48+0+0+0+198},ScahxRD97:{height:62,width:\"360px\",y:(componentViewport?.y||0)+8+0+0+0+0+198},T8sMIMJ9w:{height:62,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+48+0+0+0+264}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1xdzbbu-container\",layoutDependency:layoutDependency,layoutId:\"VVrLWUFiX-container\",nodeId:\"VVrLWUFiX\",rendersWithMotion:true,scopeId:\"FJcN2qQXX\",children:/*#__PURE__*/_jsx(NavigationNavigationDropdownItem,{DZKmBZ71m:\"https://thirdweb.com/open-source\",f_OWzkWPM:\"Learn how to contribute to thirdweb\",height:\"100%\",id:\"VVrLWUFiX\",layoutId:\"VVrLWUFiX\",sEqIccMsb:addImageAlt({src:\"https://framerusercontent.com/images/8mml4xuE49XKzeFGItQHCR6C0Ic.png\"},\"\"),style:{width:\"100%\"},variant:\"xNFM592PV\",width:\"100%\",x7ezT7rx8:\"Open Source\",...addPropertyOverrides({Nz2AbCewU:{DZKmBZ71m:resolvedLinks12[1],f_OWzkWPM:\"Earn rewards for contributions\",sEqIccMsb:addImageAlt({src:\"https://framerusercontent.com/images/kMKpZ2vX2YLrYbc9idUZejNv4AQ.png\"},\"\"),x7ezT7rx8:\"Bounties\"},rR2_PuvFN:{DZKmBZ71m:resolvedLinks12[2],f_OWzkWPM:\"Solutions for scaling DeFi apps\",sEqIccMsb:addImageAlt({src:\"https://framerusercontent.com/images/AcB1Nr06IKOipkbUFXKGHIzFA.png\"},\"\"),x7ezT7rx8:\"DeFi\"},ScahxRD97:{DZKmBZ71m:resolvedLinks12[0],f_OWzkWPM:\"Solutions for scaling DeFi apps\",sEqIccMsb:addImageAlt({src:\"https://framerusercontent.com/images/AcB1Nr06IKOipkbUFXKGHIzFA.png\"},\"\"),x7ezT7rx8:\"DeFi\"},T8sMIMJ9w:{DZKmBZ71m:resolvedLinks12[3],f_OWzkWPM:\"Earn rewards for contributions\",sEqIccMsb:addImageAlt({src:\"https://framerusercontent.com/images/kMKpZ2vX2YLrYbc9idUZejNv4AQ.png\"},\"\"),x7ezT7rx8:\"Bounties\"}},baseVariant,gestureVariant)})})})}),isDisplayed10()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({Nz2AbCewU:{height:62,width:\"360px\",y:(componentViewport?.y||0)+8+0+116+0+396},T8sMIMJ9w:{height:62,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+48+0+0+0+330}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1192hzv-container\",layoutDependency:layoutDependency,layoutId:\"Z9eX96wuQ-container\",nodeId:\"Z9eX96wuQ\",rendersWithMotion:true,scopeId:\"FJcN2qQXX\",children:/*#__PURE__*/_jsx(NavigationNavigationDropdownItem,{DZKmBZ71m:\"https://thirdweb.com/open-source\",f_OWzkWPM:\"Resources to troubleshoot your web3 apps\",height:\"100%\",id:\"Z9eX96wuQ\",layoutId:\"Z9eX96wuQ\",sEqIccMsb:addImageAlt({src:\"https://framerusercontent.com/images/8mml4xuE49XKzeFGItQHCR6C0Ic.png\"},\"\"),style:{width:\"100%\"},variant:\"xNFM592PV\",width:\"100%\",x7ezT7rx8:\"Knowledge Base\",...addPropertyOverrides({Nz2AbCewU:{DZKmBZ71m:\"https://support.thirdweb.com/\",sEqIccMsb:addImageAlt({src:\"https://framerusercontent.com/images/D9lZkSM85OkIyc4tOMxnjaFMztw.png\"},\"\")},T8sMIMJ9w:{DZKmBZ71m:\"https://support.thirdweb.com/\",sEqIccMsb:addImageAlt({src:\"https://framerusercontent.com/images/D9lZkSM85OkIyc4tOMxnjaFMztw.png\"},\"\")}},baseVariant,gestureVariant)})})}),isDisplayed10()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({Nz2AbCewU:{height:62,width:\"360px\",y:(componentViewport?.y||0)+8+0+116+0+462},T8sMIMJ9w:{height:62,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+48+0+0+0+396}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-3gbn8p-container\",layoutDependency:layoutDependency,layoutId:\"RX8O4_sEN-container\",nodeId:\"RX8O4_sEN\",rendersWithMotion:true,scopeId:\"FJcN2qQXX\",children:/*#__PURE__*/_jsx(NavigationNavigationDropdownItem,{DZKmBZ71m:\"https://www.figma.com/community/file/1436074607342792293\",f_OWzkWPM:\"Light-weight, free and open source design system\",height:\"100%\",id:\"RX8O4_sEN\",layoutId:\"RX8O4_sEN\",sEqIccMsb:addImageAlt({src:\"https://framerusercontent.com/images/Y0yB513jDkuIfemWxDkdvV4vx4w.png\"},\"\"),style:{width:\"100%\"},variant:\"xNFM592PV\",width:\"100%\",x7ezT7rx8:\"Design System\",...addPropertyOverrides({Nz2AbCewU:{f_OWzkWPM:\"Free and open source design system\",sEqIccMsb:addImageAlt({src:\"https://framerusercontent.com/images/C51zkdqQM5P2xNh0EVDuQgxI9mM.png\"},\"\")},T8sMIMJ9w:{f_OWzkWPM:\"Free and open source design system\"}},baseVariant,gestureVariant)})})}),isDisplayed10()&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"sl9EIeZl4\"},implicitPathVariables:undefined}],children:resolvedLinks13=>/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({Nz2AbCewU:{height:62,width:\"360px\",y:(componentViewport?.y||0)+8+0+116+0+264},T8sMIMJ9w:{height:62,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+48+0+0+0+198}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-18fjcuj-container\",layoutDependency:layoutDependency,layoutId:\"pF_O6FwR6-container\",nodeId:\"pF_O6FwR6\",rendersWithMotion:true,scopeId:\"FJcN2qQXX\",children:/*#__PURE__*/_jsx(NavigationNavigationDropdownItem,{DZKmBZ71m:\"https://thirdweb.com/chainlist\",f_OWzkWPM:\"Faucets, RPCs, and grant programs\",height:\"100%\",id:\"pF_O6FwR6\",layoutId:\"pF_O6FwR6\",sEqIccMsb:addImageAlt({src:\"https://framerusercontent.com/images/GrJcVufb9FL8gOpUz3wkr9HxUEQ.png\"},\"\"),style:{width:\"100%\"},variant:\"xNFM592PV\",width:\"100%\",x7ezT7rx8:\"Chainlist\",...addPropertyOverrides({Nz2AbCewU:{DZKmBZ71m:resolvedLinks13[0],f_OWzkWPM:\"Reliably get testnet funds\",sEqIccMsb:addImageAlt({src:\"https://framerusercontent.com/images/sH56j9uOOzdRNqvQh1vSUIsOXHc.png\"},\"\"),x7ezT7rx8:\"Faucets\"}},baseVariant,gestureVariant)})})})}),isDisplayed8()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({Nz2AbCewU:{height:62,width:\"360px\",y:(componentViewport?.y||0)+8+0+116+0+198}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1ruldwy-container\",layoutDependency:layoutDependency,layoutId:\"oghLGqYch-container\",nodeId:\"oghLGqYch\",rendersWithMotion:true,scopeId:\"FJcN2qQXX\",children:/*#__PURE__*/_jsx(NavigationNavigationDropdownItem,{DZKmBZ71m:\"https://thirdweb.com/chainlist\",f_OWzkWPM:\"Faucets, RPCs, and grant programs\",height:\"100%\",id:\"oghLGqYch\",layoutId:\"oghLGqYch\",sEqIccMsb:addImageAlt({src:\"https://framerusercontent.com/images/GrJcVufb9FL8gOpUz3wkr9HxUEQ.png\"},\"\"),style:{width:\"100%\"},variant:\"xNFM592PV\",width:\"100%\",x7ezT7rx8:\"Chainlist\"})})})]}),isDisplayed8()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-fzidap\",layoutDependency:layoutDependency,layoutId:\"gqYc8_yys\",children:isDisplayed8()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"20px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c4634c61-c453-49aa-834c-3d21e51f5eb0, rgb(163, 163, 163)))\"},children:\"Resources\"})}),className:\"framer-1mju7si\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"scv1se0ew\",style:{\"--extracted-r6o4lv\":\"var(--token-c4634c61-c453-49aa-834c-3d21e51f5eb0, rgb(163, 163, 163))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})})]}),isDisplayed11()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ik6rhh\",\"data-framer-name\":\"Row 2\",layoutDependency:layoutDependency,layoutId:\"YNT9dnCkI\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-fh0hg6\",layoutDependency:layoutDependency,layoutId:\"Pg0e4ArUQ\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:62,...addPropertyOverrides({Nz2AbCewU:{width:\"360px\",y:(componentViewport?.y||0)+8+0+116+0+0},vNbhnXS57:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+48+0+0+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1hwsvq2-container\",layoutDependency:layoutDependency,layoutId:\"RICB1CVXt-container\",nodeId:\"RICB1CVXt\",rendersWithMotion:true,scopeId:\"FJcN2qQXX\",children:/*#__PURE__*/_jsx(NavigationNavigationDropdownItem,{DZKmBZ71m:\"https://thirdweb.com/connect\",f_OWzkWPM:\"Manage and analyze contract activity\",height:\"100%\",id:\"RICB1CVXt\",layoutId:\"RICB1CVXt\",sEqIccMsb:addImageAlt({src:\"https://framerusercontent.com/images/nPgHNidkefEbPmkh5O4uLgo0HCY.png\"},\"\"),style:{width:\"100%\"},variant:\"xNFM592PV\",width:\"100%\",x7ezT7rx8:\"Dashboard\",...addPropertyOverrides({Nz2AbCewU:{DZKmBZ71m:\"https://thirdweb.com/login\",sEqIccMsb:addImageAlt({src:\"https://framerusercontent.com/images/kD06KJ7ezBwafQhAAB9RgzIUXh4.png\"},\"\")},vNbhnXS57:{DZKmBZ71m:\"https://thirdweb.com/login\",sEqIccMsb:addImageAlt({src:\"https://framerusercontent.com/images/kD06KJ7ezBwafQhAAB9RgzIUXh4.png\"},\"\")}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:62,...addPropertyOverrides({Nz2AbCewU:{width:\"360px\",y:(componentViewport?.y||0)+8+0+116+0+66},vNbhnXS57:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+48+0+0+0+66}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1y54ibs-container\",layoutDependency:layoutDependency,layoutId:\"YXyo1rTsX-container\",nodeId:\"YXyo1rTsX\",rendersWithMotion:true,scopeId:\"FJcN2qQXX\",children:/*#__PURE__*/_jsx(NavigationNavigationDropdownItem,{DZKmBZ71m:\"https://thirdweb.com/login\",f_OWzkWPM:\"Manage and analyze contract activity\",height:\"100%\",id:\"YXyo1rTsX\",layoutId:\"YXyo1rTsX\",sEqIccMsb:addImageAlt({src:\"https://framerusercontent.com/images/kD06KJ7ezBwafQhAAB9RgzIUXh4.png\"},\"\"),style:{width:\"100%\"},variant:\"xNFM592PV\",width:\"100%\",x7ezT7rx8:\"Dashboard\",...addPropertyOverrides({Nz2AbCewU:{DZKmBZ71m:\"solutions.thirdweb.com\",f_OWzkWPM:\"Quick start articles and recipes\",sEqIccMsb:addImageAlt({src:\"https://framerusercontent.com/images/LCAXv25S0pHDcKG5ELVNvKrgAzU.svg\"},\"\"),x7ezT7rx8:\"Solutions Hub\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:62,...addPropertyOverrides({Nz2AbCewU:{width:\"360px\",y:(componentViewport?.y||0)+8+0+116+0+132},vNbhnXS57:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+48+0+0+0+132}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-ex70qi-container\",layoutDependency:layoutDependency,layoutId:\"PEaYPL7gK-container\",nodeId:\"PEaYPL7gK\",rendersWithMotion:true,scopeId:\"FJcN2qQXX\",children:/*#__PURE__*/_jsx(NavigationNavigationDropdownItem,{DZKmBZ71m:\"https://thirdweb.com/contracts\",f_OWzkWPM:\"Tools to create, build and deploy web3 apps\",height:\"100%\",id:\"PEaYPL7gK\",layoutId:\"PEaYPL7gK\",sEqIccMsb:addImageAlt({src:\"https://framerusercontent.com/images/lrmwOQHnEKW05qe9GxO0HiTX8zs.png\"},\"\"),style:{width:\"100%\"},variant:\"xNFM592PV\",width:\"100%\",x7ezT7rx8:\"CLI\",...addPropertyOverrides({Nz2AbCewU:{DZKmBZ71m:\"https://portal.thirdweb.com/cli\",sEqIccMsb:addImageAlt({src:\"https://framerusercontent.com/images/zELNUisDGRVtlDXiF3LE3GgBNQ.png\"},\"\")},vNbhnXS57:{DZKmBZ71m:\"https://portal.thirdweb.com/cli\",sEqIccMsb:addImageAlt({src:\"https://framerusercontent.com/images/zELNUisDGRVtlDXiF3LE3GgBNQ.png\"},\"\")}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:62,...addPropertyOverrides({Nz2AbCewU:{width:\"360px\",y:(componentViewport?.y||0)+8+0+116+0+198},vNbhnXS57:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+48+0+0+0+198}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-9rhl2e-container\",layoutDependency:layoutDependency,layoutId:\"vTA6X4dlL-container\",nodeId:\"vTA6X4dlL\",rendersWithMotion:true,scopeId:\"FJcN2qQXX\",children:/*#__PURE__*/_jsx(NavigationNavigationDropdownItem,{DZKmBZ71m:\"https://thirdweb.com/tools/transaction-simulator\",f_OWzkWPM:\"Create and deploy smart contracts\",height:\"100%\",id:\"vTA6X4dlL\",layoutId:\"vTA6X4dlL\",sEqIccMsb:addImageAlt({src:\"https://framerusercontent.com/images/gcUO8bwpCFFJ1uvZhXpad8vXeI.png\"},\"\"),style:{width:\"100%\"},variant:\"xNFM592PV\",width:\"100%\",x7ezT7rx8:\"Transaction Simulator\",...addPropertyOverrides({Nz2AbCewU:{f_OWzkWPM:\"Simulate onchain transactions\",sEqIccMsb:addImageAlt({src:\"https://framerusercontent.com/images/SCNU9qpB7xdfybjIruvdNOX55k.png\"},\"\")},vNbhnXS57:{f_OWzkWPM:\"Simulate onchain transactions\",sEqIccMsb:addImageAlt({src:\"https://framerusercontent.com/images/SCNU9qpB7xdfybjIruvdNOX55k.png\"},\"\")}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:62,...addPropertyOverrides({Nz2AbCewU:{width:\"360px\",y:(componentViewport?.y||0)+8+0+116+0+264},vNbhnXS57:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+48+0+0+0+264}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-a00ula-container\",layoutDependency:layoutDependency,layoutId:\"vyvqw3nrT-container\",nodeId:\"vyvqw3nrT\",rendersWithMotion:true,scopeId:\"FJcN2qQXX\",children:/*#__PURE__*/_jsx(NavigationNavigationDropdownItem,{DZKmBZ71m:\"https://thirdweb.com/tools/wei-converter\",f_OWzkWPM:\"Convert Wei\",height:\"100%\",id:\"vyvqw3nrT\",layoutId:\"vyvqw3nrT\",sEqIccMsb:addImageAlt({src:\"https://framerusercontent.com/images/gcUO8bwpCFFJ1uvZhXpad8vXeI.png\"},\"\"),style:{width:\"100%\"},variant:\"xNFM592PV\",width:\"100%\",x7ezT7rx8:\"Wei Converter\",...addPropertyOverrides({Nz2AbCewU:{sEqIccMsb:addImageAlt({src:\"https://framerusercontent.com/images/bmtSFH2qrkpTcxUNKlSLCkolO0.png\"},\"\")},vNbhnXS57:{sEqIccMsb:addImageAlt({src:\"https://framerusercontent.com/images/bmtSFH2qrkpTcxUNKlSLCkolO0.png\"},\"\")}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:62,...addPropertyOverrides({Nz2AbCewU:{width:\"360px\",y:(componentViewport?.y||0)+8+0+116+0+330},vNbhnXS57:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+48+0+0+0+330}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1ca1nl0-container\",layoutDependency:layoutDependency,layoutId:\"ggMvSwcmR-container\",nodeId:\"ggMvSwcmR\",rendersWithMotion:true,scopeId:\"FJcN2qQXX\",children:/*#__PURE__*/_jsx(NavigationNavigationDropdownItem,{DZKmBZ71m:\"https://thirdweb.com/tools/hex-converter\",f_OWzkWPM:\"Convert Hex\",height:\"100%\",id:\"ggMvSwcmR\",layoutId:\"ggMvSwcmR\",sEqIccMsb:addImageAlt({src:\"https://framerusercontent.com/images/gcUO8bwpCFFJ1uvZhXpad8vXeI.png\"},\"\"),style:{width:\"100%\"},variant:\"xNFM592PV\",width:\"100%\",x7ezT7rx8:\"Hex Converter\",...addPropertyOverrides({Nz2AbCewU:{sEqIccMsb:addImageAlt({src:\"https://framerusercontent.com/images/bmtSFH2qrkpTcxUNKlSLCkolO0.png\"},\"\")},vNbhnXS57:{sEqIccMsb:addImageAlt({src:\"https://framerusercontent.com/images/bmtSFH2qrkpTcxUNKlSLCkolO0.png\"},\"\")}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:62,...addPropertyOverrides({Nz2AbCewU:{width:\"360px\",y:(componentViewport?.y||0)+8+0+116+0+396},vNbhnXS57:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+48+0+0+0+396}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1t6d41l-container\",layoutDependency:layoutDependency,layoutId:\"sQLYj8PLe-container\",nodeId:\"sQLYj8PLe\",rendersWithMotion:true,scopeId:\"FJcN2qQXX\",children:/*#__PURE__*/_jsx(NavigationNavigationDropdownItem,{DZKmBZ71m:\"https://thirdweb.com/tools/unixtime-converter\",f_OWzkWPM:\"Convert Unix Time\",height:\"100%\",id:\"sQLYj8PLe\",layoutId:\"sQLYj8PLe\",sEqIccMsb:addImageAlt({src:\"https://framerusercontent.com/images/gcUO8bwpCFFJ1uvZhXpad8vXeI.png\"},\"\"),style:{width:\"100%\"},variant:\"xNFM592PV\",width:\"100%\",x7ezT7rx8:\"Unix Time Converter\",...addPropertyOverrides({Nz2AbCewU:{sEqIccMsb:addImageAlt({src:\"https://framerusercontent.com/images/bmtSFH2qrkpTcxUNKlSLCkolO0.png\"},\"\")},vNbhnXS57:{sEqIccMsb:addImageAlt({src:\"https://framerusercontent.com/images/bmtSFH2qrkpTcxUNKlSLCkolO0.png\"},\"\")}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:62,...addPropertyOverrides({Nz2AbCewU:{width:\"360px\",y:(componentViewport?.y||0)+8+0+116+0+462},vNbhnXS57:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+48+0+0+0+462}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-gep4si-container\",layoutDependency:layoutDependency,layoutId:\"S_GlixqR1-container\",nodeId:\"S_GlixqR1\",rendersWithMotion:true,scopeId:\"FJcN2qQXX\",children:/*#__PURE__*/_jsx(NavigationNavigationDropdownItem,{DZKmBZ71m:\"https://thirdweb.com/tools/keccak256-converter\",f_OWzkWPM:\"Convert Keccak 256\",height:\"100%\",id:\"S_GlixqR1\",layoutId:\"S_GlixqR1\",sEqIccMsb:addImageAlt({src:\"https://framerusercontent.com/images/gcUO8bwpCFFJ1uvZhXpad8vXeI.png\"},\"\"),style:{width:\"100%\"},variant:\"xNFM592PV\",width:\"100%\",x7ezT7rx8:\"Keccak 256 Converter\",...addPropertyOverrides({Nz2AbCewU:{sEqIccMsb:addImageAlt({src:\"https://framerusercontent.com/images/bmtSFH2qrkpTcxUNKlSLCkolO0.png\"},\"\")},vNbhnXS57:{sEqIccMsb:addImageAlt({src:\"https://framerusercontent.com/images/bmtSFH2qrkpTcxUNKlSLCkolO0.png\"},\"\")}},baseVariant,gestureVariant)})})})]}),isDisplayed12()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-194ni13\",layoutDependency:layoutDependency,layoutId:\"eNVJBzLRX\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"20px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c4634c61-c453-49aa-834c-3d21e51f5eb0, rgb(163, 163, 163)))\"},children:\"Dev Tools\"})}),className:\"framer-15p6vei\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"Dvta7qOBf\",style:{\"--extracted-r6o4lv\":\"var(--token-c4634c61-c453-49aa-834c-3d21e51f5eb0, rgb(163, 163, 163))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})}),isDisplayed13()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1enyy79\",layoutDependency:layoutDependency,layoutId:\"S83rYcFxz\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-986afb1c-84ad-46b2-a807-6bd407af3abe, rgb(250, 250, 250)))\"},children:\"Dev Tools\"})}),className:\"framer-b7tse1\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"USPRcPs9k\",style:{\"--extracted-r6o4lv\":\"var(--token-986afb1c-84ad-46b2-a807-6bd407af3abe, rgb(250, 250, 250))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})})]}),isDisplayed14()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-4k3mr\",\"data-framer-name\":\"Row 3\",layoutDependency:layoutDependency,layoutId:\"gdkVKpV4i\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1s6d1qf\",layoutDependency:layoutDependency,layoutId:\"CZxBY1emk\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:62,...addPropertyOverrides({LAig6L3qM:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+48+0+0+0+0},Nz2AbCewU:{width:\"360px\",y:(componentViewport?.y||0)+8+0+116+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-e6t8o3-container\",layoutDependency:layoutDependency,layoutId:\"afqwjcOYa-container\",nodeId:\"afqwjcOYa\",rendersWithMotion:true,scopeId:\"FJcN2qQXX\",children:/*#__PURE__*/_jsx(NavigationNavigationDropdownItem,{DZKmBZ71m:\"https://thirdweb.com/connect\",f_OWzkWPM:\"Integrate web3 into your app\",height:\"100%\",id:\"afqwjcOYa\",layoutId:\"afqwjcOYa\",sEqIccMsb:addImageAlt({src:\"https://framerusercontent.com/images/paETxvKcjTpeGDfjN36tkXKJs.png\"},\"\"),style:{width:\"100%\"},variant:\"xNFM592PV\",width:\"100%\",x7ezT7rx8:\"Typescript\",...addPropertyOverrides({LAig6L3qM:{DZKmBZ71m:\"https://portal.thirdweb.com/typescript/v5\"},Nz2AbCewU:{DZKmBZ71m:\"https://portal.thirdweb.com/typescript/v5\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:62,...addPropertyOverrides({LAig6L3qM:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+48+0+0+0+66},Nz2AbCewU:{width:\"360px\",y:(componentViewport?.y||0)+8+0+116+0+66}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1hx3qpk-container\",layoutDependency:layoutDependency,layoutId:\"TY8ec_nop-container\",nodeId:\"TY8ec_nop\",rendersWithMotion:true,scopeId:\"FJcN2qQXX\",children:/*#__PURE__*/_jsx(NavigationNavigationDropdownItem,{DZKmBZ71m:\"https://thirdweb.com/contracts\",f_OWzkWPM:\"Components and hooks for wallets\",height:\"100%\",id:\"TY8ec_nop\",layoutId:\"TY8ec_nop\",sEqIccMsb:addImageAlt({src:\"https://framerusercontent.com/images/LmJGeVwzAQ87sd08YhFRLijvQd4.png\"},\"\"),style:{width:\"100%\"},variant:\"xNFM592PV\",width:\"100%\",x7ezT7rx8:\"React\",...addPropertyOverrides({LAig6L3qM:{DZKmBZ71m:\"https://portal.thirdweb.com/react/v5\"},Nz2AbCewU:{DZKmBZ71m:\"https://portal.thirdweb.com/react/v5\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:62,...addPropertyOverrides({LAig6L3qM:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+48+0+0+0+132},Nz2AbCewU:{width:\"360px\",y:(componentViewport?.y||0)+8+0+116+0+132}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1la103s-container\",layoutDependency:layoutDependency,layoutId:\"pDpveiPJq-container\",nodeId:\"pDpveiPJq\",rendersWithMotion:true,scopeId:\"FJcN2qQXX\",children:/*#__PURE__*/_jsx(NavigationNavigationDropdownItem,{DZKmBZ71m:\"https://thirdweb.com/contracts\",f_OWzkWPM:\"React native components for mobile apps\",height:\"100%\",id:\"pDpveiPJq\",layoutId:\"pDpveiPJq\",sEqIccMsb:addImageAlt({src:\"https://framerusercontent.com/images/LmJGeVwzAQ87sd08YhFRLijvQd4.png\"},\"\"),style:{width:\"100%\"},variant:\"xNFM592PV\",width:\"100%\",x7ezT7rx8:\"React Native\",...addPropertyOverrides({LAig6L3qM:{DZKmBZ71m:\"https://portal.thirdweb.com/react-native/v5\"},Nz2AbCewU:{DZKmBZ71m:\"https://portal.thirdweb.com/react-native/v5\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:62,...addPropertyOverrides({LAig6L3qM:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+48+0+0+0+264},Nz2AbCewU:{width:\"360px\",y:(componentViewport?.y||0)+8+0+116+0+198}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-16mjbfh-container\",layoutDependency:layoutDependency,layoutId:\"BZRFtXoOu-container\",nodeId:\"BZRFtXoOu\",rendersWithMotion:true,scopeId:\"FJcN2qQXX\",children:/*#__PURE__*/_jsx(NavigationNavigationDropdownItem,{DZKmBZ71m:\"https://thirdweb.com/engine\",f_OWzkWPM:\"Build games with blockchain and web3 \",height:\"100%\",id:\"BZRFtXoOu\",layoutId:\"BZRFtXoOu\",sEqIccMsb:addImageAlt({src:\"https://framerusercontent.com/images/jOWJwOhk6u5l9UJiN7VCsVv8.png\"},\"\"),style:{width:\"100%\"},variant:\"xNFM592PV\",width:\"100%\",x7ezT7rx8:\"Unity\",...addPropertyOverrides({LAig6L3qM:{DZKmBZ71m:\"https://portal.thirdweb.com/unity/v5\",sEqIccMsb:addImageAlt({src:\"https://framerusercontent.com/images/ejqBk1LXwDMuTJyWjZYZOVdhnQ.png\"},\"\")},Nz2AbCewU:{DZKmBZ71m:\"https://portal.thirdweb.com/unity/v5\",sEqIccMsb:addImageAlt({src:\"https://framerusercontent.com/images/ejqBk1LXwDMuTJyWjZYZOVdhnQ.png\"},\"\")}},baseVariant,gestureVariant)})})}),isDisplayed14()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({LAig6L3qM:{height:62,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+48+0+0+0+198},Nz2AbCewU:{height:62,width:\"360px\",y:(componentViewport?.y||0)+8+0+116+0+264}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-gg1t15-container\",layoutDependency:layoutDependency,layoutId:\"aqhCtT3OX-container\",nodeId:\"aqhCtT3OX\",rendersWithMotion:true,scopeId:\"FJcN2qQXX\",children:/*#__PURE__*/_jsx(NavigationNavigationDropdownItem,{DZKmBZ71m:\"https://portal.thirdweb.com/unreal\",f_OWzkWPM:\"Create wallets in Unreal Engine\",height:\"100%\",id:\"aqhCtT3OX\",layoutId:\"aqhCtT3OX\",sEqIccMsb:addImageAlt({src:\"https://framerusercontent.com/images/CG0Bhqs0zOymenTxQqn81VgP60U.png\"},\"\"),style:{width:\"100%\"},variant:\"xNFM592PV\",width:\"100%\",x7ezT7rx8:\"Unreal Engine\",...addPropertyOverrides({LAig6L3qM:{sEqIccMsb:addImageAlt({src:\"https://framerusercontent.com/images/JfDJxuCh6G1iGtfnapRXDuKSSM.png\"},\"\")},Nz2AbCewU:{sEqIccMsb:addImageAlt({src:\"https://framerusercontent.com/images/JfDJxuCh6G1iGtfnapRXDuKSSM.png\"},\"\")}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:62,...addPropertyOverrides({LAig6L3qM:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+48+0+0+0+396},Nz2AbCewU:{width:\"360px\",y:(componentViewport?.y||0)+8+0+116+0+396}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-tlalh2-container\",layoutDependency:layoutDependency,layoutId:\"nfySXS56K-container\",nodeId:\"nfySXS56K\",rendersWithMotion:true,scopeId:\"FJcN2qQXX\",children:/*#__PURE__*/_jsx(NavigationNavigationDropdownItem,{DZKmBZ71m:\"https://thirdweb.com/engine\",f_OWzkWPM:\"Build custom smart contracts efficiently\",height:\"100%\",id:\"nfySXS56K\",layoutId:\"nfySXS56K\",sEqIccMsb:addImageAlt({src:\"https://framerusercontent.com/images/kKbRH1ZjZwo6Vcs3txJzyyZEo0s.png\"},\"\"),style:{width:\"100%\"},variant:\"xNFM592PV\",width:\"100%\",x7ezT7rx8:\"Solidity\",...addPropertyOverrides({LAig6L3qM:{DZKmBZ71m:\"https://portal.thirdweb.com/contracts/build/overview\"},Nz2AbCewU:{DZKmBZ71m:\"https://portal.thirdweb.com/contracts/build/overview\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:62,...addPropertyOverrides({LAig6L3qM:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+48+0+0+0+330},Nz2AbCewU:{width:\"360px\",y:(componentViewport?.y||0)+8+0+116+0+330}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-17zxyhg-container\",layoutDependency:layoutDependency,layoutId:\"odaR0ENJG-container\",nodeId:\"odaR0ENJG\",rendersWithMotion:true,scopeId:\"FJcN2qQXX\",children:/*#__PURE__*/_jsx(NavigationNavigationDropdownItem,{DZKmBZ71m:\"https://thirdweb.com/engine\",f_OWzkWPM:\"Build .NET apps and Godot games\",height:\"100%\",id:\"odaR0ENJG\",layoutId:\"odaR0ENJG\",sEqIccMsb:addImageAlt({src:\"https://framerusercontent.com/images/h2ivOUcXIVkUXvrxvtn0Vw0CMmw.png\"},\"\"),style:{width:\"100%\"},variant:\"xNFM592PV\",width:\"100%\",x7ezT7rx8:\".NET\",...addPropertyOverrides({LAig6L3qM:{DZKmBZ71m:\"https://portal.thirdweb.com/dotnet\"},Nz2AbCewU:{DZKmBZ71m:\"https://portal.thirdweb.com/dotnet\"}},baseVariant,gestureVariant)})})})]}),isDisplayed15()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-e5jtjs\",layoutDependency:layoutDependency,layoutId:\"qe0diIAlY\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"20px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c4634c61-c453-49aa-834c-3d21e51f5eb0, rgb(163, 163, 163)))\"},children:\"SDKs\"})}),className:\"framer-28d3yv\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"FV0lfjZpU\",style:{\"--extracted-r6o4lv\":\"var(--token-c4634c61-c453-49aa-834c-3d21e51f5eb0, rgb(163, 163, 163))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})})]}),isDisplayed16()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-zwzbda\",\"data-framer-name\":\"Header 1\",layoutDependency:layoutDependency,layoutId:\"D9_6e9Rpd\",...addPropertyOverrides({dez9JJdxV:{\"data-highlight\":true,onTap:onTapzhqlim},LAig6L3qM:{\"data-highlight\":true,onTap:onTapd1asq2},T8sMIMJ9w:{\"data-highlight\":true,onTap:onTap10o7lfq}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c4634c61-c453-49aa-834c-3d21e51f5eb0, rgb(163, 163, 163)))\"},children:\"Product\"})}),className:\"framer-1rt1j1l\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"gwFd07vNO\",style:{\"--extracted-r6o4lv\":\"var(--token-c4634c61-c453-49aa-834c-3d21e51f5eb0, rgb(163, 163, 163))\",\"--framer-paragraph-spacing\":\"0px\"},variants:{dez9JJdxV:{\"--extracted-r6o4lv\":\"var(--token-986afb1c-84ad-46b2-a807-6bd407af3abe, rgb(250, 250, 250))\"},LAig6L3qM:{\"--extracted-r6o4lv\":\"var(--token-986afb1c-84ad-46b2-a807-6bd407af3abe, rgb(250, 250, 250))\"},T8sMIMJ9w:{\"--extracted-r6o4lv\":\"var(--token-986afb1c-84ad-46b2-a807-6bd407af3abe, rgb(250, 250, 250))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({dez9JJdxV:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-986afb1c-84ad-46b2-a807-6bd407af3abe, rgb(250, 250, 250)))\"},children:\"Product\"})})},e3yhbEX_d:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c4634c61-c453-49aa-834c-3d21e51f5eb0, rgb(163, 163, 163)))\"},children:\"Resources\"})})},LAig6L3qM:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-986afb1c-84ad-46b2-a807-6bd407af3abe, rgb(250, 250, 250)))\"},children:\"SDKs\"})})},T8sMIMJ9w:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-986afb1c-84ad-46b2-a807-6bd407af3abe, rgb(250, 250, 250)))\"},children:\"Resources\"})})},xzgIV8Sif:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c4634c61-c453-49aa-834c-3d21e51f5eb0, rgb(163, 163, 163)))\"},children:\"SDKs\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1woxgjt-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"tNlgdIPTG-container\",nodeId:\"tNlgdIPTG\",rendersWithMotion:true,scopeId:\"FJcN2qQXX\",style:{rotate:0},variants:{dez9JJdxV:{rotate:180},e3yhbEX_d:{rotate:0},LAig6L3qM:{rotate:180},Nn65t9o0Z:{rotate:0},T8sMIMJ9w:{rotate:180},xzgIV8Sif:{rotate:0}},children:/*#__PURE__*/_jsx(SVG,{customColor:\"var(--token-c4634c61-c453-49aa-834c-3d21e51f5eb0, rgb(163, 163, 163))\",customPadding:0,customStrokeWidth:1.25,customSvgCode:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\" height=\"12\" viewBox=\"0 0 12 12\" fill=\"none\">   <path d=\"M4.5 9L7.5 6L4.5 3\" stroke=\"white\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/> </svg>',height:\"100%\",id:\"tNlgdIPTG\",layoutId:\"tNlgdIPTG\",lineCap:\"round\",lineJoin:\"round\",style:{height:\"100%\",width:\"100%\"},width:\"100%\",...addPropertyOverrides({dez9JJdxV:{customColor:\"var(--token-986afb1c-84ad-46b2-a807-6bd407af3abe, rgb(250, 250, 250))\",customSvgCode:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\">   <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M5.29289 8.29289C5.68342 7.90237 6.31658 7.90237 6.70711 8.29289L12 13.5858L17.2929 8.29289C17.6834 7.90237 18.3166 7.90237 18.7071 8.29289C19.0976 8.68342 19.0976 9.31658 18.7071 9.70711L12.7071 15.7071C12.3166 16.0976 11.6834 16.0976 11.2929 15.7071L5.29289 9.70711C4.90237 9.31658 4.90237 8.68342 5.29289 8.29289Z\" fill=\"black\"/> </svg>'},e3yhbEX_d:{customSvgCode:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\">   <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M5.29289 8.29289C5.68342 7.90237 6.31658 7.90237 6.70711 8.29289L12 13.5858L17.2929 8.29289C17.6834 7.90237 18.3166 7.90237 18.7071 8.29289C19.0976 8.68342 19.0976 9.31658 18.7071 9.70711L12.7071 15.7071C12.3166 16.0976 11.6834 16.0976 11.2929 15.7071L5.29289 9.70711C4.90237 9.31658 4.90237 8.68342 5.29289 8.29289Z\" fill=\"black\"/> </svg>'},LAig6L3qM:{customColor:\"var(--token-986afb1c-84ad-46b2-a807-6bd407af3abe, rgb(250, 250, 250))\",customSvgCode:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\">   <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M5.29289 8.29289C5.68342 7.90237 6.31658 7.90237 6.70711 8.29289L12 13.5858L17.2929 8.29289C17.6834 7.90237 18.3166 7.90237 18.7071 8.29289C19.0976 8.68342 19.0976 9.31658 18.7071 9.70711L12.7071 15.7071C12.3166 16.0976 11.6834 16.0976 11.2929 15.7071L5.29289 9.70711C4.90237 9.31658 4.90237 8.68342 5.29289 8.29289Z\" fill=\"black\"/> </svg>'},Nn65t9o0Z:{customSvgCode:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\">   <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M5.29289 8.29289C5.68342 7.90237 6.31658 7.90237 6.70711 8.29289L12 13.5858L17.2929 8.29289C17.6834 7.90237 18.3166 7.90237 18.7071 8.29289C19.0976 8.68342 19.0976 9.31658 18.7071 9.70711L12.7071 15.7071C12.3166 16.0976 11.6834 16.0976 11.2929 15.7071L5.29289 9.70711C4.90237 9.31658 4.90237 8.68342 5.29289 8.29289Z\" fill=\"black\"/> </svg>'},T8sMIMJ9w:{customColor:\"var(--token-986afb1c-84ad-46b2-a807-6bd407af3abe, rgb(250, 250, 250))\",customSvgCode:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\">   <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M5.29289 8.29289C5.68342 7.90237 6.31658 7.90237 6.70711 8.29289L12 13.5858L17.2929 8.29289C17.6834 7.90237 18.3166 7.90237 18.7071 8.29289C19.0976 8.68342 19.0976 9.31658 18.7071 9.70711L12.7071 15.7071C12.3166 16.0976 11.6834 16.0976 11.2929 15.7071L5.29289 9.70711C4.90237 9.31658 4.90237 8.68342 5.29289 8.29289Z\" fill=\"black\"/> </svg>'},xzgIV8Sif:{customSvgCode:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\">   <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M5.29289 8.29289C5.68342 7.90237 6.31658 7.90237 6.70711 8.29289L12 13.5858L17.2929 8.29289C17.6834 7.90237 18.3166 7.90237 18.7071 8.29289C19.0976 8.68342 19.0976 9.31658 18.7071 9.70711L12.7071 15.7071C12.3166 16.0976 11.6834 16.0976 11.2929 15.7071L5.29289 9.70711C4.90237 9.31658 4.90237 8.68342 5.29289 8.29289Z\" fill=\"black\"/> </svg>'}},baseVariant,gestureVariant)})})})]}),isDisplayed17()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1o5n3vw\",\"data-framer-name\":\"Header 2\",layoutDependency:layoutDependency,layoutId:\"rN_qI3_3t\",...addPropertyOverrides({rR2_PuvFN:{\"data-highlight\":true,onTap:onTap15te8ni},vNbhnXS57:{\"data-highlight\":true,onTap:onTapeylbgt}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c4634c61-c453-49aa-834c-3d21e51f5eb0, rgb(163, 163, 163)))\"},children:\"Solutions\"})}),className:\"framer-xlm5wn\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"cWwHG4tTc\",style:{\"--extracted-r6o4lv\":\"var(--token-c4634c61-c453-49aa-834c-3d21e51f5eb0, rgb(163, 163, 163))\",\"--framer-paragraph-spacing\":\"0px\"},variants:{rR2_PuvFN:{\"--extracted-r6o4lv\":\"var(--token-986afb1c-84ad-46b2-a807-6bd407af3abe, rgb(250, 250, 250))\"},vNbhnXS57:{\"--extracted-r6o4lv\":\"var(--token-986afb1c-84ad-46b2-a807-6bd407af3abe, rgb(250, 250, 250))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({jqryaPGGn:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c4634c61-c453-49aa-834c-3d21e51f5eb0, rgb(163, 163, 163)))\"},children:\"Dev Tools\"})})},rR2_PuvFN:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-986afb1c-84ad-46b2-a807-6bd407af3abe, rgb(250, 250, 250)))\"},children:\"Solutions\"})})},vNbhnXS57:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-986afb1c-84ad-46b2-a807-6bd407af3abe, rgb(250, 250, 250)))\"},children:\"Dev Tools\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-v4cxso-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"DtnANPo3_-container\",nodeId:\"DtnANPo3_\",rendersWithMotion:true,scopeId:\"FJcN2qQXX\",style:{rotate:180},variants:{jqryaPGGn:{rotate:0},R2o9ed1nb:{rotate:0}},children:/*#__PURE__*/_jsx(SVG,{customColor:\"var(--token-986afb1c-84ad-46b2-a807-6bd407af3abe, rgb(250, 250, 250))\",customPadding:0,customStrokeWidth:1.25,customSvgCode:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\">   <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M5.29289 8.29289C5.68342 7.90237 6.31658 7.90237 6.70711 8.29289L12 13.5858L17.2929 8.29289C17.6834 7.90237 18.3166 7.90237 18.7071 8.29289C19.0976 8.68342 19.0976 9.31658 18.7071 9.70711L12.7071 15.7071C12.3166 16.0976 11.6834 16.0976 11.2929 15.7071L5.29289 9.70711C4.90237 9.31658 4.90237 8.68342 5.29289 8.29289Z\" fill=\"black\"/> </svg>',height:\"100%\",id:\"DtnANPo3_\",layoutId:\"DtnANPo3_\",lineCap:\"round\",lineJoin:\"round\",style:{height:\"100%\",width:\"100%\"},width:\"100%\",...addPropertyOverrides({jqryaPGGn:{customColor:\"var(--token-c4634c61-c453-49aa-834c-3d21e51f5eb0, rgb(163, 163, 163))\"},R2o9ed1nb:{customColor:\"var(--token-c4634c61-c453-49aa-834c-3d21e51f5eb0, rgb(163, 163, 163))\"}},baseVariant,gestureVariant)})})})]}),isDisplayed18()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-9zbp61\",\"data-framer-name\":\"Header 3\",layoutDependency:layoutDependency,layoutId:\"aJ5HcMrNd\",...addPropertyOverrides({XRZmrqXWr:{\"data-highlight\":true,onTap:onTap1gcbvu9}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c4634c61-c453-49aa-834c-3d21e51f5eb0, rgb(163, 163, 163)))\"},children:\"Company\"})}),className:\"framer-1d20owm\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"kyVPYeqbc\",style:{\"--extracted-r6o4lv\":\"var(--token-c4634c61-c453-49aa-834c-3d21e51f5eb0, rgb(163, 163, 163))\",\"--framer-paragraph-spacing\":\"0px\"},variants:{XRZmrqXWr:{\"--extracted-r6o4lv\":\"var(--token-986afb1c-84ad-46b2-a807-6bd407af3abe, rgb(250, 250, 250))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({XRZmrqXWr:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-986afb1c-84ad-46b2-a807-6bd407af3abe, rgb(250, 250, 250)))\"},children:\"Company\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-9bpp6c-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"v2aYjTzX2-container\",nodeId:\"v2aYjTzX2\",rendersWithMotion:true,scopeId:\"FJcN2qQXX\",style:{rotate:180},variants:{Atz5daY8g:{rotate:0}},children:/*#__PURE__*/_jsx(SVG,{customColor:\"var(--token-986afb1c-84ad-46b2-a807-6bd407af3abe, rgb(250, 250, 250))\",customPadding:0,customStrokeWidth:1.25,customSvgCode:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\">   <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M5.29289 8.29289C5.68342 7.90237 6.31658 7.90237 6.70711 8.29289L12 13.5858L17.2929 8.29289C17.6834 7.90237 18.3166 7.90237 18.7071 8.29289C19.0976 8.68342 19.0976 9.31658 18.7071 9.70711L12.7071 15.7071C12.3166 16.0976 11.6834 16.0976 11.2929 15.7071L5.29289 9.70711C4.90237 9.31658 4.90237 8.68342 5.29289 8.29289Z\" fill=\"black\"/> </svg>',height:\"100%\",id:\"v2aYjTzX2\",layoutId:\"v2aYjTzX2\",lineCap:\"round\",lineJoin:\"round\",style:{height:\"100%\",width:\"100%\"},width:\"100%\",...addPropertyOverrides({Atz5daY8g:{customColor:\"var(--token-c4634c61-c453-49aa-834c-3d21e51f5eb0, rgb(163, 163, 163))\"}},baseVariant,gestureVariant)})})})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-OqVmN.framer-c1zci3, .framer-OqVmN .framer-c1zci3 { display: block; }\",\".framer-OqVmN.framer-uk38wi { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 8px; position: relative; width: 368px; will-change: var(--framer-will-change-override, transform); }\",\".framer-OqVmN .framer-1ksf9ra { 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: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-OqVmN .framer-va4txx { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-OqVmN .framer-ha5an3-container, .framer-OqVmN .framer-1a9ka8u-container, .framer-OqVmN .framer-1j7tx3s-container, .framer-OqVmN .framer-1s4l7fk-container, .framer-OqVmN .framer-ffw9js-container, .framer-OqVmN .framer-191620v-container, .framer-OqVmN .framer-1wxomso-container, .framer-OqVmN .framer-u1k1kw-container, .framer-OqVmN .framer-3hayqz-container, .framer-OqVmN .framer-p9wxsq-container, .framer-OqVmN .framer-1kt2r5x-container, .framer-OqVmN .framer-13rla0f-container, .framer-OqVmN .framer-uny961-container, .framer-OqVmN .framer-1xdzbbu-container, .framer-OqVmN .framer-1192hzv-container, .framer-OqVmN .framer-3gbn8p-container, .framer-OqVmN .framer-18fjcuj-container, .framer-OqVmN .framer-1ruldwy-container, .framer-OqVmN .framer-1hwsvq2-container, .framer-OqVmN .framer-1y54ibs-container, .framer-OqVmN .framer-ex70qi-container, .framer-OqVmN .framer-9rhl2e-container, .framer-OqVmN .framer-a00ula-container, .framer-OqVmN .framer-1ca1nl0-container, .framer-OqVmN .framer-1t6d41l-container, .framer-OqVmN .framer-gep4si-container, .framer-OqVmN .framer-e6t8o3-container, .framer-OqVmN .framer-1hx3qpk-container, .framer-OqVmN .framer-1la103s-container, .framer-OqVmN .framer-16mjbfh-container, .framer-OqVmN .framer-gg1t15-container, .framer-OqVmN .framer-tlalh2-container, .framer-OqVmN .framer-17zxyhg-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-OqVmN .framer-fzidap { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; min-height: 36px; overflow: visible; padding: 8px 12px 8px 12px; position: relative; width: 200px; }\",\".framer-OqVmN .framer-1mju7si, .framer-OqVmN .framer-15p6vei, .framer-OqVmN .framer-b7tse1, .framer-OqVmN .framer-28d3yv, .framer-OqVmN .framer-1rt1j1l, .framer-OqVmN .framer-xlm5wn, .framer-OqVmN .framer-1d20owm { -webkit-user-select: none; flex: 1 0 0px; height: auto; position: relative; user-select: none; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-OqVmN .framer-1ik6rhh, .framer-OqVmN .framer-4k3mr { 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: visible; padding: 0px; position: relative; width: 284px; }\",\".framer-OqVmN .framer-fh0hg6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: visible; padding: 0px 0px 4px 0px; position: relative; width: 100%; }\",\".framer-OqVmN .framer-194ni13, .framer-OqVmN .framer-e5jtjs { 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: 8px 12px 8px 12px; position: relative; width: 100%; }\",\".framer-OqVmN .framer-1enyy79 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 48px; justify-content: center; overflow: visible; padding: 8px 12px 8px 12px; position: relative; width: 100%; }\",\".framer-OqVmN .framer-1s6d1qf { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-OqVmN .framer-zwzbda, .framer-OqVmN .framer-1o5n3vw, .framer-OqVmN .framer-9zbp61 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: 48px; justify-content: center; overflow: visible; padding: 8px 12px 8px 12px; position: relative; width: 200px; }\",\".framer-OqVmN .framer-1woxgjt-container, .framer-OqVmN .framer-v4cxso-container, .framer-OqVmN .framer-9bpp6c-container { flex: none; height: 20px; position: relative; width: 20px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-OqVmN.framer-uk38wi, .framer-OqVmN .framer-1ksf9ra, .framer-OqVmN .framer-va4txx, .framer-OqVmN .framer-fzidap, .framer-OqVmN .framer-1ik6rhh, .framer-OqVmN .framer-fh0hg6, .framer-OqVmN .framer-194ni13, .framer-OqVmN .framer-1enyy79, .framer-OqVmN .framer-4k3mr, .framer-OqVmN .framer-1s6d1qf, .framer-OqVmN .framer-e5jtjs, .framer-OqVmN .framer-zwzbda, .framer-OqVmN .framer-1o5n3vw, .framer-OqVmN .framer-9zbp61 { gap: 0px; } .framer-OqVmN.framer-uk38wi > *, .framer-OqVmN .framer-1ksf9ra > *, .framer-OqVmN .framer-1ik6rhh > *, .framer-OqVmN .framer-4k3mr > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-OqVmN.framer-uk38wi > :first-child, .framer-OqVmN .framer-1ksf9ra > :first-child, .framer-OqVmN .framer-va4txx > :first-child, .framer-OqVmN .framer-1ik6rhh > :first-child, .framer-OqVmN .framer-fh0hg6 > :first-child, .framer-OqVmN .framer-4k3mr > :first-child, .framer-OqVmN .framer-1s6d1qf > :first-child { margin-top: 0px; } .framer-OqVmN.framer-uk38wi > :last-child, .framer-OqVmN .framer-1ksf9ra > :last-child, .framer-OqVmN .framer-va4txx > :last-child, .framer-OqVmN .framer-1ik6rhh > :last-child, .framer-OqVmN .framer-fh0hg6 > :last-child, .framer-OqVmN .framer-4k3mr > :last-child, .framer-OqVmN .framer-1s6d1qf > :last-child { margin-bottom: 0px; } .framer-OqVmN .framer-va4txx > *, .framer-OqVmN .framer-fh0hg6 > *, .framer-OqVmN .framer-1s6d1qf > * { margin: 0px; margin-bottom: calc(4px / 2); margin-top: calc(4px / 2); } .framer-OqVmN .framer-fzidap > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-OqVmN .framer-fzidap > :first-child, .framer-OqVmN .framer-194ni13 > :first-child, .framer-OqVmN .framer-1enyy79 > :first-child, .framer-OqVmN .framer-e5jtjs > :first-child, .framer-OqVmN .framer-zwzbda > :first-child, .framer-OqVmN .framer-1o5n3vw > :first-child, .framer-OqVmN .framer-9zbp61 > :first-child { margin-left: 0px; } .framer-OqVmN .framer-fzidap > :last-child, .framer-OqVmN .framer-194ni13 > :last-child, .framer-OqVmN .framer-1enyy79 > :last-child, .framer-OqVmN .framer-e5jtjs > :last-child, .framer-OqVmN .framer-zwzbda > :last-child, .framer-OqVmN .framer-1o5n3vw > :last-child, .framer-OqVmN .framer-9zbp61 > :last-child { margin-right: 0px; } .framer-OqVmN .framer-194ni13 > *, .framer-OqVmN .framer-1enyy79 > *, .framer-OqVmN .framer-e5jtjs > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-OqVmN .framer-zwzbda > *, .framer-OqVmN .framer-1o5n3vw > *, .framer-OqVmN .framer-9zbp61 > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } }\",\".framer-OqVmN.framer-v-mfldsd .framer-1ksf9ra, .framer-OqVmN.framer-v-rg7b9k .framer-1ksf9ra, .framer-OqVmN.framer-v-rg7b9k .framer-1ik6rhh, .framer-OqVmN.framer-v-rg7b9k .framer-4k3mr { width: 360px; }\",\".framer-OqVmN.framer-v-rg7b9k.framer-uk38wi { flex-direction: row; width: min-content; }\",\".framer-OqVmN.framer-v-rg7b9k .framer-va4txx, .framer-OqVmN.framer-v-1ngqe30 .framer-va4txx { align-content: center; align-items: center; order: 1; }\",\".framer-OqVmN.framer-v-rg7b9k .framer-1s4l7fk-container { order: 10; }\",\".framer-OqVmN.framer-v-rg7b9k .framer-ffw9js-container, .framer-OqVmN.framer-v-rg7b9k .framer-194ni13, .framer-OqVmN.framer-v-rg7b9k .framer-e6t8o3-container, .framer-OqVmN.framer-v-rg7b9k .framer-e5jtjs, .framer-OqVmN.framer-v-1ngqe30 .framer-ffw9js-container, .framer-OqVmN.framer-v-1a5r6r6 .framer-e6t8o3-container { order: 0; }\",\".framer-OqVmN.framer-v-rg7b9k .framer-uny961-container, .framer-OqVmN.framer-v-1ngqe30 .framer-13rla0f-container { order: 11; }\",\".framer-OqVmN.framer-v-rg7b9k .framer-1xdzbbu-container, .framer-OqVmN.framer-v-1ngqe30 .framer-1192hzv-container { order: 15; }\",\".framer-OqVmN.framer-v-rg7b9k .framer-1192hzv-container, .framer-OqVmN.framer-v-1ngqe30 .framer-3gbn8p-container { order: 16; }\",\".framer-OqVmN.framer-v-rg7b9k .framer-3gbn8p-container { order: 17; }\",\".framer-OqVmN.framer-v-rg7b9k .framer-18fjcuj-container, .framer-OqVmN.framer-v-1ngqe30 .framer-1xdzbbu-container { order: 14; }\",\".framer-OqVmN.framer-v-rg7b9k .framer-1ruldwy-container { order: 12; }\",\".framer-OqVmN.framer-v-rg7b9k .framer-fzidap { gap: 10px; min-height: unset; order: 0; width: 100%; }\",\".framer-OqVmN.framer-v-rg7b9k .framer-fh0hg6, .framer-OqVmN.framer-v-rg7b9k .framer-1s6d1qf, .framer-OqVmN.framer-v-rg7b9k .framer-1hx3qpk-container, .framer-OqVmN.framer-v-stlnfj .framer-1ksf9ra, .framer-OqVmN.framer-v-huml0j .framer-1ksf9ra, .framer-OqVmN.framer-v-1100gup .framer-1ksf9ra, .framer-OqVmN.framer-v-1ngqe30 .framer-1ksf9ra, .framer-OqVmN.framer-v-1a5r6r6 .framer-1s6d1qf, .framer-OqVmN.framer-v-1a5r6r6 .framer-1hx3qpk-container { order: 1; }\",\".framer-OqVmN.framer-v-rg7b9k .framer-1la103s-container, .framer-OqVmN.framer-v-1a5r6r6 .framer-1la103s-container { order: 2; }\",\".framer-OqVmN.framer-v-rg7b9k .framer-16mjbfh-container, .framer-OqVmN.framer-v-1a5r6r6 .framer-gg1t15-container { order: 3; }\",\".framer-OqVmN.framer-v-rg7b9k .framer-gg1t15-container, .framer-OqVmN.framer-v-1a5r6r6 .framer-16mjbfh-container { order: 4; }\",\".framer-OqVmN.framer-v-rg7b9k .framer-tlalh2-container, .framer-OqVmN.framer-v-1a5r6r6 .framer-tlalh2-container { order: 6; }\",\".framer-OqVmN.framer-v-rg7b9k .framer-17zxyhg-container, .framer-OqVmN.framer-v-1a5r6r6 .framer-17zxyhg-container { order: 5; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-OqVmN.framer-v-rg7b9k.framer-uk38wi, .framer-OqVmN.framer-v-rg7b9k .framer-fzidap { gap: 0px; } .framer-OqVmN.framer-v-rg7b9k.framer-uk38wi > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-OqVmN.framer-v-rg7b9k.framer-uk38wi > :first-child, .framer-OqVmN.framer-v-rg7b9k .framer-fzidap > :first-child { margin-left: 0px; } .framer-OqVmN.framer-v-rg7b9k.framer-uk38wi > :last-child, .framer-OqVmN.framer-v-rg7b9k .framer-fzidap > :last-child { margin-right: 0px; } .framer-OqVmN.framer-v-rg7b9k .framer-fzidap > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } }\",\".framer-OqVmN.framer-v-stlnfj.framer-uk38wi, .framer-OqVmN.framer-v-huml0j.framer-uk38wi, .framer-OqVmN.framer-v-1100gup.framer-uk38wi, .framer-OqVmN.framer-v-1ngqe30.framer-uk38wi, .framer-OqVmN.framer-v-12ztrlz.framer-uk38wi, .framer-OqVmN.framer-v-1a5r6r6.framer-uk38wi { padding: 0px; will-change: unset; }\",\".framer-OqVmN.framer-v-stlnfj .framer-zwzbda, .framer-OqVmN.framer-v-huml0j .framer-1o5n3vw, .framer-OqVmN.framer-v-1100gup .framer-9zbp61, .framer-OqVmN.framer-v-1ngqe30 .framer-zwzbda, .framer-OqVmN.framer-v-12ztrlz .framer-1o5n3vw, .framer-OqVmN.framer-v-1a5r6r6 .framer-zwzbda { cursor: pointer; order: 0; width: 100%; }\",\".framer-OqVmN.framer-v-1hhfutz.framer-uk38wi, .framer-OqVmN.framer-v-l4d7s2.framer-uk38wi, .framer-OqVmN.framer-v-q38cf6.framer-uk38wi, .framer-OqVmN.framer-v-qr82pp.framer-uk38wi, .framer-OqVmN.framer-v-17qx3ra.framer-uk38wi, .framer-OqVmN.framer-v-solkdp.framer-uk38wi { cursor: pointer; padding: 0px; will-change: unset; }\",\".framer-OqVmN.framer-v-1hhfutz .framer-zwzbda, .framer-OqVmN.framer-v-l4d7s2 .framer-1o5n3vw, .framer-OqVmN.framer-v-q38cf6 .framer-9zbp61, .framer-OqVmN.framer-v-qr82pp .framer-zwzbda, .framer-OqVmN.framer-v-17qx3ra .framer-1o5n3vw, .framer-OqVmN.framer-v-solkdp .framer-zwzbda { order: 0; width: 100%; }\",\".framer-OqVmN.framer-v-1ngqe30 .framer-1j7tx3s-container { order: 9; }\",\".framer-OqVmN.framer-v-1ngqe30 .framer-18fjcuj-container { order: 13; }\",\".framer-OqVmN.framer-v-12ztrlz .framer-1ik6rhh { order: 2; width: 100%; }\",\".framer-OqVmN.framer-v-12ztrlz .framer-fh0hg6 { order: 2; padding: 0px; }\",\".framer-OqVmN.framer-v-1a5r6r6 .framer-4k3mr { order: 3; width: 100%; }\",'.framer-OqVmN[data-border=\"true\"]::after, .framer-OqVmN [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 342\n * @framerIntrinsicWidth 368\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"ScahxRD97\":{\"layout\":[\"fixed\",\"auto\"]},\"kLcJZnmEd\":{\"layout\":[\"fixed\",\"auto\"]},\"Nz2AbCewU\":{\"layout\":[\"auto\",\"auto\"]},\"dez9JJdxV\":{\"layout\":[\"fixed\",\"auto\"]},\"rR2_PuvFN\":{\"layout\":[\"fixed\",\"auto\"]},\"XRZmrqXWr\":{\"layout\":[\"fixed\",\"auto\"]},\"Nn65t9o0Z\":{\"layout\":[\"fixed\",\"auto\"]},\"R2o9ed1nb\":{\"layout\":[\"fixed\",\"auto\"]},\"Atz5daY8g\":{\"layout\":[\"fixed\",\"auto\"]},\"T8sMIMJ9w\":{\"layout\":[\"fixed\",\"auto\"]},\"vNbhnXS57\":{\"layout\":[\"fixed\",\"auto\"]},\"LAig6L3qM\":{\"layout\":[\"fixed\",\"auto\"]},\"e3yhbEX_d\":{\"layout\":[\"fixed\",\"auto\"]},\"jqryaPGGn\":{\"layout\":[\"fixed\",\"auto\"]},\"xzgIV8Sif\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerFJcN2qQXX=withCSS(Component,css,\"framer-OqVmN\");export default FramerFJcN2qQXX;FramerFJcN2qQXX.displayName=\"Navigation / Dropdown\";FramerFJcN2qQXX.defaultProps={height:342,width:368};addPropertyControls(FramerFJcN2qQXX,{variant:{options:[\"bH2emI93a\",\"ScahxRD97\",\"kLcJZnmEd\",\"Nz2AbCewU\",\"dez9JJdxV\",\"rR2_PuvFN\",\"XRZmrqXWr\",\"Nn65t9o0Z\",\"R2o9ed1nb\",\"Atz5daY8g\",\"T8sMIMJ9w\",\"vNbhnXS57\",\"LAig6L3qM\",\"e3yhbEX_d\",\"jqryaPGGn\",\"xzgIV8Sif\"],optionTitles:[\"Desktop: Products\",\"Desktop: Solutions\",\"Desktop: Company\",\"Desktop: Developer\",\"Mobile: Products Expanded\",\"Mobile: Solutions Expanded\",\"Mobile: Company Expanded\",\"Mobile: Products Collapsed\",\"Mobile: Solutions Collapsed\",\"Mobile: Company Collapsed\",\"Mobile: Developers - Resources Expanded\",\"Mobile: Developers - Dev Tools Expanded\",\"Mobile: Developers - SDKS Expanded\",\"Mobile: Developers - Resources Collapsed\",\"Mobile: Developers - Dev Tools Collapsed\",\"Mobile: Developers - SDKs Collapsed\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerFJcN2qQXX,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5A3Ce6C9YYmCjpQx9M4inSaKU.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/Qx95Xyt0Ka3SGhinnbXIGpEIyP4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/6mJuEAguuIuMog10gGvH5d3cl8.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/xYYWaj7wCU5zSQH0eXvSaS19wo.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/otTaNuNpVK4RbdlT7zDDdKvQBA.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/d3tHnaQIAeqiE5hGcRw4mmgWYU.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/DolVirEGb34pEXEp8t8FQBSK4.woff2\",weight:\"500\"}]},...NavigationNavigationDropdownItemFonts,...SVGFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerFJcN2qQXX\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ScahxRD97\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"kLcJZnmEd\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Nz2AbCewU\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"dez9JJdxV\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"rR2_PuvFN\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"XRZmrqXWr\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Nn65t9o0Z\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"R2o9ed1nb\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Atz5daY8g\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"T8sMIMJ9w\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"vNbhnXS57\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"LAig6L3qM\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"e3yhbEX_d\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"jqryaPGGn\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"xzgIV8Sif\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"342\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"368\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./FJcN2qQXX.map", "// Generated by Framer (e9d8252)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,Link,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import SVG from\"https://framerusercontent.com/modules/I1DC9cTt2FcHsDUAaRxW/OobIpExjjda7YDjHO9YN/SVG.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/vuYJjvBKWw39av0kGo34/z2CyEUwQik5Zo5R29o6x/NTBX0l6Io.js\";const SVGFonts=getFonts(SVG);const enabledGestures={l6xt7ZYLO:{hover:true},R9eGq4K66:{hover:true}};const cycleOrder=[\"R9eGq4K66\",\"l6xt7ZYLO\"];const serializationHash=\"framer-rgY16\";const variantClassNames={l6xt7ZYLO:\"framer-v-184l856\",R9eGq4K66:\"framer-v-1d3p79\"};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={delay:0,duration:.15,ease:[.12,.23,.5,1],type:\"tween\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"No Icon\":\"R9eGq4K66\",Icon:\"l6xt7ZYLO\"};const getProps=({height,hover,id,link,name1,width,...props})=>{var _ref,_humanReadableVariantMap_props_variant,_ref1;return{...props,ba8EEYMO8:hover!==null&&hover!==void 0?hover:props.ba8EEYMO8,DypPJCEq2:(_ref=name1!==null&&name1!==void 0?name1:props.DypPJCEq2)!==null&&_ref!==void 0?_ref:\"Link 1\",variant:(_ref1=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref1!==void 0?_ref1:\"R9eGq4K66\",zhjSmsf4E:link!==null&&link!==void 0?link:props.zhjSmsf4E};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,DypPJCEq2,zhjSmsf4E,ba8EEYMO8,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"R9eGq4K66\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onMouseEnter1cl9sml=activeVariantCallback(async(...args)=>{setGestureState({isHovered:true});if(ba8EEYMO8){const res=await ba8EEYMO8(...args);if(res===false)return false;}});const ref1=React.useRef(null);const isDisplayed=()=>{if(gestureVariant===\"l6xt7ZYLO-hover\")return true;if(baseVariant===\"l6xt7ZYLO\")return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:zhjSmsf4E,openInNewTab:false,...addPropertyOverrides({\"l6xt7ZYLO-hover\":{href:undefined},l6xt7ZYLO:{href:undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-1d3p79\",className,classNames)} framer-1sjw63s`,\"data-framer-name\":\"No Icon\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"R9eGq4K66\",onMouseEnter:onMouseEnter1cl9sml,ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"rgba(23, 23, 23, 0)\",borderBottomLeftRadius:9999,borderBottomRightRadius:9999,borderTopLeftRadius:9999,borderTopRightRadius:9999,...style},variants:{\"l6xt7ZYLO-hover\":{backgroundColor:\"var(--token-c577e02e-f43d-46dc-969d-cdb91fd83990, rgb(38, 38, 38))\"},\"R9eGq4K66-hover\":{backgroundColor:\"var(--token-c577e02e-f43d-46dc-969d-cdb91fd83990, rgb(38, 38, 38))\"}},...addPropertyOverrides({\"l6xt7ZYLO-hover\":{\"data-framer-name\":undefined},\"R9eGq4K66-hover\":{\"data-framer-name\":undefined},l6xt7ZYLO:{\"data-framer-name\":\"Icon\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-npxqny\",\"data-styles-preset\":\"NTBX0l6Io\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c4634c61-c453-49aa-834c-3d21e51f5eb0, rgb(163, 163, 163)))\"},children:\"Link 1\"})}),className:\"framer-1rl34gv\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"IM45GnTtF\",style:{\"--extracted-r6o4lv\":\"var(--token-c4634c61-c453-49aa-834c-3d21e51f5eb0, rgb(163, 163, 163))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:DypPJCEq2,variants:{\"l6xt7ZYLO-hover\":{\"--extracted-r6o4lv\":\"var(--token-986afb1c-84ad-46b2-a807-6bd407af3abe, rgb(250, 250, 250))\"},\"R9eGq4K66-hover\":{\"--extracted-r6o4lv\":\"var(--token-986afb1c-84ad-46b2-a807-6bd407af3abe, rgb(250, 250, 250))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"l6xt7ZYLO-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-npxqny\",\"data-styles-preset\":\"NTBX0l6Io\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-986afb1c-84ad-46b2-a807-6bd407af3abe, rgb(250, 250, 250)))\"},children:\"Link 1\"})})},\"R9eGq4K66-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-npxqny\",\"data-styles-preset\":\"NTBX0l6Io\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-986afb1c-84ad-46b2-a807-6bd407af3abe, rgb(250, 250, 250)))\"},children:\"Link 1\"})})}},baseVariant,gestureVariant)}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-7zp9om-container\",layoutDependency:layoutDependency,layoutId:\"PasbmAOtN-container\",style:{rotate:0},variants:{\"l6xt7ZYLO-hover\":{rotate:180}},children:/*#__PURE__*/_jsx(SVG,{customColor:\"var(--token-c4634c61-c453-49aa-834c-3d21e51f5eb0, rgb(163, 163, 163))\",customPadding:0,customStrokeWidth:2,customSvgCode:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\">   <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M5.29289 8.29289C5.68342 7.90237 6.31658 7.90237 6.70711 8.29289L12 13.5858L17.2929 8.29289C17.6834 7.90237 18.3166 7.90237 18.7071 8.29289C19.0976 8.68342 19.0976 9.31658 18.7071 9.70711L12.7071 15.7071C12.3166 16.0976 11.6834 16.0976 11.2929 15.7071L5.29289 9.70711C4.90237 9.31658 4.90237 8.68342 5.29289 8.29289Z\" fill=\"black\"/> </svg>',height:\"100%\",id:\"PasbmAOtN\",layoutId:\"PasbmAOtN\",lineCap:\"butt\",lineJoin:\"miter\",style:{height:\"100%\",width:\"100%\"},width:\"100%\",...addPropertyOverrides({\"l6xt7ZYLO-hover\":{customColor:\"var(--token-986afb1c-84ad-46b2-a807-6bd407af3abe, rgb(250, 250, 250))\"}},baseVariant,gestureVariant)})})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-rgY16.framer-1sjw63s, .framer-rgY16 .framer-1sjw63s { display: block; }\",\".framer-rgY16.framer-1d3p79 { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; padding: 6px 12px 6px 12px; position: relative; text-decoration: none; width: min-content; }\",\".framer-rgY16 .framer-1rl34gv { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre; width: auto; }\",\".framer-rgY16 .framer-7zp9om-container { flex: none; height: 16px; position: relative; width: 16px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-rgY16.framer-1d3p79 { gap: 0px; } .framer-rgY16.framer-1d3p79 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-rgY16.framer-1d3p79 > :first-child { margin-top: 0px; } .framer-rgY16.framer-1d3p79 > :last-child { margin-bottom: 0px; } }\",\".framer-rgY16.framer-v-184l856.framer-1d3p79 { flex-direction: row; gap: 6px; padding: 6px 10px 6px 12px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-rgY16.framer-v-184l856.framer-1d3p79 { gap: 0px; } .framer-rgY16.framer-v-184l856.framer-1d3p79 > * { margin: 0px; margin-left: calc(6px / 2); margin-right: calc(6px / 2); } .framer-rgY16.framer-v-184l856.framer-1d3p79 > :first-child { margin-left: 0px; } .framer-rgY16.framer-v-184l856.framer-1d3p79 > :last-child { margin-right: 0px; } }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 32\n * @framerIntrinsicWidth 61.5\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"l6xt7ZYLO\":{\"layout\":[\"auto\",\"auto\"]},\"qPIIuJ4Rt\":{\"layout\":[\"auto\",\"auto\"]},\"Y7KEbUJYk\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"DypPJCEq2\":\"name1\",\"zhjSmsf4E\":\"link\",\"ba8EEYMO8\":\"hover\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerOd8026J91=withCSS(Component,css,\"framer-rgY16\");export default FramerOd8026J91;FramerOd8026J91.displayName=\"Navigation / Navigation Item\";FramerOd8026J91.defaultProps={height:32,width:61.5};addPropertyControls(FramerOd8026J91,{variant:{options:[\"R9eGq4K66\",\"l6xt7ZYLO\"],optionTitles:[\"No Icon\",\"Icon\"],title:\"Variant\",type:ControlType.Enum},DypPJCEq2:{defaultValue:\"Link 1\",title:\"Name\",type:ControlType.String},zhjSmsf4E:{title:\"Link\",type:ControlType.Link},ba8EEYMO8:{title:\"Hover\",type:ControlType.EventHandler}});addFonts(FramerOd8026J91,[{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\"}]},...SVGFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerOd8026J91\",\"slots\":[],\"annotations\":{\"framerVariables\":\"{\\\"DypPJCEq2\\\":\\\"name1\\\",\\\"zhjSmsf4E\\\":\\\"link\\\",\\\"ba8EEYMO8\\\":\\\"hover\\\"}\",\"framerIntrinsicHeight\":\"32\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"l6xt7ZYLO\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"qPIIuJ4Rt\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"Y7KEbUJYk\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"61.5\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Od8026J91.map", "// Generated by Framer (56d1180)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,Link,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import SVG from\"https://framerusercontent.com/modules/I1DC9cTt2FcHsDUAaRxW/OobIpExjjda7YDjHO9YN/SVG.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/vuYJjvBKWw39av0kGo34/z2CyEUwQik5Zo5R29o6x/NTBX0l6Io.js\";const SVGFonts=getFonts(SVG);const enabledGestures={pkNUdqLOy:{hover:true},S_DXrcQST:{hover:true},sqtiocV0P:{hover:true}};const cycleOrder=[\"S_DXrcQST\",\"pkNUdqLOy\",\"X7feh5rSU\",\"SgV5c8p6a\",\"sqtiocV0P\"];const serializationHash=\"framer-6adrU\";const variantClassNames={pkNUdqLOy:\"framer-v-kl134c\",S_DXrcQST:\"framer-v-nhkejj\",SgV5c8p6a:\"framer-v-obugwc\",sqtiocV0P:\"framer-v-hk5vsa\",X7feh5rSU:\"framer-v-1iq56ji\"};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.create(React.Fragment);const humanReadableVariantMap={\"Mobile Close\":\"SgV5c8p6a\",\"Mobile Default\":\"X7feh5rSU\",\"With Icon\":\"sqtiocV0P\",Primary:\"S_DXrcQST\",Secondary:\"pkNUdqLOy\"};const getProps=({click2,height,id,link,title,width,...props})=>{var _ref,_humanReadableVariantMap_props_variant,_ref1;return{...props,jqbfMUXWy:(_ref=title!==null&&title!==void 0?title:props.jqbfMUXWy)!==null&&_ref!==void 0?_ref:\"Create\",RZyA4xOaV:link!==null&&link!==void 0?link:props.RZyA4xOaV,variant:(_ref1=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref1!==void 0?_ref1:\"S_DXrcQST\",vvcOsJhDm:click2!==null&&click2!==void 0?click2:props.vvcOsJhDm};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,jqbfMUXWy,RZyA4xOaV,vvcOsJhDm,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"S_DXrcQST\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTapfq91xh=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(vvcOsJhDm){const res=await vvcOsJhDm(...args);if(res===false)return false;}});const ref1=React.useRef(null);const isDisplayed=()=>{if([\"X7feh5rSU\",\"SgV5c8p6a\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if([\"X7feh5rSU\",\"SgV5c8p6a\"].includes(baseVariant))return true;return false;};const isDisplayed2=()=>{if(gestureVariant===\"sqtiocV0P-hover\")return true;if(baseVariant===\"sqtiocV0P\")return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:RZyA4xOaV,openInNewTab:false,children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-nhkejj\",className,classNames)} framer-1o04y4`,\"data-framer-name\":\"Primary\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"S_DXrcQST\",onTap:onTapfq91xh,ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgba(0, 0, 0, 0)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",backgroundColor:\"var(--token-d095d4f4-b9c6-44d7-8496-68276b3d5054, rgb(255, 255, 255))\",borderBottomLeftRadius:1e3,borderBottomRightRadius:1e3,borderTopLeftRadius:1e3,borderTopRightRadius:1e3,...style},variants:{\"pkNUdqLOy-hover\":{backgroundColor:\"var(--token-c3261aba-f7cb-480a-88c7-9732b17547ca, rgb(23, 23, 23))\"},\"S_DXrcQST-hover\":{backgroundColor:\"var(--token-80197f60-5b03-4245-879a-f8f7bd718bb3, rgb(229, 229, 229))\"},\"sqtiocV0P-hover\":{backgroundColor:\"var(--token-80197f60-5b03-4245-879a-f8f7bd718bb3, rgb(229, 229, 229))\"},pkNUdqLOy:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-c577e02e-f43d-46dc-969d-cdb91fd83990, rgb(38, 38, 38))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-3b98b97f-17e0-41b1-8bc6-f8dae04475db, rgb(10, 10, 10))\"},SgV5c8p6a:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-c577e02e-f43d-46dc-969d-cdb91fd83990, rgb(38, 38, 38))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-3b98b97f-17e0-41b1-8bc6-f8dae04475db, rgb(10, 10, 10))\",borderBottomLeftRadius:9999,borderBottomRightRadius:9999,borderTopLeftRadius:9999,borderTopRightRadius:9999},X7feh5rSU:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-c577e02e-f43d-46dc-969d-cdb91fd83990, rgb(38, 38, 38))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-3b98b97f-17e0-41b1-8bc6-f8dae04475db, rgb(10, 10, 10))\",borderBottomLeftRadius:9999,borderBottomRightRadius:9999,borderTopLeftRadius:9999,borderTopRightRadius:9999}},...addPropertyOverrides({\"pkNUdqLOy-hover\":{\"data-framer-name\":undefined},\"S_DXrcQST-hover\":{\"data-framer-name\":undefined},\"sqtiocV0P-hover\":{\"data-framer-name\":undefined},pkNUdqLOy:{\"data-border\":true,\"data-framer-name\":\"Secondary\"},SgV5c8p6a:{\"data-border\":true,\"data-framer-name\":\"Mobile Close\"},sqtiocV0P:{\"data-framer-name\":\"With Icon\"},X7feh5rSU:{\"data-border\":true,\"data-framer-name\":\"Mobile Default\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-npxqny\",\"data-styles-preset\":\"NTBX0l6Io\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-3b98b97f-17e0-41b1-8bc6-f8dae04475db, rgb(10, 10, 10)))\"},children:\"Create\"})}),className:\"framer-aw2l0n\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"lox9tPf8O\",style:{\"--extracted-r6o4lv\":\"var(--token-3b98b97f-17e0-41b1-8bc6-f8dae04475db, rgb(10, 10, 10))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:jqbfMUXWy,variants:{\"pkNUdqLOy-hover\":{\"--extracted-r6o4lv\":\"var(--token-986afb1c-84ad-46b2-a807-6bd407af3abe, rgb(250, 250, 250))\"},pkNUdqLOy:{\"--extracted-r6o4lv\":\"var(--token-c4634c61-c453-49aa-834c-3d21e51f5eb0, rgb(163, 163, 163))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"pkNUdqLOy-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-npxqny\",\"data-styles-preset\":\"NTBX0l6Io\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-986afb1c-84ad-46b2-a807-6bd407af3abe, rgb(250, 250, 250)))\"},children:\"Create\"})})},pkNUdqLOy:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-npxqny\",\"data-styles-preset\":\"NTBX0l6Io\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c4634c61-c453-49aa-834c-3d21e51f5eb0, rgb(163, 163, 163)))\"},children:\"Create\"})})}},baseVariant,gestureVariant)}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-7nqurw-container\",layoutDependency:layoutDependency,layoutId:\"Sj1_3s_IW-container\",children:/*#__PURE__*/_jsx(SVG,{customColor:\"var(--token-c4634c61-c453-49aa-834c-3d21e51f5eb0, rgb(163, 163, 163))\",customPadding:0,customStrokeWidth:2,customSvgCode:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\">   <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M2 8.5C2 7.94772 2.44772 7.5 3 7.5H21C21.5523 7.5 22 7.94772 22 8.5C22 9.05228 21.5523 9.5 21 9.5H3C2.44772 9.5 2 9.05228 2 8.5Z\" fill=\"white\"/>   <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M2 15.5C2 14.9477 2.44772 14.5 3 14.5H21C21.5523 14.5 22 14.9477 22 15.5C22 16.0523 21.5523 16.5 21 16.5H3C2.44772 16.5 2 16.0523 2 15.5Z\" fill=\"white\"/> </svg>',height:\"100%\",id:\"Sj1_3s_IW\",layoutId:\"Sj1_3s_IW\",lineCap:\"butt\",lineJoin:\"miter\",style:{height:\"100%\",width:\"100%\"},width:\"100%\",...addPropertyOverrides({SgV5c8p6a:{customSvgCode:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\">   <path d=\"M18.7071 6.70711C19.0976 6.31658 19.0976 5.68342 18.7071 5.29289C18.3166 4.90237 17.6834 4.90237 17.2929 5.29289L12 10.5858L6.70711 5.29289C6.31658 4.90237 5.68342 4.90237 5.29289 5.29289C4.90237 5.68342 4.90237 6.31658 5.29289 6.70711L10.5858 12L5.29289 17.2929C4.90237 17.6834 4.90237 18.3166 5.29289 18.7071C5.68342 19.0976 6.31658 19.0976 6.70711 18.7071L12 13.4142L17.2929 18.7071C17.6834 19.0976 18.3166 19.0976 18.7071 18.7071C19.0976 18.3166 19.0976 17.6834 18.7071 17.2929L13.4142 12L18.7071 6.70711Z\" fill=\"black\"/> </svg>'}},baseVariant,gestureVariant)})})}),isDisplayed2()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1662ldj-container\",layoutDependency:layoutDependency,layoutId:\"huScnl43x-container\",children:/*#__PURE__*/_jsx(SVG,{customColor:\"var(--token-3b98b97f-17e0-41b1-8bc6-f8dae04475db, rgb(10, 10, 10))\",customPadding:0,customStrokeWidth:1.25,customSvgCode:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\" height=\"12\" viewBox=\"0 0 12 12\" fill=\"none\">   <path d=\"M4.5 9L7.5 6L4.5 3\" stroke=\"white\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/> </svg>',height:\"100%\",id:\"huScnl43x\",layoutId:\"huScnl43x\",lineCap:\"round\",lineJoin:\"round\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-6adrU.framer-1o04y4, .framer-6adrU .framer-1o04y4 { display: block; }\",\".framer-6adrU.framer-nhkejj { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; padding: 6px 12px 6px 12px; position: relative; text-decoration: none; width: min-content; }\",\".framer-6adrU .framer-aw2l0n { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-6adrU .framer-7nqurw-container { flex: none; height: 24px; position: relative; width: 24px; }\",\".framer-6adrU .framer-1662ldj-container { flex: none; height: 16px; position: relative; width: 16px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-6adrU.framer-nhkejj { gap: 0px; } .framer-6adrU.framer-nhkejj > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-6adrU.framer-nhkejj > :first-child { margin-top: 0px; } .framer-6adrU.framer-nhkejj > :last-child { margin-bottom: 0px; } }\",\".framer-6adrU.framer-v-1iq56ji.framer-nhkejj, .framer-6adrU.framer-v-obugwc.framer-nhkejj { padding: 6px; }\",\".framer-6adrU.framer-v-1iq56ji .framer-7nqurw-container, .framer-6adrU.framer-v-obugwc .framer-7nqurw-container { order: 1; }\",\".framer-6adrU.framer-v-hk5vsa.framer-nhkejj { flex-direction: row; gap: 4px; padding: 6px 8px 6px 12px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-6adrU.framer-v-hk5vsa.framer-nhkejj { gap: 0px; } .framer-6adrU.framer-v-hk5vsa.framer-nhkejj > * { margin: 0px; margin-left: calc(4px / 2); margin-right: calc(4px / 2); } .framer-6adrU.framer-v-hk5vsa.framer-nhkejj > :first-child { margin-left: 0px; } .framer-6adrU.framer-v-hk5vsa.framer-nhkejj > :last-child { margin-right: 0px; } }\",...sharedStyle.css,'.framer-6adrU[data-border=\"true\"]::after, .framer-6adrU [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 32\n * @framerIntrinsicWidth 68.5\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"pkNUdqLOy\":{\"layout\":[\"auto\",\"auto\"]},\"X7feh5rSU\":{\"layout\":[\"auto\",\"auto\"]},\"SgV5c8p6a\":{\"layout\":[\"auto\",\"auto\"]},\"sqtiocV0P\":{\"layout\":[\"auto\",\"auto\"]},\"lJ1lIQZfZ\":{\"layout\":[\"auto\",\"auto\"]},\"C9V3j8Anf\":{\"layout\":[\"auto\",\"auto\"]},\"Oda2kneqT\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"jqbfMUXWy\":\"title\",\"RZyA4xOaV\":\"link\",\"vvcOsJhDm\":\"click2\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramersetpHQJqg=withCSS(Component,css,\"framer-6adrU\");export default FramersetpHQJqg;FramersetpHQJqg.displayName=\"Navigation / Button\";FramersetpHQJqg.defaultProps={height:32,width:68.5};addPropertyControls(FramersetpHQJqg,{variant:{options:[\"S_DXrcQST\",\"pkNUdqLOy\",\"X7feh5rSU\",\"SgV5c8p6a\",\"sqtiocV0P\"],optionTitles:[\"Primary\",\"Secondary\",\"Mobile Default\",\"Mobile Close\",\"With Icon\"],title:\"Variant\",type:ControlType.Enum},jqbfMUXWy:{defaultValue:\"Create\",displayTextArea:false,title:\"Title\",type:ControlType.String},RZyA4xOaV:{title:\"Link\",type:ControlType.Link},vvcOsJhDm:{title:\"Click 2\",type:ControlType.EventHandler}});addFonts(FramersetpHQJqg,[{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\"}]},...SVGFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramersetpHQJqg\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"pkNUdqLOy\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"X7feh5rSU\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"SgV5c8p6a\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"sqtiocV0P\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"lJ1lIQZfZ\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"C9V3j8Anf\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"Oda2kneqT\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerVariables\":\"{\\\"jqbfMUXWy\\\":\\\"title\\\",\\\"RZyA4xOaV\\\":\\\"link\\\",\\\"vvcOsJhDm\\\":\\\"click2\\\"}\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"68.5\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"32\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./setpHQJqg.map", "// Generated by Framer (9e1dc8e)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,cx,Link,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const serializationHash=\"framer-JiRlw\";const variantClassNames={rVJTvJVVy:\"framer-v-1pahxx2\"};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={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({height,id,width,...props})=>{return{...props};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"rVJTvJVVy\",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(Link,{href:{webPageId:\"augiA20Il\"},openInNewTab:false,children:/*#__PURE__*/_jsx(motion.a,{...restProps,...gestureHandlers,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-1pahxx2\",className,classNames)} framer-1hlgtbl`,\"data-framer-name\":\"Default\",layoutDependency:layoutDependency,layoutId:\"rVJTvJVVy\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-narh7a\",\"data-framer-name\":\"Logo\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"oHYm6wre7\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 128 20\"><path d=\"M 59.459 1.318 C 58.38 1.318 57.494 2.192 57.494 3.307 C 57.494 4.4 58.38 5.274 59.459 5.274 C 60.539 5.274 61.424 4.4 61.424 3.307 C 61.424 2.192 60.539 1.318 59.459 1.318 Z M 61.187 6.28 L 57.754 6.28 L 57.754 18.063 L 61.187 18.063 Z M 37.715 1.755 L 41.062 1.755 L 41.062 6.28 L 43.631 6.28 L 43.631 9.428 L 41.062 9.428 L 41.062 13.582 C 41.062 14.194 41.537 14.675 42.12 14.675 L 43.61 14.675 L 43.61 18.019 L 42.12 18.019 C 39.701 18.019 37.715 16.03 37.715 13.56 L 37.715 9.406 L 36.16 9.406 L 36.16 6.258 L 37.715 6.258 Z M 51.815 6.018 C 50.261 6.018 49.03 6.674 48.555 7.701 L 48.555 1.755 L 45.121 1.755 L 45.121 18.041 L 48.555 18.041 L 48.555 11.439 C 48.555 10.062 49.44 9.1 50.692 9.1 C 51.966 9.1 52.679 9.931 52.679 11.33 L 52.679 18.063 L 56.112 18.063 L 56.112 10.893 C 56.112 7.832 54.558 6.018 51.815 6.018 Z M 66.089 6.258 L 66.089 7.876 C 66.607 6.695 67.859 6.018 69.436 5.996 C 69.673 5.996 69.975 6.018 70.343 6.061 L 70.343 9.341 C 69.997 9.275 69.608 9.231 69.198 9.231 C 67.233 9.231 66.089 10.346 66.089 12.292 L 66.089 18.041 L 62.655 18.041 L 62.655 6.258 Z M 79.995 7.81 C 79.65 6.783 78.289 6.061 76.54 6.061 C 74.899 6.061 73.517 6.652 72.416 7.832 C 71.336 8.991 70.775 10.455 70.775 12.161 C 70.775 13.866 71.336 15.309 72.416 16.511 C 73.517 17.67 74.899 18.26 76.54 18.26 C 78.289 18.26 79.65 17.538 79.995 16.511 L 79.995 18.063 L 83.429 18.063 L 83.429 1.755 L 79.995 1.755 Z M 79.304 14.259 C 78.721 14.828 78.008 15.09 77.166 15.09 C 76.346 15.09 75.633 14.806 75.072 14.259 C 74.489 13.669 74.208 12.969 74.208 12.161 C 74.208 11.352 74.489 10.652 75.072 10.084 C 75.655 9.494 76.346 9.209 77.166 9.209 C 78.03 9.209 78.743 9.494 79.304 10.084 C 79.909 10.652 80.211 11.352 80.211 12.161 C 80.211 12.969 79.909 13.669 79.304 14.259 Z M 93.34 6.324 L 96.45 11.92 L 98.544 6.28 L 101.913 6.28 L 97.119 18.741 L 93.34 11.964 L 89.561 18.741 L 84.789 6.28 L 88.158 6.28 L 90.231 11.92 Z M 107.57 5.996 C 105.799 5.996 104.309 6.564 103.143 7.701 C 101.999 8.816 101.416 10.302 101.416 12.139 L 101.416 12.248 C 101.416 14.084 101.999 15.571 103.143 16.686 C 104.331 17.779 105.843 18.347 107.743 18.347 C 109.514 18.347 110.96 17.997 112.062 17.276 L 112.062 14.237 C 110.982 15.003 109.6 15.374 107.937 15.374 C 106.123 15.374 104.936 14.478 104.871 13.079 L 113.4 13.079 C 113.444 12.729 113.465 12.335 113.465 11.942 C 113.465 10.259 112.904 8.86 111.824 7.723 C 110.744 6.564 109.298 5.996 107.57 5.996 Z M 104.871 10.827 C 104.892 10.281 105.173 9.822 105.691 9.45 C 106.231 9.078 106.836 8.881 107.57 8.881 C 108.93 8.881 109.989 9.778 109.989 10.827 Z M 121.649 6.061 C 123.29 6.061 124.672 6.652 125.752 7.832 C 126.853 9.013 127.415 10.434 127.415 12.139 C 127.415 13.844 126.853 15.287 125.752 16.489 C 124.672 17.648 123.29 18.238 121.649 18.238 C 119.9 18.238 118.54 17.517 118.194 16.489 L 118.194 18.041 L 114.761 18.041 L 114.761 1.755 L 118.194 1.755 L 118.194 7.81 C 118.54 6.783 119.9 6.061 121.649 6.061 Z M 121.023 15.09 C 121.844 15.09 122.535 14.828 123.118 14.259 C 123.701 13.669 123.981 12.969 123.981 12.161 C 123.981 11.352 123.701 10.652 123.118 10.084 C 122.556 9.494 121.844 9.209 121.023 9.209 C 120.181 9.209 119.468 9.494 118.864 10.084 C 118.281 10.652 117.978 11.352 117.978 12.161 C 117.978 12.969 118.281 13.669 118.864 14.259 C 119.447 14.806 120.159 15.09 121.023 15.09 Z\" fill=\"rgb(255,255,255)\"></path><g transform=\"translate(-0.089 0.667)\" id=\"ss10875599144_2\"><path d=\"M 0.001 18.667 L 0.001 0 L 30.026 0 L 30.026 18.667 Z\" fill=\"transparent\"></path><g><defs><linearGradient id=\"idss10875599144_4g-926470010\" x1=\"0.12776720615029757\" x2=\"0.8722327938497024\" y1=\"0\" y2=\"1\"><stop offset=\"0\" stop-color=\"rgb(242,19,164)\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"rgb(82,4,191)\" stop-opacity=\"1\"></stop></linearGradient></defs><path d=\"M 0.082 1.571 C -0.217 0.816 0.34 0 1.156 0 L 6.223 0 C 6.699 0 7.121 0.283 7.298 0.721 L 11.331 10.778 C 11.44 11.048 11.44 11.351 11.331 11.628 L 8.794 17.944 C 8.406 18.908 7.033 18.908 6.645 17.944 Z M 9.869 1.537 C 9.597 0.789 10.155 0 10.957 0 L 15.371 0 C 15.861 0 16.296 0.303 16.459 0.755 L 20.125 10.812 C 20.214 11.061 20.214 11.338 20.125 11.594 L 17.922 17.64 C 17.554 18.652 16.112 18.652 15.745 17.64 Z M 19.778 0 C 18.962 0 18.405 0.816 18.704 1.571 L 25.267 17.944 C 25.655 18.908 27.028 18.908 27.416 17.944 L 29.953 11.628 C 30.062 11.351 30.062 11.048 29.953 10.778 L 25.92 0.721 C 25.743 0.283 25.321 0 24.845 0 Z\" fill=\"url(#idss10875599144_4g-926470010)\"></path></g></g></svg>',svgContentId:10875599144,withExternalLayout:true})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-JiRlw.framer-1hlgtbl, .framer-JiRlw .framer-1hlgtbl { display: block; }\",\".framer-JiRlw.framer-1pahxx2 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 7px; height: 24px; justify-content: center; overflow: visible; padding: 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-JiRlw .framer-narh7a { flex: none; height: 20px; position: relative; width: 128px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-JiRlw.framer-1pahxx2 { gap: 0px; } .framer-JiRlw.framer-1pahxx2 > * { margin: 0px; margin-bottom: calc(6.6666669845581055px / 2); margin-top: calc(6.6666669845581055px / 2); } .framer-JiRlw.framer-1pahxx2 > :first-child { margin-top: 0px; } .framer-JiRlw.framer-1pahxx2 > :last-child { margin-bottom: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 24\n * @framerIntrinsicWidth 128\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerxAomRXpzG=withCSS(Component,css,\"framer-JiRlw\");export default FramerxAomRXpzG;FramerxAomRXpzG.displayName=\"Navigation / thirdweb Logo\";FramerxAomRXpzG.defaultProps={height:24,width:128};addFonts(FramerxAomRXpzG,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerxAomRXpzG\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"128\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicHeight\":\"24\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./xAomRXpzG.map", "// Generated by Framer (915daba)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,Floating,getFonts,Link,ResolveLinks,RichText,SmartComponentScopedContainer,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOverlayState,useRouter,useVariantState,withCodeBoundaryForOverrides,withCSS,withFX}from\"framer\";import{AnimatePresence,LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{withToggleScroll}from\"https://framerusercontent.com/modules/0wq0GoKSyiN9IFgFOkop/529iKgd5LYGUDw7liMv2/ScrollToggle.js\";import ButtonsButton from\"https://framerusercontent.com/modules/CbyFIs9KoRhPjTsPTKcq/T3mL3ZilewULsoT60AnN/eMAX511LU.js\";import NavigationDropdown from\"https://framerusercontent.com/modules/xqyuHHKjlTOswb6nVbNI/Ak8VZQzvZzyjFvrLkefz/FJcN2qQXX.js\";import NavigationNavigationItem from\"https://framerusercontent.com/modules/bgyYyk6LvAOobekRcn3N/8TF36jwMstpylxN0lQj9/Od8026J91.js\";import NavigationButton from\"https://framerusercontent.com/modules/sNIHMkiSOl9hxX8J7e4k/fCZHKxa2svSFt9mJojMz/setpHQJqg.js\";import NavigationThirdwebLogo from\"https://framerusercontent.com/modules/mW4o5Eps5syt806qXsuY/v6UUJYStOW0dhRyUzmgA/xAomRXpzG.js\";const NavigationThirdwebLogoFonts=getFonts(NavigationThirdwebLogo);const NavigationNavigationItemFonts=getFonts(NavigationNavigationItem);const NavigationDropdownFonts=getFonts(NavigationDropdown);const MotionDivWithFX=withFX(motion.div);const NavigationButtonFonts=getFonts(NavigationButton);const MotionDivWithToggleScrollw940av=withCodeBoundaryForOverrides(motion.div,{nodeId:\"XgZtef9mw\",override:withToggleScroll,scopeId:\"TJtdcnIgW\"});const ButtonsButtonFonts=getFonts(ButtonsButton);const cycleOrder=[\"nmOK9Q1QZ\",\"fn0dooGuw\",\"QCI_O7SoP\",\"LGTSbm3vf\",\"WdWayDwqN\"];const serializationHash=\"framer-9t47D\";const variantClassNames={fn0dooGuw:\"framer-v-1jo37vb\",LGTSbm3vf:\"framer-v-uqzevy\",nmOK9Q1QZ:\"framer-v-1yp46q5\",QCI_O7SoP:\"framer-v-96py1o\",WdWayDwqN:\"framer-v-1hc49i2\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const transition2={bounce:.2,delay:0,duration:.4,type:\"spring\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const animation2={opacity: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 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 humanReadableVariantMap={\"Desktop Scrolling\":\"LGTSbm3vf\",\"Phone Open\":\"fn0dooGuw\",\"Phone Scrolling\":\"WdWayDwqN\",Desktop:\"nmOK9Q1QZ\",Phone:\"QCI_O7SoP\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"nmOK9Q1QZ\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"nmOK9Q1QZ\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const ba8EEYMO8txyyif=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.show();});const ba8EEYMO81itwqw2=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{setVariant(\"nmOK9Q1QZ\");overlay.show();});const vvcOsJhDm1xmze42=activeVariantCallback(async(...args)=>{setVariant(\"QCI_O7SoP\");});const vvcOsJhDmxj3cjd=activeVariantCallback(async(...args)=>{setVariant(\"fn0dooGuw\");});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const isDisplayed=()=>{if([\"fn0dooGuw\",\"QCI_O7SoP\",\"WdWayDwqN\"].includes(baseVariant))return false;return true;};const ref2=React.useRef(null);const ref3=React.useRef(null);const ref4=React.useRef(null);const ref5=React.useRef(null);const router=useRouter();const ref6=React.useRef(null);const ref7=React.useRef(null);const ref8=React.useRef(null);const ref9=React.useRef(null);const isDisplayed1=()=>{if([\"fn0dooGuw\",\"QCI_O7SoP\",\"WdWayDwqN\"].includes(baseVariant))return true;return false;};const isDisplayed2=()=>{if(baseVariant===\"fn0dooGuw\")return true;return false;};const isDisplayed3=()=>{if(baseVariant===\"WdWayDwqN\")return true;return false;};const isDisplayed4=()=>{if(baseVariant===\"QCI_O7SoP\")return true;return false;};const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1yp46q5\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"nmOK9Q1QZ\",ref:ref??ref1,style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgba(0, 0, 0, 0)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",backgroundColor:\"var(--token-f596dd75-4366-457f-a18a-6f599542eefd, rgb(255, 255, 255))\",...style},variants:{LGTSbm3vf:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-1fcdce94-4e08-47d5-b021-6c1890240255, rgb(31, 31, 31))\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"},WdWayDwqN:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-1fcdce94-4e08-47d5-b021-6c1890240255, rgb(31, 31, 31))\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"}},...addPropertyOverrides({fn0dooGuw:{\"data-framer-name\":\"Phone Open\"},LGTSbm3vf:{\"data-border\":true,\"data-framer-name\":\"Desktop Scrolling\"},QCI_O7SoP:{\"data-framer-name\":\"Phone\"},WdWayDwqN:{\"data-border\":true,\"data-framer-name\":\"Phone Scrolling\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-9h1io1\",\"data-framer-name\":\"Header\",layoutDependency:layoutDependency,layoutId:\"x9Rk0tnPJ\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-11qg3cf\",\"data-framer-name\":\"Logo + Items\",layoutDependency:layoutDependency,layoutId:\"jxzUgszgp\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,y:(componentViewport?.y||0)+(16+((componentViewport?.height||64)-32-32)/2)+0+4,...addPropertyOverrides({fn0dooGuw:{y:(componentViewport?.y||0)+0+0+20+0},LGTSbm3vf:{y:(componentViewport?.y||0)+(16+((componentViewport?.height||200)-32-32)/2)+0+4},QCI_O7SoP:{y:(componentViewport?.y||0)+0+0+20+0},WdWayDwqN:{y:(componentViewport?.y||0)+0+0+20+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1mwqq45-container\",layoutDependency:layoutDependency,layoutId:\"IoDSu44NB-container\",nodeId:\"IoDSu44NB\",rendersWithMotion:true,scopeId:\"TJtdcnIgW\",children:/*#__PURE__*/_jsx(NavigationThirdwebLogo,{height:\"100%\",id:\"IoDSu44NB\",layoutId:\"IoDSu44NB\",style:{height:\"100%\"},width:\"100%\"})})}),isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1l4tp41\",\"data-framer-name\":\"Items\",layoutDependency:layoutDependency,layoutId:\"CEvNB0c2g\",children:[/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:false,children:overlay=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,y:(componentViewport?.y||0)+(16+((componentViewport?.height||64)-32-32)/2)+0+0+0,...addPropertyOverrides({LGTSbm3vf:{y:(componentViewport?.y||0)+(16+((componentViewport?.height||200)-32-32)/2)+0+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(SmartComponentScopedContainer,{className:\"framer-19epq6o-container\",id:`${layoutId}-19epq6o`,layoutDependency:layoutDependency,layoutId:\"IEs6x8ymX-container\",nodeId:\"IEs6x8ymX\",ref:ref2,rendersWithMotion:true,scopeId:\"TJtdcnIgW\",children:[/*#__PURE__*/_jsx(NavigationNavigationItem,{ba8EEYMO8:ba8EEYMO8txyyif({overlay}),DypPJCEq2:\"Products\",height:\"100%\",id:\"IEs6x8ymX\",layoutId:\"IEs6x8ymX\",variant:\"l6xt7ZYLO\",width:\"100%\"}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay.visible&&/*#__PURE__*/_jsx(Floating,{alignment:\"center\",anchorRef:ref2,className:cx(scopingClassNames,classNames),collisionDetection:true,collisionDetectionPadding:20,\"data-framer-portal-id\":`${layoutId}-19epq6o`,offsetX:0,offsetY:8,onDismiss:overlay.hide,placement:\"bottom\",safeArea:true,zIndex:11,children:/*#__PURE__*/_jsx(MotionDivWithFX,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation1,className:\"framer-mlsoh1\",exit:animation,initial:animation2,layoutDependency:layoutDependency,layoutId:\"elqjckJRh\",ref:ref3,role:\"dialog\",style:{borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,boxShadow:\"0px 10px 20px 0px rgba(0,0,0,0.05)\"},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"368px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-mpv8nk-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"e5VUUHUwC-container\",nodeId:\"e5VUUHUwC\",rendersWithMotion:true,scopeId:\"TJtdcnIgW\",children:/*#__PURE__*/_jsx(NavigationDropdown,{height:\"100%\",id:\"e5VUUHUwC\",layoutId:\"e5VUUHUwC\",style:{width:\"100%\"},variant:\"bH2emI93a\",width:\"100%\"})})})})})})]})})})}),/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:false,children:overlay1=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,y:(componentViewport?.y||0)+(16+((componentViewport?.height||64)-32-32)/2)+0+0+0,...addPropertyOverrides({LGTSbm3vf:{y:(componentViewport?.y||0)+(16+((componentViewport?.height||200)-32-32)/2)+0+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(SmartComponentScopedContainer,{className:\"framer-plq77r-container\",id:`${layoutId}-plq77r`,layoutDependency:layoutDependency,layoutId:\"PgvWcOexV-container\",nodeId:\"PgvWcOexV\",ref:ref4,rendersWithMotion:true,scopeId:\"TJtdcnIgW\",children:[/*#__PURE__*/_jsx(NavigationNavigationItem,{ba8EEYMO8:ba8EEYMO81itwqw2({overlay:overlay1}),DypPJCEq2:\"Solutions\",height:\"100%\",id:\"PgvWcOexV\",layoutId:\"PgvWcOexV\",variant:\"l6xt7ZYLO\",width:\"100%\"}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay1.visible&&/*#__PURE__*/_jsx(Floating,{alignment:\"center\",anchorRef:ref4,className:cx(scopingClassNames,classNames),collisionDetection:true,collisionDetectionPadding:20,\"data-framer-portal-id\":`${layoutId}-plq77r`,offsetX:0,offsetY:8,onDismiss:overlay1.hide,placement:\"bottom\",safeArea:true,zIndex:11,children:/*#__PURE__*/_jsx(MotionDivWithFX,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation1,className:\"framer-10evax\",exit:animation,initial:animation2,layoutDependency:layoutDependency,layoutId:\"M3oIUksgu\",ref:ref5,role:\"dialog\",style:{borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,boxShadow:\"0px 10px 20px 0px rgba(0,0,0,0.05)\"},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"368px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-16jvv19-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"LEFMpnnzy-container\",nodeId:\"LEFMpnnzy\",rendersWithMotion:true,scopeId:\"TJtdcnIgW\",children:/*#__PURE__*/_jsx(NavigationDropdown,{height:\"100%\",id:\"LEFMpnnzy\",layoutId:\"LEFMpnnzy\",style:{width:\"100%\"},variant:\"ScahxRD97\",width:\"100%\"})})})})})})]})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"Rbg7IitJ5\"},implicitPathVariables:undefined},{href:{webPageId:\"Rbg7IitJ5\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,y:(componentViewport?.y||0)+(16+((componentViewport?.height||64)-32-32)/2)+0+0+0,...addPropertyOverrides({LGTSbm3vf:{y:(componentViewport?.y||0)+(16+((componentViewport?.height||200)-32-32)/2)+0+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-x7jpg0-container\",layoutDependency:layoutDependency,layoutId:\"PT6npf8kf-container\",nodeId:\"PT6npf8kf\",rendersWithMotion:true,scopeId:\"TJtdcnIgW\",children:/*#__PURE__*/_jsx(NavigationNavigationItem,{DypPJCEq2:\"Pricing\",height:\"100%\",id:\"PT6npf8kf\",layoutId:\"PT6npf8kf\",variant:\"R9eGq4K66\",width:\"100%\",zhjSmsf4E:resolvedLinks[0],...addPropertyOverrides({LGTSbm3vf:{zhjSmsf4E:resolvedLinks[1]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:false,children:overlay2=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,y:(componentViewport?.y||0)+(16+((componentViewport?.height||64)-32-32)/2)+0+0+0,...addPropertyOverrides({LGTSbm3vf:{y:(componentViewport?.y||0)+(16+((componentViewport?.height||200)-32-32)/2)+0+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(SmartComponentScopedContainer,{className:\"framer-bhekl9-container\",id:`${layoutId}-bhekl9`,layoutDependency:layoutDependency,layoutId:\"PPlkI4PM7-container\",nodeId:\"PPlkI4PM7\",ref:ref6,rendersWithMotion:true,scopeId:\"TJtdcnIgW\",children:[/*#__PURE__*/_jsx(NavigationNavigationItem,{ba8EEYMO8:ba8EEYMO8txyyif({overlay:overlay2}),DypPJCEq2:\"Developer\",height:\"100%\",id:\"PPlkI4PM7\",layoutId:\"PPlkI4PM7\",variant:\"l6xt7ZYLO\",width:\"100%\"}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay2.visible&&/*#__PURE__*/_jsx(Floating,{alignment:\"center\",anchorRef:ref6,className:cx(scopingClassNames,classNames),collisionDetection:true,collisionDetectionPadding:20,\"data-framer-portal-id\":`${layoutId}-bhekl9`,offsetX:0,offsetY:8,onDismiss:overlay2.hide,placement:\"bottom\",safeArea:true,zIndex:11,children:/*#__PURE__*/_jsx(MotionDivWithFX,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation1,className:\"framer-1r539h9\",exit:animation,initial:animation2,layoutDependency:layoutDependency,layoutId:\"SZ6BDyzL7\",ref:ref7,role:\"dialog\",style:{borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,boxShadow:\"0px 10px 20px 0px rgba(0,0,0,0.05)\"},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-17d56h2-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"BBOVe127I-container\",nodeId:\"BBOVe127I\",rendersWithMotion:true,scopeId:\"TJtdcnIgW\",children:/*#__PURE__*/_jsx(NavigationDropdown,{height:\"100%\",id:\"BBOVe127I\",layoutId:\"BBOVe127I\",variant:\"Nz2AbCewU\",width:\"100%\"})})})})})})]})})})}),/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:false,children:overlay3=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,y:(componentViewport?.y||0)+(16+((componentViewport?.height||64)-32-32)/2)+0+0+0,...addPropertyOverrides({LGTSbm3vf:{y:(componentViewport?.y||0)+(16+((componentViewport?.height||200)-32-32)/2)+0+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(SmartComponentScopedContainer,{className:\"framer-59mb3z-container\",id:`${layoutId}-59mb3z`,layoutDependency:layoutDependency,layoutId:\"sNpvzuyTV-container\",nodeId:\"sNpvzuyTV\",ref:ref8,rendersWithMotion:true,scopeId:\"TJtdcnIgW\",children:[/*#__PURE__*/_jsx(NavigationNavigationItem,{ba8EEYMO8:ba8EEYMO8txyyif({overlay:overlay3}),DypPJCEq2:\"Company\",height:\"100%\",id:\"sNpvzuyTV\",layoutId:\"sNpvzuyTV\",variant:\"l6xt7ZYLO\",width:\"100%\"}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay3.visible&&/*#__PURE__*/_jsx(Floating,{alignment:\"center\",anchorRef:ref8,className:cx(scopingClassNames,classNames),collisionDetection:true,collisionDetectionPadding:20,\"data-framer-portal-id\":`${layoutId}-59mb3z`,offsetX:0,offsetY:8,onDismiss:overlay3.hide,placement:\"bottom\",safeArea:true,zIndex:11,children:/*#__PURE__*/_jsx(MotionDivWithFX,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation1,className:\"framer-5qxmit\",exit:animation,initial:animation2,layoutDependency:layoutDependency,layoutId:\"YJ9agY4Rb\",ref:ref9,role:\"dialog\",style:{borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,boxShadow:\"0px 10px 20px 0px rgba(0,0,0,0.05)\"},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-10v899f-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"yvSwCykye-container\",nodeId:\"yvSwCykye\",rendersWithMotion:true,scopeId:\"TJtdcnIgW\",children:/*#__PURE__*/_jsx(NavigationDropdown,{height:\"100%\",id:\"yvSwCykye\",layoutId:\"yvSwCykye\",variant:\"kLcJZnmEd\",width:\"100%\"})})})})})})]})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,y:(componentViewport?.y||0)+(16+((componentViewport?.height||64)-32-32)/2)+0+0+0,...addPropertyOverrides({LGTSbm3vf:{y:(componentViewport?.y||0)+(16+((componentViewport?.height||200)-32-32)/2)+0+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-2hijak-container\",layoutDependency:layoutDependency,layoutId:\"NIi0EcTzY-container\",nodeId:\"NIi0EcTzY\",rendersWithMotion:true,scopeId:\"TJtdcnIgW\",children:/*#__PURE__*/_jsx(NavigationNavigationItem,{DypPJCEq2:\"Playground\",height:\"100%\",id:\"NIi0EcTzY\",layoutId:\"NIi0EcTzY\",variant:\"R9eGq4K66\",width:\"100%\",zhjSmsf4E:\"https://playground.thirdweb.com/connect/sign-in/button\"})})})]})]}),/*#__PURE__*/_jsxs(MotionDivWithToggleScrollw940av,{className:\"framer-w940av\",\"data-framer-name\":\"Buttons\",layoutDependency:layoutDependency,layoutId:\"XgZtef9mw\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"gdNhKioSl\"},implicitPathVariables:undefined},{href:{webPageId:\"gdNhKioSl\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,y:(componentViewport?.y||0)+(16+((componentViewport?.height||64)-32-32)/2)+0+0,...addPropertyOverrides({fn0dooGuw:{y:(componentViewport?.y||0)+0+0+16+0},LGTSbm3vf:{y:(componentViewport?.y||0)+(16+((componentViewport?.height||200)-32-32)/2)+0+0},QCI_O7SoP:{y:(componentViewport?.y||0)+0+0+16+0},WdWayDwqN:{y:(componentViewport?.y||0)+0+0+16+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1mvdohm-container\",layoutDependency:layoutDependency,layoutId:\"S2zp0YOry-container\",nodeId:\"S2zp0YOry\",rendersWithMotion:true,scopeId:\"TJtdcnIgW\",children:/*#__PURE__*/_jsx(NavigationButton,{height:\"100%\",id:\"S2zp0YOry\",jqbfMUXWy:\"Contact Us\",layoutId:\"S2zp0YOry\",RZyA4xOaV:resolvedLinks1[0],variant:\"pkNUdqLOy\",width:\"100%\",...addPropertyOverrides({fn0dooGuw:{RZyA4xOaV:undefined,variant:\"SgV5c8p6a\",vvcOsJhDm:vvcOsJhDm1xmze42},LGTSbm3vf:{RZyA4xOaV:resolvedLinks1[1]},QCI_O7SoP:{RZyA4xOaV:undefined,variant:\"X7feh5rSU\",vvcOsJhDm:vvcOsJhDmxj3cjd},WdWayDwqN:{RZyA4xOaV:undefined,variant:\"X7feh5rSU\",vvcOsJhDm:vvcOsJhDmxj3cjd}},baseVariant,gestureVariant)})})})}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,y:(componentViewport?.y||0)+(16+((componentViewport?.height||64)-32-32)/2)+0+0,...addPropertyOverrides({LGTSbm3vf:{y:(componentViewport?.y||0)+(16+((componentViewport?.height||200)-32-32)/2)+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1bfqp24-container\",layoutDependency:layoutDependency,layoutId:\"ijghC0yH_-container\",nodeId:\"ijghC0yH_\",rendersWithMotion:true,scopeId:\"TJtdcnIgW\",children:/*#__PURE__*/_jsx(NavigationButton,{height:\"100%\",id:\"ijghC0yH_\",jqbfMUXWy:\"Login\",layoutId:\"ijghC0yH_\",RZyA4xOaV:\"https://thirdweb.com/login\",variant:\"S_DXrcQST\",width:\"100%\"})})})]})]}),isDisplayed1()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1fyykal\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"VCcFchqEv\",style:{opacity:1},variants:{QCI_O7SoP:{opacity:0},WdWayDwqN:{opacity:0}},children:[isDisplayed1()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1mggh6b\",layoutDependency:layoutDependency,layoutId:\"E_JxSxizS\",children:[isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({fn0dooGuw:{height:40,width:`calc(${componentViewport?.width||\"100vw\"} - 32px)`,y:(componentViewport?.y||0)+0+64+0+0+8+0},QCI_O7SoP:{height:40,width:`calc(${componentViewport?.width||\"100vw\"} - 32px)`,y:(componentViewport?.y||0)+0+64+0+0+8+0},WdWayDwqN:{height:40,width:`calc(${componentViewport?.width||\"100vw\"} - 32px)`,y:(componentViewport?.y||0)+0+64+0+0+8+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-pbnsam-container\",layoutDependency:layoutDependency,layoutId:\"W7jBWWMqI-container\",nodeId:\"W7jBWWMqI\",rendersWithMotion:true,scopeId:\"TJtdcnIgW\",children:/*#__PURE__*/_jsx(ButtonsButton,{BnmH_z3oH:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\" height=\"12\" viewBox=\"0 0 12 12\" fill=\"none\">   <path d=\"M4.5 9L7.5 6L4.5 3\" stroke=\"white\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/> </svg>',GxuiU3lbe:1.25,height:\"100%\",I4KuTahqi:\"Log In\",id:\"W7jBWWMqI\",layoutId:\"W7jBWWMqI\",q8NV5vffb:\"center\",RSajvyivS:\"var(--token-c4634c61-c453-49aa-834c-3d21e51f5eb0, rgb(163, 163, 163))\",style:{height:\"100%\",width:\"100%\"},variant:\"iisuRppiE\",width:\"100%\",...addPropertyOverrides({fn0dooGuw:{BL_hxI2b_:\"https://thirdweb.com/login\"},QCI_O7SoP:{BL_hxI2b_:\"https://thirdweb.com/login\"},WdWayDwqN:{BL_hxI2b_:\"https://thirdweb.com/login\"}},baseVariant,gestureVariant)})})}),isDisplayed1()&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"gdNhKioSl\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({fn0dooGuw:{height:40,width:`calc(${componentViewport?.width||\"100vw\"} - 32px)`,y:(componentViewport?.y||0)+0+64+0+0+8+52},QCI_O7SoP:{height:40,width:`calc(${componentViewport?.width||\"100vw\"} - 32px)`,y:(componentViewport?.y||0)+0+64+0+0+8+52},WdWayDwqN:{height:40,width:`calc(${componentViewport?.width||\"100vw\"} - 32px)`,y:(componentViewport?.y||0)+0+64+0+0+8+52}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-16cawmc-container\",layoutDependency:layoutDependency,layoutId:\"Obnvji547-container\",nodeId:\"Obnvji547\",rendersWithMotion:true,scopeId:\"TJtdcnIgW\",children:/*#__PURE__*/_jsx(ButtonsButton,{BnmH_z3oH:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\" height=\"12\" viewBox=\"0 0 12 12\" fill=\"none\">   <path d=\"M4.5 9L7.5 6L4.5 3\" stroke=\"white\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/> </svg>',GxuiU3lbe:1.25,height:\"100%\",I4KuTahqi:\"Documentation\",id:\"Obnvji547\",layoutId:\"Obnvji547\",q8NV5vffb:\"center\",RSajvyivS:\"var(--token-c4634c61-c453-49aa-834c-3d21e51f5eb0, rgb(163, 163, 163))\",style:{height:\"100%\",width:\"100%\"},variant:\"Sk5Gu91Ro\",width:\"100%\",...addPropertyOverrides({fn0dooGuw:{BL_hxI2b_:resolvedLinks2[0],I4KuTahqi:\"Contact Us\",variant:\"Q0eUCA0Dy\"},QCI_O7SoP:{BL_hxI2b_:\"https://thirdweb.com/contact-us\",I4KuTahqi:\"Contact Us\",variant:\"Q0eUCA0Dy\"},WdWayDwqN:{BL_hxI2b_:\"https://thirdweb.com/contact-us\",I4KuTahqi:\"Contact Us\",variant:\"Q0eUCA0Dy\"}},baseVariant,gestureVariant)})})})})]}),isDisplayed1()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1li406o\",layoutDependency:layoutDependency,layoutId:\"AIoZg6wb1\",children:[isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({fn0dooGuw:{height:342,width:`calc(${componentViewport?.width||\"100vw\"} - 16px)`,y:(componentViewport?.y||0)+0+64+0+116+0+0},QCI_O7SoP:{height:342,width:`calc(${componentViewport?.width||\"100vw\"} - 16px)`,y:(componentViewport?.y||0)+0+64+0+116+0+0},WdWayDwqN:{height:342,width:`calc(${componentViewport?.width||\"100vw\"} - 16px)`,y:(componentViewport?.y||0)+0+64+0+116+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-i5dz08-container\",layoutDependency:layoutDependency,layoutId:\"XFIqCOOxF-container\",nodeId:\"XFIqCOOxF\",rendersWithMotion:true,scopeId:\"TJtdcnIgW\",children:/*#__PURE__*/_jsx(NavigationDropdown,{height:\"100%\",id:\"XFIqCOOxF\",layoutId:\"XFIqCOOxF\",style:{width:\"100%\"},variant:\"Nn65t9o0Z\",width:\"100%\"})})}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({fn0dooGuw:{height:342,width:`calc(${componentViewport?.width||\"100vw\"} - 16px)`,y:(componentViewport?.y||0)+0+64+0+116+0+342},QCI_O7SoP:{height:342,width:`calc(${componentViewport?.width||\"100vw\"} - 16px)`,y:(componentViewport?.y||0)+0+64+0+116+0+342},WdWayDwqN:{height:342,width:`calc(${componentViewport?.width||\"100vw\"} - 16px)`,y:(componentViewport?.y||0)+0+64+0+116+0+342}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-4p2nz1-container\",layoutDependency:layoutDependency,layoutId:\"zuOMmITDu-container\",nodeId:\"zuOMmITDu\",rendersWithMotion:true,scopeId:\"TJtdcnIgW\",children:/*#__PURE__*/_jsx(NavigationDropdown,{height:\"100%\",id:\"zuOMmITDu\",layoutId:\"zuOMmITDu\",style:{width:\"100%\"},variant:\"R2o9ed1nb\",width:\"100%\"})})}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({fn0dooGuw:{height:342,width:`calc(${componentViewport?.width||\"100vw\"} - 16px)`,y:(componentViewport?.y||0)+0+64+0+116+0+732},QCI_O7SoP:{height:342,width:`calc(${componentViewport?.width||\"100vw\"} - 16px)`,y:(componentViewport?.y||0)+0+64+0+116+0+732},WdWayDwqN:{height:342,width:`calc(${componentViewport?.width||\"100vw\"} - 16px)`,y:(componentViewport?.y||0)+0+64+0+116+0+732}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1j7zu7f-container\",layoutDependency:layoutDependency,layoutId:\"REc0Ed58o-container\",nodeId:\"REc0Ed58o\",rendersWithMotion:true,scopeId:\"TJtdcnIgW\",children:/*#__PURE__*/_jsx(NavigationDropdown,{height:\"100%\",id:\"REc0Ed58o\",layoutId:\"REc0Ed58o\",style:{width:\"100%\"},variant:\"bH2emI93a\",width:\"100%\",...addPropertyOverrides({fn0dooGuw:{variant:\"e3yhbEX_d\"},QCI_O7SoP:{variant:\"e3yhbEX_d\"},WdWayDwqN:{variant:\"e3yhbEX_d\"}},baseVariant,gestureVariant)})})}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({fn0dooGuw:{height:342,width:`calc(${componentViewport?.width||\"100vw\"} - 16px)`,y:(componentViewport?.y||0)+0+64+0+116+0+1074},QCI_O7SoP:{height:342,width:`calc(${componentViewport?.width||\"100vw\"} - 16px)`,y:(componentViewport?.y||0)+0+64+0+116+0+1074},WdWayDwqN:{height:342,width:`calc(${componentViewport?.width||\"100vw\"} - 16px)`,y:(componentViewport?.y||0)+0+64+0+116+0+1074}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-abpecp-container\",layoutDependency:layoutDependency,layoutId:\"arSBK83L2-container\",nodeId:\"arSBK83L2\",rendersWithMotion:true,scopeId:\"TJtdcnIgW\",children:/*#__PURE__*/_jsx(NavigationDropdown,{height:\"100%\",id:\"arSBK83L2\",layoutId:\"arSBK83L2\",style:{width:\"100%\"},variant:\"bH2emI93a\",width:\"100%\",...addPropertyOverrides({fn0dooGuw:{variant:\"jqryaPGGn\"},QCI_O7SoP:{variant:\"jqryaPGGn\"},WdWayDwqN:{variant:\"jqryaPGGn\"}},baseVariant,gestureVariant)})})}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({fn0dooGuw:{height:342,width:`calc(${componentViewport?.width||\"100vw\"} - 16px)`,y:(componentViewport?.y||0)+0+64+0+116+0+1416},QCI_O7SoP:{height:342,width:`calc(${componentViewport?.width||\"100vw\"} - 16px)`,y:(componentViewport?.y||0)+0+64+0+116+0+1416},WdWayDwqN:{height:342,width:`calc(${componentViewport?.width||\"100vw\"} - 16px)`,y:(componentViewport?.y||0)+0+64+0+116+0+1416}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-2cd5b9-container\",layoutDependency:layoutDependency,layoutId:\"XC7ZgnHQC-container\",nodeId:\"XC7ZgnHQC\",rendersWithMotion:true,scopeId:\"TJtdcnIgW\",children:/*#__PURE__*/_jsx(NavigationDropdown,{height:\"100%\",id:\"XC7ZgnHQC\",layoutId:\"XC7ZgnHQC\",style:{width:\"100%\"},variant:\"bH2emI93a\",width:\"100%\",...addPropertyOverrides({fn0dooGuw:{variant:\"xzgIV8Sif\"},QCI_O7SoP:{variant:\"xzgIV8Sif\"},WdWayDwqN:{variant:\"xzgIV8Sif\"}},baseVariant,gestureVariant)})})}),isDisplayed2()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({fn0dooGuw:{height:342,width:`calc(${componentViewport?.width||\"100vw\"} - 16px)`,y:(componentViewport?.y||0)+0+64+0+116+0+1758}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-h4zajq-container\",layoutDependency:layoutDependency,layoutId:\"QM0XuBpA0-container\",nodeId:\"QM0XuBpA0\",rendersWithMotion:true,scopeId:\"TJtdcnIgW\",children:/*#__PURE__*/_jsx(NavigationDropdown,{height:\"100%\",id:\"QM0XuBpA0\",layoutId:\"QM0XuBpA0\",style:{width:\"100%\"},variant:\"Atz5daY8g\",width:\"100%\"})})}),isDisplayed3()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({WdWayDwqN:{height:342,width:`calc(${componentViewport?.width||\"100vw\"} - 16px)`,y:(componentViewport?.y||0)+0+64+0+116+0+1758}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-t371c4-container\",layoutDependency:layoutDependency,layoutId:\"crkfHzD4i-container\",nodeId:\"crkfHzD4i\",rendersWithMotion:true,scopeId:\"TJtdcnIgW\",children:/*#__PURE__*/_jsx(NavigationDropdown,{height:\"100%\",id:\"crkfHzD4i\",layoutId:\"crkfHzD4i\",style:{width:\"100%\"},variant:\"Atz5daY8g\",width:\"100%\"})})}),isDisplayed4()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({QCI_O7SoP:{height:342,width:`calc(${componentViewport?.width||\"100vw\"} - 16px)`,y:(componentViewport?.y||0)+0+64+0+116+0+1758}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1j1d92s-container\",layoutDependency:layoutDependency,layoutId:\"V043GCeo_-container\",nodeId:\"V043GCeo_\",rendersWithMotion:true,scopeId:\"TJtdcnIgW\",children:/*#__PURE__*/_jsx(NavigationDropdown,{height:\"100%\",id:\"V043GCeo_\",layoutId:\"V043GCeo_\",style:{width:\"100%\"},variant:\"Atz5daY8g\",width:\"100%\"})})}),/*#__PURE__*/_jsx(Link,{motionChild:true,nodeId:\"w0cXygaGi\",...addPropertyOverrides({fn0dooGuw:{href:{webPageId:\"Rbg7IitJ5\"},openInNewTab:false},QCI_O7SoP:{href:{webPageId:\"Rbg7IitJ5\"},openInNewTab:false},WdWayDwqN:{href:{webPageId:\"Rbg7IitJ5\"},openInNewTab:false}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1cgfxxx framer-15rzjc0\",layoutDependency:layoutDependency,layoutId:\"w0cXygaGi\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c4634c61-c453-49aa-834c-3d21e51f5eb0, rgb(163, 163, 163)))\"},children:\"Resources\"})}),className:\"framer-4eyovi\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"r63VEsVPE\",style:{\"--extracted-r6o4lv\":\"var(--token-c4634c61-c453-49aa-834c-3d21e51f5eb0, rgb(163, 163, 163))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({fn0dooGuw:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c4634c61-c453-49aa-834c-3d21e51f5eb0, rgb(163, 163, 163)))\"},children:\"Pricing\"})})},QCI_O7SoP:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c4634c61-c453-49aa-834c-3d21e51f5eb0, rgb(163, 163, 163)))\"},children:\"Pricing\"})})},WdWayDwqN:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c4634c61-c453-49aa-834c-3d21e51f5eb0, rgb(163, 163, 163)))\"},children:\"Pricing\"})})}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(Link,{motionChild:true,nodeId:\"Bjcfqi5V4\",...addPropertyOverrides({fn0dooGuw:{href:\"https://playground.thirdweb.com/connect/sign-in/button\",openInNewTab:false},QCI_O7SoP:{href:\"https://playground.thirdweb.com/connect/sign-in/button\",openInNewTab:false},WdWayDwqN:{href:\"https://playground.thirdweb.com/connect/sign-in/button\",openInNewTab:false}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-u9mwes framer-15rzjc0\",layoutDependency:layoutDependency,layoutId:\"Bjcfqi5V4\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c4634c61-c453-49aa-834c-3d21e51f5eb0, rgb(163, 163, 163)))\"},children:\"Showcase\"})}),className:\"framer-oseq8p\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"o7tz6QDzG\",style:{\"--extracted-r6o4lv\":\"var(--token-c4634c61-c453-49aa-834c-3d21e51f5eb0, rgb(163, 163, 163))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({fn0dooGuw:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c4634c61-c453-49aa-834c-3d21e51f5eb0, rgb(163, 163, 163)))\"},children:\"Playground\"})})},QCI_O7SoP:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c4634c61-c453-49aa-834c-3d21e51f5eb0, rgb(163, 163, 163)))\"},children:\"Playground\"})})},WdWayDwqN:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c4634c61-c453-49aa-834c-3d21e51f5eb0, rgb(163, 163, 163)))\"},children:\"Playground\"})})}},baseVariant,gestureVariant)})})})]})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-9t47D.framer-15rzjc0, .framer-9t47D .framer-15rzjc0 { display: block; }\",\".framer-9t47D.framer-1yp46q5 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; padding: 16px 24px 16px 24px; position: relative; width: 1200px; }\",\".framer-9t47D .framer-9h1io1 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; max-width: 1392px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-9t47D .framer-11qg3cf { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-9t47D .framer-1mwqq45-container { flex: none; height: 24px; position: relative; width: auto; }\",\".framer-9t47D .framer-1l4tp41 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-9t47D .framer-19epq6o-container, .framer-9t47D .framer-plq77r-container, .framer-9t47D .framer-x7jpg0-container, .framer-9t47D .framer-bhekl9-container, .framer-9t47D .framer-17d56h2-container, .framer-9t47D .framer-59mb3z-container, .framer-9t47D .framer-10v899f-container, .framer-9t47D .framer-2hijak-container, .framer-9t47D .framer-1mvdohm-container, .framer-9t47D .framer-1bfqp24-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-9t47D .framer-mlsoh1, .framer-9t47D .framer-10evax, .framer-9t47D .framer-1r539h9, .framer-9t47D .framer-5qxmit { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-9t47D .framer-mpv8nk-container, .framer-9t47D .framer-16jvv19-container { flex: none; height: auto; position: relative; width: 368px; }\",\".framer-9t47D .framer-w940av { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-9t47D .framer-1fyykal { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; min-height: 200px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-9t47D .framer-1mggh6b { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; min-height: 92px; overflow: visible; padding: 8px 8px 0px 8px; position: relative; width: 100%; }\",\".framer-9t47D .framer-pbnsam-container, .framer-9t47D .framer-16cawmc-container { flex: none; height: 40px; position: relative; width: 100%; }\",\".framer-9t47D .framer-1li406o { 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: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-9t47D .framer-i5dz08-container, .framer-9t47D .framer-4p2nz1-container, .framer-9t47D .framer-1j7zu7f-container, .framer-9t47D .framer-abpecp-container, .framer-9t47D .framer-2cd5b9-container, .framer-9t47D .framer-h4zajq-container, .framer-9t47D .framer-t371c4-container, .framer-9t47D .framer-1j1d92s-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-9t47D .framer-1cgfxxx, .framer-9t47D .framer-u9mwes { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 48px; justify-content: center; overflow: visible; padding: 8px 12px 8px 12px; position: relative; width: 100%; }\",\".framer-9t47D .framer-4eyovi, .framer-9t47D .framer-oseq8p { -webkit-user-select: none; flex: 1 0 0px; height: auto; position: relative; user-select: none; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-9t47D.framer-1yp46q5, .framer-9t47D .framer-9h1io1, .framer-9t47D .framer-11qg3cf, .framer-9t47D .framer-1l4tp41, .framer-9t47D .framer-mlsoh1, .framer-9t47D .framer-10evax, .framer-9t47D .framer-1r539h9, .framer-9t47D .framer-5qxmit, .framer-9t47D .framer-w940av, .framer-9t47D .framer-1fyykal, .framer-9t47D .framer-1mggh6b, .framer-9t47D .framer-1li406o, .framer-9t47D .framer-1cgfxxx, .framer-9t47D .framer-u9mwes { gap: 0px; } .framer-9t47D.framer-1yp46q5 > *, .framer-9t47D .framer-mlsoh1 > *, .framer-9t47D .framer-10evax > *, .framer-9t47D .framer-1r539h9 > *, .framer-9t47D .framer-5qxmit > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-9t47D.framer-1yp46q5 > :first-child, .framer-9t47D .framer-9h1io1 > :first-child, .framer-9t47D .framer-11qg3cf > :first-child, .framer-9t47D .framer-1l4tp41 > :first-child, .framer-9t47D .framer-mlsoh1 > :first-child, .framer-9t47D .framer-10evax > :first-child, .framer-9t47D .framer-1r539h9 > :first-child, .framer-9t47D .framer-5qxmit > :first-child, .framer-9t47D .framer-w940av > :first-child, .framer-9t47D .framer-1cgfxxx > :first-child, .framer-9t47D .framer-u9mwes > :first-child { margin-left: 0px; } .framer-9t47D.framer-1yp46q5 > :last-child, .framer-9t47D .framer-9h1io1 > :last-child, .framer-9t47D .framer-11qg3cf > :last-child, .framer-9t47D .framer-1l4tp41 > :last-child, .framer-9t47D .framer-mlsoh1 > :last-child, .framer-9t47D .framer-10evax > :last-child, .framer-9t47D .framer-1r539h9 > :last-child, .framer-9t47D .framer-5qxmit > :last-child, .framer-9t47D .framer-w940av > :last-child, .framer-9t47D .framer-1cgfxxx > :last-child, .framer-9t47D .framer-u9mwes > :last-child { margin-right: 0px; } .framer-9t47D .framer-9h1io1 > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-9t47D .framer-11qg3cf > * { margin: 0px; margin-left: calc(32px / 2); margin-right: calc(32px / 2); } .framer-9t47D .framer-1l4tp41 > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-9t47D .framer-w940av > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } .framer-9t47D .framer-1fyykal > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-9t47D .framer-1fyykal > :first-child, .framer-9t47D .framer-1mggh6b > :first-child, .framer-9t47D .framer-1li406o > :first-child { margin-top: 0px; } .framer-9t47D .framer-1fyykal > :last-child, .framer-9t47D .framer-1mggh6b > :last-child, .framer-9t47D .framer-1li406o > :last-child { margin-bottom: 0px; } .framer-9t47D .framer-1mggh6b > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-9t47D .framer-1li406o > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-9t47D .framer-1cgfxxx > *, .framer-9t47D .framer-u9mwes > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } }\",\".framer-9t47D.framer-v-1jo37vb.framer-1yp46q5 { flex-direction: column; justify-content: flex-start; max-height: calc(var(--framer-viewport-height, 100vh) * 1); min-height: calc(var(--framer-viewport-height, 100vh) * 1); overflow: auto; overscroll-behavior: contain; padding: 0px 8px 120px 8px; width: 390px; }\",\".framer-9t47D.framer-v-1jo37vb .framer-9h1io1, .framer-9t47D.framer-v-96py1o .framer-9h1io1, .framer-9t47D.framer-v-1hc49i2 .framer-9h1io1 { flex: none; height: 64px; padding: 0px 12px 0px 12px; width: 100%; }\",\".framer-9t47D.framer-v-1jo37vb .framer-1fyykal { flex: none; min-height: unset; overflow: hidden; width: 100%; }\",\".framer-9t47D.framer-v-1jo37vb .framer-1mggh6b { min-height: unset; overflow: hidden; }\",\".framer-9t47D.framer-v-1jo37vb .framer-1li406o { overflow: hidden; }\",\".framer-9t47D.framer-v-1jo37vb .framer-i5dz08-container, .framer-9t47D.framer-v-96py1o .framer-i5dz08-container, .framer-9t47D.framer-v-1hc49i2 .framer-i5dz08-container { order: 0; }\",\".framer-9t47D.framer-v-1jo37vb .framer-4p2nz1-container, .framer-9t47D.framer-v-96py1o .framer-4p2nz1-container, .framer-9t47D.framer-v-1hc49i2 .framer-4p2nz1-container { order: 1; }\",\".framer-9t47D.framer-v-1jo37vb .framer-1j7zu7f-container, .framer-9t47D.framer-v-96py1o .framer-1j7zu7f-container, .framer-9t47D.framer-v-1hc49i2 .framer-1j7zu7f-container { order: 3; }\",\".framer-9t47D.framer-v-1jo37vb .framer-abpecp-container, .framer-9t47D.framer-v-96py1o .framer-abpecp-container, .framer-9t47D.framer-v-1hc49i2 .framer-abpecp-container { order: 4; }\",\".framer-9t47D.framer-v-1jo37vb .framer-2cd5b9-container, .framer-9t47D.framer-v-96py1o .framer-2cd5b9-container, .framer-9t47D.framer-v-1hc49i2 .framer-2cd5b9-container { order: 5; }\",\".framer-9t47D.framer-v-1jo37vb .framer-h4zajq-container { order: 7; }\",\".framer-9t47D.framer-v-1jo37vb .framer-1cgfxxx, .framer-9t47D.framer-v-96py1o .framer-1cgfxxx, .framer-9t47D.framer-v-1hc49i2 .framer-1cgfxxx { order: 2; text-decoration: none; }\",\".framer-9t47D.framer-v-1jo37vb .framer-u9mwes, .framer-9t47D.framer-v-96py1o .framer-u9mwes, .framer-9t47D.framer-v-1hc49i2 .framer-u9mwes { order: 9; text-decoration: none; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-9t47D.framer-v-1jo37vb.framer-1yp46q5 { gap: 0px; } .framer-9t47D.framer-v-1jo37vb.framer-1yp46q5 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-9t47D.framer-v-1jo37vb.framer-1yp46q5 > :first-child { margin-top: 0px; } .framer-9t47D.framer-v-1jo37vb.framer-1yp46q5 > :last-child { margin-bottom: 0px; } }\",\".framer-9t47D.framer-v-96py1o.framer-1yp46q5, .framer-9t47D.framer-v-1hc49i2.framer-1yp46q5 { flex-direction: column; height: 64px; justify-content: flex-start; overflow: hidden; padding: 0px 8px 0px 8px; width: 390px; }\",\".framer-9t47D.framer-v-96py1o .framer-1fyykal, .framer-9t47D.framer-v-1hc49i2 .framer-1fyykal { flex: none; min-height: unset; width: 100%; }\",\".framer-9t47D.framer-v-96py1o .framer-1mggh6b, .framer-9t47D.framer-v-1hc49i2 .framer-1mggh6b { min-height: unset; }\",\".framer-9t47D.framer-v-96py1o .framer-1j1d92s-container { order: 8; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-9t47D.framer-v-96py1o.framer-1yp46q5 { gap: 0px; } .framer-9t47D.framer-v-96py1o.framer-1yp46q5 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-9t47D.framer-v-96py1o.framer-1yp46q5 > :first-child { margin-top: 0px; } .framer-9t47D.framer-v-96py1o.framer-1yp46q5 > :last-child { margin-bottom: 0px; } }\",\".framer-9t47D.framer-v-1hc49i2 .framer-t371c4-container { order: 6; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-9t47D.framer-v-1hc49i2.framer-1yp46q5 { gap: 0px; } .framer-9t47D.framer-v-1hc49i2.framer-1yp46q5 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-9t47D.framer-v-1hc49i2.framer-1yp46q5 > :first-child { margin-top: 0px; } .framer-9t47D.framer-v-1hc49i2.framer-1yp46q5 > :last-child { margin-bottom: 0px; } }\",'.framer-9t47D[data-border=\"true\"]::after, .framer-9t47D [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 64\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"fn0dooGuw\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,null,\"100vh\",\"100vh\"]},\"QCI_O7SoP\":{\"layout\":[\"fixed\",\"fixed\"]},\"LGTSbm3vf\":{\"layout\":[\"fixed\",\"auto\"]},\"WdWayDwqN\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerTJtdcnIgW=withCSS(Component,css,\"framer-9t47D\");export default FramerTJtdcnIgW;FramerTJtdcnIgW.displayName=\"Navigation / Navigation\";FramerTJtdcnIgW.defaultProps={height:64,width:1200};addPropertyControls(FramerTJtdcnIgW,{variant:{options:[\"nmOK9Q1QZ\",\"fn0dooGuw\",\"QCI_O7SoP\",\"LGTSbm3vf\",\"WdWayDwqN\"],optionTitles:[\"Desktop\",\"Phone Open\",\"Phone\",\"Desktop Scrolling\",\"Phone Scrolling\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerTJtdcnIgW,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5A3Ce6C9YYmCjpQx9M4inSaKU.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/Qx95Xyt0Ka3SGhinnbXIGpEIyP4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/6mJuEAguuIuMog10gGvH5d3cl8.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/xYYWaj7wCU5zSQH0eXvSaS19wo.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/otTaNuNpVK4RbdlT7zDDdKvQBA.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/d3tHnaQIAeqiE5hGcRw4mmgWYU.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/DolVirEGb34pEXEp8t8FQBSK4.woff2\",weight:\"500\"}]},...NavigationThirdwebLogoFonts,...NavigationNavigationItemFonts,...NavigationDropdownFonts,...NavigationButtonFonts,...ButtonsButtonFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerTJtdcnIgW\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"fn0dooGuw\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,null,\\\"100vh\\\",\\\"100vh\\\"]},\\\"QCI_O7SoP\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"LGTSbm3vf\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"WdWayDwqN\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"1200\",\"framerIntrinsicHeight\":\"64\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["SVG", "props", "customSvgElement", "setCustomSvgElement", "ye", "ue", "svgContent", "processCustomSVGContent", "replacements", "hasCustomStroke", "hasCustomStrokeWidth", "hasLineCap", "hasLineJoin", "circleFillRegex", "match", "updatedCircle", "regex", "replacement", "customContainerStyle", "p", "addPropertyControls", "ControlType", "SVG_default", "SVGFonts", "getFonts", "SVG_default", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableEnumMap", "humanReadableVariantMap", "getProps", "click", "distribute", "height", "icon", "iconColor", "id", "link", "stroke", "text", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "I4KuTahqi", "BL_hxI2b_", "q8NV5vffb", "BnmH_z3oH", "RSajvyivS", "GxuiU3lbe", "r3Wpubva0", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1mugfga", "args", "scopingClassNames", "cx", "ref1", "pe", "isDisplayed", "isDisplayed1", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "u", "RichText2", "ComponentViewportProvider", "css", "FramereMAX511LU", "withCSS", "eMAX511LU_default", "addPropertyControls", "ControlType", "addFonts", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "withToggleScroll", "Component", "props", "bodyElement", "pe", "ue", "_document", "p", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "toResponsiveImage", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "description", "height", "id", "image", "link", "title", "width", "props", "_ref", "_ref1", "_humanReadableVariantMap_props_variant", "_ref2", "_ref3", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "x7ezT7rx8", "f_OWzkWPM", "DZKmBZ71m", "sEqIccMsb", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "isDisplayed", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "cx", "u", "Image2", "getLoadingLazyAtYPosition", "RichText2", "css", "FramerbYhiwO7QJ", "withCSS", "bYhiwO7QJ_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "NavigationNavigationDropdownItemFonts", "getFonts", "bYhiwO7QJ_default", "SVGFonts", "SVG_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "addImageAlt", "image", "alt", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1geafuf", "args", "onTap13ae4zz", "onTap1do3b0p", "onTapdxuk8t", "onTap7z0szf", "onTap1asgkxe", "onTapzhqlim", "onTap10o7lfq", "onTapd1asq2", "onTap15te8ni", "onTapeylbgt", "onTap1gcbvu9", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "router", "useRouter", "isDisplayed2", "isDisplayed3", "isDisplayed4", "isDisplayed5", "isDisplayed6", "isDisplayed7", "isDisplayed8", "isDisplayed9", "isDisplayed10", "isDisplayed11", "isDisplayed12", "isDisplayed13", "isDisplayed14", "isDisplayed15", "isDisplayed16", "isDisplayed17", "isDisplayed18", "LayoutGroup", "u", "ResolveLinks", "resolvedLinks", "ComponentViewportProvider", "SmartComponentScopedContainer", "resolvedLinks1", "resolvedLinks2", "resolvedLinks3", "resolvedLinks4", "resolvedLinks5", "resolvedLinks6", "resolvedLinks7", "resolvedLinks8", "resolvedLinks9", "resolvedLinks10", "resolvedLinks11", "resolvedLinks12", "resolvedLinks13", "RichText2", "css", "FramerFJcN2qQXX", "withCSS", "FJcN2qQXX_default", "addPropertyControls", "ControlType", "addFonts", "SVGFonts", "getFonts", "SVG_default", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "hover", "id", "link", "name1", "width", "props", "_ref", "_humanReadableVariantMap_props_variant", "_ref1", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "DypPJCEq2", "zhjSmsf4E", "ba8EEYMO8", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onMouseEnter1cl9sml", "args", "ref1", "pe", "isDisplayed", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "u", "cx", "RichText2", "ComponentViewportProvider", "css", "FramerOd8026J91", "withCSS", "Od8026J91_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "SVGFonts", "getFonts", "SVG_default", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "click2", "height", "id", "link", "title", "width", "props", "_ref", "_humanReadableVariantMap_props_variant", "_ref1", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "jqbfMUXWy", "RZyA4xOaV", "vvcOsJhDm", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTapfq91xh", "args", "ref1", "pe", "isDisplayed", "isDisplayed1", "isDisplayed2", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "u", "cx", "RichText2", "ComponentViewportProvider", "css", "FramersetpHQJqg", "withCSS", "setpHQJqg_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "cx", "serializationHash", "SVG", "css", "FramerxAomRXpzG", "withCSS", "xAomRXpzG_default", "addFonts", "NavigationThirdwebLogoFonts", "getFonts", "xAomRXpzG_default", "NavigationNavigationItemFonts", "Od8026J91_default", "NavigationDropdownFonts", "FJcN2qQXX_default", "MotionDivWithFX", "withFX", "motion", "NavigationButtonFonts", "setpHQJqg_default", "MotionDivWithToggleScrollw940av", "withCodeBoundaryForOverrides", "withToggleScroll", "ButtonsButtonFonts", "eMAX511LU_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "animation", "animation1", "animation2", "Overlay", "children", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "Transition", "value", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "ba8EEYMO8txyyif", "overlay", "loadMore", "args", "ba8EEYMO81itwqw2", "vvcOsJhDm1xmze42", "vvcOsJhDmxj3cjd", "scopingClassNames", "cx", "ref1", "pe", "isDisplayed", "ref2", "ref3", "ref4", "ref5", "router", "useRouter", "ref6", "ref7", "ref8", "ref9", "isDisplayed1", "isDisplayed2", "isDisplayed3", "isDisplayed4", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "ComponentViewportProvider", "SmartComponentScopedContainer", "l", "AnimatePresence", "Floating", "overlay1", "ResolveLinks", "resolvedLinks", "overlay2", "overlay3", "resolvedLinks1", "resolvedLinks2", "Link", "RichText2", "css", "FramerTJtdcnIgW", "withCSS", "TJtdcnIgW_default", "addPropertyControls", "ControlType", "addFonts"]
}
