{"version":3,"file":"shared.Bf9V89uS.mjs","names":["useConstant","useRef","randomID","useConstant","cycleOrder","variantClassNames","humanReadableVariantMap","React.useMemo","className","fonts","css","className","addPropertyOverrides","enabledGestures","cycleOrder","serializationHash","variantClassNames","transition1","Transition","React.useContext","React.useMemo","Variants","React.Fragment","humanReadableVariantMap","getProps","createLayoutDependency","Component","useRef","React.useId","sharedStyle.className","className","css","sharedStyle.css","sharedStyle.fonts","css","addPropertyOverrides","cycleOrder","serializationHash","variantClassNames","transition1","Transition","React.useContext","React.useMemo","Variants","React.Fragment","humanReadableVariantMap","getProps","createLayoutDependency","sharedStyle.className","React.useRef","React.useId","className","sharedStyle.css","sharedStyle.fonts","addPropertyOverrides","ElementsMenuIcon","NavLinkFonts","NavLink","ButtonPrimary","cycleOrder","serializationHash","variantClassNames","transition1","Transition","React.useContext","React.useMemo","Variants","React.Fragment","humanReadableVariantMap","getProps","createLayoutDependency","useRef","React.useId","className","NavLink","React.useContext","React.useMemo","React.Fragment","useRef","React.useId","className","useMemo","useMemo"],"sources":["https:/framer.com/m/framer/useConstant.js@^1.0.0","https:/framer.com/m/framer/randomID.js@^2.0.0","https:/framerusercontent.com/modules/KtVGDQXNUVZ5aqCs47VS/OMqTyVIbB7GZvcPewNwz/F8KjCKf_G.js","https:/framerusercontent.com/modules/sWOTv3Iv9BIOXqX9zOAH/LoxNj4mXVlCczQtTlTEh/rG990RXmJ.js","https:/framerusercontent.com/modules/7BkyUB8imUGT2JUDJgaZ/ATCiqgQgBZifC5PmLyFB/fjzDYkSHI.js","https:/framerusercontent.com/modules/lEpg6oora97TdYJSpMhR/CLy9j9lJXkLKdLFGIkQq/LIgweaXgO.js","https:/framerusercontent.com/modules/omxoJTLfakdIWabiUqQ8/0UF0M6zG5Ip7OEaeNMaV/Sj4K8MQt3.js","https:/framerusercontent.com/modules/gW7iUVqtS9QlZHrB97N3/6U2Y4aF8ZcjYy0iYH1HS/FpNI1eqHu.js","https:/framerusercontent.com/modules/aZ7qdGz1vdNrIFZrVrgo/WLEQuiGPS9mCn3AsGOQ3/jlqV7ppWy.js","https:/framerusercontent.com/modules/VTUDdizacRHpwbkOamr7/AykinQJbgwl92LvMGZwu/constants.js","https:/framerusercontent.com/modules/D4TWeLfcxT6Tysr2BlYg/iZjmqdxVx1EOiM3k1FaW/useOnNavigationTargetChange.js","https:/framerusercontent.com/modules/ExNgrA7EJTKUPpH6vIlN/eiOrSJ2Ab5M9jPCvVwUz/useConstant.js","https:/framerusercontent.com/modules/D2Lz5CmnNVPZFFiZXalt/QaCzPbriZBfXWZIIycFI/colorFromToken.js","https:/framerusercontent.com/modules/3mKFSGQqKHV82uOV1eBc/5fbRLvOpxZC0JOXugvwm/isMotionValue.js","https:/framerusercontent.com/modules/xDiQsqBGXzmMsv7AlEVy/uhunpMiNsbXxzjlXsg1y/useUniqueClassName.js","https:/framerusercontent.com/modules/ETACN5BJyFTSo0VVDJfu/NHRqowOiXkF9UwOzczF7/variantUtils.js","https:/framerusercontent.com/modules/eMBrwoqQK7h6mEeGQUH8/GuplvPJVjmxpk9zqOTcb/isBrowser.js","https:/framerusercontent.com/modules/v9AWX2URmiYsHf7GbctE/XxKAZ9KlhWqf5x1JMyyF/useOnChange.js","https:/framerusercontent.com/modules/kNDwabfjDEb3vUxkQlZS/fSIr3AOAYbGlfSPgXpYu/useAutoMotionValue.js","https:/framerusercontent.com/modules/cuQH4dmpDnV8YK1mSgQX/KqRXqunFjE6ufhpc7ZRu/useFontControls.js","https:/framerusercontent.com/modules/afBE9Yx1W6bY5q32qPxe/m3q7puE2tbo1S2C0s0CT/useRenderTarget.js","https:/framerusercontent.com/modules/zGkoP8tPDCkoBzMdt5uq/0zFSjxIYliHxrQQnryFX/useControlledState.js","https:/framerusercontent.com/modules/5SM58HxZHxjjv7aLMOgQ/WXz9i6mVki0bBCrKdqB3/propUtils.js","https:/framer.com/m/framer/default-utils.js"],"sourcesContent":["import { useRef } from \"react\";\n/**\n * Creates a constant value over the lifecycle of a component.\n *\n * Even if `useMemo` is provided an empty array as its final argument, it doesn't offer\n * a guarantee that it won't re-run for performance reasons later on.\n * By using `useConstant` you can ensure that initialisers don't execute twice or more.\n */ export function useConstant(init) {\n    const ref = useRef(null);\n    if (ref.current === null) {\n        ref.current = init();\n    }\n    return ref.current;\n}\n\nexport const __FramerMetadata__ = {\"exports\":{\"useConstant\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}}}}\n//# sourceMappingURL=./useConstant.map","import { useConstant } from \"https://framer.com/m/framer/useConstant.js@^1.0.0\";\nconst BASE62 = \"0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz\";\n/**\n * Generates a random string of BASE62 characters.\n */ export function randomID(length = 5) {\n    return Array(length).fill(0).map(()=>BASE62[Math.floor(Math.random() * BASE62.length)]\n    ).join(\"\");\n}\nexport function useRandomID(length = 5) {\n    return useConstant(()=>randomID(length)\n    );\n}\nconst defaultStorageKey = \"$$FramerRandomID\";\n/**\n * `randomID` but cached in localStorage.\n */ export function useCachedRandomID(storageKey = defaultStorageKey) {\n    return useConstant(()=>{\n        const storage = getLocalStorage();\n        if (!storage) return randomID(8);\n        const cachedValue = storage.getItem(storageKey);\n        if (cachedValue) return cachedValue;\n        const newID = randomID(8);\n        storage.setItem(storageKey, newID);\n        return newID;\n    });\n}\nfunction getLocalStorage() {\n    if (typeof window === undefined) return undefined;\n    try {\n        return window.localStorage;\n    } catch (err) {\n        return undefined;\n    }\n}\n\nexport const __FramerMetadata__ = {\"exports\":{\"useRandomID\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useCachedRandomID\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"randomID\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}}}}\n//# sourceMappingURL=./randomID.map","import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";// Generated by Framer (24f3304)\nimport*as React from\"react\";import{motion,LayoutGroup}from\"framer-motion\";import{useActiveVariantCallback,addFonts,withCSS,addPropertyControls,ControlType,cx,useAddVariantProps,useVariantState}from\"framer\";import{useRandomID}from\"https://framer.com/m/framer/randomID.js@^2.0.0\";const cycleOrder=[\"uL1KSNbAO\",\"wuYLgLVQz\"];const variantClassNames={\"uL1KSNbAO\":\"framer-v-sct6xz\",\"wuYLgLVQz\":\"framer-v-7ln769\"};const humanReadableVariantMap={\"Burger\":\"uL1KSNbAO\",\"X\":\"wuYLgLVQz\"};const transitions={\"default\":{\"type\":\"spring\",\"ease\":[0.44,0,0.56,1],\"duration\":5,\"delay\":0,\"stiffness\":400,\"damping\":30,\"mass\":1}};const Component=/*#__PURE__*/ React.forwardRef(function({style:externalStyle={},className,width,height,layoutId,variant:outerVariant=\"uL1KSNbAO\",tap:TBgHLr7MW,color:iWF8EWIN1=\"rgb(136, 136, 136)\",...restProps},ref){const outerVariantId=humanReadableVariantMap[outerVariant];const variant=outerVariantId||outerVariant;const{variants,baseVariant,gestureVariant,classNames,transition,setVariant,setGestureState}=useVariantState({defaultVariant:\"uL1KSNbAO\",variant,transitions,variantClassNames,cycleOrder});const layoutDependency=variants.join(\"-\")+restProps.layoutDependency;const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTapsct6xz=activeVariantCallback(async(...args)=>{if(TBgHLr7MW){const res=await TBgHLr7MW(...args);if(res===false)return false;}setVariant(\"wuYLgLVQz\");});const onTap7ln769=activeVariantCallback(async(...args)=>{if(TBgHLr7MW){const res=await TBgHLr7MW(...args);if(res===false)return false;}setVariant(\"uL1KSNbAO\");});const variantProps=React.useMemo(()=>({\"wuYLgLVQz\":{\"uL1KSNbAO\":{\"onTap\":onTap7ln769,\"data-framer-name\":\"X\",\"data-highlight\":true}}}),[onTap7ln769]);const addVariantProps=useAddVariantProps(baseVariant,gestureVariant,variantProps);const defaultLayoutId=useRandomID();const{pointerEvents,...style}=externalStyle;return(/*#__PURE__*/ _jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/ _jsx(motion.div,{\"data-framer-generated\":true,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-OAsFD\",classNames),style:{\"display\":\"contents\",\"pointerEvents\":pointerEvents!==null&&pointerEvents!==void 0?pointerEvents:undefined},children:/*#__PURE__*/ _jsx(motion.div,{...restProps,layoutId:\"uL1KSNbAO\",className:cx(\"framer-sct6xz\",className),style:{...style},background:null,\"data-highlight\":true,\"data-framer-name\":\"Burger\",onTap:onTapsct6xz,transition:transition,layoutDependency:layoutDependency,ref:ref,...addVariantProps(\"uL1KSNbAO\"),children:/*#__PURE__*/ _jsxs(motion.div,{layoutId:\"grVqu8zO5\",className:\"framer-kqrzyc\",style:{},background:null,transition:transition,layoutDependency:layoutDependency,...addVariantProps(\"grVqu8zO5\"),children:[/*#__PURE__*/ _jsx(motion.div,{layoutId:\"x0ZufA4We\",className:\"framer-mzz784\",style:{\"backgroundColor\":iWF8EWIN1,\"rotate\":0},\"data-framer-name\":\"Bottom\",variants:{\"wuYLgLVQz\":{\"rotate\":-45}},transition:transition,layoutDependency:layoutDependency,...addVariantProps(\"x0ZufA4We\")}),/*#__PURE__*/ _jsx(motion.div,{layoutId:\"uR628goMu\",className:\"framer-1a74gli\",style:{\"backgroundColor\":iWF8EWIN1,\"rotate\":0,\"opacity\":1},\"data-framer-name\":\"Mid\",variants:{\"wuYLgLVQz\":{\"rotate\":0,\"opacity\":0}},transition:transition,layoutDependency:layoutDependency,...addVariantProps(\"uR628goMu\")}),/*#__PURE__*/ _jsx(motion.div,{layoutId:\"CpjUXrkWa\",className:\"framer-48wlq1\",style:{\"backgroundColor\":iWF8EWIN1,\"rotate\":0},\"data-framer-name\":\"Top\",variants:{\"wuYLgLVQz\":{\"rotate\":45}},transition:transition,layoutDependency:layoutDependency,...addVariantProps(\"CpjUXrkWa\")})]})})})}));});const css=[\".framer-OAsFD [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-OAsFD * { box-sizing: border-box; }\",\".framer-OAsFD .framer-sct6xz { position: relative; cursor: pointer; overflow: hidden; width: 32px; height: 32px; }\",\".framer-OAsFD .framer-kqrzyc { position: absolute; overflow: visible; width: 24px; height: 18px; left: calc(50.00000000000002% - 24px/2); top: calc(50.00000000000002% - 18px/2); flex: none; }\",\".framer-OAsFD .framer-mzz784 { position: absolute; overflow: hidden; height: 2px; right: 0px; bottom: 0px; left: 0px; flex: none; }\",\".framer-OAsFD .framer-1a74gli { position: absolute; overflow: hidden; height: 2px; right: 0px; left: 0px; top: calc(50.00000000000002% - 2px/2); flex: none; }\",\".framer-OAsFD .framer-48wlq1 { position: absolute; overflow: hidden; height: 2px; right: 0px; left: 0px; top: 0px; flex: none; }\",\".framer-OAsFD.framer-v-7ln769 .framer-sct6xz { cursor: pointer; }\",\".framer-OAsFD.framer-v-7ln769 .framer-mzz784 { width: auto; height: 2px; right: 0px; bottom: auto; left: 0px; top: calc(50.00000000000002% - 2px/2); flex: none; aspect-ratio: unset; }\",\".framer-OAsFD.framer-v-7ln769 .framer-1a74gli { width: 2px; height: 2px; right: 0px; bottom: auto; left: auto; top: calc(50.00000000000002% - 2px/2); flex: none; aspect-ratio: unset; }\",\".framer-OAsFD.framer-v-7ln769 .framer-48wlq1 { width: 26px; height: 2px; right: -1px; bottom: auto; left: auto; top: calc(50.00000000000002% - 2px/2); flex: none; aspect-ratio: unset; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 32\n * @framerIntrinsicWidth 32\n * @framerCanvasComponentVariantDetails {\"propertyName\": \"variant\", \"data\": {\"default\": {\"layout\": [\"fixed\", \"fixed\"]}, \"wuYLgLVQz\": {\"layout\": [\"fixed\", \"fixed\"]}}}\n * @framerVariables {\"TBgHLr7MW\": \"tap\", \"iWF8EWIN1\": \"color\"}\n */ const FramerF8KjCKf_G=withCSS(Component,css);export default FramerF8KjCKf_G;FramerF8KjCKf_G.displayName=\"Elements/Menu Icon\";FramerF8KjCKf_G.defaultProps={\"width\":32,\"height\":32};addPropertyControls(FramerF8KjCKf_G,{\"variant\":{\"type\":ControlType.Enum,\"title\":\"Variant\",\"options\":[\"uL1KSNbAO\",\"wuYLgLVQz\"],\"optionTitles\":[\"Burger\",\"X\"]},\"TBgHLr7MW\":{\"type\":ControlType.EventHandler,\"title\":\"Tap\"},\"iWF8EWIN1\":{\"type\":ControlType.Color,\"title\":\"Color\",\"defaultValue\":\"rgb(136, 136, 136)\"}});addFonts(FramerF8KjCKf_G,[]);\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerF8KjCKf_G\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"32\",\"framerIntrinsicWidth\":\"32\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\": \\\"variant\\\", \\\"data\\\": {\\\"default\\\": {\\\"layout\\\": [\\\"fixed\\\", \\\"fixed\\\"]}, \\\"wuYLgLVQz\\\": {\\\"layout\\\": [\\\"fixed\\\", \\\"fixed\\\"]}}}\",\"framerVariables\":\"{\\\"TBgHLr7MW\\\": \\\"tap\\\", \\\"iWF8EWIN1\\\": \\\"color\\\"}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./F8KjCKf_G.map","// Generated by Framer (e4277c8)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"GF;Figtree-500\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Figtree\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/figtree/v6/_Xmz-HUzqDCFdgfMsYiV_F7wfS-Bs_dNQF5bwkEU4HTy.woff2\",weight:\"500\"}]}];export const css=['.framer-fh0fB .framer-styles-preset-1nufdxi:not(.rich-text-wrapper), .framer-fh0fB .framer-styles-preset-1nufdxi.rich-text-wrapper p { --framer-font-family: \"Figtree\", \"Figtree Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 20px; --framer-font-style: normal; --framer-font-weight: 500; --framer-letter-spacing: -0.2px; --framer-line-height: 1.2em; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: #000000; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }','@media (max-width: 1199px) and (min-width: 810px) { .framer-fh0fB .framer-styles-preset-1nufdxi:not(.rich-text-wrapper), .framer-fh0fB .framer-styles-preset-1nufdxi.rich-text-wrapper p { --framer-font-family: \"Figtree\", \"Figtree Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 20px; --framer-font-style: normal; --framer-font-weight: 500; --framer-letter-spacing: -0.2px; --framer-line-height: 1.2em; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: #000000; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-fh0fB .framer-styles-preset-1nufdxi:not(.rich-text-wrapper), .framer-fh0fB .framer-styles-preset-1nufdxi.rich-text-wrapper p { --framer-font-family: \"Figtree\", \"Figtree Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 20px; --framer-font-style: normal; --framer-font-weight: 500; --framer-letter-spacing: -0.2px; --framer-line-height: 1.2em; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: #000000; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }'];export const className=\"framer-fh0fB\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}","// Generated by Framer (b4533c2)\nimport{jsx as _jsx}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{useRef}from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/sWOTv3Iv9BIOXqX9zOAH/LoxNj4mXVlCczQtTlTEh/rG990RXmJ.js\";const enabledGestures={BbPwKlf27:{hover:true,pressed:true},KmQvZ3OD8:{hover:true,pressed:true}};const cycleOrder=[\"BbPwKlf27\",\"KmQvZ3OD8\"];const serializationHash=\"framer-YNJKa\";const variantClassNames={BbPwKlf27:\"framer-v-1knbczd\",KmQvZ3OD8:\"framer-v-x6w7he\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"BbPwKlf27\",Small:\"KmQvZ3OD8\"};const getProps=({click,height,id,link,title,width,...props})=>{return{...props,JqTsv8u9S:click??props.JqTsv8u9S,nWfkobAl9:title??props.nWfkobAl9??\"Our Work\",TMHh0MkWN:link??props.TMHh0MkWN,variant:humanReadableVariantMap[props.variant]??props.variant??\"BbPwKlf27\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,nWfkobAl9,TMHh0MkWN,JqTsv8u9S,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"BbPwKlf27\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap15r1u3c=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(JqTsv8u9S){const res=await JqTsv8u9S(...args);if(res===false)return false;}});const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:TMHh0MkWN,motionChild:true,nodeId:\"BbPwKlf27\",openInNewTab:false,scopeId:\"fjzDYkSHI\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{...restProps,...gestureHandlers,className:`${cx(scopingClassNames,\"framer-1knbczd\",className,classNames)} framer-azg14v`,\"data-framer-name\":\"Variant 1\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"BbPwKlf27\",onTap:onTap15r1u3c,ref:refBinding,style:{...style},...addPropertyOverrides({\"BbPwKlf27-hover\":{\"data-framer-name\":undefined},\"BbPwKlf27-pressed\":{\"data-framer-name\":undefined},\"KmQvZ3OD8-hover\":{\"data-framer-name\":undefined},\"KmQvZ3OD8-pressed\":{\"data-framer-name\":undefined},KmQvZ3OD8:{\"data-framer-name\":\"Small\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1nufdxi\",\"data-styles-preset\":\"rG990RXmJ\",children:\"Our Work\"})}),className:\"framer-dhfgd0\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"fPrX6lsUe\",style:{opacity:1},text:nWfkobAl9,variants:{\"BbPwKlf27-hover\":{opacity:.71},\"BbPwKlf27-pressed\":{opacity:.8},\"KmQvZ3OD8-hover\":{opacity:.7},\"KmQvZ3OD8-pressed\":{opacity:.8}},verticalAlignment:\"center\",withExternalLayout:true,...addPropertyOverrides({KmQvZ3OD8:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RmlndHJlZS01MDA=\",\"--framer-font-family\":'\"Figtree\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.2px\"},children:\"Our Work\"})}),fonts:[\"GF;Figtree-500\"]}},baseVariant,gestureVariant)})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-YNJKa.framer-azg14v, .framer-YNJKa .framer-azg14v { display: block; }\",\".framer-YNJKa.framer-1knbczd { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 44px; justify-content: center; overflow: visible; padding: 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-YNJKa .framer-dhfgd0 { flex: none; height: 44px; position: relative; white-space: pre; width: auto; }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 44\n * @framerIntrinsicWidth 84\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"fixed\"]},\"KmQvZ3OD8\":{\"layout\":[\"auto\",\"fixed\"]},\"Mj8oJUZ8n\":{\"layout\":[\"auto\",\"fixed\"]},\"TsGI3jPtF\":{\"layout\":[\"auto\",\"fixed\"]},\"ALaRUt6qY\":{\"layout\":[\"auto\",\"fixed\"]},\"vZdOiTLOv\":{\"layout\":[\"auto\",\"fixed\"]}}}\n * @framerVariables {\"nWfkobAl9\":\"title\",\"TMHh0MkWN\":\"link\",\"JqTsv8u9S\":\"click\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerfjzDYkSHI=withCSS(Component,css,\"framer-YNJKa\");export default FramerfjzDYkSHI;FramerfjzDYkSHI.displayName=\"Nav link\";FramerfjzDYkSHI.defaultProps={height:44,width:84};addPropertyControls(FramerfjzDYkSHI,{variant:{options:[\"BbPwKlf27\",\"KmQvZ3OD8\"],optionTitles:[\"Variant 1\",\"Small\"],title:\"Variant\",type:ControlType.Enum},nWfkobAl9:{defaultValue:\"Our Work\",displayTextArea:false,title:\"Title\",type:ControlType.String},TMHh0MkWN:{title:\"Link\",type:ControlType.Link},JqTsv8u9S:{title:\"Click\",type:ControlType.EventHandler}});addFonts(FramerfjzDYkSHI,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Figtree\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/figtree/v8/_Xmz-HUzqDCFdgfMsYiV_F7wfS-Bs_dNQF5bwkEU4HTy.woff2\",weight:\"500\"}]},...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerfjzDYkSHI\",\"slots\":[],\"annotations\":{\"framerAutoSizeImages\":\"true\",\"framerVariables\":\"{\\\"nWfkobAl9\\\":\\\"title\\\",\\\"TMHh0MkWN\\\":\\\"link\\\",\\\"JqTsv8u9S\\\":\\\"click\\\"}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"KmQvZ3OD8\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"Mj8oJUZ8n\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"TsGI3jPtF\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"ALaRUt6qY\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"vZdOiTLOv\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"44\",\"framerIntrinsicWidth\":\"84\",\"framerColorSyntax\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./fjzDYkSHI.map","import{fontStore}from\"framer\";fontStore.loadWebFontsFromSelectors([\"GF;Figtree-500\"]);export const fonts=[{family:\"Figtree\",moduleAsset:{localModuleIdentifier:\"local-module:css/LIgweaXgO:default\",url:\"https://fonts.gstatic.com/s/figtree/v4/_Xmz-HUzqDCFdgfMsYiV_F7wfS-Bs_dNQF5ewkEU4HTy.ttf\"},style:\"normal\",url:\"https://fonts.gstatic.com/s/figtree/v4/_Xmz-HUzqDCFdgfMsYiV_F7wfS-Bs_dNQF5ewkEU4HTy.ttf\",weight:\"500\"}];export const css=['.framer-P0D0p .framer-styles-preset-1a2xd1s:not(.rich-text-wrapper), .framer-P0D0p .framer-styles-preset-1a2xd1s.rich-text-wrapper h3 { --framer-font-family: \"Figtree\", sans-serif; --framer-font-size: 20px; --framer-font-style: normal; --framer-font-weight: 500; --framer-letter-spacing: 0em; --framer-line-height: 1.2em; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: #ffffff; --framer-text-decoration: none; --framer-text-transform: none; }','@media (max-width: 1199px) and (min-width: 810px) { .framer-P0D0p .framer-styles-preset-1a2xd1s:not(.rich-text-wrapper), .framer-P0D0p .framer-styles-preset-1a2xd1s.rich-text-wrapper h3 { --framer-font-family: \"Figtree\", sans-serif; --framer-font-size: 20px; --framer-font-style: normal; --framer-font-weight: 500; --framer-letter-spacing: 0em; --framer-line-height: 1.2em; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: #ffffff; --framer-text-decoration: none; --framer-text-transform: none; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-P0D0p .framer-styles-preset-1a2xd1s:not(.rich-text-wrapper), .framer-P0D0p .framer-styles-preset-1a2xd1s.rich-text-wrapper h3 { --framer-font-family: \"Figtree\", sans-serif; --framer-font-size: 20px; --framer-font-style: normal; --framer-font-weight: 500; --framer-letter-spacing: 0em; --framer-line-height: 1.2em; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: #ffffff; --framer-text-decoration: none; --framer-text-transform: none; } }'];export const className=\"framer-P0D0p\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}","// Generated by Framer (9f55354)\nimport{jsx as _jsx}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/lEpg6oora97TdYJSpMhR/CLy9j9lJXkLKdLFGIkQq/LIgweaXgO.js\";const enabledGestures={kph3v0ZlU:{hover:true,pressed:true},nxpn3Oh2L:{hover:true,pressed:true},rPn7C4ci0:{hover:true,pressed:true},vCUf75cEJ:{hover:true,pressed:true}};const cycleOrder=[\"rPn7C4ci0\",\"vCUf75cEJ\",\"nxpn3Oh2L\",\"kph3v0ZlU\"];const serializationHash=\"framer-nMYgF\";const variantClassNames={kph3v0ZlU:\"framer-v-1dlqxle\",nxpn3Oh2L:\"framer-v-19w3yy7\",rPn7C4ci0:\"framer-v-n8b7yi\",vCUf75cEJ:\"framer-v-ik8y8t\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Large - Dark Mode\":\"nxpn3Oh2L\",\"Small - Secondary\":\"kph3v0ZlU\",Large:\"vCUf75cEJ\",Small:\"rPn7C4ci0\"};const getProps=({height,id,link,title,width,...props})=>{return{...props,V3LWtsKqp:link??props.V3LWtsKqp,variant:humanReadableVariantMap[props.variant]??props.variant??\"rPn7C4ci0\",wAElfNBSC:title??props.wAElfNBSC??\"Click\"};};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,wAElfNBSC,V3LWtsKqp,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"rPn7C4ci0\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:V3LWtsKqp,nodeId:\"rPn7C4ci0\",openInNewTab:false,children:/*#__PURE__*/_jsx(motion.a,{...restProps,...gestureHandlers,className:`${cx(scopingClassNames,\"framer-n8b7yi\",className,classNames)} framer-4cuq6g`,\"data-framer-name\":\"Small\",\"data-reset\":\"button\",layoutDependency:layoutDependency,layoutId:\"rPn7C4ci0\",ref:ref??ref1,style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgba(0, 0, 0, 0)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",backgroundColor:\"rgb(19, 17, 38)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,...style},variants:{\"kph3v0ZlU-hover\":{backgroundColor:\"rgba(19, 17, 38, 0.05)\"},\"kph3v0ZlU-pressed\":{backgroundColor:\"rgba(19, 17, 38, 0.08)\"},\"nxpn3Oh2L-hover\":{backgroundColor:\"rgb(246, 243, 254)\"},\"nxpn3Oh2L-pressed\":{backgroundColor:\"rgb(131, 85, 255)\"},\"rPn7C4ci0-hover\":{backgroundColor:\"rgb(39, 0, 142)\"},\"rPn7C4ci0-pressed\":{backgroundColor:\"rgb(52, 6, 178)\"},\"vCUf75cEJ-hover\":{backgroundColor:\"rgb(70, 17, 210)\"},\"vCUf75cEJ-pressed\":{backgroundColor:\"rgb(33, 0, 111)\"},kph3v0ZlU:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(19, 17, 38)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgba(0, 0, 0, 0)\"},nxpn3Oh2L:{backgroundColor:\"rgb(203, 183, 255)\"},vCUf75cEJ:{backgroundColor:\"rgb(40, 0, 143)\"}},...addPropertyOverrides({\"kph3v0ZlU-hover\":{\"data-framer-name\":undefined,style:{backgroundColor:\"rgb(19, 17, 38)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,...style}},\"kph3v0ZlU-pressed\":{\"data-framer-name\":undefined,style:{backgroundColor:\"rgb(19, 17, 38)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,...style}},\"nxpn3Oh2L-hover\":{\"data-framer-name\":undefined,style:{backgroundColor:\"rgb(19, 17, 38)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,...style}},\"nxpn3Oh2L-pressed\":{\"data-framer-name\":undefined,style:{backgroundColor:\"rgb(19, 17, 38)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,...style}},\"rPn7C4ci0-hover\":{\"data-framer-name\":undefined,style:{backgroundColor:\"rgb(19, 17, 38)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,...style}},\"rPn7C4ci0-pressed\":{\"data-framer-name\":undefined,style:{backgroundColor:\"rgb(19, 17, 38)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,...style}},\"vCUf75cEJ-hover\":{\"data-framer-name\":undefined,style:{backgroundColor:\"rgb(19, 17, 38)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,...style}},\"vCUf75cEJ-pressed\":{\"data-framer-name\":undefined,style:{backgroundColor:\"rgb(19, 17, 38)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,...style}},kph3v0ZlU:{\"data-border\":true,\"data-framer-name\":\"Small - Secondary\"},nxpn3Oh2L:{\"data-framer-name\":\"Large - Dark Mode\"},vCUf75cEJ:{\"data-framer-name\":\"Large\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-1a2xd1s\",\"data-styles-preset\":\"LIgweaXgO\",children:\"Click\"})}),className:\"framer-104epbo\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"gf7y3karW\",text:wAElfNBSC,variants:{kph3v0ZlU:{\"--extracted-a0htzi\":\"rgb(19, 17, 38)\"},nxpn3Oh2L:{\"--extracted-a0htzi\":\"rgb(40, 0, 143)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({kph3v0ZlU:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-1a2xd1s\",\"data-styles-preset\":\"LIgweaXgO\",style:{\"--framer-text-color\":\"var(--extracted-a0htzi, rgb(19, 17, 38))\"},children:\"Click\"})})},nxpn3Oh2L:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-1a2xd1s\",\"data-styles-preset\":\"LIgweaXgO\",style:{\"--framer-text-color\":\"var(--extracted-a0htzi, rgb(40, 0, 143))\"},children:\"Click\"})})}},baseVariant,gestureVariant)})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-nMYgF.framer-4cuq6g, .framer-nMYgF .framer-4cuq6g { display: block; }\",\".framer-nMYgF.framer-n8b7yi { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; padding: 10px 20px 10px 20px; position: relative; text-decoration: none; width: min-content; }\",\".framer-nMYgF .framer-104epbo { flex: none; height: auto; overflow: visible; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-nMYgF.framer-n8b7yi { gap: 0px; } .framer-nMYgF.framer-n8b7yi > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-nMYgF.framer-n8b7yi > :first-child { margin-left: 0px; } .framer-nMYgF.framer-n8b7yi > :last-child { margin-right: 0px; } }\",\".framer-nMYgF.framer-v-ik8y8t.framer-n8b7yi, .framer-nMYgF.framer-v-19w3yy7.framer-n8b7yi { padding: 16px 24px 16px 24px; }\",...sharedStyle.css,'.framer-nMYgF[data-border=\"true\"]::after, .framer-nMYgF [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 44\n * @framerIntrinsicWidth 84.5\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"vCUf75cEJ\":{\"layout\":[\"auto\",\"auto\"]},\"nxpn3Oh2L\":{\"layout\":[\"auto\",\"auto\"]},\"kph3v0ZlU\":{\"layout\":[\"auto\",\"auto\"]},\"A1l8_Bu7l\":{\"layout\":[\"auto\",\"auto\"]},\"xRrXsOFnq\":{\"layout\":[\"auto\",\"auto\"]},\"eQ6kQzPDQ\":{\"layout\":[\"auto\",\"auto\"]},\"rJbKuUBO9\":{\"layout\":[\"auto\",\"auto\"]},\"ijsLxnuOx\":{\"layout\":[\"auto\",\"auto\"]},\"SQgFNdILP\":{\"layout\":[\"auto\",\"auto\"]},\"lcKJbiII1\":{\"layout\":[\"auto\",\"auto\"]},\"frd8mcVVS\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"wAElfNBSC\":\"title\",\"V3LWtsKqp\":\"link\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerSj4K8MQt3=withCSS(Component,css,\"framer-nMYgF\");export default FramerSj4K8MQt3;FramerSj4K8MQt3.displayName=\"Button/ Primary\";FramerSj4K8MQt3.defaultProps={height:44,width:84.5};addPropertyControls(FramerSj4K8MQt3,{variant:{options:[\"rPn7C4ci0\",\"vCUf75cEJ\",\"nxpn3Oh2L\",\"kph3v0ZlU\"],optionTitles:[\"Small\",\"Large\",\"Large - Dark Mode\",\"Small - Secondary\"],title:\"Variant\",type:ControlType.Enum},wAElfNBSC:{defaultValue:\"Click\",displayTextArea:false,title:\"Title\",type:ControlType.String},V3LWtsKqp:{title:\"Link\",type:ControlType.Link}});addFonts(FramerSj4K8MQt3,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerSj4K8MQt3\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"vCUf75cEJ\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"nxpn3Oh2L\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"kph3v0ZlU\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"A1l8_Bu7l\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"xRrXsOFnq\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"eQ6kQzPDQ\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"rJbKuUBO9\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"ijsLxnuOx\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"SQgFNdILP\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"lcKJbiII1\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"frd8mcVVS\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerVariables\":\"{\\\"wAElfNBSC\\\":\\\"title\\\",\\\"V3LWtsKqp\\\":\\\"link\\\"}\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"84.5\",\"framerIntrinsicHeight\":\"44\",\"framerComponentViewportWidth\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Sj4K8MQt3.map","// Generated by Framer (b0cf16c)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,Link,ResolveLinks,SmartComponentScopedContainer,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useRouter,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import ElementsMenuIcon from\"https://framerusercontent.com/modules/KtVGDQXNUVZ5aqCs47VS/OMqTyVIbB7GZvcPewNwz/F8KjCKf_G.js\";import NavLink from\"https://framerusercontent.com/modules/7BkyUB8imUGT2JUDJgaZ/ATCiqgQgBZifC5PmLyFB/fjzDYkSHI.js\";import ButtonPrimary from\"https://framerusercontent.com/modules/omxoJTLfakdIWabiUqQ8/0UF0M6zG5Ip7OEaeNMaV/Sj4K8MQt3.js\";const ElementsMenuIconFonts=getFonts(ElementsMenuIcon);const NavLinkFonts=getFonts(NavLink);const ButtonPrimaryFonts=getFonts(ButtonPrimary);const cycleOrder=[\"POQ6PoU1a\",\"WftyvbCmA\",\"mOqEjUYY8\",\"iCsJZbi3g\",\"TwyjjKUqS\"];const serializationHash=\"framer-1p51L\";const variantClassNames={iCsJZbi3g:\"framer-v-9aop7p\",mOqEjUYY8:\"framer-v-1vs7ztr\",POQ6PoU1a:\"framer-v-1taloum\",TwyjjKUqS:\"framer-v-1lip66u\",WftyvbCmA:\"framer-v-y5ewwl\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Phone Expanded\":\"mOqEjUYY8\",\"Variant 4\":\"iCsJZbi3g\",\"Vertical Tablet\":\"TwyjjKUqS\",Desktop:\"POQ6PoU1a\",Phone:\"WftyvbCmA\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"POQ6PoU1a\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"POQ6PoU1a\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const tapq96n0p=activeVariantCallback(async(...args)=>{setVariant(\"mOqEjUYY8\");});const tapm4u5l2=activeVariantCallback(async(...args)=>{setVariant(\"WftyvbCmA\");});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if([\"WftyvbCmA\",\"mOqEjUYY8\",\"iCsJZbi3g\"].includes(baseVariant))return true;return false;};const isDisplayed1=()=>{if(baseVariant===\"WftyvbCmA\")return false;return true;};const router=useRouter();const isDisplayed2=()=>{if([\"mOqEjUYY8\",\"iCsJZbi3g\"].includes(baseVariant))return true;return false;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1taloum\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"POQ6PoU1a\",ref:refBinding,style:{backgroundColor:\"rgb(255, 255, 255)\",...style},variants:{iCsJZbi3g:{backgroundColor:\"rgba(255, 255, 255, 0.98)\"},mOqEjUYY8:{backgroundColor:\"rgba(255, 255, 255, 0.98)\"}},...addPropertyOverrides({iCsJZbi3g:{\"data-framer-name\":\"Variant 4\"},mOqEjUYY8:{\"data-framer-name\":\"Phone Expanded\"},TwyjjKUqS:{\"data-framer-name\":\"Vertical Tablet\"},WftyvbCmA:{\"data-framer-name\":\"Phone\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-k266jp\",layoutDependency:layoutDependency,layoutId:\"om72T58jZ\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-16hayvk\",layoutDependency:layoutDependency,layoutId:\"VC5COkNIn\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1xof3oo\",\"data-framer-name\":\"Logo\",layoutDependency:layoutDependency,layoutId:\"Gtj18xxbo\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-l4csxm\",layoutDependency:layoutDependency,layoutId:\"XyPRIRyFs\",children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"eddhjzMea\"},motionChild:true,nodeId:\"m8pdp9u2L\",scopeId:\"FpNI1eqHu\",children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-w9xfsn framer-nrs4w7\",\"data-framer-name\":\"v03c\",fill:\"black\",intrinsicHeight:167,intrinsicWidth:506,layoutDependency:layoutDependency,layoutId:\"m8pdp9u2L\",svg:'<svg width=\"506\" height=\"167\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\" fill=\"#111827\"><path d=\"M253.755 66.716c-14.603 0-23.806 11.029-23.806 24.53 0 13.499 8.823 24.071 22.894 24.071 14.07 0 23.806-10.762 23.806-24.566 0-13.729-8.291-24.035-22.894-24.035Zm-.266 38.524c-6.617 0-10.648-6.085-10.648-13.957 0-7.91 3.385-14.45 10.306-14.45 6.883 0 10.648 5.894 10.648 13.956-.038 8.138-3.689 14.451-10.306 14.451ZM212.19 77.936c5.515-2.777 8.747-7.987 8.747-14.337 0-10.382-8.823-17-22.817-17h-22.057v67.464h26.392c13.69 0 22.627-7.454 22.627-19.129 0-8.518-4.982-14.945-12.892-16.998ZM198.386 56.6c5.59-.076 9.659 3.385 9.659 8.367 0 5.78-3.575 8.632-10.838 8.632h-8.823V56.715l10.002-.114Zm.38 47.384h-10.382v-20.42h10.953c7.986 0 12.853 4.03 12.853 10.762 0 6.807-3.955 9.659-13.424 9.659Zm157.478-16.465-5.591-2.586c-4.677-2.206-6.084-3.043-6.084-4.982 0-2.282 2.586-3.385 6.351-3.385 4.677 0 11.028 2.852 13.956 5.438l1.293-10.382a25.721 25.721 0 0 0-15.059-4.867c-10.839 0-17.912 5.438-17.912 13.69 0 6.541 3.118 10.382 10.952 13.88l5.515 2.473c4.981 2.205 6.617 3.384 6.617 5.324 0 2.395-2.776 3.384-6.237 3.384-5.78 0-10.002-1.749-15.554-5.324l-1.179 10.04c4.031 3.118 9.926 5.134 16.277 5.134 11.218 0 18.101-5.248 18.101-13.805-.038-6.503-2.89-10.077-11.446-14.032Zm103.819-19.395-10.991 31.717-9.887-31.716h-12.512l16.771 46.699-.304.76c-1.94 4.868-3.955 6.884-7.264 6.884-2.015 0-4.411-1.293-6.541-2.472l-1.293 9.659c1.94 1.369 5.248 2.928 9.393 2.928 7.188 0 11.599-4.145 15.554-14.146l19.585-50.275h-12.511v-.038Zm-154.169-1.559c-14.603 0-23.806 11.028-23.806 24.528 0 13.501 8.823 24.073 22.894 24.073 14.07 0 23.806-10.763 23.806-24.567 0-13.766-8.291-24.034-22.894-24.034Zm-.304 38.523c-6.617 0-10.648-6.085-10.648-13.957 0-7.91 3.384-14.45 10.306-14.45 6.921 0 10.648 5.894 10.648 13.956 0 8.1-3.689 14.451-10.306 14.451ZM422.908 46.6h-12.132v67.463h12.132V46.6Zm-29.89 58.184c-2.396 0-3.233-.837-3.233-3.689V77.783h13.691V68.01h-13.881V55.232h-11.751V68.01h-7.339v9.773h7.187v24.833c0 8.29 4.488 12.778 12.968 12.778 4.982 0 11.409-2.396 14.717-5.514l-1.026-10.04c-3.613 2.928-8.291 4.944-11.333 4.944Z\"/></g><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M86.459 57.746c.348-14.604-5.563-20.515-9.04-22.776-.522-.347-.348-1.216.347-1.216h28.686c11.127 0 19.994 9.04 19.994 19.993v3.825c0 11.127-9.041 19.993-19.994 19.993-11.126.348-19.993-8.867-19.993-19.82ZM35.147 82.955c2.26-3.477 8.172-9.389 22.775-9.04 10.953 0 20.168-8.868 19.82-19.994 0-10.953-8.867-19.994-19.994-19.994h-3.824c-10.953 0-19.994 8.867-19.994 19.994v28.686c0 .695.87.87 1.217.348Zm67.478 2.978c14.604.347 20.515-5.564 22.776-9.041.347-.522 1.217-.348 1.217.348v28.86c0 11.127-9.041 19.993-19.994 19.993h-3.825c-11.127 0-19.993-9.04-19.993-19.993-.348-11.127 8.867-20.167 19.819-20.167Zm-28.36 16.169c-.348 14.604 5.563 20.515 9.04 22.775.522.348.348 1.217-.348 1.217H54.271c-11.127 0-19.993-9.04-19.993-19.993v-3.825c0-11.127 9.04-19.993 19.993-19.993 10.953-.174 19.993 9.04 19.993 19.819Zm7.037-30.786c-.409-.947-1.751-.947-2.16 0a14.707 14.707 0 0 1-7.41 7.552c-.919.418-.919 1.724 0 2.142a14.706 14.706 0 0 1 7.41 7.552c.409.947 1.751.947 2.16 0a14.706 14.706 0 0 1 7.41-7.552c.92-.418.92-1.724 0-2.142a14.706 14.706 0 0 1-7.41-7.552Z\" fill=\"#28008F\"/><defs><clipPath id=\"a\"><path fill=\"#fff\" transform=\"translate(176.062 46.6)\" d=\"M0 0h296.511v85.945H0z\"/></clipPath></defs></svg>',withExternalLayout:true})}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-k1bxua-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"MHDFQx9M0-container\",nodeId:\"MHDFQx9M0\",rendersWithMotion:true,scopeId:\"FpNI1eqHu\",children:/*#__PURE__*/_jsx(ElementsMenuIcon,{color:\"rgb(20, 17, 38)\",height:\"100%\",id:\"MHDFQx9M0\",layoutId:\"MHDFQx9M0\",style:{height:\"100%\",width:\"100%\"},tap:tapq96n0p,variant:\"uL1KSNbAO\",width:\"100%\",...addPropertyOverrides({mOqEjUYY8:{tap:tapm4u5l2}},baseVariant,gestureVariant)})})})]})}),isDisplayed1()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ud2pk4\",\"data-framer-name\":\"Links and Buttons\",layoutDependency:layoutDependency,layoutId:\"IdmoIUCLy\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1dow9rl\",\"data-framer-name\":\"Links\",layoutDependency:layoutDependency,layoutId:\"ZhLAkxnEC\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,y:(componentViewport?.y||0)+0+(((componentViewport?.height||104)-0-104)/2+0+0)+30+0+0+0,...addPropertyOverrides({iCsJZbi3g:{width:`min(min(${componentViewport?.width||\"100vw\"}, 1440px) - 40px, 1260px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||622)-0-622)/2+0+0)+30+0+0+78+0+0+0+0},mOqEjUYY8:{width:`min(min(${componentViewport?.width||\"100vw\"}, 1440px) - 40px, 1260px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||630)-0-630)/2+0+0)+30+0+0+86+0+0+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-7p1hi0-container\",layoutDependency:layoutDependency,layoutId:\"XKdcZEicD-container\",nodeId:\"XKdcZEicD\",rendersWithMotion:true,scopeId:\"FpNI1eqHu\",children:/*#__PURE__*/_jsx(NavLink,{height:\"100%\",id:\"XKdcZEicD\",layoutId:\"XKdcZEicD\",nWfkobAl9:\"How it Works\",style:{height:\"100%\"},TMHh0MkWN:\"#how-it-works\",variant:\"BbPwKlf27\",width:\"100%\",...addPropertyOverrides({iCsJZbi3g:{style:{height:\"100%\",width:\"100%\"}},mOqEjUYY8:{style:{height:\"100%\",width:\"100%\"}}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,y:(componentViewport?.y||0)+0+(((componentViewport?.height||104)-0-104)/2+0+0)+30+0+0+0,...addPropertyOverrides({iCsJZbi3g:{width:`min(min(${componentViewport?.width||\"100vw\"}, 1440px) - 40px, 1260px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||622)-0-622)/2+0+0)+30+0+0+78+0+0+0+84},mOqEjUYY8:{width:`min(min(${componentViewport?.width||\"100vw\"}, 1440px) - 40px, 1260px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||630)-0-630)/2+0+0)+30+0+0+86+0+0+0+84}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1fo6eac-container\",layoutDependency:layoutDependency,layoutId:\"rnBJtjpxR-container\",nodeId:\"rnBJtjpxR\",rendersWithMotion:true,scopeId:\"FpNI1eqHu\",children:/*#__PURE__*/_jsx(NavLink,{height:\"100%\",id:\"rnBJtjpxR\",layoutId:\"rnBJtjpxR\",nWfkobAl9:\"Reviews\",style:{height:\"100%\"},TMHh0MkWN:\"#reviews\",variant:\"BbPwKlf27\",width:\"100%\",...addPropertyOverrides({iCsJZbi3g:{style:{height:\"100%\",width:\"100%\"}},mOqEjUYY8:{style:{height:\"100%\",width:\"100%\"}}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"vyXZXV5_r\"},implicitPathVariables:undefined},{href:{webPageId:\"vyXZXV5_r\"},implicitPathVariables:undefined},{href:{webPageId:\"vyXZXV5_r\"},implicitPathVariables:undefined},{href:{webPageId:\"vyXZXV5_r\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,y:(componentViewport?.y||0)+0+(((componentViewport?.height||104)-0-104)/2+0+0)+30+0+0+0,...addPropertyOverrides({iCsJZbi3g:{width:`min(min(${componentViewport?.width||\"100vw\"}, 1440px) - 40px, 1260px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||622)-0-622)/2+0+0)+30+0+0+78+0+0+0+168},mOqEjUYY8:{width:`min(min(${componentViewport?.width||\"100vw\"}, 1440px) - 40px, 1260px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||630)-0-630)/2+0+0)+30+0+0+86+0+0+0+168}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1bgr2jc-container\",layoutDependency:layoutDependency,layoutId:\"myMjI3U2y-container\",nodeId:\"myMjI3U2y\",rendersWithMotion:true,scopeId:\"FpNI1eqHu\",children:/*#__PURE__*/_jsx(NavLink,{height:\"100%\",id:\"myMjI3U2y\",layoutId:\"myMjI3U2y\",nWfkobAl9:\"Blog\",style:{height:\"100%\"},TMHh0MkWN:resolvedLinks[0],variant:\"BbPwKlf27\",width:\"100%\",...addPropertyOverrides({iCsJZbi3g:{style:{height:\"100%\",width:\"100%\"},TMHh0MkWN:resolvedLinks[2]},mOqEjUYY8:{style:{height:\"100%\",width:\"100%\"},TMHh0MkWN:resolvedLinks[1]},TwyjjKUqS:{TMHh0MkWN:resolvedLinks[3]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"XMlnV6Pvp\"},implicitPathVariables:undefined},{href:{webPageId:\"XMlnV6Pvp\"},implicitPathVariables:undefined},{href:{webPageId:\"XMlnV6Pvp\"},implicitPathVariables:undefined},{href:{webPageId:\"XMlnV6Pvp\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,y:(componentViewport?.y||0)+0+(((componentViewport?.height||104)-0-104)/2+0+0)+30+0+0+0,...addPropertyOverrides({iCsJZbi3g:{width:`min(min(${componentViewport?.width||\"100vw\"}, 1440px) - 40px, 1260px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||622)-0-622)/2+0+0)+30+0+0+78+0+0+0+252},mOqEjUYY8:{width:`min(min(${componentViewport?.width||\"100vw\"}, 1440px) - 40px, 1260px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||630)-0-630)/2+0+0)+30+0+0+86+0+0+0+252}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1ks7dsa-container\",layoutDependency:layoutDependency,layoutId:\"NmUnA7EwJ-container\",nodeId:\"NmUnA7EwJ\",rendersWithMotion:true,scopeId:\"FpNI1eqHu\",children:/*#__PURE__*/_jsx(NavLink,{height:\"100%\",id:\"NmUnA7EwJ\",layoutId:\"NmUnA7EwJ\",nWfkobAl9:\"Podcast\",style:{height:\"100%\"},TMHh0MkWN:resolvedLinks1[0],variant:\"BbPwKlf27\",width:\"100%\",...addPropertyOverrides({iCsJZbi3g:{style:{height:\"100%\",width:\"100%\"},TMHh0MkWN:resolvedLinks1[2]},mOqEjUYY8:{style:{height:\"100%\",width:\"100%\"},TMHh0MkWN:resolvedLinks1[1]},TwyjjKUqS:{TMHh0MkWN:resolvedLinks1[3]}},baseVariant,gestureVariant)})})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-9n78li\",\"data-framer-name\":\"Buttons\",layoutDependency:layoutDependency,layoutId:\"LSg9WFLVm\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,y:(componentViewport?.y||0)+0+(((componentViewport?.height||104)-0-104)/2+0+0)+30+0+0+0,...addPropertyOverrides({iCsJZbi3g:{width:`min(min(${componentViewport?.width||\"100vw\"}, 1440px) - 40px, 1260px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||622)-0-622)/2+0+0)+30+0+0+78+0+336+0+0},mOqEjUYY8:{width:`min(min(${componentViewport?.width||\"100vw\"}, 1440px) - 40px, 1260px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||630)-0-630)/2+0+0)+30+0+0+86+0+336+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1czoelk-container\",layoutDependency:layoutDependency,layoutId:\"w5qRUwP6n-container\",nodeId:\"w5qRUwP6n\",rendersWithMotion:true,scopeId:\"FpNI1eqHu\",children:/*#__PURE__*/_jsx(ButtonPrimary,{height:\"100%\",id:\"w5qRUwP6n\",layoutId:\"w5qRUwP6n\",V3LWtsKqp:\"https://app.boostly.com/login\",variant:\"kph3v0ZlU\",wAElfNBSC:\"Login\",width:\"100%\",...addPropertyOverrides({iCsJZbi3g:{style:{width:\"100%\"}},mOqEjUYY8:{style:{width:\"100%\"}}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"dSQ1fcVsL\"},implicitPathVariables:undefined},{href:{webPageId:\"dSQ1fcVsL\"},implicitPathVariables:undefined},{href:{webPageId:\"dSQ1fcVsL\"},implicitPathVariables:undefined},{href:{webPageId:\"dSQ1fcVsL\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,y:(componentViewport?.y||0)+0+(((componentViewport?.height||104)-0-104)/2+0+0)+30+0+0+0,...addPropertyOverrides({iCsJZbi3g:{width:`min(min(${componentViewport?.width||\"100vw\"}, 1440px) - 40px, 1260px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||622)-0-622)/2+0+0)+30+0+0+78+0+336+0+68},mOqEjUYY8:{width:`min(min(${componentViewport?.width||\"100vw\"}, 1440px) - 40px, 1260px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||630)-0-630)/2+0+0)+30+0+0+86+0+336+0+68}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-s8pheq-container\",layoutDependency:layoutDependency,layoutId:\"wnv_aMeLO-container\",nodeId:\"wnv_aMeLO\",rendersWithMotion:true,scopeId:\"FpNI1eqHu\",children:/*#__PURE__*/_jsx(ButtonPrimary,{height:\"100%\",id:\"wnv_aMeLO\",layoutId:\"wnv_aMeLO\",V3LWtsKqp:resolvedLinks2[0],variant:\"rPn7C4ci0\",wAElfNBSC:\"Get Free Demo\",width:\"100%\",...addPropertyOverrides({iCsJZbi3g:{style:{width:\"100%\"},V3LWtsKqp:resolvedLinks2[2]},mOqEjUYY8:{style:{width:\"100%\"},V3LWtsKqp:resolvedLinks2[1]},TwyjjKUqS:{V3LWtsKqp:resolvedLinks2[3]}},baseVariant,gestureVariant)})})})})]})]})]}),isDisplayed2()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1vxpyns\",layoutDependency:layoutDependency,layoutId:\"b4lY26rMS\",style:{backgroundColor:\"rgba(19, 17, 38, 0.13)\"}})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-1p51L.framer-nrs4w7, .framer-1p51L .framer-nrs4w7 { display: block; }\",\".framer-1p51L.framer-1taloum { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1200px; }\",\".framer-1p51L .framer-k266jp { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 1440px; overflow: visible; padding: 30px 64px 30px 64px; position: relative; width: 100%; }\",\".framer-1p51L .framer-16hayvk { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; max-width: 1260px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-1p51L .framer-1xof3oo { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-1p51L .framer-l4csxm { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 22px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-1p51L .framer-w9xfsn { aspect-ratio: 3.029940119760479 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 46px); position: relative; text-decoration: none; width: 138px; }\",\".framer-1p51L .framer-k1bxua-container { flex: none; height: 32px; position: relative; width: 32px; }\",\".framer-1p51L .framer-ud2pk4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-end; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-1p51L .framer-1dow9rl { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-end; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-1p51L .framer-7p1hi0-container, .framer-1p51L .framer-1fo6eac-container, .framer-1p51L .framer-1bgr2jc-container, .framer-1p51L .framer-1ks7dsa-container { flex: none; height: 44px; position: relative; width: auto; }\",\".framer-1p51L .framer-9n78li { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-1p51L .framer-1czoelk-container, .framer-1p51L .framer-s8pheq-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-1p51L .framer-1vxpyns { flex: 1 0 0px; height: 1px; overflow: visible; position: relative; width: 1px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-1p51L.framer-1taloum, .framer-1p51L .framer-k266jp, .framer-1p51L .framer-1xof3oo, .framer-1p51L .framer-l4csxm, .framer-1p51L .framer-ud2pk4, .framer-1p51L .framer-1dow9rl, .framer-1p51L .framer-9n78li { gap: 0px; } .framer-1p51L.framer-1taloum > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-1p51L.framer-1taloum > :first-child { margin-top: 0px; } .framer-1p51L.framer-1taloum > :last-child { margin-bottom: 0px; } .framer-1p51L .framer-k266jp > *, .framer-1p51L .framer-1xof3oo > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-1p51L .framer-k266jp > :first-child, .framer-1p51L .framer-1xof3oo > :first-child, .framer-1p51L .framer-l4csxm > :first-child, .framer-1p51L .framer-ud2pk4 > :first-child, .framer-1p51L .framer-1dow9rl > :first-child, .framer-1p51L .framer-9n78li > :first-child { margin-left: 0px; } .framer-1p51L .framer-k266jp > :last-child, .framer-1p51L .framer-1xof3oo > :last-child, .framer-1p51L .framer-l4csxm > :last-child, .framer-1p51L .framer-ud2pk4 > :last-child, .framer-1p51L .framer-1dow9rl > :last-child, .framer-1p51L .framer-9n78li > :last-child { margin-right: 0px; } .framer-1p51L .framer-l4csxm > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-1p51L .framer-ud2pk4 > *, .framer-1p51L .framer-1dow9rl > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } .framer-1p51L .framer-9n78li > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } }\",\".framer-1p51L.framer-v-y5ewwl.framer-1taloum, .framer-1p51L.framer-v-1vs7ztr.framer-1taloum, .framer-1p51L.framer-v-9aop7p.framer-1taloum { width: 810px; }\",\".framer-1p51L.framer-v-y5ewwl .framer-k266jp { gap: 60px; justify-content: flex-start; padding: 30px 20px 30px 20px; }\",\".framer-1p51L.framer-v-y5ewwl .framer-16hayvk, .framer-1p51L.framer-v-y5ewwl .framer-w9xfsn { order: 1; }\",\".framer-1p51L.framer-v-y5ewwl .framer-1xof3oo, .framer-1p51L.framer-v-9aop7p .framer-l4csxm { flex: 1 0 0px; gap: unset; justify-content: space-between; width: 1px; }\",\".framer-1p51L.framer-v-y5ewwl .framer-l4csxm { flex: 1 0 0px; gap: unset; height: null; justify-content: space-between; width: 1px; }\",\".framer-1p51L.framer-v-y5ewwl .framer-k1bxua-container, .framer-1p51L.framer-v-1vs7ztr .framer-k1bxua-container, .framer-1p51L.framer-v-9aop7p .framer-w9xfsn, .framer-1p51L.framer-v-1lip66u .framer-w9xfsn { order: 2; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-1p51L.framer-v-y5ewwl .framer-k266jp, .framer-1p51L.framer-v-y5ewwl .framer-1xof3oo, .framer-1p51L.framer-v-y5ewwl .framer-l4csxm { gap: 0px; } .framer-1p51L.framer-v-y5ewwl .framer-k266jp > * { margin: 0px; margin-left: calc(60px / 2); margin-right: calc(60px / 2); } .framer-1p51L.framer-v-y5ewwl .framer-k266jp > :first-child { margin-left: 0px; } .framer-1p51L.framer-v-y5ewwl .framer-k266jp > :last-child { margin-right: 0px; } .framer-1p51L.framer-v-y5ewwl .framer-1xof3oo > *, .framer-1p51L.framer-v-y5ewwl .framer-1xof3oo > :first-child, .framer-1p51L.framer-v-y5ewwl .framer-1xof3oo > :last-child, .framer-1p51L.framer-v-y5ewwl .framer-l4csxm > *, .framer-1p51L.framer-v-y5ewwl .framer-l4csxm > :first-child, .framer-1p51L.framer-v-y5ewwl .framer-l4csxm > :last-child { margin: 0px; } }\",\".framer-1p51L.framer-v-1vs7ztr .framer-k266jp, .framer-1p51L.framer-v-9aop7p .framer-k266jp { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 35px; justify-content: flex-start; padding: 30px 20px 30px 20px; }\",\".framer-1p51L.framer-v-1vs7ztr .framer-16hayvk { align-content: flex-start; align-items: flex-start; flex: none; flex-direction: column; gap: 40px; justify-content: flex-start; order: 0; width: 100%; }\",\".framer-1p51L.framer-v-1vs7ztr .framer-1xof3oo, .framer-1p51L.framer-v-1vs7ztr .framer-7p1hi0-container, .framer-1p51L.framer-v-1vs7ztr .framer-1fo6eac-container, .framer-1p51L.framer-v-1vs7ztr .framer-1bgr2jc-container, .framer-1p51L.framer-v-1vs7ztr .framer-1ks7dsa-container, .framer-1p51L.framer-v-1vs7ztr .framer-1czoelk-container, .framer-1p51L.framer-v-1vs7ztr .framer-s8pheq-container, .framer-1p51L.framer-v-9aop7p .framer-1xof3oo, .framer-1p51L.framer-v-9aop7p .framer-7p1hi0-container, .framer-1p51L.framer-v-9aop7p .framer-1fo6eac-container, .framer-1p51L.framer-v-9aop7p .framer-1bgr2jc-container, .framer-1p51L.framer-v-9aop7p .framer-1ks7dsa-container, .framer-1p51L.framer-v-9aop7p .framer-1czoelk-container, .framer-1p51L.framer-v-9aop7p .framer-s8pheq-container { width: 100%; }\",\".framer-1p51L.framer-v-1vs7ztr .framer-l4csxm { flex: 1 0 0px; gap: unset; height: min-content; justify-content: space-between; width: 1px; }\",\".framer-1p51L.framer-v-1vs7ztr .framer-w9xfsn { order: 0; }\",\".framer-1p51L.framer-v-1vs7ztr .framer-ud2pk4, .framer-1p51L.framer-v-1vs7ztr .framer-1dow9rl, .framer-1p51L.framer-v-9aop7p .framer-ud2pk4, .framer-1p51L.framer-v-9aop7p .framer-1dow9rl { align-content: flex-start; align-items: flex-start; flex-direction: column; width: 100%; }\",\".framer-1p51L.framer-v-1vs7ztr .framer-9n78li, .framer-1p51L.framer-v-9aop7p .framer-9n78li { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 24px; width: 100%; }\",\".framer-1p51L.framer-v-1vs7ztr .framer-1vxpyns, .framer-1p51L.framer-v-9aop7p .framer-1vxpyns { flex: none; order: 1; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-1p51L.framer-v-1vs7ztr .framer-k266jp, .framer-1p51L.framer-v-1vs7ztr .framer-16hayvk, .framer-1p51L.framer-v-1vs7ztr .framer-l4csxm, .framer-1p51L.framer-v-1vs7ztr .framer-ud2pk4, .framer-1p51L.framer-v-1vs7ztr .framer-1dow9rl, .framer-1p51L.framer-v-1vs7ztr .framer-9n78li { gap: 0px; } .framer-1p51L.framer-v-1vs7ztr .framer-k266jp > * { margin: 0px; margin-bottom: calc(35px / 2); margin-top: calc(35px / 2); } .framer-1p51L.framer-v-1vs7ztr .framer-k266jp > :first-child, .framer-1p51L.framer-v-1vs7ztr .framer-16hayvk > :first-child, .framer-1p51L.framer-v-1vs7ztr .framer-ud2pk4 > :first-child, .framer-1p51L.framer-v-1vs7ztr .framer-1dow9rl > :first-child, .framer-1p51L.framer-v-1vs7ztr .framer-9n78li > :first-child { margin-top: 0px; } .framer-1p51L.framer-v-1vs7ztr .framer-k266jp > :last-child, .framer-1p51L.framer-v-1vs7ztr .framer-16hayvk > :last-child, .framer-1p51L.framer-v-1vs7ztr .framer-ud2pk4 > :last-child, .framer-1p51L.framer-v-1vs7ztr .framer-1dow9rl > :last-child, .framer-1p51L.framer-v-1vs7ztr .framer-9n78li > :last-child { margin-bottom: 0px; } .framer-1p51L.framer-v-1vs7ztr .framer-16hayvk > *, .framer-1p51L.framer-v-1vs7ztr .framer-ud2pk4 > *, .framer-1p51L.framer-v-1vs7ztr .framer-1dow9rl > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-1p51L.framer-v-1vs7ztr .framer-l4csxm > *, .framer-1p51L.framer-v-1vs7ztr .framer-l4csxm > :first-child, .framer-1p51L.framer-v-1vs7ztr .framer-l4csxm > :last-child { margin: 0px; } .framer-1p51L.framer-v-1vs7ztr .framer-9n78li > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } }\",\".framer-1p51L.framer-v-9aop7p .framer-16hayvk { align-content: flex-start; align-items: flex-start; flex: none; flex-direction: column; gap: 56px; justify-content: flex-start; order: 0; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-1p51L.framer-v-9aop7p .framer-k266jp, .framer-1p51L.framer-v-9aop7p .framer-16hayvk, .framer-1p51L.framer-v-9aop7p .framer-l4csxm, .framer-1p51L.framer-v-9aop7p .framer-ud2pk4, .framer-1p51L.framer-v-9aop7p .framer-1dow9rl, .framer-1p51L.framer-v-9aop7p .framer-9n78li { gap: 0px; } .framer-1p51L.framer-v-9aop7p .framer-k266jp > * { margin: 0px; margin-bottom: calc(35px / 2); margin-top: calc(35px / 2); } .framer-1p51L.framer-v-9aop7p .framer-k266jp > :first-child, .framer-1p51L.framer-v-9aop7p .framer-16hayvk > :first-child, .framer-1p51L.framer-v-9aop7p .framer-ud2pk4 > :first-child, .framer-1p51L.framer-v-9aop7p .framer-1dow9rl > :first-child, .framer-1p51L.framer-v-9aop7p .framer-9n78li > :first-child { margin-top: 0px; } .framer-1p51L.framer-v-9aop7p .framer-k266jp > :last-child, .framer-1p51L.framer-v-9aop7p .framer-16hayvk > :last-child, .framer-1p51L.framer-v-9aop7p .framer-ud2pk4 > :last-child, .framer-1p51L.framer-v-9aop7p .framer-1dow9rl > :last-child, .framer-1p51L.framer-v-9aop7p .framer-9n78li > :last-child { margin-bottom: 0px; } .framer-1p51L.framer-v-9aop7p .framer-16hayvk > * { margin: 0px; margin-bottom: calc(56px / 2); margin-top: calc(56px / 2); } .framer-1p51L.framer-v-9aop7p .framer-l4csxm > *, .framer-1p51L.framer-v-9aop7p .framer-l4csxm > :first-child, .framer-1p51L.framer-v-9aop7p .framer-l4csxm > :last-child { margin: 0px; } .framer-1p51L.framer-v-9aop7p .framer-ud2pk4 > *, .framer-1p51L.framer-v-9aop7p .framer-1dow9rl > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-1p51L.framer-v-9aop7p .framer-9n78li > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } }\",\".framer-1p51L.framer-v-1lip66u .framer-k266jp { padding: 30px 24px 30px 24px; }\",\".framer-1p51L.framer-v-1lip66u .framer-1dow9rl { gap: 32px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-1p51L.framer-v-1lip66u .framer-1dow9rl { gap: 0px; } .framer-1p51L.framer-v-1lip66u .framer-1dow9rl > * { margin: 0px; margin-left: calc(32px / 2); margin-right: calc(32px / 2); } .framer-1p51L.framer-v-1lip66u .framer-1dow9rl > :first-child { margin-left: 0px; } .framer-1p51L.framer-v-1lip66u .framer-1dow9rl > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 104\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"WftyvbCmA\":{\"layout\":[\"fixed\",\"auto\"]},\"mOqEjUYY8\":{\"layout\":[\"fixed\",\"auto\"]},\"iCsJZbi3g\":{\"layout\":[\"fixed\",\"auto\"]},\"TwyjjKUqS\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerFpNI1eqHu=withCSS(Component,css,\"framer-1p51L\");export default FramerFpNI1eqHu;FramerFpNI1eqHu.displayName=\"Navigation\";FramerFpNI1eqHu.defaultProps={height:104,width:1200};addPropertyControls(FramerFpNI1eqHu,{variant:{options:[\"POQ6PoU1a\",\"WftyvbCmA\",\"mOqEjUYY8\",\"iCsJZbi3g\",\"TwyjjKUqS\"],optionTitles:[\"Desktop\",\"Phone\",\"Phone Expanded\",\"Variant 4\",\"Vertical Tablet\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerFpNI1eqHu,[{explicitInter:true,fonts:[]},...ElementsMenuIconFonts,...NavLinkFonts,...ButtonPrimaryFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerFpNI1eqHu\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"WftyvbCmA\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"mOqEjUYY8\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"iCsJZbi3g\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"TwyjjKUqS\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"104\",\"framerIntrinsicWidth\":\"1200\",\"framerColorSyntax\":\"true\",\"framerAutoSizeImages\":\"true\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}","// Generated by Framer (b4533c2)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,Link,ResolveLinks,RichText,SmartComponentScopedContainer,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useRouter,useVariantState,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import NavLink from\"https://framerusercontent.com/modules/7BkyUB8imUGT2JUDJgaZ/ATCiqgQgBZifC5PmLyFB/fjzDYkSHI.js\";const RichTextWithFXWithOptimizedAppearEffect=withOptimizedAppearEffect(withFX(RichText));const NavLinkFonts=getFonts(NavLink);const cycleOrder=[\"uaw_4TygP\",\"gFCdHKuE5\",\"suTXYFmcZ\"];const serializationHash=\"framer-KpGz6\";const variantClassNames={gFCdHKuE5:\"framer-v-1h06yql\",suTXYFmcZ:\"framer-v-mjsk91\",uaw_4TygP:\"framer-v-a94okz\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const transition2={damping:40,delay:0,mass:1,stiffness:150,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:80};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Vertical Tablet\":\"suTXYFmcZ\",Desktop:\"uaw_4TygP\",Mobile:\"gFCdHKuE5\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"uaw_4TygP\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"uaw_4TygP\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const JqTsv8u9S1qlm4b7=activeVariantCallback(async(...args)=>{setVariant(\"uaw_4TygP\");});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const router=useRouter();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-a94okz\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"uaw_4TygP\",ref:refBinding,style:{...style},...addPropertyOverrides({gFCdHKuE5:{\"data-framer-name\":\"Mobile\"},suTXYFmcZ:{\"data-framer-name\":\"Vertical Tablet\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-tnep6f\",layoutDependency:layoutDependency,layoutId:\"cypGBY8ah\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-13ffou0\",layoutDependency:layoutDependency,layoutId:\"R9Qw8WADi\",children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"eddhjzMea\"},motionChild:true,nodeId:\"ibT8i6rse\",scopeId:\"jlqV7ppWy\",children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-1onzkfl framer-y0aqd0\",\"data-framer-name\":\"v03d_two_tone\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"ibT8i6rse\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 202 52\"><g transform=\"translate(69.289 11.879)\"><path d=\"M 0 0 L 132.8 0 L 132.8 38.507 L 0 38.507 Z\" fill=\"transparent\"></path><path d=\"M 34.801 9.01 C 28.262 9.01 24.141 13.941 24.141 19.993 C 24.141 26.045 28.083 30.797 34.398 30.797 C 40.714 30.797 45.058 25.955 45.058 19.769 C 45.058 13.628 41.341 9.01 34.801 9.01 Z M 34.712 26.314 C 31.756 26.314 29.964 23.579 29.964 20.038 C 29.964 16.497 31.487 13.538 34.577 13.538 C 37.668 13.538 39.325 16.183 39.325 19.814 C 39.28 23.445 37.668 26.314 34.712 26.314 Z M 16.214 14.076 C 18.677 12.821 20.11 10.49 20.11 7.666 C 20.11 3.003 16.169 0.045 9.898 0.045 L 0 0.045 L 0 30.259 L 11.824 30.259 C 17.961 30.259 21.947 26.897 21.947 21.697 C 21.947 17.841 19.752 14.972 16.214 14.076 Z M 10.033 4.483 C 12.541 4.438 14.377 6.007 14.377 8.248 C 14.377 10.848 12.765 12.103 9.54 12.103 L 5.599 12.103 L 5.599 4.528 Z M 10.167 25.731 L 5.509 25.731 L 5.509 16.586 L 10.436 16.586 C 14.019 16.586 16.214 18.379 16.214 21.428 C 16.214 24.431 14.422 25.731 10.167 25.731 Z M 80.71 18.334 L 78.202 17.169 C 76.097 16.183 75.47 15.824 75.47 14.928 C 75.47 13.897 76.635 13.403 78.337 13.403 C 80.442 13.403 83.263 14.703 84.607 15.824 L 85.189 11.162 C 83.577 9.997 81.293 8.966 78.426 8.966 C 73.589 8.966 70.409 11.386 70.409 15.107 C 70.409 18.021 71.797 19.769 75.336 21.338 L 77.799 22.459 C 80.039 23.445 80.755 23.983 80.755 24.834 C 80.755 25.91 79.501 26.359 77.978 26.359 C 75.38 26.359 73.499 25.597 70.991 23.983 L 70.454 28.466 C 72.245 29.855 74.888 30.752 77.754 30.752 C 82.771 30.752 85.861 28.421 85.861 24.566 C 85.816 21.741 84.562 20.128 80.71 18.334 Z M 127.202 9.638 L 122.275 23.848 L 117.886 9.638 L 112.287 9.638 L 119.812 30.572 L 119.677 30.931 C 118.826 33.128 117.886 34.024 116.408 34.024 C 115.512 34.024 114.437 33.441 113.496 32.903 L 112.914 37.252 C 113.765 37.879 115.243 38.552 117.124 38.552 C 120.349 38.552 122.32 36.714 124.111 32.231 L 132.89 9.683 Z M 58.181 8.966 C 51.642 8.966 47.522 13.897 47.522 19.948 C 47.522 26 51.463 30.752 57.778 30.752 C 64.094 30.752 68.438 25.91 68.438 19.724 C 68.438 13.538 64.721 8.966 58.181 8.966 Z M 58.047 26.224 C 55.091 26.224 53.299 23.49 53.299 19.948 C 53.299 16.407 54.822 13.448 57.913 13.448 C 61.003 13.448 62.66 16.093 62.66 19.724 C 62.66 23.4 61.003 26.224 58.047 26.224 Z M 110.585 0 L 105.165 0 L 105.165 30.259 L 110.585 30.259 Z M 97.193 26.09 C 96.118 26.09 95.76 25.731 95.76 24.431 L 95.76 13.986 L 101.896 13.986 L 101.896 9.593 L 95.67 9.593 L 95.67 3.855 L 90.385 3.855 L 90.385 9.593 L 87.115 9.593 L 87.115 13.986 L 90.34 13.986 L 90.34 25.103 C 90.34 28.824 92.356 30.841 96.163 30.841 C 98.402 30.841 101.269 29.766 102.747 28.376 L 102.299 23.893 C 100.642 25.193 98.537 26.09 97.193 26.09 Z\" fill=\"rgb(17,24,39)\"></path></g><path d=\"M 14.019 0 L 38.25 0 C 45.999 0 52.269 6.276 52.269 14.031 L 52.269 38.148 C 52.269 45.903 45.999 52.179 38.25 52.179 L 14.019 52.179 C 6.271 52.134 0 45.859 0 38.148 L 0 14.031 C 0 6.276 6.271 0 14.019 0 Z\" fill=\"rgb(239,233,255)\"></path><path d=\"M 28.755 16.631 C 28.889 10.4 26.381 7.89 24.903 6.903 C 24.679 6.769 24.769 6.366 25.037 6.366 L 37.265 6.366 C 42.012 6.366 45.775 10.221 45.775 14.883 L 45.775 16.497 C 45.775 21.248 41.923 25.014 37.265 25.014 C 32.562 25.238 28.755 21.293 28.755 16.631 Z M 6.898 27.39 C 7.883 25.91 10.391 23.4 16.617 23.534 C 21.275 23.534 25.216 19.769 25.082 15.017 C 25.082 10.355 21.32 6.5 16.572 6.5 L 14.96 6.5 C 10.302 6.5 6.45 10.266 6.45 15.017 L 6.45 27.255 C 6.36 27.524 6.718 27.614 6.898 27.39 Z M 35.652 28.645 C 41.878 28.779 44.386 26.269 45.372 24.79 C 45.506 24.566 45.909 24.655 45.909 24.924 L 45.909 37.252 C 45.909 42.003 42.057 45.769 37.399 45.769 L 35.787 45.769 C 31.039 45.769 27.277 41.914 27.277 37.252 C 27.053 32.5 30.994 28.645 35.652 28.645 Z M 23.559 35.548 C 23.425 41.779 25.933 44.29 27.411 45.276 C 27.635 45.41 27.545 45.814 27.277 45.814 L 15.049 45.814 C 10.302 45.814 6.539 41.959 6.539 37.297 L 6.539 35.683 C 6.539 30.931 10.391 27.166 15.049 27.166 C 19.707 26.986 23.559 30.931 23.559 35.548 Z M 26.56 22.414 C 26.381 22.01 25.799 22.01 25.62 22.414 C 24.992 23.848 23.873 25.014 22.439 25.641 C 22.036 25.821 22.036 26.359 22.439 26.538 C 23.873 27.166 24.992 28.331 25.62 29.766 C 25.799 30.169 26.381 30.169 26.56 29.766 C 27.187 28.331 28.307 27.166 29.74 26.538 C 30.143 26.359 30.143 25.821 29.74 25.641 C 28.307 24.969 27.187 23.848 26.56 22.414 Z\" fill=\"rgb(40,0,143)\"></path></svg>',svgContentId:12881065896,withExternalLayout:true})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1e8hwn1\",\"data-framer-name\":\"Links\",layoutDependency:layoutDependency,layoutId:\"AmJQsn_o7\",children:[/*#__PURE__*/_jsx(Link,{href:\"https://www.instagram.com/goboostly/\",motionChild:true,nodeId:\"fQIqXbNla\",scopeId:\"jlqV7ppWy\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1c01p49 framer-y0aqd0\",layoutDependency:layoutDependency,layoutId:\"fQIqXbNla\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-em2gtn\",\"data-framer-name\":\"logo_instagram_1_\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"rJZ7N8QJ4\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\"><g transform=\"translate(1 1)\"><path d=\"M 11 1.982 C 13.937 1.982 14.285 1.993 15.445 2.046 C 16.142 2.054 16.833 2.182 17.487 2.425 C 17.965 2.601 18.397 2.882 18.752 3.248 C 19.118 3.603 19.399 4.035 19.575 4.513 C 19.818 5.167 19.946 5.858 19.954 6.555 C 20.007 7.715 20.018 8.063 20.018 11 C 20.018 13.937 20.007 14.285 19.954 15.445 C 19.946 16.142 19.818 16.833 19.575 17.487 C 19.205 18.446 18.446 19.205 17.487 19.575 C 16.833 19.818 16.142 19.946 15.445 19.954 C 14.285 20.007 13.937 20.018 11 20.018 C 8.063 20.018 7.715 20.007 6.555 19.954 C 5.858 19.946 5.167 19.818 4.513 19.575 C 4.035 19.399 3.603 19.118 3.248 18.752 C 2.882 18.397 2.601 17.965 2.425 17.487 C 2.182 16.833 2.054 16.142 2.046 15.445 C 1.993 14.285 1.982 13.937 1.982 11 C 1.982 8.063 1.993 7.715 2.046 6.555 C 2.054 5.858 2.182 5.167 2.425 4.513 C 2.601 4.035 2.882 3.603 3.248 3.248 C 3.603 2.882 4.035 2.601 4.513 2.425 C 5.167 2.182 5.858 2.054 6.555 2.046 C 7.715 1.993 8.063 1.982 11 1.982 M 11 0 C 8.013 0 7.638 0.013 6.465 0.066 C 5.553 0.085 4.65 0.258 3.795 0.577 C 2.316 1.15 1.147 2.32 0.577 3.8 C 0.258 4.655 0.085 5.558 0.066 6.47 C 0.013 7.638 0 8.013 0 11 C 0 13.987 0.013 14.362 0.066 15.535 C 0.085 16.447 0.258 17.35 0.577 18.205 C 1.15 19.684 2.32 20.853 3.8 21.423 C 4.655 21.742 5.558 21.915 6.47 21.934 C 7.638 21.987 8.013 22 11 22 C 13.987 22 14.362 21.987 15.535 21.934 C 16.447 21.915 17.35 21.742 18.205 21.423 C 19.684 20.85 20.853 19.68 21.423 18.2 C 21.742 17.345 21.915 16.442 21.934 15.53 C 21.987 14.362 22 13.987 22 11 C 22 8.013 21.987 7.638 21.934 6.465 C 21.915 5.553 21.742 4.65 21.423 3.795 C 20.85 2.316 19.68 1.147 18.2 0.577 C 17.345 0.258 16.442 0.085 15.53 0.066 C 14.362 0.013 13.987 0 11 0 Z\" fill=\"#111827\"></path><path d=\"M 11 5.351 C 7.88 5.351 5.351 7.88 5.351 11 C 5.351 14.12 7.88 16.649 11 16.649 C 14.12 16.649 16.649 14.12 16.649 11 C 16.649 7.88 14.12 5.351 11 5.351 Z M 11 14.667 C 8.975 14.667 7.333 13.025 7.333 11 C 7.333 8.975 8.975 7.333 11 7.333 C 13.025 7.333 14.667 8.975 14.667 11 C 14.667 13.025 13.025 14.667 11 14.667 Z\" fill=\"#111827\"></path><path d=\"M 15.552 5.128 C 15.552 4.399 16.143 3.808 16.872 3.808 C 17.601 3.808 18.192 4.399 18.192 5.128 C 18.192 5.857 17.601 6.448 16.872 6.448 C 16.143 6.448 15.552 5.857 15.552 5.128 Z\" fill=\"#111827\"></path></g></svg>',svgContentId:10153765635,withExternalLayout:true})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-glk8s6\",layoutDependency:layoutDependency,layoutId:\"lHZhJCkHq\",children:/*#__PURE__*/_jsx(Link,{href:\"https://www.linkedin.com/company/goboostly/\",motionChild:true,nodeId:\"lHwg4YTha\",scopeId:\"jlqV7ppWy\",children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-5fzuec framer-y0aqd0\",\"data-framer-name\":\"logo_linkedin_1_\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"lHwg4YTha\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\"><path d=\"M 23 0 L 1 0 C 0.4 0 0 0.4 0 1 L 0 23 C 0 23.6 0.4 24 1 24 L 23 24 C 23.6 24 24 23.6 24 23 L 24 1 C 24 0.4 23.6 0 23 0 Z M 7.1 20.5 L 3.6 20.5 L 3.6 9 L 7.2 9 L 7.2 20.5 Z M 5.3 7.4 C 4.2 7.4 3.2 6.5 3.2 5.3 C 3.2 4.2 4.1 3.2 5.3 3.2 C 6.4 3.2 7.4 4.1 7.4 5.3 C 7.4 6.5 6.5 7.4 5.3 7.4 Z M 20.5 20.5 L 16.9 20.5 L 16.9 14.9 C 16.9 13.6 16.9 11.9 15.1 11.9 C 13.2 11.9 13 13.3 13 14.8 L 13 20.5 L 9.4 20.5 L 9.4 9 L 12.8 9 L 12.8 10.6 C 13.3 9.7 14.4 8.8 16.2 8.8 C 19.8 8.8 20.5 11.2 20.5 14.3 Z\" fill=\"#111827\"></path></svg>',svgContentId:11534960314,withExternalLayout:true})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-m8se7b\",layoutDependency:layoutDependency,layoutId:\"SWfOhfxKI\",children:/*#__PURE__*/_jsx(Link,{href:\"https://www.facebook.com/GoBoostly\",motionChild:true,nodeId:\"gGEYivt0D\",scopeId:\"jlqV7ppWy\",children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-1e7cwf7 framer-y0aqd0\",\"data-framer-name\":\"logo_fb_simple_2_\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"gGEYivt0D\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\"><path d=\"M 9.032 23 L 9 13 L 5 13 L 5 9 L 9 9 L 9 6.5 C 9 2.789 11.298 1 14.61 1 C 16.195 1 17.558 1.118 17.955 1.17 L 17.955 5.05 L 15.66 5.05 C 13.86 5.05 13.51 5.906 13.51 7.162 L 13.51 9 L 18.751 9 L 16.751 13 L 13.511 13 L 13.511 23 Z\" fill=\"#111827\"></path></svg>',svgContentId:10179794288,withExternalLayout:true})})})]}),/*#__PURE__*/_jsx(RichTextWithFXWithOptimizedAppearEffect,{__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{style:{\"--font-selector\":\"R0Y7RmlndHJlZS1yZWd1bGFy\",\"--framer-font-family\":'\"Figtree\", \"Figtree Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"left\"},children:\"\\xa9 2025 Boostly. All rights reserved.\"})}),className:\"framer-cnlq58\",\"data-framer-appear-id\":\"cnlq58\",fonts:[\"GF;Figtree-regular\"],initial:animation1,layoutDependency:layoutDependency,layoutId:\"pXbkvtKmF\",optimized:true,style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({gFCdHKuE5:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{style:{\"--font-selector\":\"R0Y7RmlndHJlZS1yZWd1bGFy\",\"--framer-font-family\":'\"Figtree\", \"Figtree Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"center\"},children:\"\\xa9 2025 Boostly. All rights reserved.\"})})}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-9xkbh5\",\"data-framer-name\":\"Links\",layoutDependency:layoutDependency,layoutId:\"nPkobq8wn\",children:[/*#__PURE__*/_jsx(RichTextWithFXWithOptimizedAppearEffect,{__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{style:{\"--font-selector\":\"R0Y7RmlndHJlZS02MDA=\",\"--framer-font-family\":'\"Figtree\", \"Figtree Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"left\"},children:\"Sitemap\"})}),className:\"framer-13cfpm2\",\"data-framer-appear-id\":\"13cfpm2\",fonts:[\"GF;Figtree-600\"],initial:animation1,layoutDependency:layoutDependency,layoutId:\"K0QKXTnLX\",optimized:true,style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({gFCdHKuE5:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{style:{\"--font-selector\":\"R0Y7RmlndHJlZS02MDA=\",\"--framer-font-family\":'\"Figtree\", \"Figtree Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"center\"},children:\"Sitemap\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,y:(componentViewport?.y||0)+40+0+0+32,...addPropertyOverrides({gFCdHKuE5:{y:(componentViewport?.y||0)+40+0+0+228+0+40}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1k132gc-container\",layoutDependency:layoutDependency,layoutId:\"qDH8lMf9M-container\",nodeId:\"qDH8lMf9M\",rendersWithMotion:true,scopeId:\"jlqV7ppWy\",children:/*#__PURE__*/_jsx(NavLink,{height:\"100%\",id:\"qDH8lMf9M\",layoutId:\"qDH8lMf9M\",nWfkobAl9:\"How it Works\",style:{height:\"100%\"},TMHh0MkWN:\"#how-it-works\",variant:\"BbPwKlf27\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,y:(componentViewport?.y||0)+40+0+0+76,...addPropertyOverrides({gFCdHKuE5:{y:(componentViewport?.y||0)+40+0+0+228+0+92}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-mdpcqy-container\",layoutDependency:layoutDependency,layoutId:\"PjZ0BBvMD-container\",nodeId:\"PjZ0BBvMD\",rendersWithMotion:true,scopeId:\"jlqV7ppWy\",children:/*#__PURE__*/_jsx(NavLink,{height:\"100%\",id:\"PjZ0BBvMD\",layoutId:\"PjZ0BBvMD\",nWfkobAl9:\"Reviews\",style:{height:\"100%\"},TMHh0MkWN:\"#reviews\",variant:\"BbPwKlf27\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"EyqgBsbTN\"},implicitPathVariables:undefined},{href:{webPageId:\"EyqgBsbTN\"},implicitPathVariables:undefined},{href:{webPageId:\"EyqgBsbTN\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,y:(componentViewport?.y||0)+40+0+0+120,...addPropertyOverrides({gFCdHKuE5:{y:(componentViewport?.y||0)+40+0+0+228+0+144}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-xaznxp-container\",layoutDependency:layoutDependency,layoutId:\"mjqOX0rla-container\",nodeId:\"mjqOX0rla\",rendersWithMotion:true,scopeId:\"jlqV7ppWy\",children:/*#__PURE__*/_jsx(NavLink,{height:\"100%\",id:\"mjqOX0rla\",layoutId:\"mjqOX0rla\",nWfkobAl9:\"Patent\",style:{height:\"100%\"},TMHh0MkWN:resolvedLinks[0],variant:\"BbPwKlf27\",width:\"100%\",...addPropertyOverrides({gFCdHKuE5:{TMHh0MkWN:resolvedLinks[1]},suTXYFmcZ:{TMHh0MkWN:resolvedLinks[2]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"kVbFFvahi\"},implicitPathVariables:undefined},{href:{webPageId:\"kVbFFvahi\"},implicitPathVariables:undefined},{href:{webPageId:\"kVbFFvahi\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,y:(componentViewport?.y||0)+40+0+0+164,...addPropertyOverrides({gFCdHKuE5:{y:(componentViewport?.y||0)+40+0+0+228+0+196}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-8j8sxe-container\",layoutDependency:layoutDependency,layoutId:\"fDELIH4bn-container\",nodeId:\"fDELIH4bn\",rendersWithMotion:true,scopeId:\"jlqV7ppWy\",children:/*#__PURE__*/_jsx(NavLink,{height:\"100%\",id:\"fDELIH4bn\",layoutId:\"fDELIH4bn\",nWfkobAl9:\"Careers\",style:{height:\"100%\"},TMHh0MkWN:resolvedLinks1[0],variant:\"BbPwKlf27\",width:\"100%\",...addPropertyOverrides({gFCdHKuE5:{TMHh0MkWN:resolvedLinks1[1]},suTXYFmcZ:{TMHh0MkWN:resolvedLinks1[2]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,y:(componentViewport?.y||0)+40+0+0+208,...addPropertyOverrides({gFCdHKuE5:{y:(componentViewport?.y||0)+40+0+0+228+0+248}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1kxut0q-container\",layoutDependency:layoutDependency,layoutId:\"Qw6_aLO83-container\",nodeId:\"Qw6_aLO83\",rendersWithMotion:true,scopeId:\"jlqV7ppWy\",children:/*#__PURE__*/_jsx(NavLink,{height:\"100%\",id:\"Qw6_aLO83\",layoutId:\"Qw6_aLO83\",nWfkobAl9:\"Consumer Terms of Use\",style:{height:\"100%\"},TMHh0MkWN:\"https://go.boostly.com/terms_of_use.asp\",variant:\"BbPwKlf27\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"rp0gbFN9q\"},implicitPathVariables:undefined},{href:{webPageId:\"rp0gbFN9q\"},implicitPathVariables:undefined},{href:{webPageId:\"rp0gbFN9q\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,y:(componentViewport?.y||0)+40+0+0+252,...addPropertyOverrides({gFCdHKuE5:{y:(componentViewport?.y||0)+40+0+0+228+0+300}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-10qz6lf-container\",layoutDependency:layoutDependency,layoutId:\"juF8ayxdn-container\",nodeId:\"juF8ayxdn\",rendersWithMotion:true,scopeId:\"jlqV7ppWy\",children:/*#__PURE__*/_jsx(NavLink,{height:\"100%\",id:\"juF8ayxdn\",layoutId:\"juF8ayxdn\",nWfkobAl9:\"Company Terms of Use\",style:{height:\"100%\"},TMHh0MkWN:resolvedLinks2[0],variant:\"BbPwKlf27\",width:\"100%\",...addPropertyOverrides({gFCdHKuE5:{TMHh0MkWN:resolvedLinks2[1]},suTXYFmcZ:{TMHh0MkWN:resolvedLinks2[2]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"R3v4susuO\"},implicitPathVariables:undefined},{href:{webPageId:\"R3v4susuO\"},implicitPathVariables:undefined},{href:{webPageId:\"R3v4susuO\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,y:(componentViewport?.y||0)+40+0+0+296,...addPropertyOverrides({gFCdHKuE5:{y:(componentViewport?.y||0)+40+0+0+228+0+352}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-6q8d9-container\",layoutDependency:layoutDependency,layoutId:\"CP4CZGhq5-container\",nodeId:\"CP4CZGhq5\",rendersWithMotion:true,scopeId:\"jlqV7ppWy\",children:/*#__PURE__*/_jsx(NavLink,{height:\"100%\",id:\"CP4CZGhq5\",JqTsv8u9S:JqTsv8u9S1qlm4b7,layoutId:\"CP4CZGhq5\",nWfkobAl9:\"Privacy\",style:{height:\"100%\"},TMHh0MkWN:resolvedLinks3[0],variant:\"BbPwKlf27\",width:\"100%\",...addPropertyOverrides({gFCdHKuE5:{TMHh0MkWN:resolvedLinks3[1]},suTXYFmcZ:{TMHh0MkWN:resolvedLinks3[2]}},baseVariant,gestureVariant)})})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-e9unl0\",\"data-framer-name\":\"Links\",layoutDependency:layoutDependency,layoutId:\"zaUGbF3Nb\",children:[/*#__PURE__*/_jsx(RichTextWithFXWithOptimizedAppearEffect,{__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{style:{\"--font-selector\":\"R0Y7RmlndHJlZS02MDA=\",\"--framer-font-family\":'\"Figtree\", \"Figtree Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"left\"},children:\"Contact\"})}),className:\"framer-1ukg9tc\",\"data-framer-appear-id\":\"1ukg9tc\",fonts:[\"GF;Figtree-600\"],initial:animation1,layoutDependency:layoutDependency,layoutId:\"YjytW8u1h\",optimized:true,style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({gFCdHKuE5:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{style:{\"--font-selector\":\"R0Y7RmlndHJlZS02MDA=\",\"--framer-font-family\":'\"Figtree\", \"Figtree Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"center\"},children:\"Contact\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,y:(componentViewport?.y||0)+40+0+0+32,...addPropertyOverrides({gFCdHKuE5:{y:(componentViewport?.y||0)+40+0+0+664+0+40}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1zu9c3-container\",layoutDependency:layoutDependency,layoutId:\"Oixf0IlE5-container\",nodeId:\"Oixf0IlE5\",rendersWithMotion:true,scopeId:\"jlqV7ppWy\",children:/*#__PURE__*/_jsx(NavLink,{height:\"100%\",id:\"Oixf0IlE5\",layoutId:\"Oixf0IlE5\",nWfkobAl9:\"sales@boostly.com\",style:{height:\"100%\"},TMHh0MkWN:\"mailto:sales@boostly.com\",variant:\"BbPwKlf27\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,y:(componentViewport?.y||0)+40+0+0+76,...addPropertyOverrides({gFCdHKuE5:{y:(componentViewport?.y||0)+40+0+0+664+0+92}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-xyvnkz-container\",layoutDependency:layoutDependency,layoutId:\"zxxTW_X5z-container\",nodeId:\"zxxTW_X5z\",rendersWithMotion:true,scopeId:\"jlqV7ppWy\",children:/*#__PURE__*/_jsx(NavLink,{height:\"100%\",id:\"zxxTW_X5z\",layoutId:\"zxxTW_X5z\",nWfkobAl9:\"(800) 720-7738\",style:{height:\"100%\"},TMHh0MkWN:\"tel:8007207738\",variant:\"BbPwKlf27\",width:\"100%\"})})})]})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-KpGz6.framer-y0aqd0, .framer-KpGz6 .framer-y0aqd0 { display: block; }\",\".framer-KpGz6.framer-a94okz { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: visible; padding: 40px 64px 40px 64px; position: relative; width: 1200px; }\",\".framer-KpGz6 .framer-tnep6f { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; max-width: 1260px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-KpGz6 .framer-13ffou0 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; max-width: 1260px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-KpGz6 .framer-1onzkfl { flex: none; height: 52px; position: relative; text-decoration: none; width: 202px; }\",\".framer-KpGz6 .framer-1e8hwn1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-end; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-KpGz6 .framer-1c01p49 { flex: none; height: 24px; overflow: visible; position: relative; text-decoration: none; width: 24px; }\",\".framer-KpGz6 .framer-em2gtn { flex: none; height: 24px; left: calc(50.00000000000002% - 24px / 2); position: absolute; top: calc(50.00000000000002% - 24px / 2); width: 24px; }\",\".framer-KpGz6 .framer-glk8s6, .framer-KpGz6 .framer-m8se7b { flex: none; height: 24px; overflow: visible; position: relative; width: 24px; }\",\".framer-KpGz6 .framer-5fzuec, .framer-KpGz6 .framer-1e7cwf7 { flex: none; height: 24px; left: calc(50.00000000000002% - 24px / 2); position: absolute; text-decoration: none; top: calc(50.00000000000002% - 24px / 2); width: 24px; }\",\".framer-KpGz6 .framer-cnlq58 { flex: none; height: 32px; max-width: 564px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-KpGz6 .framer-9xkbh5, .framer-KpGz6 .framer-e9unl0 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-KpGz6 .framer-13cfpm2, .framer-KpGz6 .framer-1ukg9tc { flex: none; height: 32px; max-width: 564px; position: relative; white-space: pre-wrap; width: 100px; word-break: break-word; word-wrap: break-word; }\",\".framer-KpGz6 .framer-1k132gc-container, .framer-KpGz6 .framer-mdpcqy-container, .framer-KpGz6 .framer-xaznxp-container, .framer-KpGz6 .framer-8j8sxe-container, .framer-KpGz6 .framer-1kxut0q-container, .framer-KpGz6 .framer-10qz6lf-container, .framer-KpGz6 .framer-6q8d9-container, .framer-KpGz6 .framer-1zu9c3-container, .framer-KpGz6 .framer-xyvnkz-container { flex: none; height: 44px; position: relative; width: auto; }\",\".framer-KpGz6.framer-v-1h06yql.framer-a94okz { align-content: center; align-items: center; flex-direction: column; justify-content: flex-start; }\",\".framer-KpGz6.framer-v-1h06yql .framer-tnep6f { flex: none; flex-direction: column; gap: 40px; justify-content: flex-start; width: 100%; }\",\".framer-KpGz6.framer-v-1h06yql .framer-13ffou0 { align-content: center; align-items: center; flex: none; gap: 40px; width: 100%; }\",\".framer-KpGz6.framer-v-1h06yql .framer-cnlq58, .framer-KpGz6.framer-v-mjsk91 .framer-13ffou0 { max-width: unset; }\",\".framer-KpGz6.framer-v-1h06yql .framer-9xkbh5, .framer-KpGz6.framer-v-1h06yql .framer-e9unl0 { align-content: center; align-items: center; flex: none; gap: 8px; justify-content: flex-start; width: 100%; }\",\".framer-KpGz6.framer-v-mjsk91 .framer-9xkbh5, .framer-KpGz6.framer-v-mjsk91 .framer-e9unl0 { flex: none; width: min-content; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 420\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"gFCdHKuE5\":{\"layout\":[\"fixed\",\"auto\"]},\"suTXYFmcZ\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerjlqV7ppWy=withCSS(Component,css,\"framer-KpGz6\");export default FramerjlqV7ppWy;FramerjlqV7ppWy.displayName=\"Footer\";FramerjlqV7ppWy.defaultProps={height:420,width:1200};addPropertyControls(FramerjlqV7ppWy,{variant:{options:[\"uaw_4TygP\",\"gFCdHKuE5\",\"suTXYFmcZ\"],optionTitles:[\"Desktop\",\"Mobile\",\"Vertical Tablet\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerjlqV7ppWy,[{explicitInter:true,fonts:[{family:\"Figtree\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/figtree/v8/_Xmz-HUzqDCFdgfMsYiV_F7wfS-Bs_d_QF5bwkEU4HTy.woff2\",weight:\"400\"},{family:\"Figtree\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/figtree/v8/_Xmz-HUzqDCFdgfMsYiV_F7wfS-Bs_ehR15bwkEU4HTy.woff2\",weight:\"600\"}]},...NavLinkFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerjlqV7ppWy\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"420\",\"framerAutoSizeImages\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"gFCdHKuE5\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"suTXYFmcZ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"1200\",\"framerColorSyntax\":\"true\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./jlqV7ppWy.map","import { ControlType } from \"framer\";\nexport const fontStack = `\"Inter\", system-ui, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, Helvetica, Arial, sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\"`;\nexport const containerStyles = {\n    position: \"relative\",\n    width: \"100%\",\n    height: \"100%\",\n    display: \"flex\",\n    justifyContent: \"center\",\n    alignItems: \"center\"\n};\nexport const emptyStateStyle = {\n    ...containerStyles,\n    borderRadius: 6,\n    background: \"rgba(136, 85, 255, 0.3)\",\n    color: \"#85F\",\n    border: \"1px dashed #85F\",\n    flexDirection: \"column\"\n};\nexport const defaultEvents = {\n    onClick: {\n        type: ControlType.EventHandler\n    },\n    onMouseEnter: {\n        type: ControlType.EventHandler\n    },\n    onMouseLeave: {\n        type: ControlType.EventHandler\n    }\n};\nexport const fontSizeOptions = {\n    type: ControlType.Number,\n    title: \"Font Size\",\n    min: 2,\n    max: 200,\n    step: 1,\n    displayStepper: true\n};\nexport const fontControls = {\n    font: {\n        type: ControlType.Boolean,\n        title: \"Font\",\n        defaultValue: false,\n        disabledTitle: \"Default\",\n        enabledTitle: \"Custom\"\n    },\n    fontFamily: {\n        type: ControlType.String,\n        title: \"Family\",\n        placeholder: \"Inter\",\n        hidden: ({ font  })=>!font\n    },\n    fontWeight: {\n        type: ControlType.Enum,\n        title: \"Weight\",\n        options: [\n            100,\n            200,\n            300,\n            400,\n            500,\n            600,\n            700,\n            800,\n            900\n        ],\n        optionTitles: [\n            \"Thin\",\n            \"Extra-light\",\n            \"Light\",\n            \"Regular\",\n            \"Medium\",\n            \"Semi-bold\",\n            \"Bold\",\n            \"Extra-bold\",\n            \"Black\", \n        ],\n        hidden: ({ font  })=>!font\n    }\n};\n// @TODO check if we're missing anything here — there doesn't seem to be a reliable browser API for this\nexport const localeOptions = {\n    af: \"Afrikaans\",\n    sq: \"Albanian\",\n    an: \"Aragonese\",\n    ar: \"Arabic (Standard)\",\n    \"ar-dz\": \"Arabic (Algeria)\",\n    \"ar-bh\": \"Arabic (Bahrain)\",\n    \"ar-eg\": \"Arabic (Egypt)\",\n    \"ar-iq\": \"Arabic (Iraq)\",\n    \"ar-jo\": \"Arabic (Jordan)\",\n    \"ar-kw\": \"Arabic (Kuwait)\",\n    \"ar-lb\": \"Arabic (Lebanon)\",\n    \"ar-ly\": \"Arabic (Libya)\",\n    \"ar-ma\": \"Arabic (Morocco)\",\n    \"ar-om\": \"Arabic (Oman)\",\n    \"ar-qa\": \"Arabic (Qatar)\",\n    \"ar-sa\": \"Arabic (Saudi Arabia)\",\n    \"ar-sy\": \"Arabic (Syria)\",\n    \"ar-tn\": \"Arabic (Tunisia)\",\n    \"ar-ae\": \"Arabic (U.A.E.)\",\n    \"ar-ye\": \"Arabic (Yemen)\",\n    hy: \"Armenian\",\n    as: \"Assamese\",\n    ast: \"Asturian\",\n    az: \"Azerbaijani\",\n    eu: \"Basque\",\n    bg: \"Bulgarian\",\n    be: \"Belarusian\",\n    bn: \"Bengali\",\n    bs: \"Bosnian\",\n    br: \"Breton\",\n    my: \"Burmese\",\n    ca: \"Catalan\",\n    ch: \"Chamorro\",\n    ce: \"Chechen\",\n    zh: \"Chinese\",\n    \"zh-hk\": \"Chinese (Hong Kong)\",\n    \"zh-cn\": \"Chinese (PRC)\",\n    \"zh-sg\": \"Chinese (Singapore)\",\n    \"zh-tw\": \"Chinese (Taiwan)\",\n    cv: \"Chuvash\",\n    co: \"Corsican\",\n    cr: \"Cree\",\n    hr: \"Croatian\",\n    cs: \"Czech\",\n    da: \"Danish\",\n    nl: \"Dutch (Standard)\",\n    \"nl-be\": \"Dutch (Belgian)\",\n    en: \"English\",\n    \"en-au\": \"English (Australia)\",\n    \"en-bz\": \"English (Belize)\",\n    \"en-ca\": \"English (Canada)\",\n    \"en-ie\": \"English (Ireland)\",\n    \"en-jm\": \"English (Jamaica)\",\n    \"en-nz\": \"English (New Zealand)\",\n    \"en-ph\": \"English (Philippines)\",\n    \"en-za\": \"English (South Africa)\",\n    \"en-tt\": \"English (Trinidad & Tobago)\",\n    \"en-gb\": \"English (United Kingdom)\",\n    \"en-us\": \"English (United States)\",\n    \"en-zw\": \"English (Zimbabwe)\",\n    eo: \"Esperanto\",\n    et: \"Estonian\",\n    fo: \"Faeroese\",\n    fa: \"Farsi\",\n    fj: \"Fijian\",\n    fi: \"Finnish\",\n    fr: \"French (Standard)\",\n    \"fr-be\": \"French (Belgium)\",\n    \"fr-ca\": \"French (Canada)\",\n    \"fr-fr\": \"French (France)\",\n    \"fr-lu\": \"French (Luxembourg)\",\n    \"fr-mc\": \"French (Monaco)\",\n    \"fr-ch\": \"French (Switzerland)\",\n    fy: \"Frisian\",\n    fur: \"Friulian\",\n    gd: \"Gaelic (Scots)\",\n    \"gd-ie\": \"Gaelic (Irish)\",\n    gl: \"Galacian\",\n    ka: \"Georgian\",\n    de: \"German (Standard)\",\n    \"de-at\": \"German (Austria)\",\n    \"de-de\": \"German (Germany)\",\n    \"de-li\": \"German (Liechtenstein)\",\n    \"de-lu\": \"German (Luxembourg)\",\n    \"de-ch\": \"German (Switzerland)\",\n    el: \"Greek\",\n    gu: \"Gujurati\",\n    ht: \"Haitian\",\n    he: \"Hebrew\",\n    hi: \"Hindi\",\n    hu: \"Hungarian\",\n    is: \"Icelandic\",\n    id: \"Indonesian\",\n    iu: \"Inuktitut\",\n    ga: \"Irish\",\n    it: \"Italian (Standard)\",\n    \"it-ch\": \"Italian (Switzerland)\",\n    ja: \"Japanese\",\n    kn: \"Kannada\",\n    ks: \"Kashmiri\",\n    kk: \"Kazakh\",\n    km: \"Khmer\",\n    ky: \"Kirghiz\",\n    tlh: \"Klingon\",\n    ko: \"Korean\",\n    \"ko-kp\": \"Korean (North Korea)\",\n    \"ko-kr\": \"Korean (South Korea)\",\n    la: \"Latin\",\n    lv: \"Latvian\",\n    lt: \"Lithuanian\",\n    lb: \"Luxembourgish\",\n    mk: \"FYRO Macedonian\",\n    ms: \"Malay\",\n    ml: \"Malayalam\",\n    mt: \"Maltese\",\n    mi: \"Maori\",\n    mr: \"Marathi\",\n    mo: \"Moldavian\",\n    nv: \"Navajo\",\n    ng: \"Ndonga\",\n    ne: \"Nepali\",\n    no: \"Norwegian\",\n    nb: \"Norwegian (Bokmal)\",\n    nn: \"Norwegian (Nynorsk)\",\n    oc: \"Occitan\",\n    or: \"Oriya\",\n    om: \"Oromo\",\n    \"fa-ir\": \"Persian/Iran\",\n    pl: \"Polish\",\n    pt: \"Portuguese\",\n    \"pt-br\": \"Portuguese (Brazil)\",\n    pa: \"Punjabi\",\n    \"pa-in\": \"Punjabi (India)\",\n    \"pa-pk\": \"Punjabi (Pakistan)\",\n    qu: \"Quechua\",\n    rm: \"Rhaeto-Romanic\",\n    ro: \"Romanian\",\n    \"ro-mo\": \"Romanian (Moldavia)\",\n    ru: \"Russian\",\n    \"ru-mo\": \"Russian (Moldavia)\",\n    sz: \"Sami (Lappish)\",\n    sg: \"Sango\",\n    sa: \"Sanskrit\",\n    sc: \"Sardinian\",\n    sd: \"Sindhi\",\n    si: \"Singhalese\",\n    sr: \"Serbian\",\n    sk: \"Slovak\",\n    sl: \"Slovenian\",\n    so: \"Somani\",\n    sb: \"Sorbian\",\n    es: \"Spanish\",\n    \"es-ar\": \"Spanish (Argentina)\",\n    \"es-bo\": \"Spanish (Bolivia)\",\n    \"es-cl\": \"Spanish (Chile)\",\n    \"es-co\": \"Spanish (Colombia)\",\n    \"es-cr\": \"Spanish (Costa Rica)\",\n    \"es-do\": \"Spanish (Dominican Republic)\",\n    \"es-ec\": \"Spanish (Ecuador)\",\n    \"es-sv\": \"Spanish (El Salvador)\",\n    \"es-gt\": \"Spanish (Guatemala)\",\n    \"es-hn\": \"Spanish (Honduras)\",\n    \"es-mx\": \"Spanish (Mexico)\",\n    \"es-ni\": \"Spanish (Nicaragua)\",\n    \"es-pa\": \"Spanish (Panama)\",\n    \"es-py\": \"Spanish (Paraguay)\",\n    \"es-pe\": \"Spanish (Peru)\",\n    \"es-pr\": \"Spanish (Puerto Rico)\",\n    \"es-es\": \"Spanish (Spain)\",\n    \"es-uy\": \"Spanish (Uruguay)\",\n    \"es-ve\": \"Spanish (Venezuela)\",\n    sx: \"Sutu\",\n    sw: \"Swahili\",\n    sv: \"Swedish\",\n    \"sv-fi\": \"Swedish (Finland)\",\n    \"sv-sv\": \"Swedish (Sweden)\",\n    ta: \"Tamil\",\n    tt: \"Tatar\",\n    te: \"Teluga\",\n    th: \"Thai\",\n    tig: \"Tigre\",\n    ts: \"Tsonga\",\n    tn: \"Tswana\",\n    tr: \"Turkish\",\n    tk: \"Turkmen\",\n    uk: \"Ukrainian\",\n    hsb: \"Upper Sorbian\",\n    ur: \"Urdu\",\n    ve: \"Venda\",\n    vi: \"Vietnamese\",\n    vo: \"Volapuk\",\n    wa: \"Walloon\",\n    cy: \"Welsh\",\n    xh: \"Xhosa\",\n    ji: \"Yiddish\",\n    zu: \"Zulu\"\n};\n\nexport const __FramerMetadata__ = {\"exports\":{\"fontSizeOptions\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fontControls\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"localeOptions\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fontStack\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"emptyStateStyle\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"containerStyles\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"defaultEvents\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}}}}\n//# sourceMappingURL=./constants.map","import { useIsInCurrentNavigationTarget } from \"framer\";\nimport { useEffect } from \"react\";\nexport function useOnEnter(onEnter, enabled) {\n    return useOnSpecificTargetChange(true, onEnter, enabled);\n}\nexport function useOnExit(onExit, enabled) {\n    return useOnSpecificTargetChange(false, onExit, enabled);\n}\nfunction useOnSpecificTargetChange(goal, callback, enabled = true) {\n    const isInTarget = useIsInCurrentNavigationTarget();\n    useEffect(()=>{\n        if (enabled && isInTarget === goal) callback();\n    }, [\n        isInTarget\n    ]);\n}\n\nexport const __FramerMetadata__ = {\"exports\":{\"useOnEnter\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useOnExit\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}}}}\n//# sourceMappingURL=./useOnNavigationTargetChange.map","import { useRef } from \"react\";\n/**\n * Creates a constant value over the lifecycle of a component.\n *\n * Even if `useMemo` is provided an empty array as its final argument, it doesn't offer\n * a guarantee that it won't re-run for performance reasons later on. By using `useConstant`\n * you can ensure that initialisers don't execute twice or more.\n */ export function useConstant(init) {\n    const ref = useRef(null);\n    if (ref.current === null) {\n        ref.current = init();\n    }\n    return ref.current;\n}\n\nexport const __FramerMetadata__ = {\"exports\":{\"useConstant\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}}}}\n//# sourceMappingURL=./useConstant.map","import { Color } from \"framer\";\nexport function colorFromToken(color) {\n    if (color.startsWith(\"var(--token-\")) return \"rgb\" + color.split(\") /*\")[0].split(\", rgb\")[1];\n    return color;\n}\nexport function colorTokentoValue(color) {\n    return Color(colorFromToken(color)).toValue();\n}\n\nexport const __FramerMetadata__ = {\"exports\":{\"colorFromToken\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"colorTokentoValue\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}}}}\n//# sourceMappingURL=./colorFromToken.map","import { MotionValue } from \"framer\";\nexport const isMotionValue = (v)=>v instanceof MotionValue\n;\n\nexport const __FramerMetadata__ = {\"exports\":{\"isMotionValue\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}}}}\n//# sourceMappingURL=./isMotionValue.map","import * as React from \"react\";\nconst letters = \"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz\";\nconst l = ()=>letters[Math.floor(Math.random() * letters.length)]\n;\nexport const randomID = ()=>l() + l() + l() + l() + l() + l() + l() + l() + l()\n;\nfunction createUniqueClass(suffix) {\n    return `framer-${suffix}-${randomID()}`;\n}\nexport function useUniqueClassName(suffix, deps) {\n    const [className, setClassName] = React.useState(createUniqueClass(suffix));\n    React.useEffect(()=>{\n        setClassName(createUniqueClass(suffix));\n    }, [\n        suffix,\n        ...deps\n    ]);\n    return className;\n}\n\nexport const __FramerMetadata__ = {\"exports\":{\"useUniqueClassName\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"randomID\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}}}}\n//# sourceMappingURL=./useUniqueClassName.map","import { ControlType } from \"framer\";\n// I realize this only applies to select right now\n// but we can work on it in here\nexport function getVariantControls(Component, variant, additionalControls = {\n}) {\n    return {\n        [`${variant}TextColor`]: {\n            type: ControlType.Color,\n            title: \"Text Color\",\n            defaultValue: Component.defaultProps[`${variant}TextColor`],\n            hidden: (props)=>props.variant !== variant\n        },\n        [`${variant}IconColor`]: {\n            type: ControlType.Color,\n            title: \"Icon Color\",\n            defaultValue: Component.defaultProps[`${variant}IconColor`],\n            hidden: (props)=>props.variant !== variant\n        },\n        [`${variant}BackgroundColor`]: {\n            type: ControlType.Color,\n            title: \"Bg Color\",\n            defaultValue: Component.defaultProps[`${variant}BackgroundColor`],\n            hidden: (props)=>props.variant !== variant\n        },\n        [`${variant}BorderColor`]: {\n            type: ControlType.Color,\n            title: \"Border Color\",\n            defaultValue: Component.defaultProps[`${variant}BorderColor`],\n            hidden: (props)=>props.variant !== variant\n        },\n        [`${variant}BorderWidth`]: {\n            type: ControlType.Number,\n            title: \" \",\n            min: 0,\n            max: 5,\n            displayStepper: true,\n            defaultValue: Component.defaultProps[`${variant}BorderWidth`],\n            hidden: (props)=>props.variant !== variant\n        },\n        ...additionalControls\n    };\n}\n\nexport const __FramerMetadata__ = {\"exports\":{\"getVariantControls\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}}}}\n//# sourceMappingURL=./variantUtils.map","import { useMemo } from \"react\";\nexport const isBrowserSafari = ()=>{\n    if (typeof navigator !== `undefined`) {\n        const userAgent = navigator.userAgent.toLowerCase();\n        const isSafari = (userAgent.indexOf(\"safari\") > -1 || userAgent.indexOf(\"framermobile\") > -1 || userAgent.indexOf(\"framerx\") > -1) && userAgent.indexOf(\"chrome\") < 0;\n        return isSafari;\n    } else return false;\n};\nexport const useIsBrowserSafari = ()=>useMemo(()=>isBrowserSafari()\n    , [])\n;\n\nexport const __FramerMetadata__ = {\"exports\":{\"useIsBrowserSafari\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"isBrowserSafari\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}}}}\n//# sourceMappingURL=./isBrowser.map","import { useEffect } from \"react\";\n//@ts-ignore\nimport { isMotionValue } from \"https://framerusercontent.com/modules/3mKFSGQqKHV82uOV1eBc/5fbRLvOpxZC0JOXugvwm/isMotionValue.js\";\nexport function useOnChange(value, callback) {\n    useEffect(()=>// @ts-ignore this should be detected as a MV :shrug:\n        isMotionValue(value) ? value.onChange(callback) : undefined\n    );\n}\nexport function useMultiOnChange(values, handler) {\n    useEffect(()=>{\n        const subscriptions = values.map((value)=>value.onChange(handler)\n        );\n        return ()=>subscriptions.forEach((unsubscribe)=>unsubscribe()\n            )\n        ;\n    });\n}\n\nexport const __FramerMetadata__ = {\"exports\":{\"Subscriber\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useOnChange\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useMultiOnChange\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}}}}\n//# sourceMappingURL=./useOnChange.map","import { useCallback, useEffect, useRef } from \"react\";\nimport { motionValue, animate, RenderTarget } from \"framer\";\n// @ts-ignore\nimport { isMotionValue } from \"https://framerusercontent.com/modules/3mKFSGQqKHV82uOV1eBc/5fbRLvOpxZC0JOXugvwm/isMotionValue.js\";\n// @ts-ignore\nimport { useConstant } from \"https://framerusercontent.com/modules/ExNgrA7EJTKUPpH6vIlN/eiOrSJ2Ab5M9jPCvVwUz/useConstant.js\";\nexport function useAutoMotionValue(inputValue, options) {\n    var ref;\n    // Put options on a local ref\n    // Might wanna just memo instead but it works for now\n    const optionsRef = useRef(options);\n    const animation = useRef();\n    const didInitialMount = useRef(false);\n    const isOnCanvas = RenderTarget.current() === RenderTarget.canvas;\n    // in-progress - trying to figure out effect hooks\n    const onChangeDeps = (options === null || options === void 0 ? void 0 : options.onChangeDeps) ? options.onChangeDeps : [];\n    // Memoize the onChange handler\n    const onChange = useCallback(options === null || options === void 0 ? void 0 : options.onChange, [\n        ...onChangeDeps, \n    ]);\n    // Optionally scale the value from props\n    const transformer = useCallback((value)=>((ref = optionsRef.current) === null || ref === void 0 ? void 0 : ref.transform) ? optionsRef.current.transform(value) : value\n    , []);\n    // Create new MotionValue from inputValue\n    const value = useConstant(()=>isMotionValue(inputValue) ? inputValue : motionValue(transformer(inputValue))\n    );\n    // Setting value from prop change\n    useEffect(()=>{\n        if (!isMotionValue(inputValue) && didInitialMount.current) {\n            var ref1, ref2;\n            const newValue = transformer(inputValue);\n            (ref1 = animation.current) === null || ref1 === void 0 ? void 0 : ref1.stop();\n            // Call change callback\n            if (onChange) onChange(newValue, value);\n            // Trigger animation to new value\n            if (((ref2 = optionsRef.current) === null || ref2 === void 0 ? void 0 : ref2.animate) && !isOnCanvas) {\n                var ref3;\n                // @ts-ignore\n                animation.current = animate(value, newValue, (ref3 = optionsRef.current) === null || ref3 === void 0 ? void 0 : ref3.transition);\n            } else {\n                value.set(newValue);\n            }\n        }\n        didInitialMount.current = true;\n    }, [\n        inputValue,\n        ...onChangeDeps\n    ]);\n    return value;\n}\n\nexport const __FramerMetadata__ = {\"exports\":{\"useAutoMotionValue\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}}}}","// @ts-ignore\nimport{fontStore}from\"framer\";import{useEffect}from\"react\";import{fontStack}from\"https://framerusercontent.com/modules/VTUDdizacRHpwbkOamr7/AykinQJbgwl92LvMGZwu/constants.js\";const fontWeights={100:\"Thin\",200:\"Extra-light\",300:\"Light\",400:\"Regular\",500:\"Medium\",600:\"Semi-bold\",700:\"Bold\",800:\"Extra-bold\",900:\"Black\"};export function useFontControls(props){const{fontFamily=\"Inter\",fontSize=16,fontWeight=400,font=false}=props;const fontWeightName=fontWeights[fontWeight];const customFontStack=`\"${fontFamily} ${fontWeightName}\", \"${fontFamily}\", ${fontStack}`;const fontFamilyStyle=fontFamily?{fontSize,fontWeight,fontFamily:customFontStack}:{fontSize,fontWeight};const fetchCustomFonts=async()=>{await fontStore.loadWebFontsFromSelectors([`CUSTOM;${fontFamily}`,`CUSTOM;${fontFamily} ${fontWeightName}`,`GF;${fontFamily}-${fontWeightName.toLowerCase()}`,]).catch(e=>console.error(e));};useEffect(()=>{if(font)fetchCustomFonts();},[font,fontFamily,fontWeight]);return fontFamilyStyle;}\nexport const __FramerMetadata__ = {\"exports\":{\"useFontControls\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}}}}\n//# sourceMappingURL=./useFontControls.map","import { useMemo } from \"react\";\nimport { RenderTarget } from \"framer\";\nexport function useRenderTarget() {\n    const currentRenderTarget = useMemo(()=>RenderTarget.current()\n    , []);\n    return currentRenderTarget;\n}\nexport function useIsInPreview() {\n    const inPreview = useMemo(()=>RenderTarget.current() === RenderTarget.preview\n    , []);\n    return inPreview;\n}\nexport function useIsOnCanvas() {\n    const onCanvas = useMemo(()=>RenderTarget.current() === RenderTarget.canvas\n    , []);\n    return onCanvas;\n}\n\nexport const __FramerMetadata__ = {\"exports\":{\"useIsInPreview\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useRenderTarget\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useIsOnCanvas\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}}}}\n//# sourceMappingURL=./useRenderTarget.map","import * as React from \"react\";\nexport function useControlledState(value) {\n    const [controlledValue, setValue] = React.useState(value);\n    React.useEffect(()=>{\n        setValue(value);\n    }, [\n        value\n    ]);\n    return [\n        controlledValue,\n        setValue\n    ];\n}\n\nexport const __FramerMetadata__ = {\"exports\":{\"useControlledState\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}}}}\n//# sourceMappingURL=./useControlledState.map","import { useMemo } from \"react\";\nimport { ControlType } from \"framer\";\nexport function useRadius(props) {\n    const { borderRadius , isMixedBorderRadius , topLeftRadius , topRightRadius , bottomRightRadius , bottomLeftRadius ,  } = props;\n    const radiusValue = useMemo(()=>isMixedBorderRadius ? `${topLeftRadius}px ${topRightRadius}px ${bottomRightRadius}px ${bottomLeftRadius}px` : `${borderRadius}px`\n    , [\n        borderRadius,\n        isMixedBorderRadius,\n        topLeftRadius,\n        topRightRadius,\n        bottomRightRadius,\n        bottomLeftRadius, \n    ]);\n    return radiusValue;\n}\nexport const borderRadiusControl = {\n    borderRadius: {\n        title: \"Radius\",\n        type: ControlType.FusedNumber,\n        toggleKey: \"isMixedBorderRadius\",\n        toggleTitles: [\n            \"Radius\",\n            \"Radius per corner\"\n        ],\n        valueKeys: [\n            \"topLeftRadius\",\n            \"topRightRadius\",\n            \"bottomRightRadius\",\n            \"bottomLeftRadius\", \n        ],\n        valueLabels: [\n            \"TL\",\n            \"TR\",\n            \"BR\",\n            \"BL\"\n        ],\n        min: 0\n    }\n};\nexport function usePadding(props) {\n    const { padding , paddingPerSide , paddingTop , paddingRight , paddingBottom , paddingLeft ,  } = props;\n    const paddingValue = useMemo(()=>paddingPerSide ? `${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px` : padding\n    , [\n        padding,\n        paddingPerSide,\n        paddingTop,\n        paddingRight,\n        paddingBottom,\n        paddingLeft, \n    ]);\n    return paddingValue;\n}\nexport const paddingControl = {\n    padding: {\n        type: ControlType.FusedNumber,\n        toggleKey: \"paddingPerSide\",\n        toggleTitles: [\n            \"Padding\",\n            \"Padding per side\"\n        ],\n        valueKeys: [\n            \"paddingTop\",\n            \"paddingRight\",\n            \"paddingBottom\",\n            \"paddingLeft\", \n        ],\n        valueLabels: [\n            \"T\",\n            \"R\",\n            \"B\",\n            \"L\"\n        ],\n        min: 0,\n        title: \"Padding\"\n    }\n};\n\nexport const __FramerMetadata__ = {\"exports\":{\"borderRadiusControl\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useRadius\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"RadiusProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"PaddingProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"usePadding\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"paddingControl\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}}}}\n//# sourceMappingURL=./propUtils.map","import{defaultEvents,localeOptions,fontControls,fontSizeOptions,emptyStateStyle,containerStyles,fontStack}from\"https://framerusercontent.com/modules/VTUDdizacRHpwbkOamr7/AykinQJbgwl92LvMGZwu/constants.js\";import{useOnEnter,useOnExit}from\"https://framerusercontent.com/modules/D4TWeLfcxT6Tysr2BlYg/iZjmqdxVx1EOiM3k1FaW/useOnNavigationTargetChange.js\";import{useConstant}from\"https://framerusercontent.com/modules/ExNgrA7EJTKUPpH6vIlN/eiOrSJ2Ab5M9jPCvVwUz/useConstant.js\";import{colorTokentoValue,colorFromToken}from\"https://framerusercontent.com/modules/D2Lz5CmnNVPZFFiZXalt/QaCzPbriZBfXWZIIycFI/colorFromToken.js\";import{isMotionValue}from\"https://framerusercontent.com/modules/3mKFSGQqKHV82uOV1eBc/5fbRLvOpxZC0JOXugvwm/isMotionValue.js\";import{useUniqueClassName,randomID}from\"https://framerusercontent.com/modules/xDiQsqBGXzmMsv7AlEVy/uhunpMiNsbXxzjlXsg1y/useUniqueClassName.js\";import{getVariantControls}from\"https://framerusercontent.com/modules/ETACN5BJyFTSo0VVDJfu/NHRqowOiXkF9UwOzczF7/variantUtils.js\";import{useIsBrowserSafari}from\"https://framerusercontent.com/modules/eMBrwoqQK7h6mEeGQUH8/GuplvPJVjmxpk9zqOTcb/isBrowser.js\";import{useMultiOnChange,useOnChange}from\"https://framerusercontent.com/modules/v9AWX2URmiYsHf7GbctE/XxKAZ9KlhWqf5x1JMyyF/useOnChange.js\";import{mstoMinAndSec,secondsToMinutes}from\"https://framerusercontent.com/modules/4zHZnO5JojN1PrIbu2jm/revv9QCWpkh8lPzi2jje/time.js\";import{useAutoMotionValue}from\"https://framerusercontent.com/modules/kNDwabfjDEb3vUxkQlZS/fSIr3AOAYbGlfSPgXpYu/useAutoMotionValue.js\";import{useFontControls}from\"https://framerusercontent.com/modules/cuQH4dmpDnV8YK1mSgQX/KqRXqunFjE6ufhpc7ZRu/useFontControls.js\";import{useRenderTarget,useIsInPreview,useIsOnCanvas}from\"https://framerusercontent.com/modules/afBE9Yx1W6bY5q32qPxe/m3q7puE2tbo1S2C0s0CT/useRenderTarget.js\";import{useControlledState}from\"https://framerusercontent.com/modules/zGkoP8tPDCkoBzMdt5uq/0zFSjxIYliHxrQQnryFX/useControlledState.js\";import{usePadding,useRadius,paddingControl,borderRadiusControl}from\"https://framerusercontent.com/modules/5SM58HxZHxjjv7aLMOgQ/WXz9i6mVki0bBCrKdqB3/propUtils.js\";import{detectAutoSizingAxis}from\"https://framerusercontent.com/modules/8CkHAZatUz1UR8jNTcfD/HwbnIAZlUmQ2oTpcLkaH/detectAutoSizingAxis.js\";export{useOnEnter,useOnExit,defaultEvents,isMotionValue,colorFromToken,colorTokentoValue,localeOptions,fontControls,fontSizeOptions,emptyStateStyle,containerStyles,fontStack,useUniqueClassName,getVariantControls,useIsBrowserSafari,randomID,useConstant,useMultiOnChange,useOnChange,usePadding,useRadius,paddingControl,borderRadiusControl,mstoMinAndSec,useFontControls,secondsToMinutes,useAutoMotionValue,useRenderTarget,useIsInPreview,useControlledState,detectAutoSizingAxis,useIsOnCanvas,};\nexport const __FramerMetadata__ = {\"exports\":{\"useConstant\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"isMotionValue\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fontControls\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"defaultEvents\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useUniqueClassName\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useMultiOnChange\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useOnChange\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useIsOnCanvas\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useOnExit\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fontSizeOptions\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"colorTokentoValue\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useRadius\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"getVariantControls\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"colorFromToken\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"containerStyles\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"usePadding\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fontStack\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useControlledState\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useFontControls\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useAutoMotionValue\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"emptyStateStyle\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useIsInPreview\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useIsBrowserSafari\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"detectAutoSizingAxis\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"borderRadiusControl\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"mstoMinAndSec\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"randomID\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"localeOptions\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useOnEnter\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"secondsToMinutes\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useRenderTarget\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"paddingControl\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}}}}"],"mappings":"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"}