{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/tLYlIltYEw5lrkFLQGqe/ncXrSfqc9zkRsiGFhwrn/RztGwGTuL.js", "ssg:https://framer.com/m/framer/store.js@^1.0.0", "ssg:https://framer.com/m/framer/utils.js@^0.9.0", "ssg:https://framerusercontent.com/modules/IwAqriZcqhwNnet6vj3T/S0NoEl1YpvVEHEbbywIp/GuideIdentifiers.js", "ssg:https://framerusercontent.com/modules/0scrOn7O2aLVlhVMWhXF/iFNoOwTuNwQRqVlVVYed/Vv7lXSsrv.js", "ssg:https://framerusercontent.com/modules/xzaYg73gvue0d2QiG3rz/xknglo3z1810rRAiwfz8/IXLXYbKHz.js", "ssg:https://framerusercontent.com/modules/IuGyTllXqVOKmn1p2j7B/IF0wowooB17Hu3Zh9Gxa/QiO_fuwe_.js", "ssg:https://framerusercontent.com/modules/hZBbZujhJl52FHIQVSC7/QCdNtF05aJkEk2JqSu8V/riv3ELMlU.js", "ssg:https://framerusercontent.com/modules/UAS9eVgZYNHQ3uXAtHlM/8heiLlahx7FOKwwEnx0M/XPnfErumA.js", "ssg:https://framerusercontent.com/modules/UtOFqShStmEtV0WTtyC7/pi4EbBphoSag1hcVFIkj/h4fy0tyX4.js"],
  "sourcesContent": ["// Generated by Framer (315fd46)\nimport{fontStore}from\"framer\";fontStore.loadFonts([]);export const fonts=[{explicitInter:true,fonts:[]}];export const css=[\".framer-LgQwQ .framer-styles-preset-1fkdsxi:not(.rich-text-wrapper), .framer-LgQwQ .framer-styles-preset-1fkdsxi.rich-text-wrapper a { --framer-link-current-text-color: #18666b; --framer-link-current-text-decoration: underline; --framer-link-hover-text-color: #18666b; --framer-link-hover-text-decoration: none; --framer-link-text-color: #252732; --framer-link-text-decoration: none; }\"];export const className=\"framer-LgQwQ\";\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{useState,useEffect}from\"react\";import{Data,useObserveData}from\"framer\";export function createStore(state1){// Use Data so that a Preview reload resets the state\nconst dataStore=Data({state:Object.freeze({...state1})});// Create a set function that updates the state\nconst setDataStore=newState=>{// If the state is an object, make sure we copy it\nif(typeof newState===\"function\"){newState=newState(dataStore.state);}dataStore.state=Object.freeze({...dataStore.state,...newState});};// Store the initial state, copy the object if it's an object\nlet storeState=typeof state1===\"object\"?Object.freeze({...state1}):state1;// Keep a list of all the listeners, in the form of React hook setters\nconst storeSetters=new Set();// Create a set function that updates all the listeners / setters\nconst setStoreState=newState=>{// If the state is an object, make sure we copy it\nif(typeof newState===\"function\"){newState=newState(storeState);}storeState=typeof newState===\"object\"?Object.freeze({...storeState,...newState}):newState;// Update all the listeners / setters with the new value\nstoreSetters.forEach(setter=>setter(storeState));};// Create the actual hook based on everything above\nfunction useStore(){// Create the hook we are going to use as a listener\nconst[state,setState]=useState(storeState);// If we unmount the component using this hook, we need to remove the listener\n// @ts-ignore\nuseEffect(()=>{// But right now, we need to add the listener\nstoreSetters.add(setState);return()=>storeSetters.delete(setState);},[]);// If Data context exists, use Data, otherwise use vanilla React state\nif(useObserveData()===true){useObserveData();return[dataStore.state,setDataStore];}else{// Return the state and a function to update the central store\nreturn[state,setStoreState];}}return useStore;}\nexport const __FramerMetadata__ = {\"exports\":{\"createStore\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./createStore.map", "export const centerContent = {\n    display: \"flex\",\n    justifyContent: \"center\",\n    alignItems: \"center\"\n};\nexport const autoSizingText = {\n    width: \"max-content\",\n    wordBreak: \"break-word\",\n    overflowWrap: \"break-word\",\n    overflow: \"hidden\",\n    whiteSpace: \"pre-wrap\",\n    flexShrink: 0\n};\nexport const defaultContainerStyles = {\n    ...centerContent,\n    overflow: \"hidden\"\n};\nexport const containerStyles = defaultContainerStyles;\nexport const randomColor = ()=>\"#\" + Math.floor(Math.random() * 16777215).toString(16)\n;\n\nexport const __FramerMetadata__ = {\"exports\":{\"centerContent\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"containerStyles\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"autoSizingText\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"defaultContainerStyles\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"randomColor\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}}}}\n//# sourceMappingURL=./Utils.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import{useEffect,useState}from\"react\";import{createStore}from\"https://framer.com/m/framer/store.js@^1.0.0\";import{randomColor}from\"https://framer.com/m/framer/utils.js@^0.9.0\";// Learn more: https://www.framer.com/docs/guides/overrides/\nconst useStore=createStore({background:\"#0099FF\"});export function withRotate(Component){return props=>{return /*#__PURE__*/_jsx(Component,{...props,animate:{rotate:90},transition:{duration:2}});};}export function withHover(Component){return props=>{return /*#__PURE__*/_jsx(Component,{...props,whileHover:{scale:1.05}});};}export function withRandomColor(Component){return props=>{const[store,setStore]=useStore();return /*#__PURE__*/_jsx(Component,{...props,animate:{background:store.background},onClick:()=>{setStore({background:randomColor()});}});};}export function openGuideOnClick(Component){return props=>{const[instance,setInstance]=useState(null);const handleClick=function(){instance===null||instance===void 0?void 0:instance.show();};useEffect(()=>{var _window_urplan,_window;setInstance((_window=window)===null||_window===void 0?void 0:(_window_urplan=_window.urplan)===null||_window_urplan===void 0?void 0:_window_urplan.init(\"https://f.veylinx.com/TTV-hYjR-lxC/ehIGQI-Wz7ni\"));},[]);return /*#__PURE__*/_jsx(Component,{onClick:handleClick,...props});};}\nexport const __FramerMetadata__ = {\"exports\":{\"openGuideOnClick\":{\"type\":\"reactHoc\",\"name\":\"openGuideOnClick\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withHover\":{\"type\":\"reactHoc\",\"name\":\"withHover\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withRotate\":{\"type\":\"reactHoc\",\"name\":\"withRotate\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withRandomColor\":{\"type\":\"reactHoc\",\"name\":\"withRandomColor\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./GuideIdentifiers.map", "// Generated by Framer (1999133-dev)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,SVG,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"wnipua7N_\",\"BJYJhvClj\"];const serializationHash=\"framer-2F7tm\";const variantClassNames={BJYJhvClj:\"framer-v-qzjjul\",wnipua7N_:\"framer-v-u8k4t0\"};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 transitions={default:{damping:40,delay:0,mass:1,stiffness:600,type:\"spring\"}};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/ _jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const humanReadableVariantMap={Closed:\"wnipua7N_\",Open:\"BJYJhvClj\"};const getProps=({height,id,width,...props})=>{var _variant,ref;return{...props,variant:(ref=(_variant=humanReadableVariantMap[props.variant])!==null&&_variant!==void 0?_variant:props.variant)!==null&&ref!==void 0?ref:\"wnipua7N_\"};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/ React.forwardRef(function(props,ref){const{activeLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"wnipua7N_\",transitions,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];return /*#__PURE__*/ _jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/ _jsx(motion.div,{initial:variant,animate:variants,onHoverStart:()=>setGestureState({isHovered:true}),onHoverEnd:()=>setGestureState({isHovered:false}),onTapStart:()=>setGestureState({isPressed:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),className:cx(\"framer-2F7tm\",...sharedStyleClassNames,classNames),style:{display:\"contents\"},children:/*#__PURE__*/ _jsx(Transition,{value:transition,children:/*#__PURE__*/ _jsx(motion.div,{...restProps,className:cx(\"framer-u8k4t0\",className),\"data-framer-name\":\"Closed\",layoutDependency:layoutDependency,layoutId:\"wnipua7N_\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({BJYJhvClj:{\"data-framer-name\":\"Open\"}},baseVariant,gestureVariant),children:/*#__PURE__*/ _jsx(motion.div,{className:\"framer-12eia36\",\"data-framer-name\":\"Frame\",layoutDependency:layoutDependency,layoutId:\"GUelqHsD8\",style:{rotate:0},variants:{BJYJhvClj:{rotate:-180}},children:/*#__PURE__*/ _jsx(SVG,{className:\"framer-tbg1zr\",\"data-framer-name\":\"Icon\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"VHYQxi0qk\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 14 14\"><path d=\"M 3 5.5 L 7 9.5 L 11 5.5\" fill=\"transparent\" stroke-width=\"2\" stroke=\"#aaa\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg>',svgContentId:892255882,withExternalLayout:true})})})})})});});const css=['.framer-2F7tm [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-2F7tm .framer-1al4e3m { display: block; }\",\".framer-2F7tm .framer-u8k4t0 { height: 14px; overflow: visible; position: relative; width: 14px; }\",\".framer-2F7tm .framer-12eia36 { flex: none; height: 14px; left: calc(50.00000000000002% - 14px / 2); overflow: visible; position: absolute; top: calc(50.00000000000002% - 14px / 2); width: 14px; }\",\".framer-2F7tm .framer-tbg1zr { flex: none; height: 14px; left: calc(50.00000000000002% - 14px / 2); position: absolute; top: calc(50.00000000000002% - 14px / 2); width: 14px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 14\n * @framerIntrinsicWidth 14\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"BJYJhvClj\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n */ const FramerVv7lXSsrv=withCSS(Component,css,\"framer-2F7tm\");export default FramerVv7lXSsrv;FramerVv7lXSsrv.displayName=\"Caret\";FramerVv7lXSsrv.defaultProps={height:14,width:14};addPropertyControls(FramerVv7lXSsrv,{variant:{options:[\"wnipua7N_\",\"BJYJhvClj\"],optionTitles:[\"Closed\",\"Open\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerVv7lXSsrv,[]);\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerVv7lXSsrv\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"14\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"14\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"BJYJhvClj\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Vv7lXSsrv.map", "// Generated by Framer (3fa6aa4)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Caret from\"https://framerusercontent.com/modules/0scrOn7O2aLVlhVMWhXF/iFNoOwTuNwQRqVlVVYed/Vv7lXSsrv.js\";const CaretFonts=getFonts(Caret);const cycleOrder=[\"Qq2TMFeOK\",\"mdDtnjabJ\"];const serializationHash=\"framer-UWiTm\";const variantClassNames={mdDtnjabJ:\"framer-v-1nelo08\",Qq2TMFeOK:\"framer-v-psxr7q\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:40,delay:0,mass:1,stiffness:600,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={Closed:\"Qq2TMFeOK\",Open:\"mdDtnjabJ\"};const getProps=({height,hover,id,title,width,...props})=>{var _ref,_humanReadableVariantMap_props_variant,_ref1;return{...props,DApvjrdfG:(_ref=title!==null&&title!==void 0?title:props.DApvjrdfG)!==null&&_ref!==void 0?_ref:\"Product\",PWSlWeqS6:hover!==null&&hover!==void 0?hover:props.PWSlWeqS6,variant:(_ref1=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref1!==void 0?_ref1:\"Qq2TMFeOK\"};};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,PWSlWeqS6,DApvjrdfG,...restProps}=getProps(props);const{baseVariant,classNames,gestureHandlers,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"Qq2TMFeOK\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onMouseEnter1rcefkx=activeVariantCallback(async(...args)=>{if(PWSlWeqS6){const res=await PWSlWeqS6(...args);if(res===false)return false;}});const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-psxr7q\",className,classNames),\"data-framer-name\":\"Closed\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"Qq2TMFeOK\",onMouseEnter:onMouseEnter1rcefkx,ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"rgb(255, 255, 255)\",...style},...addPropertyOverrides({mdDtnjabJ:{\"data-framer-name\":\"Open\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1NGIFBybyBEaXNwbGF5IE1lZGl1bQ==\",\"--framer-font-family\":'\"SF Pro Display Medium\", \"SF Pro Display Medium Placeholder\", \"-apple-system\", \"BlinkMacSystemFont\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"2em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(68, 68, 68))\"},children:\"Product\"})}),className:\"framer-yxuy0a\",fonts:[\"CUSTOM;SF Pro Display Medium\"],layoutDependency:layoutDependency,layoutId:\"lV6WiFFuU\",style:{\"--extracted-r6o4lv\":\"rgb(68, 68, 68)\",\"--framer-paragraph-spacing\":\"0px\"},text:DApvjrdfG,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-8923ll-container\",layoutDependency:layoutDependency,layoutId:\"UFAfuX7qe-container\",children:/*#__PURE__*/_jsx(Caret,{height:\"100%\",id:\"UFAfuX7qe\",layoutId:\"UFAfuX7qe\",variant:\"wnipua7N_\",width:\"100%\",...addPropertyOverrides({mdDtnjabJ:{variant:\"BJYJhvClj\"}},baseVariant,gestureVariant)})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-UWiTm.framer-d33noq, .framer-UWiTm .framer-d33noq { display: block; }\",\".framer-UWiTm.framer-psxr7q { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: center; overflow: hidden; padding: 5px 0px 5px 0px; position: relative; width: min-content; }\",\".framer-UWiTm .framer-yxuy0a { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre; width: auto; }\",\".framer-UWiTm .framer-8923ll-container { flex: none; height: auto; position: relative; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-UWiTm.framer-psxr7q { gap: 0px; } .framer-UWiTm.framer-psxr7q > * { margin: 0px; margin-left: calc(5px / 2); margin-right: calc(5px / 2); } .framer-UWiTm.framer-psxr7q > :first-child { margin-left: 0px; } .framer-UWiTm.framer-psxr7q > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 46\n * @framerIntrinsicWidth 80\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"mdDtnjabJ\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"PWSlWeqS6\":\"hover\",\"DApvjrdfG\":\"title\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerIXLXYbKHz=withCSS(Component,css,\"framer-UWiTm\");export default FramerIXLXYbKHz;FramerIXLXYbKHz.displayName=\"Trigger\";FramerIXLXYbKHz.defaultProps={height:46,width:80};addPropertyControls(FramerIXLXYbKHz,{variant:{options:[\"Qq2TMFeOK\",\"mdDtnjabJ\"],optionTitles:[\"Closed\",\"Open\"],title:\"Variant\",type:ControlType.Enum},PWSlWeqS6:{title:\"Hover\",type:ControlType.EventHandler},DApvjrdfG:{defaultValue:\"Product\",displayTextArea:false,title:\"Title\",type:ControlType.String}});addFonts(FramerIXLXYbKHz,[{explicitInter:true,fonts:[{family:\"SF Pro Display Medium\",source:\"custom\",url:\"https://framerusercontent.com/assets/dTVfXNKgID7VXkl9c6QSFxH4c.woff2\"}]},...CaretFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerIXLXYbKHz\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"46\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerVariables\":\"{\\\"PWSlWeqS6\\\":\\\"hover\\\",\\\"DApvjrdfG\\\":\\\"title\\\"}\",\"framerIntrinsicWidth\":\"80\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"mdDtnjabJ\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./IXLXYbKHz.map", "// Generated by Framer (ddd30d5)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,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/tLYlIltYEw5lrkFLQGqe/ncXrSfqc9zkRsiGFhwrn/RztGwGTuL.js\";const cycleOrder=[\"o3TiQrDsd\",\"CisQVFkFh\"];const serializationHash=\"framer-QEXyb\";const variantClassNames={CisQVFkFh:\"framer-v-3vf4lk\",o3TiQrDsd:\"framer-v-qtywu4\"};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={Desktop:\"o3TiQrDsd\",Phone:\"CisQVFkFh\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"o3TiQrDsd\"};};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:\"o3TiQrDsd\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"CisQVFkFh\")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__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-qtywu4\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"o3TiQrDsd\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:15,borderBottomRightRadius:15,borderTopLeftRadius:15,borderTopRightRadius:15,boxShadow:\"0px 0px 0px 1px rgba(0, 0, 0, 0.05)\",...style},variants:{CisQVFkFh:{borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0,boxShadow:\"none\"}},...addPropertyOverrides({CisQVFkFh:{\"data-framer-name\":\"Phone\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1NGIFBybyBEaXNwbGF5IE1lZGl1bQ==\",\"--framer-font-family\":'\"SF Pro Display Medium\", \"SF Pro Display Medium Placeholder\", \"-apple-system\", \"BlinkMacSystemFont\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(170, 170, 170))\"},children:\"Solutions\"})}),className:\"framer-80auc4\",fonts:[\"CUSTOM;SF Pro Display Medium\"],layoutDependency:layoutDependency,layoutId:\"Sx42m9Srb\",style:{\"--extracted-r6o4lv\":\"rgb(170, 170, 170)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-fzht3u\",\"data-framer-name\":\"Item\",layoutDependency:layoutDependency,layoutId:\"WLcojkyAC\",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\"},variants:{CisQVFkFh:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(238, 238, 238)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"}},...addPropertyOverrides({CisQVFkFh:{\"data-border\":true}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1NGIFBybyBEaXNwbGF5IE1lZGl1bQ==\",\"--framer-font-family\":'\"SF Pro Display Medium\", \"SF Pro Display Medium Placeholder\", \"-apple-system\", \"BlinkMacSystemFont\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"2em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(68, 68, 68))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"ULlwq5X7O\"},nodeId:\"OchmPH9DQ\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1fkdsxi\",\"data-styles-preset\":\"RztGwGTuL\",children:\"Revenue Growth\"})})})}),className:\"framer-avkd0i\",fonts:[\"CUSTOM;SF Pro Display Medium\"],layoutDependency:layoutDependency,layoutId:\"OchmPH9DQ\",style:{\"--extracted-r6o4lv\":\"rgb(68, 68, 68)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1hduspt\",\"data-framer-name\":\"Item\",layoutDependency:layoutDependency,layoutId:\"cFAH0gFPK\",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\"},variants:{CisQVFkFh:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(238, 238, 238)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"}},...addPropertyOverrides({CisQVFkFh:{\"data-border\":true}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1NGIFBybyBEaXNwbGF5IE1lZGl1bQ==\",\"--framer-font-family\":'\"SF Pro Display Medium\", \"SF Pro Display Medium Placeholder\", \"-apple-system\", \"BlinkMacSystemFont\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"2em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(68, 68, 68))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"Vk8oEW4h5\"},nodeId:\"fisnCV0zt\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1fkdsxi\",\"data-styles-preset\":\"RztGwGTuL\",children:\"Monetize Users\"})})})}),className:\"framer-1gkfgei\",fonts:[\"CUSTOM;SF Pro Display Medium\"],layoutDependency:layoutDependency,layoutId:\"fisnCV0zt\",style:{\"--extracted-r6o4lv\":\"rgb(68, 68, 68)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-60wzet\",\"data-framer-name\":\"Item\",layoutDependency:layoutDependency,layoutId:\"h0Lh7DWtT\",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\"},variants:{CisQVFkFh:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(238, 238, 238)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"}},...addPropertyOverrides({CisQVFkFh:{\"data-border\":true}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1NGIFBybyBEaXNwbGF5IE1lZGl1bQ==\",\"--framer-font-family\":'\"SF Pro Display Medium\", \"SF Pro Display Medium Placeholder\", \"-apple-system\", \"BlinkMacSystemFont\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"2em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(68, 68, 68))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"KbZsNM58u\"},nodeId:\"lq2Vac06L\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1fkdsxi\",\"data-styles-preset\":\"RztGwGTuL\",children:\"Increase Valuation\"})})})}),className:\"framer-rpnyz5\",fonts:[\"CUSTOM;SF Pro Display Medium\"],layoutDependency:layoutDependency,layoutId:\"lq2Vac06L\",style:{\"--extracted-r6o4lv\":\"rgb(68, 68, 68)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-QEXyb.framer-m69ncr, .framer-QEXyb .framer-m69ncr { display: block; }\",\".framer-QEXyb.framer-qtywu4 { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: flex-start; padding: 15px; position: relative; width: 210px; }\",\".framer-QEXyb .framer-80auc4 { -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; }\",\".framer-QEXyb .framer-fzht3u, .framer-QEXyb .framer-1hduspt, .framer-QEXyb .framer-60wzet { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-QEXyb .framer-avkd0i, .framer-QEXyb .framer-1gkfgei, .framer-QEXyb .framer-rpnyz5 { -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-QEXyb.framer-qtywu4, .framer-QEXyb .framer-fzht3u, .framer-QEXyb .framer-1hduspt, .framer-QEXyb .framer-60wzet { gap: 0px; } .framer-QEXyb.framer-qtywu4 > * { margin: 0px; margin-bottom: calc(5px / 2); margin-top: calc(5px / 2); } .framer-QEXyb.framer-qtywu4 > :first-child { margin-top: 0px; } .framer-QEXyb.framer-qtywu4 > :last-child { margin-bottom: 0px; } .framer-QEXyb .framer-fzht3u > *, .framer-QEXyb .framer-1hduspt > *, .framer-QEXyb .framer-60wzet > * { margin: 0px; margin-left: calc(15px / 2); margin-right: calc(15px / 2); } .framer-QEXyb .framer-fzht3u > :first-child, .framer-QEXyb .framer-1hduspt > :first-child, .framer-QEXyb .framer-60wzet > :first-child { margin-left: 0px; } .framer-QEXyb .framer-fzht3u > :last-child, .framer-QEXyb .framer-1hduspt > :last-child, .framer-QEXyb .framer-60wzet > :last-child { margin-right: 0px; } }\",\".framer-QEXyb.framer-v-3vf4lk.framer-qtywu4 { gap: 0px; padding: 32px 0px 0px 0px; }\",\".framer-QEXyb.framer-v-3vf4lk .framer-80auc4 { order: 0; }\",\".framer-QEXyb.framer-v-3vf4lk .framer-fzht3u { height: 56px; order: 1; }\",\".framer-QEXyb.framer-v-3vf4lk .framer-1hduspt { height: 56px; order: 2; }\",\".framer-QEXyb.framer-v-3vf4lk .framer-60wzet { height: 56px; order: 3; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-QEXyb.framer-v-3vf4lk.framer-qtywu4 { gap: 0px; } .framer-QEXyb.framer-v-3vf4lk.framer-qtywu4 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-QEXyb.framer-v-3vf4lk.framer-qtywu4 > :first-child { margin-top: 0px; } .framer-QEXyb.framer-v-3vf4lk.framer-qtywu4 > :last-child { margin-bottom: 0px; } }\",...sharedStyle.css,'.framer-QEXyb[data-border=\"true\"]::after, .framer-QEXyb [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 148\n * @framerIntrinsicWidth 210\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"CisQVFkFh\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerQiO_fuwe_=withCSS(Component,css,\"framer-QEXyb\");export default FramerQiO_fuwe_;FramerQiO_fuwe_.displayName=\"Links: Product\";FramerQiO_fuwe_.defaultProps={height:148,width:210};addPropertyControls(FramerQiO_fuwe_,{variant:{options:[\"o3TiQrDsd\",\"CisQVFkFh\"],optionTitles:[\"Desktop\",\"Phone\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerQiO_fuwe_,[{explicitInter:true,fonts:[{family:\"SF Pro Display Medium\",source:\"custom\",url:\"https://framerusercontent.com/assets/dTVfXNKgID7VXkl9c6QSFxH4c.woff2\"}]},...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerQiO_fuwe_\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"CisQVFkFh\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"148\",\"framerIntrinsicWidth\":\"210\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./QiO_fuwe_.map", "// Generated by Framer (b742ddc)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,Link,RichText,useActiveVariantCallback,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/tLYlIltYEw5lrkFLQGqe/ncXrSfqc9zkRsiGFhwrn/RztGwGTuL.js\";const cycleOrder=[\"G1_yiV_zW\",\"hJtusZf0b\"];const serializationHash=\"framer-kySEX\";const variantClassNames={G1_yiV_zW:\"framer-v-1dmh3bu\",hJtusZf0b:\"framer-v-108i50f\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={Desktop:\"G1_yiV_zW\",Phone:\"hJtusZf0b\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"G1_yiV_zW\"};};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:\"G1_yiV_zW\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1va9p34=activeVariantCallback(async(...args)=>{setVariant(\"G1_yiV_zW\");});const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"hJtusZf0b\")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__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1dmh3bu\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"G1_yiV_zW\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:15,borderBottomRightRadius:15,borderTopLeftRadius:15,borderTopRightRadius:15,boxShadow:\"0px 0px 0px 1px rgba(0, 0, 0, 0.05)\",...style},variants:{hJtusZf0b:{borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0,boxShadow:\"none\"}},...addPropertyOverrides({hJtusZf0b:{\"data-framer-name\":\"Phone\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1NGIFBybyBEaXNwbGF5IE1lZGl1bQ==\",\"--framer-font-family\":'\"SF Pro Display Medium\", \"SF Pro Display Medium Placeholder\", \"-apple-system\", \"BlinkMacSystemFont\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(170, 170, 170))\"},children:\"Resources\"})}),className:\"framer-ayzhhv\",fonts:[\"CUSTOM;SF Pro Display Medium\"],layoutDependency:layoutDependency,layoutId:\"cLLDFSoT6\",style:{\"--extracted-r6o4lv\":\"rgb(170, 170, 170)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-8ezm2q\",\"data-framer-name\":\"Item\",layoutDependency:layoutDependency,layoutId:\"H0PmMd5vw\",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\"},variants:{hJtusZf0b:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(238, 238, 238)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"}},...addPropertyOverrides({hJtusZf0b:{\"data-border\":true}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1NGIFBybyBEaXNwbGF5IE1lZGl1bQ==\",\"--framer-font-family\":'\"SF Pro Display Medium\", \"SF Pro Display Medium Placeholder\", \"-apple-system\", \"BlinkMacSystemFont\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"2em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(68, 68, 68))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"Ub0HjDbdA\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1fkdsxi\",\"data-styles-preset\":\"RztGwGTuL\",children:\"Library\"})})})}),className:\"framer-1hktfiw\",\"data-highlight\":true,fonts:[\"CUSTOM;SF Pro Display Medium\"],layoutDependency:layoutDependency,layoutId:\"qh60nsn9w\",onTap:onTap1va9p34,style:{\"--extracted-r6o4lv\":\"rgb(68, 68, 68)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-xcfhxh\",\"data-framer-name\":\"Item\",layoutDependency:layoutDependency,layoutId:\"AJzy8O8VI\",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\"},variants:{hJtusZf0b:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(238, 238, 238)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"}},...addPropertyOverrides({hJtusZf0b:{\"data-border\":true}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1NGIFBybyBEaXNwbGF5IE1lZGl1bQ==\",\"--framer-font-family\":'\"SF Pro Display Medium\", \"SF Pro Display Medium Placeholder\", \"-apple-system\", \"BlinkMacSystemFont\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"2em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(68, 68, 68))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"PxAKNgsCw\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1fkdsxi\",\"data-styles-preset\":\"RztGwGTuL\",children:\"Events\"})})})}),className:\"framer-1d5hp7v\",fonts:[\"CUSTOM;SF Pro Display Medium\"],layoutDependency:layoutDependency,layoutId:\"GO0FlIRxJ\",style:{\"--extracted-r6o4lv\":\"rgb(68, 68, 68)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-kySEX.framer-1u39kgk, .framer-kySEX .framer-1u39kgk { display: block; }\",\".framer-kySEX.framer-1dmh3bu { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: flex-start; padding: 15px; position: relative; width: 150px; }\",\".framer-kySEX .framer-ayzhhv { -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; }\",\".framer-kySEX .framer-8ezm2q { -webkit-user-select: none; align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; user-select: none; width: 100%; }\",\".framer-kySEX .framer-1hktfiw { -webkit-user-select: none; cursor: pointer; flex: none; height: auto; position: relative; user-select: none; white-space: pre; width: auto; }\",\".framer-kySEX .framer-xcfhxh { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-kySEX .framer-1d5hp7v { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-kySEX.framer-1dmh3bu, .framer-kySEX .framer-8ezm2q, .framer-kySEX .framer-xcfhxh { gap: 0px; } .framer-kySEX.framer-1dmh3bu > * { margin: 0px; margin-bottom: calc(5px / 2); margin-top: calc(5px / 2); } .framer-kySEX.framer-1dmh3bu > :first-child { margin-top: 0px; } .framer-kySEX.framer-1dmh3bu > :last-child { margin-bottom: 0px; } .framer-kySEX .framer-8ezm2q > *, .framer-kySEX .framer-xcfhxh > * { margin: 0px; margin-left: calc(15px / 2); margin-right: calc(15px / 2); } .framer-kySEX .framer-8ezm2q > :first-child, .framer-kySEX .framer-xcfhxh > :first-child { margin-left: 0px; } .framer-kySEX .framer-8ezm2q > :last-child, .framer-kySEX .framer-xcfhxh > :last-child { margin-right: 0px; } }\",\".framer-kySEX.framer-v-108i50f.framer-1dmh3bu { gap: 0px; padding: 32px 0px 0px 0px; }\",\".framer-kySEX.framer-v-108i50f .framer-8ezm2q, .framer-kySEX.framer-v-108i50f .framer-xcfhxh { height: 56px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-kySEX.framer-v-108i50f.framer-1dmh3bu { gap: 0px; } .framer-kySEX.framer-v-108i50f.framer-1dmh3bu > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-kySEX.framer-v-108i50f.framer-1dmh3bu > :first-child { margin-top: 0px; } .framer-kySEX.framer-v-108i50f.framer-1dmh3bu > :last-child { margin-bottom: 0px; } }\",...sharedStyle.css,'.framer-kySEX[data-border=\"true\"]::after, .framer-kySEX [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 107\n * @framerIntrinsicWidth 150\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"hJtusZf0b\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framerriv3ELMlU=withCSS(Component,css,\"framer-kySEX\");export default Framerriv3ELMlU;Framerriv3ELMlU.displayName=\"Links: Resources\";Framerriv3ELMlU.defaultProps={height:107,width:150};addPropertyControls(Framerriv3ELMlU,{variant:{options:[\"G1_yiV_zW\",\"hJtusZf0b\"],optionTitles:[\"Desktop\",\"Phone\"],title:\"Variant\",type:ControlType.Enum}});addFonts(Framerriv3ELMlU,[{explicitInter:true,fonts:[{family:\"SF Pro Display Medium\",source:\"custom\",url:\"https://framerusercontent.com/assets/dTVfXNKgID7VXkl9c6QSFxH4c.woff2\"}]},...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerriv3ELMlU\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"150\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"hJtusZf0b\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"107\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./riv3ELMlU.map", "// Generated by Framer (9f68555)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,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/tLYlIltYEw5lrkFLQGqe/ncXrSfqc9zkRsiGFhwrn/RztGwGTuL.js\";const cycleOrder=[\"IKzeWaNr6\",\"Sk0IOtrDU\"];const serializationHash=\"framer-gC8bw\";const variantClassNames={IKzeWaNr6:\"framer-v-k8ypi0\",Sk0IOtrDU:\"framer-v-eeop5l\"};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={Desktop:\"IKzeWaNr6\",Phone:\"Sk0IOtrDU\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"IKzeWaNr6\"};};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:\"IKzeWaNr6\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"Sk0IOtrDU\")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__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-k8ypi0\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"IKzeWaNr6\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:15,borderBottomRightRadius:15,borderTopLeftRadius:15,borderTopRightRadius:15,boxShadow:\"0px 0px 0px 1px rgba(0, 0, 0, 0.05)\",...style},variants:{Sk0IOtrDU:{borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0,boxShadow:\"none\"}},...addPropertyOverrides({Sk0IOtrDU:{\"data-framer-name\":\"Phone\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1NGIFBybyBEaXNwbGF5IE1lZGl1bQ==\",\"--framer-font-family\":'\"SF Pro Display Medium\", \"SF Pro Display Medium Placeholder\", \"-apple-system\", \"BlinkMacSystemFont\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(170, 170, 170))\"},children:\"Company\"})}),className:\"framer-hgrx3d\",fonts:[\"CUSTOM;SF Pro Display Medium\"],layoutDependency:layoutDependency,layoutId:\"tB4GAu9a4\",style:{\"--extracted-r6o4lv\":\"rgb(170, 170, 170)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-ufg00e\",\"data-framer-name\":\"Item\",layoutDependency:layoutDependency,layoutId:\"j0KV7HVR4\",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\"},variants:{Sk0IOtrDU:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(238, 238, 238)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"}},...addPropertyOverrides({Sk0IOtrDU:{\"data-border\":true}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1NGIFBybyBEaXNwbGF5IE1lZGl1bQ==\",\"--framer-font-family\":'\"SF Pro Display Medium\", \"SF Pro Display Medium Placeholder\", \"-apple-system\", \"BlinkMacSystemFont\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"2em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(68, 68, 68))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"NCvi4Z1h7\"},nodeId:\"L8mgCp6vD\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1fkdsxi\",\"data-styles-preset\":\"RztGwGTuL\",children:\"About\"})})})}),className:\"framer-1ob6u77\",fonts:[\"CUSTOM;SF Pro Display Medium\"],layoutDependency:layoutDependency,layoutId:\"L8mgCp6vD\",style:{\"--extracted-r6o4lv\":\"rgb(68, 68, 68)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-y7eigz\",\"data-framer-name\":\"Item\",layoutDependency:layoutDependency,layoutId:\"AljdqclIk\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1NGIFBybyBEaXNwbGF5IE1lZGl1bQ==\",\"--framer-font-family\":'\"SF Pro Display Medium\", \"SF Pro Display Medium Placeholder\", \"-apple-system\", \"BlinkMacSystemFont\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"2em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(68, 68, 68))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"HcmLDHXYs\"},nodeId:\"zAfQjwthc\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1fkdsxi\",\"data-styles-preset\":\"RztGwGTuL\",children:\"Contact\"})})})}),className:\"framer-2qfs5q\",\"data-framer-name\":\"Contact\",fonts:[\"CUSTOM;SF Pro Display Medium\"],layoutDependency:layoutDependency,layoutId:\"zAfQjwthc\",style:{\"--extracted-r6o4lv\":\"rgb(68, 68, 68)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-gC8bw.framer-rzdg71, .framer-gC8bw .framer-rzdg71 { display: block; }\",\".framer-gC8bw.framer-k8ypi0 { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: flex-start; padding: 15px; position: relative; width: 150px; }\",\".framer-gC8bw .framer-hgrx3d { -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; }\",\".framer-gC8bw .framer-ufg00e, .framer-gC8bw .framer-y7eigz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-gC8bw .framer-1ob6u77, .framer-gC8bw .framer-2qfs5q { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-gC8bw.framer-k8ypi0, .framer-gC8bw .framer-ufg00e, .framer-gC8bw .framer-y7eigz { gap: 0px; } .framer-gC8bw.framer-k8ypi0 > * { margin: 0px; margin-bottom: calc(5px / 2); margin-top: calc(5px / 2); } .framer-gC8bw.framer-k8ypi0 > :first-child { margin-top: 0px; } .framer-gC8bw.framer-k8ypi0 > :last-child { margin-bottom: 0px; } .framer-gC8bw .framer-ufg00e > *, .framer-gC8bw .framer-y7eigz > * { margin: 0px; margin-left: calc(15px / 2); margin-right: calc(15px / 2); } .framer-gC8bw .framer-ufg00e > :first-child, .framer-gC8bw .framer-y7eigz > :first-child { margin-left: 0px; } .framer-gC8bw .framer-ufg00e > :last-child, .framer-gC8bw .framer-y7eigz > :last-child { margin-right: 0px; } }\",\".framer-gC8bw.framer-v-eeop5l.framer-k8ypi0 { gap: 0px; padding: 32px 0px 0px 0px; }\",\".framer-gC8bw.framer-v-eeop5l .framer-ufg00e { height: 56px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-gC8bw.framer-v-eeop5l.framer-k8ypi0 { gap: 0px; } .framer-gC8bw.framer-v-eeop5l.framer-k8ypi0 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-gC8bw.framer-v-eeop5l.framer-k8ypi0 > :first-child { margin-top: 0px; } .framer-gC8bw.framer-v-eeop5l.framer-k8ypi0 > :last-child { margin-bottom: 0px; } }\",...sharedStyle.css,'.framer-gC8bw[data-border=\"true\"]::after, .framer-gC8bw [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 107\n * @framerIntrinsicWidth 150\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"Sk0IOtrDU\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerXPnfErumA=withCSS(Component,css,\"framer-gC8bw\");export default FramerXPnfErumA;FramerXPnfErumA.displayName=\"Links: Community\";FramerXPnfErumA.defaultProps={height:107,width:150};addPropertyControls(FramerXPnfErumA,{variant:{options:[\"IKzeWaNr6\",\"Sk0IOtrDU\"],optionTitles:[\"Desktop\",\"Phone\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerXPnfErumA,[{explicitInter:true,fonts:[{family:\"SF Pro Display Medium\",source:\"custom\",url:\"https://framerusercontent.com/assets/dTVfXNKgID7VXkl9c6QSFxH4c.woff2\"}]},...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerXPnfErumA\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"107\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"150\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Sk0IOtrDU\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./XPnfErumA.map", "// Generated by Framer (9f68555)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,Floating,getFonts,Link,RichText,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOverlayState,useVariantState,withCSS,withFX}from\"framer\";import{AnimatePresence,LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{openGuideOnClick}from\"https://framerusercontent.com/modules/IwAqriZcqhwNnet6vj3T/S0NoEl1YpvVEHEbbywIp/GuideIdentifiers.js\";import Trigger from\"https://framerusercontent.com/modules/xzaYg73gvue0d2QiG3rz/xknglo3z1810rRAiwfz8/IXLXYbKHz.js\";import LinksProduct from\"https://framerusercontent.com/modules/IuGyTllXqVOKmn1p2j7B/IF0wowooB17Hu3Zh9Gxa/QiO_fuwe_.js\";import LinksResources from\"https://framerusercontent.com/modules/hZBbZujhJl52FHIQVSC7/QCdNtF05aJkEk2JqSu8V/riv3ELMlU.js\";import LinksCommunity from\"https://framerusercontent.com/modules/UAS9eVgZYNHQ3uXAtHlM/8heiLlahx7FOKwwEnx0M/XPnfErumA.js\";const TriggerFonts=getFonts(Trigger);const LinksProductFonts=getFonts(LinksProduct);const MotionDivWithFX=withFX(motion.div);const LinksResourcesFonts=getFonts(LinksResources);const LinksCommunityFonts=getFonts(LinksCommunity);const MotionAOpenGuideOnClick=openGuideOnClick(motion.a);const cycleOrder=[\"wYbN1yO75\",\"kxYUavGkA\",\"hlsw_FUqo\",\"d_i7dMLn9\"];const serializationHash=\"framer-uxNbP\";const variantClassNames={d_i7dMLn9:\"framer-v-ghtb5p\",hlsw_FUqo:\"framer-v-q8gbpe\",kxYUavGkA:\"framer-v-1suzkin\",wYbN1yO75:\"framer-v-ju8qrp\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:40,delay:0,mass:1,stiffness:400,type:\"spring\"};const transition2={damping:40,delay:0,mass:1,stiffness:600,type:\"spring\"};const transition3={damping:40,delay:0,mass:.5,stiffness:600,type:\"spring\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.95,skewX:0,skewY:0,transformPerspective:1200,transition:transition3,x:0,y:0};const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition3,x:0,y:0};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.95,skewX:0,skewY:0,transformPerspective:1200,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!==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 transition4={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation3={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.05,skewX:0,skewY:0,transition:transition4};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Phone Open\":\"hlsw_FUqo\",Desktop:\"wYbN1yO75\",Phone:\"kxYUavGkA\",tablet:\"d_i7dMLn9\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"wYbN1yO75\"};};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:\"wYbN1yO75\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1ce0k61=activeVariantCallback(async(...args)=>{setVariant(\"kxYUavGkA\");});const PWSlWeqS6izu9gt=({overlay,paginationInfo})=>activeVariantCallback(async(...args)=>{overlay.show();});const onTap1yl1oq4=activeVariantCallback(async(...args)=>{setVariant(\"hlsw_FUqo\");});const ref1=React.useRef(null);const isDisplayed=()=>{if([\"kxYUavGkA\",\"hlsw_FUqo\"].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 ref6=React.useRef(null);const ref7=React.useRef(null);const isDisplayed1=()=>{if([\"kxYUavGkA\",\"hlsw_FUqo\"].includes(baseVariant))return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.nav,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-ju8qrp\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Desktop\",\"data-hide-scrollbars\":true,layoutDependency:layoutDependency,layoutId:\"wYbN1yO75\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(0, 0, 0, 0.07)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",backgroundColor:\"rgb(255, 255, 255)\",...style},variants:{hlsw_FUqo:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\"}},...addPropertyOverrides({d_i7dMLn9:{\"data-framer-name\":\"tablet\"},hlsw_FUqo:{\"data-framer-name\":\"Phone Open\"},kxYUavGkA:{\"data-framer-name\":\"Phone\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1teovkd\",layoutDependency:layoutDependency,layoutId:\"j3l_MEE5Z\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-f62dd5\",\"data-framer-name\":\"Name\",layoutDependency:layoutDependency,layoutId:\"TWCgMQCuP\",...addPropertyOverrides({hlsw_FUqo:{\"data-highlight\":true,onTap:onTap1ce0k61}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"Wkhyk0Lmn\"},nodeId:\"ZEEQXFmWK\",openInNewTab:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1usukri framer-1si60tn\",\"data-framer-name\":\"Logo and Name\",layoutDependency:layoutDependency,layoutId:\"ZEEQXFmWK\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-bqxvuh\",\"data-framer-name\":\"RevFixr\",fill:\"black\",intrinsicHeight:78,intrinsicWidth:381,layoutDependency:layoutDependency,layoutId:\"wK3uX3IH9\",svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"381\" height=\"78\" fill=\"none\"><path fill=\"#18666B\" d=\"M.696 1.4h40.176c6.552 0 11.808 1.764 15.768 5.292 4.032 3.528 6.048 8.172 6.048 13.932v7.56c0 3.744-1.08 7.02-3.24 9.828-2.088 2.736-5.148 4.824-9.18 6.264v.216c2.304 1.512 4.032 3.24 5.184 5.184 1.224 1.944 2.412 4.644 3.564 8.1L65.064 77H49.62l-5.724-17.928c-.936-3.096-2.232-5.4-3.888-6.912-1.656-1.512-3.708-2.268-6.156-2.268H15.6V77H.696V1.4Zm37.368 35.64c3.024 0 5.4-.792 7.128-2.376 1.728-1.656 2.592-3.78 2.592-6.372v-7.02c0-2.088-.648-3.744-1.944-4.968-1.296-1.296-3.024-1.944-5.184-1.944H15.6v22.68h22.464Zm56.347 40.824c-4.536 0-8.568-.828-12.096-2.484-3.456-1.728-6.156-4.104-8.1-7.128-1.944-3.096-2.916-6.624-2.916-10.584V43.736c0-4.248.972-7.992 2.916-11.232 1.944-3.24 4.644-5.76 8.1-7.56 3.528-1.8 7.56-2.7 12.096-2.7h8.64c6.912 0 12.456 1.944 16.632 5.832 4.176 3.888 6.264 9.072 6.264 15.552v11.448h-39.96v2.592c0 2.376.756 4.284 2.268 5.724 1.512 1.44 3.564 2.16 6.156 2.16h8.424c2.52 0 4.536-.54 6.048-1.62 1.584-1.152 2.376-2.628 2.376-4.428h14.472c0 3.6-.972 6.804-2.916 9.612s-4.68 4.968-8.208 6.48c-3.456 1.512-7.452 2.268-11.988 2.268h-8.208Zm17.064-33.372v-.864c0-2.808-.756-5.04-2.268-6.696-1.512-1.728-3.528-2.592-6.048-2.592h-8.748c-2.592 0-4.68.9-6.264 2.7-1.584 1.8-2.376 4.176-2.376 7.128v.324h25.704ZM156.849 77c-2.088 0-3.852-.54-5.292-1.62-1.368-1.152-2.556-2.952-3.564-5.4l-18.576-46.872h15.444l12.744 37.044h.216l12.852-37.044h15.444L164.409 77h-7.56Z\"/><path fill=\"#169B9F\" d=\"M192.649 1.4h56.592v12.96h-41.688v20.304h37.692v12.96h-37.692V77h-14.904V1.4Zm74.036 16.632c-2.808 0-5.076-.792-6.804-2.376-1.656-1.656-2.484-3.816-2.484-6.48 0-2.664.828-4.788 2.484-6.372 1.728-1.656 3.996-2.484 6.804-2.484 2.808 0 5.04.828 6.696 2.484 1.728 1.584 2.592 3.708 2.592 6.372 0 2.664-.864 4.824-2.592 6.48-1.656 1.584-3.888 2.376-6.696 2.376Zm-7.344 5.076h14.688V77h-14.688V23.108Zm43.101 26.568-19.764-26.568h16.416l11.88 15.984 11.88-15.984h16.416l-19.764 26.568L339.918 77h-16.416l-12.528-16.848L298.446 77H282.03l20.412-27.324Zm43.549-26.568h13.608v6.912c1.368-2.088 3.312-3.78 5.832-5.076 2.592-1.368 5.292-2.052 8.1-2.052h7.344v12.744h-7.344c-3.816 0-6.912 1.152-9.288 3.456-2.376 2.304-3.564 5.256-3.564 8.856V77h-14.688V23.108Z\"/></svg>',withExternalLayout:true})})})}),/*#__PURE__*/_jsx(Transition,{...addPropertyOverrides({hlsw_FUqo:{value:transition2},kxYUavGkA:{value:transition2}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1hd1q6y\",\"data-framer-name\":\"Links\",layoutDependency:layoutDependency,layoutId:\"OeoAIFgYo\",style:{opacity:1},variants:{kxYUavGkA:{opacity:0}},children:[isDisplayed()&&/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:false,children:overlay=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:46,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(20+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||80)-40-50)/2)+2+0,children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1qyvaqe-container\",id:`${layoutId}-1qyvaqe`,layoutDependency:layoutDependency,layoutId:\"yvhP0VHOO-container\",ref:ref2,children:[/*#__PURE__*/_jsx(Trigger,{DApvjrdfG:\"Solutions\",height:\"100%\",id:\"yvhP0VHOO\",layoutId:\"yvhP0VHOO\",PWSlWeqS6:PWSlWeqS6izu9gt({overlay}),variant:\"Qq2TMFeOK\",width:\"100%\"}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay.visible&&/*#__PURE__*/_jsx(Floating,{alignment:\"center\",anchorRef:ref2,className:cx(serializationHash,classNames,...sharedStyleClassNames),collisionDetection:false,\"data-framer-portal-id\":`${layoutId}-1qyvaqe`,offsetX:0,offsetY:0,onDismiss:overlay.hide,placement:\"bottom\",portalSelector:\"#overlay\",safeArea:true,children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:148,width:\"218px\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(20+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||80)-40-50)/2)+2+0+-74,children:/*#__PURE__*/_jsx(MotionDivWithFX,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation1,className:\"framer-1qyzxam-container\",exit:animation,initial:animation2,layoutDependency:layoutDependency,layoutId:\"HtX4q4Hh_-container\",ref:ref3,role:\"dialog\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(LinksProduct,{height:\"100%\",id:\"HtX4q4Hh_\",layoutId:\"HtX4q4Hh_\",style:{width:\"100%\"},variant:\"o3TiQrDsd\",width:\"100%\"})})})})})]})})})}),isDisplayed()&&/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:false,children:overlay1=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:46,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(20+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||80)-40-50)/2)+2+0,children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1hgabyr-container\",id:`${layoutId}-1hgabyr`,layoutDependency:layoutDependency,layoutId:\"n0qrmpjZ7-container\",ref:ref4,children:[/*#__PURE__*/_jsx(Trigger,{DApvjrdfG:\"Resources\",height:\"100%\",id:\"n0qrmpjZ7\",layoutId:\"n0qrmpjZ7\",PWSlWeqS6:PWSlWeqS6izu9gt({overlay:overlay1}),variant:\"Qq2TMFeOK\",width:\"100%\"}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay1.visible&&/*#__PURE__*/_jsx(Floating,{alignment:\"center\",anchorRef:ref4,className:cx(serializationHash,classNames,...sharedStyleClassNames),collisionDetection:false,\"data-framer-portal-id\":`${layoutId}-1hgabyr`,offsetX:0,offsetY:0,onDismiss:overlay1.hide,placement:\"bottom\",portalSelector:\"#overlay\",safeArea:true,children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:107,width:\"149px\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(20+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||80)-40-50)/2)+2+0+-53.5,children:/*#__PURE__*/_jsx(MotionDivWithFX,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation1,className:\"framer-1fjeqhf-container\",exit:animation,initial:animation2,layoutDependency:layoutDependency,layoutId:\"ksM9gh3Fn-container\",ref:ref5,role:\"dialog\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(LinksResources,{height:\"100%\",id:\"ksM9gh3Fn\",layoutId:\"ksM9gh3Fn\",style:{width:\"100%\"},variant:\"G1_yiV_zW\",width:\"100%\"})})})})})]})})})}),isDisplayed()&&/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:false,children:overlay2=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:46,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(20+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||80)-40-50)/2)+2+0,children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-10t5ure-container\",id:`${layoutId}-10t5ure`,layoutDependency:layoutDependency,layoutId:\"pWmVKWRjY-container\",ref:ref6,children:[/*#__PURE__*/_jsx(Trigger,{DApvjrdfG:\"Company\",height:\"100%\",id:\"pWmVKWRjY\",layoutId:\"pWmVKWRjY\",PWSlWeqS6:PWSlWeqS6izu9gt({overlay:overlay2}),variant:overlay2.visible?\"mdDtnjabJ\":\"Qq2TMFeOK\",width:\"100%\"}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay2.visible&&/*#__PURE__*/_jsx(Floating,{alignment:\"center\",anchorRef:ref6,className:cx(serializationHash,classNames,...sharedStyleClassNames),collisionDetection:false,\"data-framer-portal-id\":`${layoutId}-10t5ure`,offsetX:0,offsetY:0,onDismiss:overlay2.hide,placement:\"bottom\",portalSelector:\"#overlay\",safeArea:true,children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:66,width:\"158px\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(20+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||80)-40-50)/2)+2+0+-33,children:/*#__PURE__*/_jsx(MotionDivWithFX,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation1,className:\"framer-2lyp1c-container\",exit:animation,initial:animation2,layoutDependency:layoutDependency,layoutId:\"tEVtx6U9L-container\",ref:ref7,role:\"dialog\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(LinksCommunity,{height:\"100%\",id:\"tEVtx6U9L\",layoutId:\"tEVtx6U9L\",style:{width:\"100%\"},variant:\"IKzeWaNr6\",width:\"100%\"})})})})})]})})})}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({hlsw_FUqo:{height:148,width:\"210px\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+0+0+5+0},kxYUavGkA:{height:148,width:`calc(max((min(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"}, 1200px) - 100px) / 2, 1px) - 40px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+0+0+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-avmp24-container\",layoutDependency:layoutDependency,layoutId:\"FYWTI5Mog-container\",children:/*#__PURE__*/_jsx(LinksProduct,{height:\"100%\",id:\"FYWTI5Mog\",layoutId:\"FYWTI5Mog\",style:{width:\"100%\"},variant:\"o3TiQrDsd\",width:\"100%\"})})}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({hlsw_FUqo:{height:107,width:\"210px\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+0+0+5+163},kxYUavGkA:{height:107,width:`calc(max((min(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"}, 1200px) - 100px) / 2, 1px) - 40px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+0+0+0+148}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1h8s8e0-container\",layoutDependency:layoutDependency,layoutId:\"vHqmfwTA4-container\",children:/*#__PURE__*/_jsx(LinksResources,{height:\"100%\",id:\"vHqmfwTA4\",layoutId:\"vHqmfwTA4\",style:{width:\"100%\"},variant:\"G1_yiV_zW\",width:\"100%\"})})}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({hlsw_FUqo:{height:66,width:\"210px\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+0+0+5+285},kxYUavGkA:{height:66,width:`calc(max((min(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"}, 1200px) - 100px) / 2, 1px) - 40px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+0+0+0+255}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-16uxb0r-container\",layoutDependency:layoutDependency,layoutId:\"h9UiaNqE0-container\",children:/*#__PURE__*/_jsx(LinksCommunity,{height:\"100%\",id:\"h9UiaNqE0\",layoutId:\"h9UiaNqE0\",style:{width:\"100%\"},variant:\"IKzeWaNr6\",width:\"100%\"})})})]})}),isDisplayed1()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1m5ilkz\",\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"YuWoyfxbd\",...addPropertyOverrides({hlsw_FUqo:{\"data-highlight\":true,onTap:onTap1ce0k61},kxYUavGkA:{\"data-highlight\":true,onTap:onTap1yl1oq4}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1pqse2g\",\"data-framer-name\":\"Bottom\",layoutDependency:layoutDependency,layoutId:\"FmxCgvQNT\",style:{backgroundColor:\"rgb(153, 153, 153)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,rotate:0},variants:{hlsw_FUqo:{rotate:-45}}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1nvlid2\",\"data-framer-name\":\"Top\",layoutDependency:layoutDependency,layoutId:\"Qf83VVQsU\",style:{backgroundColor:\"rgb(153, 153, 153)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,rotate:0},variants:{hlsw_FUqo:{rotate:45}}})]}),isDisplayed()&&/*#__PURE__*/_jsx(Link,{href:{webPageId:\"HcmLDHXYs\"},nodeId:\"trQJWJ1Tc\",openInNewTab:false,children:/*#__PURE__*/_jsx(MotionAOpenGuideOnClick,{className:\"framer-144dn58 framer-1si60tn\",\"data-framer-name\":\"Button\",layoutDependency:layoutDependency,layoutId:\"trQJWJ1Tc\",style:{backgroundColor:\"rgb(24, 102, 107)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,boxShadow:\"0.5877226132579381px 0.5877226132579381px 0.8311652905827334px -0.7142857142857142px rgba(0, 0, 0, 0.19608), 1.4397356877772836px 1.4397356877772836px 2.0360937358871904px -1.4285714285714284px rgba(0, 0, 0, 0.1904), 2.7280910693836633px 2.7280910693836633px 3.858103389711297px -2.142857142857143px rgba(0, 0, 0, 0.18181), 4.762533611143589px 4.762533611143589px 6.735239624136976px -2.8571428571428568px rgba(0, 0, 0, 0.16825), 8.288902927530579px 8.288902927530579px 11.722278937307797px -3.5714285714285716px rgba(0, 0, 0, 0.14474), 15.182108963097562px 15.182108963097562px 21.4707444010387px -4.285714285714286px rgba(0, 0, 0, 0.09879), 30px 30px 42.42640687119285px -5px rgba(0, 0, 0, 0)\"},whileHover:animation3,children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Schedule consult\"})}),className:\"framer-1ekn0ct\",fonts:[\"GF;Inter-700\"],layoutDependency:layoutDependency,layoutId:\"ZK1H32x_W\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-uxNbP.framer-1si60tn, .framer-uxNbP .framer-1si60tn { display: block; }\",\".framer-uxNbP.framer-ju8qrp { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: 80px; justify-content: center; overflow: visible; padding: 20px; position: relative; width: 1200px; }\",\".framer-uxNbP .framer-1teovkd { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 0px 0px 0px 100px; position: relative; width: 1px; }\",\".framer-uxNbP .framer-f62dd5 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-uxNbP .framer-1usukri { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-uxNbP .framer-bqxvuh { aspect-ratio: 4.884615384615385 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 41px); position: relative; width: 200px; }\",\".framer-uxNbP .framer-1hd1q6y { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-end; overflow: hidden; padding: 0px 20px 0px 0px; position: relative; width: 1px; }\",\".framer-uxNbP .framer-1qyvaqe-container, .framer-uxNbP .framer-1hgabyr-container, .framer-uxNbP .framer-10t5ure-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-uxNbP .framer-1qyzxam-container { height: auto; position: relative; width: 218px; }\",\".framer-uxNbP .framer-1fjeqhf-container { height: auto; position: relative; width: 149px; }\",\".framer-uxNbP .framer-2lyp1c-container { height: auto; position: relative; width: 158px; }\",\".framer-uxNbP .framer-avmp24-container, .framer-uxNbP .framer-1h8s8e0-container, .framer-uxNbP .framer-16uxb0r-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-uxNbP .framer-1m5ilkz { flex: none; height: 40px; overflow: hidden; position: relative; width: 40px; }\",\".framer-uxNbP .framer-1pqse2g { flex: none; height: 2px; left: calc(50.00000000000002% - 20px / 2); overflow: hidden; position: absolute; top: calc(62.50000000000002% - 2px / 2); width: 20px; will-change: var(--framer-will-change-override, transform); }\",\".framer-uxNbP .framer-1nvlid2 { flex: none; height: 2px; left: calc(50.00000000000002% - 20px / 2); overflow: hidden; position: absolute; top: calc(37.50000000000002% - 2px / 2); width: 20px; will-change: var(--framer-will-change-override, transform); }\",\".framer-uxNbP .framer-144dn58 { align-content: center; align-items: center; cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 50px; justify-content: center; overflow: visible; padding: 15px; position: relative; text-decoration: none; width: 160px; }\",\".framer-uxNbP .framer-1ekn0ct { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-uxNbP.framer-ju8qrp, .framer-uxNbP .framer-1teovkd, .framer-uxNbP .framer-f62dd5, .framer-uxNbP .framer-1usukri, .framer-uxNbP .framer-1hd1q6y, .framer-uxNbP .framer-144dn58 { gap: 0px; } .framer-uxNbP.framer-ju8qrp > *, .framer-uxNbP .framer-f62dd5 > *, .framer-uxNbP .framer-1usukri > *, .framer-uxNbP .framer-1hd1q6y > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-uxNbP.framer-ju8qrp > :first-child, .framer-uxNbP .framer-1teovkd > :first-child, .framer-uxNbP .framer-f62dd5 > :first-child, .framer-uxNbP .framer-1usukri > :first-child, .framer-uxNbP .framer-1hd1q6y > :first-child, .framer-uxNbP .framer-144dn58 > :first-child { margin-left: 0px; } .framer-uxNbP.framer-ju8qrp > :last-child, .framer-uxNbP .framer-1teovkd > :last-child, .framer-uxNbP .framer-f62dd5 > :last-child, .framer-uxNbP .framer-1usukri > :last-child, .framer-uxNbP .framer-1hd1q6y > :last-child, .framer-uxNbP .framer-144dn58 > :last-child { margin-right: 0px; } .framer-uxNbP .framer-1teovkd > *, .framer-uxNbP .framer-144dn58 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } }\",\".framer-uxNbP.framer-v-1suzkin.framer-ju8qrp { flex-direction: column; gap: 0px; height: 64px; justify-content: flex-start; overflow: hidden; padding: 0px; width: 390px; }\",\".framer-uxNbP.framer-v-1suzkin .framer-1teovkd { align-content: flex-start; align-items: flex-start; flex: none; order: 0; padding: 0px 20px 0px 10px; width: 100%; }\",\".framer-uxNbP.framer-v-1suzkin .framer-f62dd5 { flex: 1 0 0px; gap: unset; height: 64px; justify-content: space-between; padding: 0px 10px 0px 20px; width: 1px; z-index: 2; }\",\".framer-uxNbP.framer-v-1suzkin .framer-1usukri, .framer-uxNbP.framer-v-q8gbpe .framer-1usukri { order: 0; }\",\".framer-uxNbP.framer-v-1suzkin .framer-1hd1q6y { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 0px; justify-content: flex-start; padding: 0px 20px 0px 20px; z-index: 2; }\",\".framer-uxNbP.framer-v-1suzkin .framer-avmp24-container, .framer-uxNbP.framer-v-q8gbpe .framer-avmp24-container { flex: none; order: 3; width: 100%; }\",\".framer-uxNbP.framer-v-1suzkin .framer-1h8s8e0-container, .framer-uxNbP.framer-v-q8gbpe .framer-1h8s8e0-container { flex: none; order: 4; width: 100%; }\",\".framer-uxNbP.framer-v-1suzkin .framer-16uxb0r-container, .framer-uxNbP.framer-v-q8gbpe .framer-16uxb0r-container { flex: none; order: 5; width: 100%; }\",\".framer-uxNbP.framer-v-1suzkin .framer-1m5ilkz { cursor: pointer; height: 65px; width: 50px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-uxNbP.framer-v-1suzkin.framer-ju8qrp, .framer-uxNbP.framer-v-1suzkin .framer-f62dd5, .framer-uxNbP.framer-v-1suzkin .framer-1hd1q6y { gap: 0px; } .framer-uxNbP.framer-v-1suzkin.framer-ju8qrp > *, .framer-uxNbP.framer-v-1suzkin .framer-1hd1q6y > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-uxNbP.framer-v-1suzkin.framer-ju8qrp > :first-child, .framer-uxNbP.framer-v-1suzkin .framer-1hd1q6y > :first-child { margin-top: 0px; } .framer-uxNbP.framer-v-1suzkin.framer-ju8qrp > :last-child, .framer-uxNbP.framer-v-1suzkin .framer-1hd1q6y > :last-child { margin-bottom: 0px; } .framer-uxNbP.framer-v-1suzkin .framer-f62dd5 > *, .framer-uxNbP.framer-v-1suzkin .framer-f62dd5 > :first-child, .framer-uxNbP.framer-v-1suzkin .framer-f62dd5 > :last-child { margin: 0px; } }\",\".framer-uxNbP.framer-v-q8gbpe.framer-ju8qrp { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 0px; height: min-content; justify-content: flex-start; max-height: calc(var(--framer-viewport-height, 100vh) * 1); overflow: auto; overscroll-behavior: contain; padding: 0px 10px 40px 0px; width: 390px; }\",\".framer-uxNbP.framer-v-q8gbpe .framer-1teovkd { align-content: flex-start; align-items: flex-start; flex: none; gap: 0px; justify-content: flex-start; order: 0; padding: 0px; width: 100%; }\",\".framer-uxNbP.framer-v-q8gbpe .framer-f62dd5 { cursor: pointer; flex: 1 0 0px; gap: unset; height: 64px; justify-content: space-between; padding: 0px 10px 0px 20px; width: 1px; z-index: 2; }\",\".framer-uxNbP.framer-v-q8gbpe .framer-bqxvuh { height: 17px; width: var(--framer-aspect-ratio-supported, 80px); }\",\".framer-uxNbP.framer-v-q8gbpe .framer-1hd1q6y { align-content: flex-start; align-items: flex-start; flex: none; flex-direction: column; gap: 15px; justify-content: flex-start; padding: 5px 10px 10px 20px; width: 240px; z-index: 2; }\",\".framer-uxNbP.framer-v-q8gbpe .framer-1m5ilkz { cursor: pointer; height: 44px; width: 44px; }\",\".framer-uxNbP.framer-v-q8gbpe .framer-1pqse2g, .framer-uxNbP.framer-v-q8gbpe .framer-1nvlid2 { top: calc(50.00000000000002% - 2px / 2); }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-uxNbP.framer-v-q8gbpe.framer-ju8qrp, .framer-uxNbP.framer-v-q8gbpe .framer-1teovkd, .framer-uxNbP.framer-v-q8gbpe .framer-f62dd5, .framer-uxNbP.framer-v-q8gbpe .framer-1hd1q6y { gap: 0px; } .framer-uxNbP.framer-v-q8gbpe.framer-ju8qrp > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-uxNbP.framer-v-q8gbpe.framer-ju8qrp > :first-child, .framer-uxNbP.framer-v-q8gbpe .framer-1hd1q6y > :first-child { margin-top: 0px; } .framer-uxNbP.framer-v-q8gbpe.framer-ju8qrp > :last-child, .framer-uxNbP.framer-v-q8gbpe .framer-1hd1q6y > :last-child { margin-bottom: 0px; } .framer-uxNbP.framer-v-q8gbpe .framer-1teovkd > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-uxNbP.framer-v-q8gbpe .framer-1teovkd > :first-child { margin-left: 0px; } .framer-uxNbP.framer-v-q8gbpe .framer-1teovkd > :last-child { margin-right: 0px; } .framer-uxNbP.framer-v-q8gbpe .framer-f62dd5 > *, .framer-uxNbP.framer-v-q8gbpe .framer-f62dd5 > :first-child, .framer-uxNbP.framer-v-q8gbpe .framer-f62dd5 > :last-child { margin: 0px; } .framer-uxNbP.framer-v-q8gbpe .framer-1hd1q6y > * { margin: 0px; margin-bottom: calc(15px / 2); margin-top: calc(15px / 2); } }\",\".framer-uxNbP.framer-v-ghtb5p.framer-ju8qrp { max-width: 1199px; width: 880px; }\",\".framer-uxNbP.framer-v-ghtb5p .framer-1teovkd { gap: 0px; padding: 0px 0px 0px 20px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-uxNbP.framer-v-ghtb5p .framer-1teovkd { gap: 0px; } .framer-uxNbP.framer-v-ghtb5p .framer-1teovkd > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-uxNbP.framer-v-ghtb5p .framer-1teovkd > :first-child { margin-left: 0px; } .framer-uxNbP.framer-v-ghtb5p .framer-1teovkd > :last-child { margin-right: 0px; } }\",'.framer-uxNbP[data-border=\"true\"]::after, .framer-uxNbP [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }','.framer-uxNbP[data-hide-scrollbars=\"true\"]::-webkit-scrollbar, .framer-uxNbP [data-hide-scrollbars=\"true\"]::-webkit-scrollbar { width: 0px; height: 0px; }','.framer-uxNbP[data-hide-scrollbars=\"true\"]::-webkit-scrollbar-thumb, .framer-uxNbP [data-hide-scrollbars=\"true\"]::-webkit-scrollbar-thumb { background: transparent; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 80\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"kxYUavGkA\":{\"layout\":[\"fixed\",\"fixed\"]},\"hlsw_FUqo\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,null,null,\"100vh\"]},\"d_i7dMLn9\":{\"layout\":[\"fixed\",\"fixed\"],\"constraints\":[null,\"1199px\",null,null]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framerh4fy0tyX4=withCSS(Component,css,\"framer-uxNbP\");export default Framerh4fy0tyX4;Framerh4fy0tyX4.displayName=\"Navigation Copy 3\";Framerh4fy0tyX4.defaultProps={height:80,width:1200};addPropertyControls(Framerh4fy0tyX4,{variant:{options:[\"wYbN1yO75\",\"kxYUavGkA\",\"hlsw_FUqo\",\"d_i7dMLn9\"],optionTitles:[\"Desktop\",\"Phone\",\"Phone Open\",\"tablet\"],title:\"Variant\",type:ControlType.Enum}});addFonts(Framerh4fy0tyX4,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuFuYMZ1rib2Bg-4.woff2\",weight:\"700\"}]},...TriggerFonts,...LinksProductFonts,...LinksResourcesFonts,...LinksCommunityFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerh4fy0tyX4\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"80\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"1200\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"kxYUavGkA\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"hlsw_FUqo\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,null,null,\\\"100vh\\\"]},\\\"d_i7dMLn9\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"],\\\"constraints\\\":[null,\\\"1199px\\\",null,null]}}}\",\"framerComponentViewportWidth\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["fontStore", "fonts", "css", "className", "createStore", "state1", "dataStore", "Data", "setDataStore", "newState", "storeState", "storeSetters", "setStoreState", "setter", "useStore", "state", "setState", "ye", "ue", "useObserveData", "centerContent", "defaultContainerStyles", "centerContent", "useStore", "createStore", "openGuideOnClick", "Component", "props", "instance", "setInstance", "ye", "handleClick", "ue", "_window_urplan", "_window", "window", "p", "cycleOrder", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transitions", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_variant", "ref", "createLayoutDependency", "Component", "Y", "activeLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "LayoutGroup", "motion", "cx", "SVG", "css", "FramerVv7lXSsrv", "withCSS", "Vv7lXSsrv_default", "addPropertyControls", "ControlType", "addFonts", "CaretFonts", "getFonts", "Vv7lXSsrv_default", "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", "title", "width", "props", "_ref", "_humanReadableVariantMap_props_variant", "_ref1", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "PWSlWeqS6", "DApvjrdfG", "restProps", "baseVariant", "classNames", "gestureHandlers", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onMouseEnter1rcefkx", "args", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "RichText2", "ComponentViewportProvider", "css", "FramerIXLXYbKHz", "withCSS", "IXLXYbKHz_default", "addPropertyControls", "ControlType", "addFonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "isDisplayed", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "RichText2", "Link", "css", "FramerQiO_fuwe_", "withCSS", "QiO_fuwe_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1va9p34", "args", "ref1", "pe", "isDisplayed", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "RichText2", "Link", "css", "Framerriv3ELMlU", "withCSS", "riv3ELMlU_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "isDisplayed", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "RichText2", "Link", "css", "FramerXPnfErumA", "withCSS", "XPnfErumA_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "TriggerFonts", "getFonts", "IXLXYbKHz_default", "LinksProductFonts", "QiO_fuwe_default", "MotionDivWithFX", "withFX", "motion", "LinksResourcesFonts", "riv3ELMlU_default", "LinksCommunityFonts", "XPnfErumA_default", "MotionAOpenGuideOnClick", "openGuideOnClick", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "transition3", "animation", "animation1", "animation2", "Overlay", "children", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "Transition", "value", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "transition4", "animation3", "Variants", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1ce0k61", "args", "PWSlWeqS6izu9gt", "overlay", "paginationInfo", "onTap1yl1oq4", "ref1", "pe", "isDisplayed", "ref2", "ref3", "ref4", "ref5", "ref6", "ref7", "isDisplayed1", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "u", "Link", "SVG", "l", "ComponentViewportProvider", "AnimatePresence", "Floating", "overlay1", "overlay2", "RichText2", "css", "Framerh4fy0tyX4", "withCSS", "h4fy0tyX4_default", "addPropertyControls", "ControlType", "addFonts"]
}
