{
  "version": 3,
  "sources": ["ssg:https://framer.com/m/framer/useConstant.js@^1.0.0", "ssg:https://framer.com/m/framer/randomID.js@^2.0.0", "ssg:https://framerusercontent.com/modules/KtVGDQXNUVZ5aqCs47VS/OMqTyVIbB7GZvcPewNwz/F8KjCKf_G.js", "ssg:https://framerusercontent.com/modules/pMQxSoMRqRYwivXryKx7/k6WaPCiXgrN3rOXD95Ab/wKlyeJICW.js", "ssg:https://framerusercontent.com/modules/dUIRrODIia4T6RYO2jAr/uWiXOvb7ueH39pW33yY7/abR6C5eXB.js", "ssg:https://framerusercontent.com/modules/295EvQszt95GJtvcYnB6/yjQ9NHyQLrLiMH234PeV/iyyDMtzRI.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 (58a021c)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,useActiveVariantCallback,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"JCvjyIELc\",\"uUSwsiH4j\"];const variantClassNames={JCvjyIELc:\"framer-v-1wchpc9\",uUSwsiH4j:\"framer-v-1a1iqjv\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const humanReadableVariantMap={Burger:\"JCvjyIELc\",X:\"uUSwsiH4j\"};const transitions={default:{damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"}};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/ _jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Component=/*#__PURE__*/ React.forwardRef(function({id,style,className,width,height,layoutId,variant:outerVariant=\"JCvjyIELc\",tap:TBgHLr7MW,color:iWF8EWIN1=\"rgb(136, 136, 136)\",...restProps},ref){const outerVariantId=humanReadableVariantMap[outerVariant];const variant=outerVariantId||outerVariant;const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"JCvjyIELc\",transitions,variant,variantClassNames});const layoutDependency=variants.join(\"-\")+restProps.layoutDependency;const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1exkyhh=activeVariantCallback(async(...args)=>{if(TBgHLr7MW){const res=await TBgHLr7MW(...args);if(res===false)return false;}setVariant(\"uUSwsiH4j\");});const onTap1kjj2rg=activeVariantCallback(async(...args)=>{if(TBgHLr7MW){const res=await TBgHLr7MW(...args);if(res===false)return false;}setVariant(\"JCvjyIELc\");});const defaultLayoutId=React.useId();return /*#__PURE__*/ _jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/ _jsx(motion.div,{initial:variant,animate:variants,onHoverStart:()=>setGestureState({isHovered:true}),onHoverEnd:()=>setGestureState({isHovered:false}),onTapStart:()=>setGestureState({isPressed:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),className:cx(\"framer-eCzoo\",classNames),style:{display:\"contents\"},children:/*#__PURE__*/ _jsx(Transition,{value:transition,children:/*#__PURE__*/ _jsx(motion.div,{...restProps,className:cx(\"framer-1wchpc9\",className),\"data-framer-name\":\"Burger\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"JCvjyIELc\",onTap:onTap1exkyhh,ref:ref,style:{...style},...addPropertyOverrides({uUSwsiH4j:{\"data-framer-name\":\"X\",onTap:onTap1kjj2rg}},baseVariant,gestureVariant),children:/*#__PURE__*/ _jsxs(motion.div,{className:\"framer-3rah4x\",layoutDependency:layoutDependency,layoutId:\"WJT_WBlli\",children:[/*#__PURE__*/ _jsx(motion.div,{className:\"framer-32e7g7\",\"data-framer-name\":\"Bottom\",layoutDependency:layoutDependency,layoutId:\"bsFuEKbU2\",style:{backgroundColor:iWF8EWIN1,rotate:0},variants:{uUSwsiH4j:{rotate:-45}}}),/*#__PURE__*/ _jsx(motion.div,{className:\"framer-1p2fadk\",\"data-framer-name\":\"Mid\",layoutDependency:layoutDependency,layoutId:\"HEBT6S1us\",style:{backgroundColor:iWF8EWIN1,opacity:1},variants:{uUSwsiH4j:{opacity:0}}}),/*#__PURE__*/ _jsx(motion.div,{className:\"framer-16arxdq\",\"data-framer-name\":\"Top\",layoutDependency:layoutDependency,layoutId:\"QsWuKS_LQ\",style:{backgroundColor:iWF8EWIN1,rotate:0},variants:{uUSwsiH4j:{rotate:45}}})]})})})})});});const css=['.framer-eCzoo [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-eCzoo .framer-1gbdimv { display: block; }\",\".framer-eCzoo .framer-1wchpc9 { cursor: pointer; height: 32px; overflow: hidden; position: relative; width: 32px; }\",\".framer-eCzoo .framer-3rah4x { flex: none; height: 18px; left: calc(50.00000000000002% - 24px / 2); overflow: visible; position: absolute; top: calc(50.00000000000002% - 18px / 2); width: 24px; }\",\".framer-eCzoo .framer-32e7g7 { bottom: 0px; flex: none; height: 2px; left: 0px; overflow: hidden; position: absolute; right: 0px; }\",\".framer-eCzoo .framer-1p2fadk { flex: none; height: 2px; left: 0px; overflow: hidden; position: absolute; right: 0px; top: calc(50.00000000000002% - 2px / 2); }\",\".framer-eCzoo .framer-16arxdq { flex: none; height: 2px; left: 0px; overflow: hidden; position: absolute; right: 0px; top: 0px; }\",\".framer-eCzoo.framer-v-1a1iqjv .framer-32e7g7 { bottom: unset; top: calc(50.00000000000002% - 2px / 2); }\",\".framer-eCzoo.framer-v-1a1iqjv .framer-1p2fadk { left: unset; width: 2px; }\",\".framer-eCzoo.framer-v-1a1iqjv .framer-16arxdq { left: unset; right: -1px; top: calc(50.00000000000002% - 2px / 2); width: 26px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 32\n * @framerIntrinsicWidth 32\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"uUSwsiH4j\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"TBgHLr7MW\":\"tap\",\"iWF8EWIN1\":\"color\"}\n */ const FramerwKlyeJICW=withCSS(Component,css,\"framer-eCzoo\");export default FramerwKlyeJICW;FramerwKlyeJICW.displayName=\"Elements/Menu Icon Copy\";FramerwKlyeJICW.defaultProps={height:32,width:32};addPropertyControls(FramerwKlyeJICW,{variant:{options:[\"JCvjyIELc\",\"uUSwsiH4j\"],optionTitles:[\"Burger\",\"X\"],title:\"Variant\",type:ControlType.Enum},TBgHLr7MW:{title:\"Tap\",type:ControlType.EventHandler},iWF8EWIN1:{defaultValue:\"rgb(136, 136, 136)\",title:\"Color\",type:ControlType.Color}});addFonts(FramerwKlyeJICW,[]);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerwKlyeJICW\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"32\",\"framerVariables\":\"{\\\"TBgHLr7MW\\\":\\\"tap\\\",\\\"iWF8EWIN1\\\":\\\"color\\\"}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"uUSwsiH4j\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicHeight\":\"32\",\"framerContractVersion\":\"1\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./wKlyeJICW.map", "// Generated by Framer (f030ee3)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getLoadingLazyAtYPosition,Image,Link,SmartComponentScopedContainer,useActiveVariantCallback,useComponentViewport,useLocaleInfo,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 ElementsMenuIconCopy from\"https://framerusercontent.com/modules/pMQxSoMRqRYwivXryKx7/k6WaPCiXgrN3rOXD95Ab/wKlyeJICW.js\";const ElementsMenuIconFonts=getFonts(ElementsMenuIcon);const ElementsMenuIconCopyFonts=getFonts(ElementsMenuIconCopy);const enabledGestures={N_aD1viBD:{pressed:true}};const cycleOrder=[\"JGGPa0zFk\",\"nVNmxlw5g\",\"N_aD1viBD\",\"GqGZ1ibU4\",\"k9dx_vOyI\",\"BHeEWnrVM\"];const serializationHash=\"framer-B6Zuh\";const variantClassNames={BHeEWnrVM:\"framer-v-15mvjiu\",GqGZ1ibU4:\"framer-v-troqg6\",JGGPa0zFk:\"framer-v-gim19g\",k9dx_vOyI:\"framer-v-1x4xrvw\",N_aD1viBD:\"framer-v-1wm4prk\",nVNmxlw5g:\"framer-v-133298r\"};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 4\":\"GqGZ1ibU4\",\"Variant 5\":\"k9dx_vOyI\",\"Variant 6\":\"BHeEWnrVM\",Desktop:\"JGGPa0zFk\",Phone:\"N_aD1viBD\",Tablet:\"nVNmxlw5g\"};const getProps=({click,height,id,tap,width,...props})=>{return{...props,c4l2v95Wh:tap??props.c4l2v95Wh,variant:humanReadableVariantMap[props.variant]??props.variant??\"JGGPa0zFk\",zKeTHE9yz:click??props.zKeTHE9yz};};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,c4l2v95Wh,zKeTHE9yz,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"JGGPa0zFk\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1ifaylk=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(c4l2v95Wh){const res=await c4l2v95Wh(...args);if(res===false)return false;}if(zKeTHE9yz){const res=await zKeTHE9yz(...args);if(res===false)return false;}});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(gestureVariant===\"N_aD1viBD-pressed\")return true;if([\"N_aD1viBD\",\"BHeEWnrVM\"].includes(baseVariant))return true;return false;};const isDisplayed1=()=>{if(gestureVariant===\"N_aD1viBD-pressed\")return true;if(baseVariant===\"N_aD1viBD\")return true;return false;};const isDisplayed2=()=>{if(gestureVariant===\"N_aD1viBD-pressed\")return false;if([\"N_aD1viBD\",\"GqGZ1ibU4\",\"k9dx_vOyI\",\"BHeEWnrVM\"].includes(baseVariant))return false;return true;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-gim19g\",className,classNames),\"data-framer-name\":\"Desktop\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"JGGPa0zFk\",onTap:onTap1ifaylk,ref:refBinding,style:{backgroundColor:\"rgb(17, 17, 17)\",...style},...addPropertyOverrides({\"N_aD1viBD-pressed\":{\"data-framer-name\":undefined},BHeEWnrVM:{\"data-framer-name\":\"Variant 6\"},GqGZ1ibU4:{\"data-framer-name\":\"Variant 4\"},k9dx_vOyI:{\"data-framer-name\":\"Variant 5\"},N_aD1viBD:{\"data-framer-name\":\"Phone\"},nVNmxlw5g:{\"data-framer-name\":\"Tablet\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"i2BAbzF7h\"},motionChild:true,nodeId:\"aJYLwlNCi\",openInNewTab:false,scopeId:\"abR6C5eXB\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:234,intrinsicWidth:1202,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(24+((componentViewport?.height||130)-48-70.0832)/2)),pixelHeight:234,pixelWidth:1202,sizes:\"360px\",src:\"https://framerusercontent.com/images/iECpVdUtTH0PuayoQv05bkcj8I.png\",srcSet:\"https://framerusercontent.com/images/iECpVdUtTH0PuayoQv05bkcj8I.png?scale-down-to=512 512w,https://framerusercontent.com/images/iECpVdUtTH0PuayoQv05bkcj8I.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/iECpVdUtTH0PuayoQv05bkcj8I.png 1202w\"},className:\"framer-54sgce framer-1tdkeor\",\"data-framer-name\":\"_all_illustrations_KEVIN_37\",layoutDependency:layoutDependency,layoutId:\"aJYLwlNCi\",...addPropertyOverrides({BHeEWnrVM:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:234,intrinsicWidth:1202,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(24+((componentViewport?.height||200)-48-70.0832)/2)),pixelHeight:234,pixelWidth:1202,sizes:`calc((${componentViewport?.width||\"100vw\"} - 26px) * 0.8)`,src:\"https://framerusercontent.com/images/iECpVdUtTH0PuayoQv05bkcj8I.png\",srcSet:\"https://framerusercontent.com/images/iECpVdUtTH0PuayoQv05bkcj8I.png?scale-down-to=512 512w,https://framerusercontent.com/images/iECpVdUtTH0PuayoQv05bkcj8I.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/iECpVdUtTH0PuayoQv05bkcj8I.png 1202w\"}},k9dx_vOyI:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:234,intrinsicWidth:1202,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(24+((componentViewport?.height||100)-48-70.0832)/2)),pixelHeight:234,pixelWidth:1202,sizes:\"360px\",src:\"https://framerusercontent.com/images/iECpVdUtTH0PuayoQv05bkcj8I.png\",srcSet:\"https://framerusercontent.com/images/iECpVdUtTH0PuayoQv05bkcj8I.png?scale-down-to=512 512w,https://framerusercontent.com/images/iECpVdUtTH0PuayoQv05bkcj8I.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/iECpVdUtTH0PuayoQv05bkcj8I.png 1202w\"}},N_aD1viBD:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:234,intrinsicWidth:1202,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(24+((componentViewport?.height||200)-48-70.0832)/2)),pixelHeight:234,pixelWidth:1202,sizes:`calc((${componentViewport?.width||\"100vw\"} - 26px) * 0.8)`,src:\"https://framerusercontent.com/images/iECpVdUtTH0PuayoQv05bkcj8I.png\",srcSet:\"https://framerusercontent.com/images/iECpVdUtTH0PuayoQv05bkcj8I.png?scale-down-to=512 512w,https://framerusercontent.com/images/iECpVdUtTH0PuayoQv05bkcj8I.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/iECpVdUtTH0PuayoQv05bkcj8I.png 1202w\"}},nVNmxlw5g:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:234,intrinsicWidth:1202,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(24+((componentViewport?.height||100)-48-70.0832)/2)),pixelHeight:234,pixelWidth:1202,sizes:\"360px\",src:\"https://framerusercontent.com/images/iECpVdUtTH0PuayoQv05bkcj8I.png\",srcSet:\"https://framerusercontent.com/images/iECpVdUtTH0PuayoQv05bkcj8I.png?scale-down-to=512 512w,https://framerusercontent.com/images/iECpVdUtTH0PuayoQv05bkcj8I.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/iECpVdUtTH0PuayoQv05bkcj8I.png 1202w\"}}},baseVariant,gestureVariant)})}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-12aaw2l\",layoutDependency:layoutDependency,layoutId:\"M9xw1Hhk3\"}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1rhlgg2-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"Z6sFnPeki-container\",nodeId:\"Z6sFnPeki\",rendersWithMotion:true,scopeId:\"abR6C5eXB\",children:/*#__PURE__*/_jsx(ElementsMenuIcon,{color:\"rgb(255, 255, 255)\",height:\"100%\",id:\"Z6sFnPeki\",layoutId:\"Z6sFnPeki\",style:{height:\"100%\",width:\"100%\"},variant:\"uL1KSNbAO\",width:\"100%\"})})}),isDisplayed2()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-ar8qni-container\",layoutDependency:layoutDependency,layoutId:\"PQ0IkHAVz-container\",nodeId:\"PQ0IkHAVz\",rendersWithMotion:true,scopeId:\"abR6C5eXB\",children:/*#__PURE__*/_jsx(ElementsMenuIconCopy,{color:\"rgb(255, 255, 255)\",height:\"100%\",id:\"PQ0IkHAVz\",layoutId:\"PQ0IkHAVz\",style:{height:\"100%\",width:\"100%\"},variant:\"JCvjyIELc\",width:\"100%\"})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-B6Zuh.framer-1tdkeor, .framer-B6Zuh .framer-1tdkeor { display: block; }\",\".framer-B6Zuh.framer-gim19g { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: 130px; justify-content: center; padding: 24px 324px 24px 324px; position: relative; width: min-content; }\",\".framer-B6Zuh .framer-54sgce { aspect-ratio: 5.136752136752137 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 70px); overflow: visible; position: relative; text-decoration: none; width: 360px; }\",\".framer-B6Zuh .framer-12aaw2l { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 45px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 0px; }\",\".framer-B6Zuh .framer-1rhlgg2-container { flex: none; height: 47px; position: relative; width: 40px; z-index: 1; }\",\".framer-B6Zuh .framer-ar8qni-container { flex: none; height: 40px; position: absolute; right: 226px; top: calc(50.00000000000002% - 40px / 2); width: 40px; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-B6Zuh.framer-gim19g, .framer-B6Zuh .framer-12aaw2l { gap: 0px; } .framer-B6Zuh.framer-gim19g > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-B6Zuh.framer-gim19g > :first-child, .framer-B6Zuh .framer-12aaw2l > :first-child { margin-left: 0px; } .framer-B6Zuh.framer-gim19g > :last-child, .framer-B6Zuh .framer-12aaw2l > :last-child { margin-right: 0px; } .framer-B6Zuh .framer-12aaw2l > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } }\",\".framer-B6Zuh.framer-v-133298r.framer-gim19g, .framer-B6Zuh.framer-v-1x4xrvw.framer-gim19g { height: 100px; width: 810px; }\",\".framer-B6Zuh.framer-v-133298r .framer-54sgce, .framer-B6Zuh.framer-v-1x4xrvw .framer-54sgce { order: 0; }\",\".framer-B6Zuh.framer-v-133298r .framer-ar8qni-container { order: 2; right: 136px; }\",\".framer-B6Zuh.framer-v-1wm4prk.framer-gim19g, .framer-B6Zuh.framer-v-15mvjiu.framer-gim19g { gap: 14px; height: min-content; padding: 24px 13px 24px 13px; width: 454px; }\",\".framer-B6Zuh.framer-v-1wm4prk .framer-54sgce, .framer-B6Zuh.framer-v-15mvjiu .framer-54sgce { height: var(--framer-aspect-ratio-supported, 39px); order: 0; width: 80%; }\",\".framer-B6Zuh.framer-v-1wm4prk .framer-12aaw2l, .framer-B6Zuh.framer-v-15mvjiu .framer-12aaw2l { order: 1; }\",\".framer-B6Zuh.framer-v-1wm4prk .framer-1rhlgg2-container { order: 2; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-B6Zuh.framer-v-1wm4prk.framer-gim19g { gap: 0px; } .framer-B6Zuh.framer-v-1wm4prk.framer-gim19g > * { margin: 0px; margin-left: calc(14px / 2); margin-right: calc(14px / 2); } .framer-B6Zuh.framer-v-1wm4prk.framer-gim19g > :first-child { margin-left: 0px; } .framer-B6Zuh.framer-v-1wm4prk.framer-gim19g > :last-child { margin-right: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-B6Zuh.framer-v-15mvjiu.framer-gim19g { gap: 0px; } .framer-B6Zuh.framer-v-15mvjiu.framer-gim19g > * { margin: 0px; margin-left: calc(14px / 2); margin-right: calc(14px / 2); } .framer-B6Zuh.framer-v-15mvjiu.framer-gim19g > :first-child { margin-left: 0px; } .framer-B6Zuh.framer-v-15mvjiu.framer-gim19g > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 130\n * @framerIntrinsicWidth 1008\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"fixed\"]},\"nVNmxlw5g\":{\"layout\":[\"fixed\",\"fixed\"]},\"N_aD1viBD\":{\"layout\":[\"fixed\",\"auto\"]},\"GqGZ1ibU4\":{\"layout\":[\"auto\",\"fixed\"]},\"k9dx_vOyI\":{\"layout\":[\"fixed\",\"fixed\"]},\"BHeEWnrVM\":{\"layout\":[\"fixed\",\"auto\"]},\"MDlGDdRlm\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"c4l2v95Wh\":\"tap\",\"zKeTHE9yz\":\"click\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerabR6C5eXB=withCSS(Component,css,\"framer-B6Zuh\");export default FramerabR6C5eXB;FramerabR6C5eXB.displayName=\"Navbar Logo Dark Copy\";FramerabR6C5eXB.defaultProps={height:130,width:1008};addPropertyControls(FramerabR6C5eXB,{variant:{options:[\"JGGPa0zFk\",\"nVNmxlw5g\",\"N_aD1viBD\",\"GqGZ1ibU4\",\"k9dx_vOyI\",\"BHeEWnrVM\"],optionTitles:[\"Desktop\",\"Tablet\",\"Phone\",\"Variant 4\",\"Variant 5\",\"Variant 6\"],title:\"Variant\",type:ControlType.Enum},c4l2v95Wh:{title:\"Tap\",type:ControlType.EventHandler},zKeTHE9yz:{title:\"Click\",type:ControlType.EventHandler}});addFonts(FramerabR6C5eXB,[{explicitInter:true,fonts:[]},...ElementsMenuIconFonts,...ElementsMenuIconCopyFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerabR6C5eXB\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"130\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"1008\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerVariables\":\"{\\\"c4l2v95Wh\\\":\\\"tap\\\",\\\"zKeTHE9yz\\\":\\\"click\\\"}\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"nVNmxlw5g\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"N_aD1viBD\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"GqGZ1ibU4\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"k9dx_vOyI\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"BHeEWnrVM\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"MDlGDdRlm\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./abR6C5eXB.map", "// Generated by Framer (06534cb)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getLoadingLazyAtYPosition,Image,Link,RichText,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";const cycleOrder=[\"aubIO0zp7\",\"zlb8avRX0\",\"vkAbta18H\"];const serializationHash=\"framer-9G92E\";const variantClassNames={aubIO0zp7:\"framer-v-1nvxqdg\",vkAbta18H:\"framer-v-1t8chdg\",zlb8avRX0:\"framer-v-7i1e66\"};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={Desktop:\"aubIO0zp7\",Phone:\"vkAbta18H\",Tablet:\"zlb8avRX0\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"aubIO0zp7\"};};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:\"aubIO0zp7\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(baseVariant===\"vkAbta18H\")return true;return false;};const isDisplayed1=()=>{if(baseVariant===\"vkAbta18H\")return false;return true;};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.footer,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1nvxqdg\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"aubIO0zp7\",ref:refBinding,style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgba(0, 0, 0, 0.05)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(17, 17, 17)\",...style},...addPropertyOverrides({vkAbta18H:{\"data-framer-name\":\"Phone\"},zlb8avRX0:{\"data-framer-name\":\"Tablet\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-zere6b\",layoutDependency:layoutDependency,layoutId:\"MAYqkPkfa\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1wdflvh\",\"data-framer-name\":\"Left frame\",layoutDependency:layoutDependency,layoutId:\"bD2eJ2dll\",style:{backgroundColor:\"rgba(186, 221, 255, 0)\"},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-p9s9r5\",layoutDependency:layoutDependency,layoutId:\"zGOJgAgvC\",style:{backgroundColor:\"rgba(255, 255, 255, 0)\"},children:[isDisplayed()&&/*#__PURE__*/_jsx(Link,{href:\"https://www.brightrock.co.za/\",motionChild:true,nodeId:\"PFywlSCMv\",scopeId:\"iyyDMtzRI\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:268,intrinsicWidth:1651,pixelHeight:268,pixelWidth:1651,src:\"https://framerusercontent.com/images/J7pMmnbhmbAKt0DkHSIcY6P7B8.png\",srcSet:\"https://framerusercontent.com/images/J7pMmnbhmbAKt0DkHSIcY6P7B8.png?scale-down-to=512 512w,https://framerusercontent.com/images/J7pMmnbhmbAKt0DkHSIcY6P7B8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/J7pMmnbhmbAKt0DkHSIcY6P7B8.png 1651w\"},className:\"framer-1t3na78 framer-1gqu6u2\",\"data-framer-name\":\"BR_logo_02\",layoutDependency:layoutDependency,layoutId:\"PFywlSCMv\",...addPropertyOverrides({vkAbta18H:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:268,intrinsicWidth:1651,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+22+(((componentViewport?.height||200)-92-318.32798304058144)/2+0+0)+0+142+0+0+0+0),pixelHeight:268,pixelWidth:1651,sizes:\"270px\",src:\"https://framerusercontent.com/images/J7pMmnbhmbAKt0DkHSIcY6P7B8.png\",srcSet:\"https://framerusercontent.com/images/J7pMmnbhmbAKt0DkHSIcY6P7B8.png?scale-down-to=512 512w,https://framerusercontent.com/images/J7pMmnbhmbAKt0DkHSIcY6P7B8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/J7pMmnbhmbAKt0DkHSIcY6P7B8.png 1651w\"}}},baseVariant,gestureVariant)})}),isDisplayed1()&&/*#__PURE__*/_jsx(Link,{href:\"https://www.brightrock.co.za/\",motionChild:true,nodeId:\"uEtyVCSyt\",scopeId:\"iyyDMtzRI\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:268,intrinsicWidth:1651,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+22+(((componentViewport?.height||211)-52-159)/2+0+0)+0+0+0+0+-103.25),pixelHeight:268,pixelWidth:1651,sizes:\"300px\",src:\"https://framerusercontent.com/images/J7pMmnbhmbAKt0DkHSIcY6P7B8.png\",srcSet:\"https://framerusercontent.com/images/J7pMmnbhmbAKt0DkHSIcY6P7B8.png?scale-down-to=512 512w,https://framerusercontent.com/images/J7pMmnbhmbAKt0DkHSIcY6P7B8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/J7pMmnbhmbAKt0DkHSIcY6P7B8.png 1651w\"},className:\"framer-17g2vby framer-1gqu6u2\",\"data-framer-name\":\"BR_logo_02\",layoutDependency:layoutDependency,layoutId:\"uEtyVCSyt\",...addPropertyOverrides({zlb8avRX0:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:268,intrinsicWidth:1651,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+22+(((componentViewport?.height||211)-52-159)/2+0+0)+0+0+0+0+-113.25),pixelHeight:268,pixelWidth:1651,sizes:`min((${componentViewport?.width||\"100vw\"} - 100px) / 2, 300px)`,src:\"https://framerusercontent.com/images/J7pMmnbhmbAKt0DkHSIcY6P7B8.png\",srcSet:\"https://framerusercontent.com/images/J7pMmnbhmbAKt0DkHSIcY6P7B8.png?scale-down-to=512 512w,https://framerusercontent.com/images/J7pMmnbhmbAKt0DkHSIcY6P7B8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/J7pMmnbhmbAKt0DkHSIcY6P7B8.png 1651w\"}}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1tqvp9g\",layoutDependency:layoutDependency,layoutId:\"ppkBp56rV\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-oqrscc\",\"data-framer-name\":\"Social stack\",layoutDependency:layoutDependency,layoutId:\"go6JQeObc\",style:{backgroundColor:\"rgba(255, 255, 255, 0)\"},children:[/*#__PURE__*/_jsx(Link,{href:\"https://www.facebook.com/BrightRockZA\",motionChild:true,nodeId:\"ZzubobFnt\",openInNewTab:true,scopeId:\"iyyDMtzRI\",children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-ahqkt3 framer-1gqu6u2\",\"data-framer-name\":\"facebook\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"ZzubobFnt\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 25 25\"><path d=\"M 24.886 22.386 L 24.886 2.386 C 24.886 1.023 23.75 0 22.5 0 L 2.386 0 C 1.136 0 0 1.136 0 2.386 L 0 22.386 C 0 23.75 1.136 24.773 2.386 24.773 L 22.386 24.773 C 23.75 24.886 24.886 23.75 24.886 22.386 M 17.727 7.273 L 17.727 9.659 L 21.364 9.659 L 21.25 13.068 L 17.727 13.068 L 17.727 22.386 L 14.205 22.386 L 14.205 13.068 L 11.705 13.068 L 11.705 9.659 L 14.205 9.659 L 14.205 6.932 C 14.205 4.659 15.682 2.614 18.977 2.614 C 20.341 2.614 21.364 2.727 21.364 2.727 L 21.25 5.909 L 19.091 5.909 C 17.841 5.795 17.727 6.364 17.727 7.273\" fill=\"rgb(255,255,255)\"></path></svg>',svgContentId:8659188527,withExternalLayout:true,...addPropertyOverrides({vkAbta18H:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 35 35\"><path d=\"M 34.841 31.341 L 34.841 3.341 C 34.841 1.432 33.25 0 31.5 0 L 3.341 0 C 1.591 0 0 1.591 0 3.341 L 0 31.341 C 0 33.25 1.591 34.682 3.341 34.682 L 31.341 34.682 C 33.25 34.841 34.841 33.25 34.841 31.341 M 24.818 10.182 L 24.818 13.523 L 29.909 13.523 L 29.75 18.295 L 24.818 18.295 L 24.818 31.341 L 19.886 31.341 L 19.886 18.295 L 16.386 18.295 L 16.386 13.523 L 19.886 13.523 L 19.886 9.705 C 19.886 6.523 21.955 3.659 26.568 3.659 C 28.477 3.659 29.909 3.818 29.909 3.818 L 29.75 8.273 L 26.727 8.273 C 24.977 8.114 24.818 8.909 24.818 10.182\" fill=\"rgb(255,255,255)\"></path></svg>',svgContentId:10739594241}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(Link,{href:\"https://twitter.com/brightrockza\",motionChild:true,nodeId:\"TzMRt6PoT\",openInNewTab:true,scopeId:\"iyyDMtzRI\",children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-1nurnmq framer-1gqu6u2\",\"data-framer-name\":\"X\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"TzMRt6PoT\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 25 25\"><path d=\"M 13.25 12.091 C 14.909 14.307 16.568 16.523 18.227 18.727 L 18.318 18.852 L 16.17 18.852 L 12.091 13.318 L 6.693 5.989 L 8.659 5.989 L 10.318 8.193 L 12.568 11.193 C 12.795 11.489 13.011 11.784 13.239 12.091 M 20.455 19.92 C 20 19.307 19.534 18.705 19.08 18.091 C 17.386 15.83 15.682 13.568 13.989 11.307 C 15.989 9.182 17.977 7.057 19.977 4.932 L 18.466 4.932 L 13.318 10.42 C 11.943 8.591 10.58 6.761 9.205 4.932 L 4.602 4.932 L 8.489 10.216 C 9.227 11.216 9.955 12.216 10.693 13.216 C 9.966 14 9.227 14.784 8.489 15.557 C 7.693 16.398 6.898 17.25 6.114 18.091 C 5.545 18.705 4.977 19.307 4.398 19.92 L 5.898 19.92 C 6.466 19.307 7.045 18.705 7.614 18.091 C 8.864 16.761 10.102 15.432 11.352 14.114 C 12.33 15.443 13.307 16.773 14.284 18.091 C 14.727 18.705 15.182 19.307 15.625 19.92 L 20.443 19.92 Z M 22.409 0 C 23.75 0 24.841 1.091 24.841 2.432 L 24.841 22.409 C 24.841 23.75 23.75 24.841 22.409 24.841 L 2.432 24.841 C 1.091 24.841 0 23.75 0 22.409 L 0 2.432 C 0 1.091 1.091 0 2.432 0 L 22.409 0\" fill=\"rgb(255,255,255)\"></path></svg>',svgContentId:10472619905,withExternalLayout:true,...addPropertyOverrides({vkAbta18H:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 35 35\"><path d=\"M 18.55 16.927 C 20.873 20.03 23.195 23.132 25.518 26.218 L 25.645 26.393 L 22.639 26.393 L 16.927 18.645 L 9.37 8.384 L 12.123 8.384 L 14.445 11.47 L 17.595 15.67 C 17.914 16.084 18.216 16.498 18.534 16.927 M 28.636 27.889 C 28 27.03 27.348 26.186 26.711 25.327 C 24.341 22.161 21.955 18.995 19.584 15.83 C 22.384 12.855 25.168 9.88 27.968 6.905 L 25.852 6.905 L 18.645 14.589 C 16.72 12.027 14.811 9.466 12.886 6.905 L 6.443 6.905 L 11.884 14.302 C 12.918 15.702 13.936 17.102 14.97 18.502 C 13.952 19.6 12.918 20.698 11.884 21.78 C 10.77 22.957 9.657 24.15 8.559 25.327 C 7.764 26.186 6.968 27.03 6.157 27.889 L 8.257 27.889 C 9.052 27.03 9.864 26.186 10.659 25.327 C 12.409 23.466 14.143 21.605 15.893 19.759 C 17.261 21.62 18.63 23.482 19.998 25.327 C 20.618 26.186 21.255 27.03 21.875 27.889 L 28.62 27.889 Z M 31.373 0 C 33.25 0 34.777 1.527 34.777 3.405 L 34.777 31.373 C 34.777 33.25 33.25 34.777 31.373 34.777 L 3.405 34.777 C 1.527 34.777 0 33.25 0 31.373 L 0 3.405 C 0 1.527 1.527 0 3.405 0 L 31.373 0\" fill=\"rgb(255,255,255)\"></path></svg>',svgContentId:9145898826}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.linkedin.com/company/brightrockza\",motionChild:true,nodeId:\"B6HeCmInL\",openInNewTab:true,scopeId:\"iyyDMtzRI\",children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-1u5ajyd framer-1gqu6u2\",\"data-framer-name\":\"linkedin\",fill:\"black\",intrinsicHeight:22,intrinsicWidth:22,layoutDependency:layoutDependency,layoutId:\"B6HeCmInL\",svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 21.9 21.9\" style=\"enable-background:new 0 0 21.9 21.9\" xml:space=\"preserve\"><path d=\"M21.9 19.7V2.1c0-1.2-1-2.1-2.1-2.1H2.1C1 0 0 1 0 2.1v17.6c0 1.2 1 2.1 2.1 2.1h17.6c1.2.1 2.2-.9 2.2-2.1M6.4 4.8c0 1-.8 1.7-1.7 1.7s-1.8-.7-1.8-1.7.8-1.7 1.7-1.7 1.8.7 1.8 1.7m0 13.1H2.9V8h3.5v9.9zm12.7 0h-3.5v-6.3c0-.7-.2-1.4-1.7-1.4-1 0-1.6.6-2 .9v6.7H8.5V8H12v.7c.6-.3 1.6-.7 3.1-.7 3.2 0 3.8 1.8 3.9 2.4v7.5z\" style=\"fill:#fff\"/></svg>',withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-sllcxl\",\"data-framer-name\":\"Social stack\",layoutDependency:layoutDependency,layoutId:\"ouXH_cCrc\",style:{backgroundColor:\"rgba(255, 255, 255, 0)\"},children:[/*#__PURE__*/_jsx(Link,{href:\"https://www.youtube.com/BrightRockTV\",motionChild:true,nodeId:\"tqrjmZOmv\",openInNewTab:true,scopeId:\"iyyDMtzRI\",children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-bo6gel framer-1gqu6u2\",\"data-framer-name\":\"youtube\",fill:\"black\",intrinsicHeight:22,intrinsicWidth:22,layoutDependency:layoutDependency,layoutId:\"tqrjmZOmv\",svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 21.9 21.9\" style=\"enable-background:new 0 0 21.9 21.9\" xml:space=\"preserve\"><path d=\"M21.9 19.7V2.1c0-1.2-1-2.1-2.1-2.1H2.1C1 0 0 1 0 2.1v17.6c0 1.2 1 2.1 2.1 2.1h17.6c1.2.1 2.2-.9 2.2-2.1M9 1 7.7 5.3v3.1H6.6v-3L5.2 1h1.2l.7 3h.1l.7-3H9zm2.9 6c0 .5-.1.8-.4 1.1-.3.3-.6.4-1.1.4-.4 0-.8-.1-1.1-.4C9.1 7.8 9 7.5 9 7V4.2c0-.4.1-.8.4-1 .3-.3.6-.4 1.1-.4.2 0 .3.1.5.2.2 0 .4 0 .5.2.2.2.2.5.3.7 0 .1.1.2.1.3V7zm3.8 1.4h-1v-.6c-.2.2-.4.4-.6.5-.2.1-.4.2-.6.2-.2 0-.4-.1-.5-.2-.1-.1-.1-.4-.1-.6V2.9h1v4.2c0 .1 0 .2.1.3 0 .1.1.1.2.1s.2 0 .3-.1l.3-.3V2.9h1v5.5zm3.7 6.7c0 1 0 2.1-.1 3.1 0 1.3-1.1 2.4-2.4 2.4-1.9.1-3.9.1-5.8.1-2 0-3.9 0-5.8-.1-1.3 0-2.4-1.1-2.4-2.4-.1-1-.1-2.1-.1-3.1s0-2.1.1-3.1c0-1.3 1.1-2.4 2.4-2.4 1.7-.1 3.5-.1 5.4-.1h.6c1.9 0 3.7 0 5.5.1 1.3 0 2.4 1.1 2.4 2.4.1 1 .2 2 .2 3.1m-1.8 3.3c.3-.3.4-.7.4-1.3v-.5h-1v.4c0 .3 0 .5-.1.6-.1.1-.2.1-.4.1s-.3-.1-.3-.2c-.1 0-.2-.2-.2-.5v-1h2v-1.4c0-.5-.1-.9-.4-1.2-.2-.3-.6-.4-1.1-.4-.5 0-.8.2-1.1.4-.3.3-.4.7-.4 1.2v2.6c0 .5.1.9.4 1.2.3.3.6.5 1.1.5.5-.1.8-.2 1.1-.5M16 15.2v-.5c0-.2 0-.4.1-.5.1-.1.2-.1.3-.1.2 0 .3 0 .3.1.1.1.1.3.1.5v.5H16zm-2 3.2c.2-.2.2-.5.2-.9v-3.1c0-.4-.1-.8-.3-1-.2-.2-.4-.4-.7-.4-.2 0-.3 0-.5.1s-.3.2-.4.4v-2.4h-1v7.5h1v-.4c.1.2.3.3.4.4.2.1.3.1.5.1.4.1.6 0 .8-.3m-.8-1.1c0 .2 0 .3-.1.4-.1.1-.2.1-.3.1-.1 0-.2 0-.2-.1-.1 0-.2-.1-.2-.2v-3.3l.2-.2c.1 0 .1-.1.2-.1s.2 0 .3.1c.1.1.1.2.1.4v2.9zm-3.9 1.4h1v-5.6h-1v4.2l-.3.3c-.1.1-.2.1-.3.1-.1 0-.2 0-.2-.1s-.1-.2-.1-.3v-4.2h-1v4.7c0 .3.1.6.2.7.1.2.3.2.5.2s.4-.1.6-.2c.2-.1.4-.3.6-.5v.7zm-3.1-6.3h1.2v-1.2H3.9v1.2h1.2v6.4h1.1v-6.4zm4.6-5c.1-.1.1-.2.1-.3v-3c0-.1 0-.2-.1-.3-.1-.1-.2-.1-.3-.1-.1 0-.1 0-.1.1-.1 0-.1 0-.2.1-.1 0-.2.1-.2.2v3c0 .2 0 .3.1.3.1.1.2.1.3.1.2.1.3 0 .4-.1\" style=\"fill:#fff\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.instagram.com/brightrockza\",motionChild:true,nodeId:\"N7bBk3uea\",openInNewTab:true,scopeId:\"iyyDMtzRI\",children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-dkbwpe framer-1gqu6u2\",\"data-framer-name\":\"instagram\",fill:\"black\",intrinsicHeight:22,intrinsicWidth:22,layoutDependency:layoutDependency,layoutId:\"N7bBk3uea\",svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 21.9 21.9\" style=\"enable-background:new 0 0 21.9 21.9\" xml:space=\"preserve\"><path d=\"M16 11.1c0 2.9-2.4 5.3-5.3 5.3S5.4 14 5.4 11.1s2.4-5.3 5.3-5.3S16 8.2 16 11.1zm5.9-9v17.6c0 1.2-1 2.1-2.1 2.1H2.1c-1.2 0-2.1-1-2.1-2.1V2.1C0 1 1 0 2.1 0h17.6c1.2 0 2.2 1 2.2 2.1zm-4.6 9c0-3.6-2.9-6.6-6.6-6.6s-6.6 2.9-6.6 6.6 2.9 6.6 6.6 6.6 6.6-2.9 6.6-6.6zm1.3-6c0-.7-.5-1.2-1.2-1.2s-1.2.5-1.2 1.2.5 1.2 1.2 1.2 1.2-.5 1.2-1.2z\" style=\"fill:#fff\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.tiktok.com/@brightrockza\",motionChild:true,nodeId:\"ihZXmkd84\",scopeId:\"iyyDMtzRI\",children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-5zkjff framer-1gqu6u2\",\"data-framer-name\":\"tiktok\",fill:\"black\",intrinsicHeight:22,intrinsicWidth:22,layoutDependency:layoutDependency,layoutId:\"ihZXmkd84\",svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 21.9 21.9\" style=\"enable-background:new 0 0 21.9 21.9\" xml:space=\"preserve\"><path d=\"M18 9.4c-1.2 0-2.5-.2-3.9-1.3V13c0 8.2-9.3 7.2-10 1.8-.6-4.2 2.3-6.5 5.8-6.2v3c-3.8-.6-4 4.9-.2 4.4 1.3-.2 1.8-1.3 1.8-2.8V2.6h2.7c.2 2.8 1.8 4 3.7 4.1l.1 2.7zm3.6 10.1V2.1c0-1.2-.9-2.1-2.1-2.1H2.1C.9 0 0 .9 0 2.1v17.4c0 1.2.9 2.1 2.1 2.1h17.4c1.2 0 2.1-.9 2.1-2.1\" style=\"fill:#fff\"/></svg>',withExternalLayout:true})})]})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7T3BlbiBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Open Sans\", \"Open Sans Placeholder\", sans-serif',\"--framer-font-size\":\"7px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-ba0f8505-1870-43c0-8d4e-7d4bc5406462, rgb(153, 153, 153)))\"},children:\"BrightRock Life Ltd is a licensed financial services provider and life insurer. Company registration no: 1996/014618/06, FSP 11643. Copyright \\xa9 March 2025 BrightRock. All rights reserved. Terms and conditions apply.\"})}),className:\"framer-1vmc7pi\",fonts:[\"GF;Open Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"agdF9iYOx\",style:{\"--extracted-r6o4lv\":\"var(--token-ba0f8505-1870-43c0-8d4e-7d4bc5406462, rgb(153, 153, 153))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-77msuh\",\"data-framer-name\":\"Right frame\",layoutDependency:layoutDependency,layoutId:\"F9unVgdso\",style:{backgroundColor:\"rgba(204, 238, 255, 0)\"},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:256,intrinsicWidth:256,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+22+(((componentViewport?.height||211)-52-159)/2+0+0)+0+0),pixelHeight:256,pixelWidth:256,src:\"https://framerusercontent.com/images/hOPBVzuTbkGPsRkQa8Z7bROJHVY.webp\"},className:\"framer-dvl3os\",\"data-framer-name\":\"lovechange_j5hiqg\",layoutDependency:layoutDependency,layoutId:\"kZXF7NZsf\",...addPropertyOverrides({vkAbta18H:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:256,intrinsicWidth:256,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+22+(((componentViewport?.height||200)-92-318.32798304058144)/2+0+0)+0+0+0),pixelHeight:256,pixelWidth:256,src:\"https://framerusercontent.com/images/hOPBVzuTbkGPsRkQa8Z7bROJHVY.webp\"}}},baseVariant,gestureVariant)})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-9G92E.framer-1gqu6u2, .framer-9G92E .framer-1gqu6u2 { display: block; }\",\".framer-9G92E.framer-1nvxqdg { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: visible; padding: 22px 40px 30px 60px; position: relative; width: min-content; }\",\".framer-9G92E .framer-zere6b { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 270px; height: 159px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1100px; }\",\".framer-9G92E .framer-1wdflvh { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 100%; justify-content: center; padding: 0px; position: relative; width: 50%; }\",\".framer-9G92E .framer-p9s9r5 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-9G92E .framer-1t3na78 { aspect-ratio: 6.16044776119403 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 44px); max-width: 300px; overflow: visible; position: relative; text-decoration: none; width: 270px; }\",\".framer-9G92E .framer-17g2vby { aspect-ratio: 6.16044776119403 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 49px); max-width: 300px; overflow: visible; position: relative; text-decoration: none; width: 100%; }\",\".framer-9G92E .framer-1tqvp9g { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-9G92E .framer-oqrscc, .framer-9G92E .framer-sllcxl { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-9G92E .framer-ahqkt3, .framer-9G92E .framer-1nurnmq { flex: none; height: 25px; position: relative; text-decoration: none; width: 25px; }\",\".framer-9G92E .framer-1u5ajyd, .framer-9G92E .framer-5zkjff { flex: none; height: 25px; max-width: 25px; position: relative; text-decoration: none; width: 25px; }\",\".framer-9G92E .framer-bo6gel, .framer-9G92E .framer-dkbwpe { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 25px); max-width: 25px; position: relative; text-decoration: none; width: 25px; }\",\".framer-9G92E .framer-1vmc7pi { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-9G92E .framer-77msuh { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 100%; justify-content: center; padding: 0px; position: relative; width: 33%; }\",\".framer-9G92E .framer-dvl3os { aspect-ratio: 1 / 1; flex: none; height: 100%; overflow: visible; position: relative; width: var(--framer-aspect-ratio-supported, 159px); }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-9G92E.framer-1nvxqdg, .framer-9G92E .framer-zere6b, .framer-9G92E .framer-1wdflvh, .framer-9G92E .framer-p9s9r5, .framer-9G92E .framer-1tqvp9g, .framer-9G92E .framer-oqrscc, .framer-9G92E .framer-sllcxl, .framer-9G92E .framer-77msuh { gap: 0px; } .framer-9G92E.framer-1nvxqdg > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-9G92E.framer-1nvxqdg > :first-child, .framer-9G92E .framer-1wdflvh > :first-child, .framer-9G92E .framer-p9s9r5 > :first-child { margin-top: 0px; } .framer-9G92E.framer-1nvxqdg > :last-child, .framer-9G92E .framer-1wdflvh > :last-child, .framer-9G92E .framer-p9s9r5 > :last-child { margin-bottom: 0px; } .framer-9G92E .framer-zere6b > * { margin: 0px; margin-left: calc(270px / 2); margin-right: calc(270px / 2); } .framer-9G92E .framer-zere6b > :first-child, .framer-9G92E .framer-1tqvp9g > :first-child, .framer-9G92E .framer-oqrscc > :first-child, .framer-9G92E .framer-sllcxl > :first-child, .framer-9G92E .framer-77msuh > :first-child { margin-left: 0px; } .framer-9G92E .framer-zere6b > :last-child, .framer-9G92E .framer-1tqvp9g > :last-child, .framer-9G92E .framer-oqrscc > :last-child, .framer-9G92E .framer-sllcxl > :last-child, .framer-9G92E .framer-77msuh > :last-child { margin-right: 0px; } .framer-9G92E .framer-1wdflvh > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-9G92E .framer-p9s9r5 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-9G92E .framer-1tqvp9g > *, .framer-9G92E .framer-oqrscc > *, .framer-9G92E .framer-sllcxl > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-9G92E .framer-77msuh > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } }\",\".framer-9G92E.framer-v-7i1e66.framer-1nvxqdg { width: 760px; }\",\".framer-9G92E.framer-v-7i1e66 .framer-zere6b { gap: 130px; width: 100%; }\",\".framer-9G92E.framer-v-7i1e66 .framer-p9s9r5 { gap: 20px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-9G92E.framer-v-7i1e66 .framer-zere6b, .framer-9G92E.framer-v-7i1e66 .framer-p9s9r5 { gap: 0px; } .framer-9G92E.framer-v-7i1e66 .framer-zere6b > * { margin: 0px; margin-left: calc(130px / 2); margin-right: calc(130px / 2); } .framer-9G92E.framer-v-7i1e66 .framer-zere6b > :first-child { margin-left: 0px; } .framer-9G92E.framer-v-7i1e66 .framer-zere6b > :last-child { margin-right: 0px; } .framer-9G92E.framer-v-7i1e66 .framer-p9s9r5 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-9G92E.framer-v-7i1e66 .framer-p9s9r5 > :first-child { margin-top: 0px; } .framer-9G92E.framer-v-7i1e66 .framer-p9s9r5 > :last-child { margin-bottom: 0px; } }\",\".framer-9G92E.framer-v-1t8chdg.framer-1nvxqdg { padding: 22px 40px 70px 60px; width: 400px; }\",\".framer-9G92E.framer-v-1t8chdg .framer-zere6b { flex-direction: column; gap: 12px; height: min-content; width: 100%; }\",\".framer-9G92E.framer-v-1t8chdg .framer-1wdflvh { height: min-content; order: 1; width: 100%; }\",\".framer-9G92E.framer-v-1t8chdg .framer-p9s9r5 { align-content: center; align-items: center; gap: 15px; height: min-content; }\",\".framer-9G92E.framer-v-1t8chdg .framer-1tqvp9g { height: 50px; width: 100%; }\",\".framer-9G92E.framer-v-1t8chdg .framer-oqrscc, .framer-9G92E.framer-v-1t8chdg .framer-sllcxl { height: 50px; }\",\".framer-9G92E.framer-v-1t8chdg .framer-ahqkt3, .framer-9G92E.framer-v-1t8chdg .framer-1nurnmq { height: 35px; width: 35px; }\",\".framer-9G92E.framer-v-1t8chdg .framer-1u5ajyd, .framer-9G92E.framer-v-1t8chdg .framer-5zkjff { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 35px); max-width: 35px; width: 35px; }\",\".framer-9G92E.framer-v-1t8chdg .framer-bo6gel, .framer-9G92E.framer-v-1t8chdg .framer-dkbwpe { height: var(--framer-aspect-ratio-supported, 35px); max-width: 35px; width: 35px; }\",\".framer-9G92E.framer-v-1t8chdg .framer-1vmc7pi { width: 300px; }\",\".framer-9G92E.framer-v-1t8chdg .framer-77msuh { height: 130px; order: 0; width: 100%; }\",\".framer-9G92E.framer-v-1t8chdg .framer-dvl3os { width: var(--framer-aspect-ratio-supported, 200px); }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-9G92E.framer-v-1t8chdg .framer-zere6b, .framer-9G92E.framer-v-1t8chdg .framer-p9s9r5 { gap: 0px; } .framer-9G92E.framer-v-1t8chdg .framer-zere6b > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-9G92E.framer-v-1t8chdg .framer-zere6b > :first-child, .framer-9G92E.framer-v-1t8chdg .framer-p9s9r5 > :first-child { margin-top: 0px; } .framer-9G92E.framer-v-1t8chdg .framer-zere6b > :last-child, .framer-9G92E.framer-v-1t8chdg .framer-p9s9r5 > :last-child { margin-bottom: 0px; } .framer-9G92E.framer-v-1t8chdg .framer-p9s9r5 > * { margin: 0px; margin-bottom: calc(15px / 2); margin-top: calc(15px / 2); } }\",'.framer-9G92E[data-border=\"true\"]::after, .framer-9G92E [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 211\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"zlb8avRX0\":{\"layout\":[\"fixed\",\"auto\"]},\"vkAbta18H\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FrameriyyDMtzRI=withCSS(Component,css,\"framer-9G92E\");export default FrameriyyDMtzRI;FrameriyyDMtzRI.displayName=\"Comet footer\";FrameriyyDMtzRI.defaultProps={height:211,width:1200};addPropertyControls(FrameriyyDMtzRI,{variant:{options:[\"aubIO0zp7\",\"zlb8avRX0\",\"vkAbta18H\"],optionTitles:[\"Desktop\",\"Tablet\",\"Phone\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FrameriyyDMtzRI,[{explicitInter:true,fonts:[{family:\"Open Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/opensans/v40/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjZ0C4iY1M2xLER.woff2\",weight:\"400\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameriyyDMtzRI\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"zlb8avRX0\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"vkAbta18H\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"1200\",\"framerIntrinsicHeight\":\"211\",\"framerComponentViewportWidth\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./iyyDMtzRI.map"],
  "mappings": "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",
  "names": ["useConstant", "init", "ref", "pe", "BASE62", "randomID", "length", "useRandomID", "useConstant", "cycleOrder", "variantClassNames", "humanReadableVariantMap", "transitions", "Component", "Y", "externalStyle", "className", "width", "height", "layoutId", "outerVariant", "TBgHLr7MW", "iWF8EWIN1", "restProps", "ref", "variant", "variants", "baseVariant", "gestureVariant", "classNames", "transition", "setVariant", "setGestureState", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTapsct6xz", "args", "onTap7ln769", "variantProps", "se", "addVariantProps", "useAddVariantProps", "defaultLayoutId", "useRandomID", "pointerEvents", "style", "p", "LayoutGroup", "motion", "cx", "css", "FramerF8KjCKf_G", "withCSS", "F8KjCKf_G_default", "addPropertyControls", "ControlType", "addFonts", "cycleOrder", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "humanReadableVariantMap", "transitions", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Component", "Y", "id", "style", "className", "width", "height", "layoutId", "outerVariant", "TBgHLr7MW", "iWF8EWIN1", "restProps", "ref", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1exkyhh", "args", "onTap1kjj2rg", "defaultLayoutId", "ae", "LayoutGroup", "motion", "cx", "css", "FramerwKlyeJICW", "withCSS", "wKlyeJICW_default", "addPropertyControls", "ControlType", "addFonts", "ElementsMenuIconFonts", "getFonts", "F8KjCKf_G_default", "ElementsMenuIconCopyFonts", "wKlyeJICW_default", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "click", "height", "id", "tap", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "c4l2v95Wh", "zKeTHE9yz", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1ifaylk", "args", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "isDisplayed2", "LayoutGroup", "Link", "Image2", "getLoadingLazyAtYPosition", "ComponentViewportProvider", "SmartComponentScopedContainer", "css", "FramerabR6C5eXB", "withCSS", "abR6C5eXB_default", "addPropertyControls", "ControlType", "addFonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "LayoutGroup", "Link", "Image2", "getLoadingLazyAtYPosition", "SVG", "RichText2", "css", "FrameriyyDMtzRI", "withCSS", "iyyDMtzRI_default", "addPropertyControls", "ControlType", "addFonts"]
}
