{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/xeIrVZt2Hwc8SUeRWBPY/UvQvykQ3GfHAQfG36hCp/AawFnfNG3.js", "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/qPcsejyyS1iNVLdU6Fd6/DvKQGiLKmjqNgVSNqmFU/edmMrk2Z3.js", "ssg:https://framerusercontent.com/modules/dvFPcm3vhU7YgZmFUoRd/w7jDowx2Ng1YTwBDdShz/Lkwc8yjol.js", "ssg:https://framerusercontent.com/modules/185sRGwkKMHo3oCMRA6V/NyhaCz4sa1ituFEPgbdH/fvU9HI9ma.js", "ssg:https://framerusercontent.com/modules/IFp7rdummkoJBQzX6fWw/bUZYhzQPsP7s09Ryy2l4/hOrNdWHi6.js", "ssg:https://framerusercontent.com/modules/DE3yF34HJkwPWFykqYuk/nzpkmGuBBZTsVnV3tMwD/jxx79utqk.js", "ssg:https://framerusercontent.com/modules/cocfvSSmgLP8udO0qQfg/9ta2hsmvzyHkm3hI82Uc/ud7WsLL0O.js", "ssg:https://framerusercontent.com/modules/azHGx5a6XwfoeVyz4VIp/W9mo6Sa3Ww4Bx3TsqezQ/PayQRORxQ.js", "ssg:https://framerusercontent.com/modules/kjCbQJgSlVDpdjaeTo68/N80B7jSKFdJSWvOGKMW2/vLc0yibwo.js", "ssg:https://framerusercontent.com/modules/4rTl96eHXdK4F8PgkRAj/kNYr0czh3FyDdNzDjzkf/NFESY9b70.js", "ssg:https://framerusercontent.com/modules/omsQg1fuP2UGGoiJKOlL/xLI9vDy94b40zizAR7U0/serHcjSOr.js", "ssg:https://framerusercontent.com/modules/8882BhoKHdQsXVoWon3F/wlMATDHUWnhIeZRiCkGy/so0EbRtMY.js", "ssg:https://framerusercontent.com/modules/lloW377U9wKFOUZQeMAL/YIs3kkSkxD7CYPFpk5h1/W0I0KaZoC.js"],
  "sourcesContent": ["import{fontStore as r}from\"framer\";r.loadWebFontsFromSelectors([\"Inter-SemiBold\",\"Inter-Black\",\"Inter-BlackItalic\",\"Inter-SemiBoldItalic\"]);export const fonts=[];export const css=['.framer-vAyLc .framer-styles-preset-1g91m8d:not(.rich-text-wrapper), .framer-vAyLc .framer-styles-preset-1g91m8d.rich-text-wrapper p { --framer-font-family: \"Inter-SemiBold\", \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold: \"Inter-Black\", \"Inter\", sans-serif; --framer-font-family-bold-italic: \"Inter-BlackItalic\", \"Inter\", sans-serif; --framer-font-family-italic: \"Inter-SemiBoldItalic\", \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-size: 16px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 600; --framer-font-weight-bold: 900; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 600; --framer-letter-spacing: 0px; --framer-line-height: 170%; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: var(--token-86eb8ebb-a67b-4881-bab4-bef2965a7627, #110f16); --framer-text-decoration: none; --framer-text-transform: none; }'];export const className=\"framer-vAyLc\";\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\"}}}", "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", "import{fontStore}from\"framer\";fontStore.loadFonts([]);export const fonts=[];export const css=['.framer-5kzhl .framer-styles-preset-vup4yl:not(.rich-text-wrapper), .framer-5kzhl .framer-styles-preset-vup4yl.rich-text-wrapper a { --framer-link-current-text-color: var(--token-86eb8ebb-a67b-4881-bab4-bef2965a7627, #110f16) /* {\"name\":\"Neutral / 04\"} */; --framer-link-current-text-decoration: none; --framer-link-hover-text-color: var(--token-2eeb5a80-751b-4068-9276-5a2e037a3046, #2c34f6) /* {\"name\":\"Color / 01\"} */; --framer-link-hover-text-decoration: none; --framer-link-text-color: var(--token-86eb8ebb-a67b-4881-bab4-bef2965a7627, #110f16); --framer-link-text-decoration: none; }'];export const className=\"framer-5kzhl\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{fontStore as r}from\"framer\";r.loadWebFontsFromSelectors([\"Inter\",\"Inter-Bold\",\"Inter-BoldItalic\",\"Inter-Italic\"]);export const fonts=[];export const css=['.framer-u8XYX .framer-styles-preset-3dccwh:not(.rich-text-wrapper), .framer-u8XYX .framer-styles-preset-3dccwh.rich-text-wrapper p { --framer-font-family: \"Inter\", sans-serif; --framer-font-family-bold: \"Inter-Bold\", \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Inter-BoldItalic\", \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-italic: \"Inter-Italic\", \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-size: 14px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: -0.0125em; --framer-line-height: 157%; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: var(--token-61258fb8-8226-4707-ae82-7b16fe2904cb, #495460); --framer-text-decoration: none; --framer-text-transform: none; }'];export const className=\"framer-u8XYX\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (1119174)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Link,RichText,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/qPcsejyyS1iNVLdU6Fd6/DvKQGiLKmjqNgVSNqmFU/edmMrk2Z3.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/7AFyv8vec0uoijMuPC3M/9K1hHPONZ5uNflHJhgbj/khNhtWMYb.js\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/dvFPcm3vhU7YgZmFUoRd/w7jDowx2Ng1YTwBDdShz/Lkwc8yjol.js\";const cycleOrder=[\"qcxldGS31\",\"k9HLtThpS\",\"vOHyrBHfX\",\"VYakO9dMW\",\"mpmKOxmRe\"];const serializationHash=\"framer-en2zZ\";const variantClassNames={k9HLtThpS:\"framer-v-ra0pom\",mpmKOxmRe:\"framer-v-1e8hn1h\",qcxldGS31:\"framer-v-1ntx2ew\",vOHyrBHfX:\"framer-v-18os28v\",VYakO9dMW:\"framer-v-xiscqz\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transitions={default:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"}};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const humanReadableVariantMap={\"Menu - Home - Phone\":\"mpmKOxmRe\",\"Menu - Home\":\"VYakO9dMW\",\"Menu - Pages - Phone\":\"vOHyrBHfX\",\"Menu - Pages - Tablet\":\"k9HLtThpS\",\"Menu - Pages\":\"qcxldGS31\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"qcxldGS31\"};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"qcxldGS31\",transitions,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"k9HLtThpS\")return true;return false;};const isDisplayed1=()=>{if(baseVariant===\"VYakO9dMW\")return true;return false;};const isDisplayed2=()=>{if([\"VYakO9dMW\",\"mpmKOxmRe\"].includes(baseVariant))return false;return true;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className];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-en2zZ\",...sharedStyleClassNames,classNames),style:{display:\"contents\"},children:/*#__PURE__*/_jsx(Transition,{value:transition,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(\"framer-1ntx2ew\",className),\"data-framer-name\":\"Menu - Pages\",layoutDependency:layoutDependency,layoutId:\"qcxldGS31\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"var(--token-a7f7ae5f-a181-442b-8823-be0ca1b170fe, rgb(255, 255, 255))\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,boxShadow:\"0px 25px 40px 0px rgba(0, 0, 0, 0.1)\",originX:0,originY:0,...style},variants:{k9HLtThpS:{borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0,boxShadow:\"none\"},mpmKOxmRe:{borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0,boxShadow:\"none\"},vOHyrBHfX:{backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0,boxShadow:\"none\"}},...addPropertyOverrides({k9HLtThpS:{\"data-framer-name\":\"Menu - Pages - Tablet\"},mpmKOxmRe:{\"data-framer-name\":\"Menu - Home - Phone\"},vOHyrBHfX:{\"data-framer-name\":\"Menu - Pages - Phone\"},VYakO9dMW:{\"data-framer-name\":\"Menu - Home\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1ci1g15\",\"data-styles-preset\":\"khNhtWMYb\",children:\"All Pages\"})}),className:\"framer-1f6kav5\",layoutDependency:layoutDependency,layoutId:\"qA2C6L5xD\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-xyqhxy\",layoutDependency:layoutDependency,layoutId:\"FBgBl1QnJ\",children:[/*#__PURE__*/_jsx(Link,{...addPropertyOverrides({VYakO9dMW:{href:{webPageId:\"PSGfaGDe5\"}}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-12v86jw framer-u52voi\",\"data-framer-name\":\"Item\",layoutDependency:layoutDependency,layoutId:\"n6hcN_HvC\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1ci1g15\",\"data-styles-preset\":\"khNhtWMYb\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"Up5VqiXr3\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-vup4yl\",\"data-styles-preset\":\"edmMrk2Z3\",children:\"About Us\"})})})}),className:\"framer-18d6is\",layoutDependency:layoutDependency,layoutId:\"lAv5BBz0Z\",style:{\"--framer-paragraph-spacing\":\"0px\"},variants:{VYakO9dMW:{\"--extracted-r6o4lv\":\"var(--token-86eb8ebb-a67b-4881-bab4-bef2965a7627, rgb(17, 15, 22))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({mpmKOxmRe:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1ci1g15\",\"data-styles-preset\":\"khNhtWMYb\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"AKz1Hoz0U\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-vup4yl\",\"data-styles-preset\":\"edmMrk2Z3\",children:\"Home v2\"})})})})},VYakO9dMW:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1ci1g15\",\"data-styles-preset\":\"khNhtWMYb\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-86eb8ebb-a67b-4881-bab4-bef2965a7627, rgb(17, 15, 22)))\"},children:\"Home v2\"})})}},baseVariant,gestureVariant)}),isDisplayed1()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-3dccwh\",\"data-styles-preset\":\"Lkwc8yjol\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-86eb8ebb-a67b-4881-bab4-bef2965a7627, rgb(17, 15, 22)))\"},children:\"Modern SaaS Homepage\"})}),className:\"framer-kp7lr4\",layoutDependency:layoutDependency,layoutId:\"fdF0ny0S9\",style:{\"--extracted-r6o4lv\":\"var(--token-86eb8ebb-a67b-4881-bab4-bef2965a7627, rgb(17, 15, 22))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]})}),isDisplayed2()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-uwkw0i\",\"data-framer-name\":\"Item\",layoutDependency:layoutDependency,layoutId:\"IvsGL3QBP\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1ci1g15\",\"data-styles-preset\":\"khNhtWMYb\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"TmD1uOlMF\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-vup4yl\",\"data-styles-preset\":\"edmMrk2Z3\",children:\"Pricing\"})})})}),className:\"framer-imqe4d\",layoutDependency:layoutDependency,layoutId:\"G53HfrVZV\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(Link,{...addPropertyOverrides({VYakO9dMW:{href:{webPageId:\"augiA20Il\"}}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-1hsnn0x framer-u52voi\",\"data-framer-name\":\"Item\",layoutDependency:layoutDependency,layoutId:\"gGU9YNqTX\",style:{opacity:1},variants:{VYakO9dMW:{opacity:.8}},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1ci1g15\",\"data-styles-preset\":\"khNhtWMYb\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"XMkS_pjrx\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-vup4yl\",\"data-styles-preset\":\"edmMrk2Z3\",children:\"Case Study\"})})})}),className:\"framer-12i1rul\",layoutDependency:layoutDependency,layoutId:\"FpNrAu_v5\",style:{\"--framer-paragraph-spacing\":\"0px\"},variants:{VYakO9dMW:{\"--extracted-r6o4lv\":\"var(--token-86eb8ebb-a67b-4881-bab4-bef2965a7627, rgb(17, 15, 22))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({mpmKOxmRe:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1ci1g15\",\"data-styles-preset\":\"khNhtWMYb\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"augiA20Il\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-vup4yl\",\"data-styles-preset\":\"edmMrk2Z3\",children:\"Home v1\"})})})})},VYakO9dMW:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1ci1g15\",\"data-styles-preset\":\"khNhtWMYb\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-86eb8ebb-a67b-4881-bab4-bef2965a7627, rgb(17, 15, 22)))\"},children:\"Home v1\"})})}},baseVariant,gestureVariant)}),isDisplayed1()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-3dccwh\",\"data-styles-preset\":\"Lkwc8yjol\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-86eb8ebb-a67b-4881-bab4-bef2965a7627, rgb(17, 15, 22)))\"},children:\"A tranditional one\"})}),className:\"framer-ltoyfh\",layoutDependency:layoutDependency,layoutId:\"zI6Q69PSe\",style:{\"--extracted-r6o4lv\":\"var(--token-86eb8ebb-a67b-4881-bab4-bef2965a7627, rgb(17, 15, 22))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]})}),isDisplayed2()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1x0ir8d\",\"data-framer-name\":\"Item\",layoutDependency:layoutDependency,layoutId:\"Rij3DqkFK\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1ci1g15\",\"data-styles-preset\":\"khNhtWMYb\",children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{N02J_ItLP:\"how-we-helped-confront-to-grow-faster-during-covid\"},webPageId:\"fVZtM7nMF\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-vup4yl\",\"data-styles-preset\":\"edmMrk2Z3\",children:\"Case Study Details\"})})})}),className:\"framer-8tmqh9\",layoutDependency:layoutDependency,layoutId:\"VSs3zCuXd\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})}),isDisplayed2()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1r51hl3\",\"data-framer-name\":\"Item\",layoutDependency:layoutDependency,layoutId:\"QFnGtQT6M\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1ci1g15\",\"data-styles-preset\":\"khNhtWMYb\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"vydAVXxfr\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-vup4yl\",\"data-styles-preset\":\"edmMrk2Z3\",children:\"Blog\"})})})}),className:\"framer-45oq1s\",layoutDependency:layoutDependency,layoutId:\"rQHiniqgD\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})}),isDisplayed2()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1v7vipm\",\"data-framer-name\":\"Item\",layoutDependency:layoutDependency,layoutId:\"azn18Z3z9\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1ci1g15\",\"data-styles-preset\":\"khNhtWMYb\",children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{N02J_ItLP:\"how-we-helped-confront-to-grow-faster-during-covid\"},webPageId:\"sufAHXyav\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-vup4yl\",\"data-styles-preset\":\"edmMrk2Z3\",children:\"Blog Details\"})})})}),className:\"framer-j0rqs3\",layoutDependency:layoutDependency,layoutId:\"USbw1ZVye\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})}),isDisplayed2()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-mqguah\",\"data-framer-name\":\"Item\",layoutDependency:layoutDependency,layoutId:\"VbRLTUrAx\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1ci1g15\",\"data-styles-preset\":\"khNhtWMYb\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"xVXMrntyc\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-vup4yl\",\"data-styles-preset\":\"edmMrk2Z3\",children:\"Contact \"})})})}),className:\"framer-1lc26rj\",layoutDependency:layoutDependency,layoutId:\"eBdyA8ZBO\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})}),isDisplayed2()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-jmn0sg\",\"data-framer-name\":\"Item\",layoutDependency:layoutDependency,layoutId:\"PHCHITsx4\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1ci1g15\",\"data-styles-preset\":\"khNhtWMYb\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"rZK3qXsh7\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-vup4yl\",\"data-styles-preset\":\"edmMrk2Z3\",children:\"Term & condition\"})})})}),className:\"framer-1efwx9o\",layoutDependency:layoutDependency,layoutId:\"xhWr9D0Ub\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})}),isDisplayed2()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-4pbylc\",\"data-framer-name\":\"Item\",layoutDependency:layoutDependency,layoutId:\"uityGFkCf\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1ci1g15\",\"data-styles-preset\":\"khNhtWMYb\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"RTiqB9LEP\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-vup4yl\",\"data-styles-preset\":\"edmMrk2Z3\",children:\"Privacy policy\"})})})}),className:\"framer-2yo6hg\",layoutDependency:layoutDependency,layoutId:\"SK8DC1KyD\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})}),isDisplayed2()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-7ypkmi\",\"data-framer-name\":\"Item\",layoutDependency:layoutDependency,layoutId:\"rp4H3BZAr\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1ci1g15\",\"data-styles-preset\":\"khNhtWMYb\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"jSqB3r0Rl\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-vup4yl\",\"data-styles-preset\":\"edmMrk2Z3\",children:\"404\"})})})}),className:\"framer-xbl61f\",layoutDependency:layoutDependency,layoutId:\"iBiiACeVF\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})})]})]})})})});});const css=['.framer-en2zZ [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-en2zZ .framer-u52voi { display: block; }\",\".framer-en2zZ .framer-1ntx2ew { align-content: start; align-items: start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 24px 22px 24px 22px; position: relative; width: 200px; will-change: var(--framer-will-change-override, transform); }\",\".framer-en2zZ .framer-1f6kav5, .framer-en2zZ .framer-18d6is, .framer-en2zZ .framer-kp7lr4, .framer-en2zZ .framer-imqe4d, .framer-en2zZ .framer-ltoyfh { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-en2zZ .framer-xyqhxy { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-en2zZ .framer-12v86jw, .framer-en2zZ .framer-uwkw0i, .framer-en2zZ .framer-1hsnn0x, .framer-en2zZ .framer-1x0ir8d, .framer-en2zZ .framer-1r51hl3, .framer-en2zZ .framer-mqguah, .framer-en2zZ .framer-jmn0sg, .framer-en2zZ .framer-4pbylc { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-en2zZ .framer-12i1rul, .framer-en2zZ .framer-8tmqh9, .framer-en2zZ .framer-45oq1s, .framer-en2zZ .framer-j0rqs3, .framer-en2zZ .framer-1lc26rj, .framer-en2zZ .framer-1efwx9o, .framer-en2zZ .framer-2yo6hg, .framer-en2zZ .framer-xbl61f { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-en2zZ .framer-1v7vipm, .framer-en2zZ .framer-7ypkmi { align-content: start; align-items: start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-en2zZ .framer-1ntx2ew, .framer-en2zZ .framer-xyqhxy, .framer-en2zZ .framer-12v86jw, .framer-en2zZ .framer-uwkw0i, .framer-en2zZ .framer-1hsnn0x, .framer-en2zZ .framer-1x0ir8d, .framer-en2zZ .framer-1r51hl3, .framer-en2zZ .framer-1v7vipm, .framer-en2zZ .framer-mqguah, .framer-en2zZ .framer-jmn0sg, .framer-en2zZ .framer-4pbylc, .framer-en2zZ .framer-7ypkmi { gap: 0px; } .framer-en2zZ .framer-1ntx2ew > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-en2zZ .framer-1ntx2ew > :first-child, .framer-en2zZ .framer-xyqhxy > :first-child { margin-top: 0px; } .framer-en2zZ .framer-1ntx2ew > :last-child, .framer-en2zZ .framer-xyqhxy > :last-child { margin-bottom: 0px; } .framer-en2zZ .framer-xyqhxy > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-en2zZ .framer-12v86jw > *, .framer-en2zZ .framer-uwkw0i > *, .framer-en2zZ .framer-1hsnn0x > *, .framer-en2zZ .framer-1x0ir8d > *, .framer-en2zZ .framer-1r51hl3 > *, .framer-en2zZ .framer-1v7vipm > *, .framer-en2zZ .framer-mqguah > *, .framer-en2zZ .framer-jmn0sg > *, .framer-en2zZ .framer-4pbylc > *, .framer-en2zZ .framer-7ypkmi > * { margin: 0px; margin-left: calc(15px / 2); margin-right: calc(15px / 2); } .framer-en2zZ .framer-12v86jw > :first-child, .framer-en2zZ .framer-uwkw0i > :first-child, .framer-en2zZ .framer-1hsnn0x > :first-child, .framer-en2zZ .framer-1x0ir8d > :first-child, .framer-en2zZ .framer-1r51hl3 > :first-child, .framer-en2zZ .framer-1v7vipm > :first-child, .framer-en2zZ .framer-mqguah > :first-child, .framer-en2zZ .framer-jmn0sg > :first-child, .framer-en2zZ .framer-4pbylc > :first-child, .framer-en2zZ .framer-7ypkmi > :first-child { margin-left: 0px; } .framer-en2zZ .framer-12v86jw > :last-child, .framer-en2zZ .framer-uwkw0i > :last-child, .framer-en2zZ .framer-1hsnn0x > :last-child, .framer-en2zZ .framer-1x0ir8d > :last-child, .framer-en2zZ .framer-1r51hl3 > :last-child, .framer-en2zZ .framer-1v7vipm > :last-child, .framer-en2zZ .framer-mqguah > :last-child, .framer-en2zZ .framer-jmn0sg > :last-child, .framer-en2zZ .framer-4pbylc > :last-child, .framer-en2zZ .framer-7ypkmi > :last-child { margin-right: 0px; } }\",\".framer-en2zZ.framer-v-ra0pom .framer-1ntx2ew { gap: 16px; padding: 0px 0px 0px 0px; width: 351px; }\",\".framer-en2zZ.framer-v-ra0pom .framer-1f6kav5, .framer-en2zZ.framer-v-1e8hn1h .framer-1hsnn0x { order: 0; }\",\".framer-en2zZ.framer-v-ra0pom .framer-xyqhxy { align-content: start; align-items: start; order: 1; width: min-content; }\",\".framer-en2zZ.framer-v-ra0pom .framer-12v86jw { width: 70px; }\",\".framer-en2zZ.framer-v-ra0pom .framer-uwkw0i, .framer-en2zZ.framer-v-ra0pom .framer-1x0ir8d, .framer-en2zZ.framer-v-ra0pom .framer-1r51hl3 { align-content: start; align-items: start; width: min-content; }\",\".framer-en2zZ.framer-v-ra0pom .framer-1hsnn0x, .framer-en2zZ.framer-v-xiscqz .framer-1ntx2ew { width: min-content; }\",\".framer-en2zZ.framer-v-ra0pom .framer-12i1rul, .framer-en2zZ.framer-v-ra0pom .framer-8tmqh9, .framer-en2zZ.framer-v-ra0pom .framer-45oq1s, .framer-en2zZ.framer-v-xiscqz .framer-12i1rul { flex: none; white-space: pre; width: auto; }\",\".framer-en2zZ.framer-v-ra0pom .framer-1v7vipm, .framer-en2zZ.framer-v-ra0pom .framer-mqguah, .framer-en2zZ.framer-v-ra0pom .framer-jmn0sg, .framer-en2zZ.framer-v-ra0pom .framer-4pbylc, .framer-en2zZ.framer-v-ra0pom .framer-7ypkmi { align-self: stretch; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-en2zZ.framer-v-ra0pom .framer-1ntx2ew { gap: 0px; } .framer-en2zZ.framer-v-ra0pom .framer-1ntx2ew > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-en2zZ.framer-v-ra0pom .framer-1ntx2ew > :first-child { margin-top: 0px; } .framer-en2zZ.framer-v-ra0pom .framer-1ntx2ew > :last-child { margin-bottom: 0px; } }\",\".framer-en2zZ.framer-v-18os28v .framer-1ntx2ew { padding: 0px 0px 0px 0px; width: 220px; }\",\".framer-en2zZ.framer-v-18os28v .framer-xyqhxy { align-content: start; align-items: start; order: 0; }\",\".framer-en2zZ.framer-v-18os28v .framer-uwkw0i, .framer-en2zZ.framer-v-18os28v .framer-1x0ir8d, .framer-en2zZ.framer-v-18os28v .framer-1r51hl3 { align-content: start; align-items: start; }\",\".framer-en2zZ.framer-v-xiscqz .framer-xyqhxy { align-content: start; align-items: start; justify-content: flex-start; width: min-content; }\",\".framer-en2zZ.framer-v-xiscqz .framer-12v86jw { align-content: start; align-items: start; flex-direction: column; gap: 0px; order: 1; text-decoration: none; width: min-content; }\",\".framer-en2zZ.framer-v-xiscqz .framer-1hsnn0x { align-content: start; align-items: start; flex-direction: column; gap: 0px; order: 0; text-decoration: none; width: min-content; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-en2zZ.framer-v-xiscqz .framer-12v86jw, .framer-en2zZ.framer-v-xiscqz .framer-1hsnn0x { gap: 0px; } .framer-en2zZ.framer-v-xiscqz .framer-12v86jw > *, .framer-en2zZ.framer-v-xiscqz .framer-1hsnn0x > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-en2zZ.framer-v-xiscqz .framer-12v86jw > :first-child, .framer-en2zZ.framer-v-xiscqz .framer-1hsnn0x > :first-child { margin-top: 0px; } .framer-en2zZ.framer-v-xiscqz .framer-12v86jw > :last-child, .framer-en2zZ.framer-v-xiscqz .framer-1hsnn0x > :last-child { margin-bottom: 0px; } }\",\".framer-en2zZ.framer-v-1e8hn1h .framer-1ntx2ew { gap: 14px; padding: 0px 0px 0px 0px; width: 150px; }\",\".framer-en2zZ.framer-v-1e8hn1h .framer-xyqhxy, .framer-en2zZ.framer-v-1e8hn1h .framer-12v86jw { order: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-en2zZ.framer-v-1e8hn1h .framer-1ntx2ew { gap: 0px; } .framer-en2zZ.framer-v-1e8hn1h .framer-1ntx2ew > * { margin: 0px; margin-bottom: calc(14px / 2); margin-top: calc(14px / 2); } .framer-en2zZ.framer-v-1e8hn1h .framer-1ntx2ew > :first-child { margin-top: 0px; } .framer-en2zZ.framer-v-1e8hn1h .framer-1ntx2ew > :last-child { margin-bottom: 0px; } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 464\n * @framerIntrinsicWidth 200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"k9HLtThpS\":{\"layout\":[\"fixed\",\"auto\"]},\"vOHyrBHfX\":{\"layout\":[\"fixed\",\"auto\"]},\"VYakO9dMW\":{\"layout\":[\"auto\",\"auto\"]},\"mpmKOxmRe\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n */const FramerfvU9HI9ma=withCSS(Component,css,\"framer-en2zZ\");export default FramerfvU9HI9ma;FramerfvU9HI9ma.displayName=\"Links: Resource\";FramerfvU9HI9ma.defaultProps={height:464,width:200};addPropertyControls(FramerfvU9HI9ma,{variant:{options:[\"qcxldGS31\",\"k9HLtThpS\",\"vOHyrBHfX\",\"VYakO9dMW\",\"mpmKOxmRe\"],optionTitles:[\"Menu - Pages\",\"Menu - Pages - Tablet\",\"Menu - Pages - Phone\",\"Menu - Home\",\"Menu - Home - Phone\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerfvU9HI9ma,[...sharedStyle.fonts,...sharedStyle1.fonts,...sharedStyle2.fonts]);\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerfvU9HI9ma\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"k9HLtThpS\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"vOHyrBHfX\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"VYakO9dMW\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"mpmKOxmRe\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"464\",\"framerIntrinsicWidth\":\"200\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./fvU9HI9ma.map", "// Generated by Framer (1119174)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Link,RichText,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/xeIrVZt2Hwc8SUeRWBPY/UvQvykQ3GfHAQfG36hCp/AawFnfNG3.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/dvFPcm3vhU7YgZmFUoRd/w7jDowx2Ng1YTwBDdShz/Lkwc8yjol.js\";const enabledGestures={TE9wGCV8z:{hover:true}};const cycleOrder=[\"TE9wGCV8z\"];const serializationHash=\"framer-NsHVg\";const variantClassNames={TE9wGCV8z:\"framer-v-18xl9d1\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transitions={default:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"}};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const getProps=({height,id,link,subTitle,title,width,...props})=>{var _ref,_ref1;return{...props,fkrP04sVN:(_ref=title!==null&&title!==void 0?title:props.fkrP04sVN)!==null&&_ref!==void 0?_ref:\"Home v1\",H9_pVGPUC:link!==null&&link!==void 0?link:props.H9_pVGPUC,SgC8ISWag:(_ref1=subTitle!==null&&subTitle!==void 0?subTitle:props.SgC8ISWag)!==null&&_ref1!==void 0?_ref1:\"A tranditional one\"};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,H9_pVGPUC,fkrP04sVN,SgC8ISWag,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"TE9wGCV8z\",enabledGestures,transitions,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];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-NsHVg\",...sharedStyleClassNames,classNames),style:{display:\"contents\"},children:/*#__PURE__*/_jsx(Transition,{value:transition,children:/*#__PURE__*/_jsx(Link,{href:H9_pVGPUC,openInNewTab:false,children:/*#__PURE__*/_jsxs(motion.a,{...restProps,className:`${cx(\"framer-18xl9d1\",className)} framer-j2kvxm`,\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"TE9wGCV8z\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({\"TE9wGCV8z-hover\":{\"data-framer-name\":undefined}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1g91m8d\",\"data-styles-preset\":\"AawFnfNG3\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-86eb8ebb-a67b-4881-bab4-bef2965a7627, rgb(17, 15, 22)))\"},children:\"Home v1\"})}),className:\"framer-hoz3nb\",layoutDependency:layoutDependency,layoutId:\"x34w6atAY\",style:{\"--extracted-r6o4lv\":\"var(--token-86eb8ebb-a67b-4881-bab4-bef2965a7627, rgb(17, 15, 22))\",\"--framer-paragraph-spacing\":\"0px\"},text:fkrP04sVN,variants:{\"TE9wGCV8z-hover\":{\"--extracted-r6o4lv\":\"var(--token-2eeb5a80-751b-4068-9276-5a2e037a3046, rgb(44, 52, 246))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"TE9wGCV8z-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1g91m8d\",\"data-styles-preset\":\"AawFnfNG3\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2eeb5a80-751b-4068-9276-5a2e037a3046, rgb(44, 52, 246)))\"},children:\"Home v1\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-3dccwh\",\"data-styles-preset\":\"Lkwc8yjol\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-86eb8ebb-a67b-4881-bab4-bef2965a7627, rgb(17, 15, 22)))\"},children:\"A tranditional one\"})}),className:\"framer-jxpujz\",layoutDependency:layoutDependency,layoutId:\"Um1Y_JNF_\",style:{\"--extracted-r6o4lv\":\"var(--token-86eb8ebb-a67b-4881-bab4-bef2965a7627, rgb(17, 15, 22))\",\"--framer-paragraph-spacing\":\"0px\"},text:SgC8ISWag,verticalAlignment:\"top\",withExternalLayout:true})]})})})})});});const css=['.framer-NsHVg [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-NsHVg .framer-j2kvxm { display: block; }\",\".framer-NsHVg .framer-18xl9d1 { align-content: start; align-items: start; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-NsHVg .framer-hoz3nb, .framer-NsHVg .framer-jxpujz { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-NsHVg .framer-18xl9d1 { gap: 0px; } .framer-NsHVg .framer-18xl9d1 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-NsHVg .framer-18xl9d1 > :first-child { margin-top: 0px; } .framer-NsHVg .framer-18xl9d1 > :last-child { margin-bottom: 0px; } }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 49\n * @framerIntrinsicWidth 113.5\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"GHlMcyscI\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"H9_pVGPUC\":\"link\",\"fkrP04sVN\":\"title\",\"SgC8ISWag\":\"subTitle\"}\n * @framerImmutableVariables true\n */const FramerhOrNdWHi6=withCSS(Component,css,\"framer-NsHVg\");export default FramerhOrNdWHi6;FramerhOrNdWHi6.displayName=\"Special Menu Item\";FramerhOrNdWHi6.defaultProps={height:49,width:113.5};addPropertyControls(FramerhOrNdWHi6,{H9_pVGPUC:{title:\"Link\",type:ControlType.Link},fkrP04sVN:{defaultValue:\"Home v1\",displayTextArea:false,title:\"Title\",type:ControlType.String},SgC8ISWag:{defaultValue:\"A tranditional one\",displayTextArea:false,title:\"Sub Title\",type:ControlType.String}});addFonts(FramerhOrNdWHi6,[...sharedStyle.fonts,...sharedStyle1.fonts]);\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerhOrNdWHi6\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerVariables\":\"{\\\"H9_pVGPUC\\\":\\\"link\\\",\\\"fkrP04sVN\\\":\\\"title\\\",\\\"SgC8ISWag\\\":\\\"subTitle\\\"}\",\"framerIntrinsicHeight\":\"49\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"GHlMcyscI\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"113.5\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./hOrNdWHi6.map", "// Generated by Framer (1119174)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,cx,getFonts,resolveLink,useLocaleInfo,useRouter,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import SpecialMenuItem from\"https://framerusercontent.com/modules/IFp7rdummkoJBQzX6fWw/bUZYhzQPsP7s09Ryy2l4/hOrNdWHi6.js\";const SpecialMenuItemFonts=getFonts(SpecialMenuItem);const cycleOrder=[\"yRlpSlv8F\"];const serializationHash=\"framer-TO8ME\";const variantClassNames={yRlpSlv8F:\"framer-v-xovd06\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transitions={default:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"}};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const getProps=({height,id,width,...props})=>{return{...props};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"yRlpSlv8F\",transitions,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const router=useRouter();const defaultLayoutId=React.useId();const sharedStyleClassNames=[];return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(motion.div,{initial:variant,animate:variants,onHoverStart:()=>setGestureState({isHovered:true}),onHoverEnd:()=>setGestureState({isHovered:false}),onTapStart:()=>setGestureState({isPressed:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),className:cx(\"framer-TO8ME\",...sharedStyleClassNames,classNames),style:{display:\"contents\"},children:/*#__PURE__*/_jsx(Transition,{value:transition,children:/*#__PURE__*/_jsx(motion.div,{...restProps,className:cx(\"framer-xovd06\",className),\"data-border\":true,\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"yRlpSlv8F\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(238, 238, 238)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,boxShadow:\"0px 20px 40px 0px rgba(0, 0, 0, 0.12)\",originX:0,originY:0,...style},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1qniwz4\",\"data-framer-name\":\"List\",layoutDependency:layoutDependency,layoutId:\"YONxfeTHb\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1jvgbky-container\",layoutDependency:layoutDependency,layoutId:\"zoEDBN6i4-container\",style:{opacity:.8},children:/*#__PURE__*/_jsx(SpecialMenuItem,{fkrP04sVN:\"Home v1\",H9_pVGPUC:resolveLink({webPageId:\"augiA20Il\"},router),height:\"100%\",id:\"zoEDBN6i4\",layoutId:\"zoEDBN6i4\",SgC8ISWag:\"A tranditional one\",width:\"100%\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-18bwkpq-container\",layoutDependency:layoutDependency,layoutId:\"USueI7vb5-container\",style:{opacity:.8},children:/*#__PURE__*/_jsx(SpecialMenuItem,{fkrP04sVN:\"Home v2\",H9_pVGPUC:resolveLink({webPageId:\"PSGfaGDe5\"},router),height:\"100%\",id:\"USueI7vb5\",layoutId:\"USueI7vb5\",SgC8ISWag:\"Modern SaaS Homepage\",width:\"100%\"})})]})})})})});});const css=['.framer-TO8ME [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-TO8ME .framer-1htea8y { display: block; }\",\".framer-TO8ME .framer-xovd06 { align-content: start; align-items: start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 16px 24px 16px 24px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-TO8ME .framer-1qniwz4 { align-content: start; align-items: start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: min-content; }\",\".framer-TO8ME .framer-1jvgbky-container, .framer-TO8ME .framer-18bwkpq-container { flex: none; height: auto; position: relative; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-TO8ME .framer-xovd06, .framer-TO8ME .framer-1qniwz4 { gap: 0px; } .framer-TO8ME .framer-xovd06 > * { margin: 0px; margin-bottom: calc(5px / 2); margin-top: calc(5px / 2); } .framer-TO8ME .framer-xovd06 > :first-child, .framer-TO8ME .framer-1qniwz4 > :first-child { margin-top: 0px; } .framer-TO8ME .framer-xovd06 > :last-child, .framer-TO8ME .framer-1qniwz4 > :last-child { margin-bottom: 0px; } .framer-TO8ME .framer-1qniwz4 > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 146.5\n * @framerIntrinsicWidth 209\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerImmutableVariables true\n */const Framerjxx79utqk=withCSS(Component,css,\"framer-TO8ME\");export default Framerjxx79utqk;Framerjxx79utqk.displayName=\"Dropdown Style 1\";Framerjxx79utqk.defaultProps={height:146.5,width:209};addFonts(Framerjxx79utqk,[...SpecialMenuItemFonts]);\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerjxx79utqk\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"146.5\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"209\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./jxx79utqk.map", "// Generated by Framer (cf240c2)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,Link,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Icon as Hero}from\"https://framerusercontent.com/modules/hKjtTuWGYB451ckw6eTN/bbq95ZQZ142lE2fXscHd/Hero.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/7AFyv8vec0uoijMuPC3M/9K1hHPONZ5uNflHJhgbj/khNhtWMYb.js\";const HeroFonts=getFonts(Hero);const enabledGestures={D0tsKLOsP:{hover:true}};const cycleOrder=[\"D0tsKLOsP\",\"GNU2CefRM\"];const serializationHash=\"framer-CNbop\";const variantClassNames={D0tsKLOsP:\"framer-v-1qgx2lo\",GNU2CefRM:\"framer-v-uzldh8\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"D0tsKLOsP\",\"Variant 2\":\"GNU2CefRM\"};const getProps=({height,hover,iconVisible,id,link,title,width,...props})=>{var _ref,_ref1,_humanReadableVariantMap_props_variant,_ref2;return{...props,akEaMP2V_:(_ref=title!==null&&title!==void 0?title:props.akEaMP2V_)!==null&&_ref!==void 0?_ref:\"Home\",dpKtLgXs9:link!==null&&link!==void 0?link:props.dpKtLgXs9,IejEVkrjL:(_ref1=iconVisible!==null&&iconVisible!==void 0?iconVisible:props.IejEVkrjL)!==null&&_ref1!==void 0?_ref1:true,StjX81xm6:hover!==null&&hover!==void 0?hover:props.StjX81xm6,variant:(_ref2=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref2!==void 0?_ref2:\"D0tsKLOsP\"};};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,akEaMP2V_,StjX81xm6,IejEVkrjL,dpKtLgXs9,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"D0tsKLOsP\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onMouseEnter1rzn7lf=activeVariantCallback(async(...args)=>{setGestureState({isHovered:true});if(StjX81xm6){const res=await StjX81xm6(...args);if(res===false)return false;}});const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:dpKtLgXs9,openInNewTab:false,children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-1qgx2lo\",className,classNames)} framer-17i3keh`,\"data-framer-name\":\"Variant 1\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"D0tsKLOsP\",onMouseEnter:onMouseEnter1rzn7lf,ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({\"D0tsKLOsP-hover\":{\"data-framer-name\":undefined},GNU2CefRM:{\"data-framer-name\":\"Variant 2\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1ci1g15\",\"data-styles-preset\":\"khNhtWMYb\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-86eb8ebb-a67b-4881-bab4-bef2965a7627, rgb(17, 15, 22)))\"},children:\"Home\"})}),className:\"framer-k84ytk\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"ReCq__ynB\",style:{\"--extracted-r6o4lv\":\"var(--token-86eb8ebb-a67b-4881-bab4-bef2965a7627, rgb(17, 15, 22))\"},text:akEaMP2V_,variants:{\"D0tsKLOsP-hover\":{\"--extracted-r6o4lv\":\"var(--token-2eeb5a80-751b-4068-9276-5a2e037a3046, rgb(44, 52, 246))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"D0tsKLOsP-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1ci1g15\",\"data-styles-preset\":\"khNhtWMYb\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2eeb5a80-751b-4068-9276-5a2e037a3046, rgb(44, 52, 246)))\"},children:\"Home\"})})}},baseVariant,gestureVariant)}),IejEVkrjL&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-195kgu3-container\",layoutDependency:layoutDependency,layoutId:\"sX4slvYyp-container\",style:{rotate:0},variants:{GNU2CefRM:{rotate:180}},children:/*#__PURE__*/_jsx(Hero,{color:\"var(--token-86eb8ebb-a67b-4881-bab4-bef2965a7627, rgb(17, 15, 22))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"ChevronDown\",id:\"sX4slvYyp\",layoutId:\"sX4slvYyp\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\",...addPropertyOverrides({\"D0tsKLOsP-hover\":{color:\"var(--token-2eeb5a80-751b-4068-9276-5a2e037a3046, rgb(44, 52, 246))\"}},baseVariant,gestureVariant)})})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-CNbop.framer-17i3keh, .framer-CNbop .framer-17i3keh { display: block; }\",\".framer-CNbop.framer-1qgx2lo { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-CNbop .framer-k84ytk { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-CNbop .framer-195kgu3-container { flex: none; height: 23px; position: relative; width: 20px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-CNbop.framer-1qgx2lo { gap: 0px; } .framer-CNbop.framer-1qgx2lo > * { margin: 0px; margin-left: calc(4px / 2); margin-right: calc(4px / 2); } .framer-CNbop.framer-1qgx2lo > :first-child { margin-left: 0px; } .framer-CNbop.framer-1qgx2lo > :last-child { margin-right: 0px; } }\",\".framer-CNbop.framer-v-uzldh8.framer-1qgx2lo { cursor: unset; }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 27\n * @framerIntrinsicWidth 69\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"GNU2CefRM\":{\"layout\":[\"auto\",\"auto\"]},\"AOgRZRLoq\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"akEaMP2V_\":\"title\",\"StjX81xm6\":\"hover\",\"IejEVkrjL\":\"iconVisible\",\"dpKtLgXs9\":\"link\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framerud7WsLL0O=withCSS(Component,css,\"framer-CNbop\");export default Framerud7WsLL0O;Framerud7WsLL0O.displayName=\"Menu Item\";Framerud7WsLL0O.defaultProps={height:27,width:69};addPropertyControls(Framerud7WsLL0O,{variant:{options:[\"D0tsKLOsP\",\"GNU2CefRM\"],optionTitles:[\"Variant 1\",\"Variant 2\"],title:\"Variant\",type:ControlType.Enum},akEaMP2V_:{defaultValue:\"Home\",displayTextArea:false,title:\"Title\",type:ControlType.String},StjX81xm6:{title:\"Hover\",type:ControlType.EventHandler},IejEVkrjL:{defaultValue:true,title:\"Icon Visible\",type:ControlType.Boolean},dpKtLgXs9:{title:\"Link\",type:ControlType.Link}});addFonts(Framerud7WsLL0O,[{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\"}]},...HeroFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerud7WsLL0O\",\"slots\":[],\"annotations\":{\"framerVariables\":\"{\\\"akEaMP2V_\\\":\\\"title\\\",\\\"StjX81xm6\\\":\\\"hover\\\",\\\"IejEVkrjL\\\":\\\"iconVisible\\\",\\\"dpKtLgXs9\\\":\\\"link\\\"}\",\"framerIntrinsicHeight\":\"27\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"69\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"GNU2CefRM\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"AOgRZRLoq\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./ud7WsLL0O.map", "// Generated by Framer (1119174)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,cx,getFonts,resolveLink,useLocaleInfo,useRouter,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import MenuItem from\"https://framerusercontent.com/modules/cocfvSSmgLP8udO0qQfg/9ta2hsmvzyHkm3hI82Uc/ud7WsLL0O.js\";const MenuItemFonts=getFonts(MenuItem);const cycleOrder=[\"AsGwY0UYN\"];const serializationHash=\"framer-jOPJ2\";const variantClassNames={AsGwY0UYN:\"framer-v-11gzx0o\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transitions={default:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"}};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const getProps=({height,id,width,...props})=>{return{...props};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"AsGwY0UYN\",transitions,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const router=useRouter();const defaultLayoutId=React.useId();const sharedStyleClassNames=[];return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(motion.div,{initial:variant,animate:variants,onHoverStart:()=>setGestureState({isHovered:true}),onHoverEnd:()=>setGestureState({isHovered:false}),onTapStart:()=>setGestureState({isPressed:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),className:cx(\"framer-jOPJ2\",...sharedStyleClassNames,classNames),style:{display:\"contents\"},children:/*#__PURE__*/_jsx(Transition,{value:transition,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(\"framer-11gzx0o\",className),\"data-border\":true,\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"AsGwY0UYN\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(238, 238, 238)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,boxShadow:\"0px 20px 40px 0px rgba(0, 0, 0, 0.12)\",...style},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-gbw0ft-container\",layoutDependency:layoutDependency,layoutId:\"yzkadWSo8-container\",children:/*#__PURE__*/_jsx(MenuItem,{akEaMP2V_:\"About\",dpKtLgXs9:resolveLink({webPageId:\"Up5VqiXr3\"},router),height:\"100%\",id:\"yzkadWSo8\",IejEVkrjL:false,layoutId:\"yzkadWSo8\",variant:\"D0tsKLOsP\",width:\"100%\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1s4e2kl-container\",layoutDependency:layoutDependency,layoutId:\"OaxIfx84K-container\",children:/*#__PURE__*/_jsx(MenuItem,{akEaMP2V_:\"Pricing\",dpKtLgXs9:resolveLink({webPageId:\"TmD1uOlMF\"},router),height:\"100%\",id:\"OaxIfx84K\",IejEVkrjL:false,layoutId:\"OaxIfx84K\",variant:\"D0tsKLOsP\",width:\"100%\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-ot2vof-container\",layoutDependency:layoutDependency,layoutId:\"JxyBxeXFy-container\",children:/*#__PURE__*/_jsx(MenuItem,{akEaMP2V_:\"Case Study\",dpKtLgXs9:resolveLink({webPageId:\"XMkS_pjrx\"},router),height:\"100%\",id:\"JxyBxeXFy\",IejEVkrjL:false,layoutId:\"JxyBxeXFy\",variant:\"D0tsKLOsP\",width:\"100%\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1m5ga3p-container\",layoutDependency:layoutDependency,layoutId:\"Fuyy5KVKP-container\",children:/*#__PURE__*/_jsx(MenuItem,{akEaMP2V_:\"Case Study Details\",dpKtLgXs9:resolveLink({pathVariables:{N02J_ItLP:\"how-we-helped-confront-to-grow-faster-during-covid\"},webPageId:\"fVZtM7nMF\"},router),height:\"100%\",id:\"Fuyy5KVKP\",IejEVkrjL:false,layoutId:\"Fuyy5KVKP\",variant:\"D0tsKLOsP\",width:\"100%\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1o2cc5o-container\",layoutDependency:layoutDependency,layoutId:\"DQS2HSGfA-container\",children:/*#__PURE__*/_jsx(MenuItem,{akEaMP2V_:\"Contact\",dpKtLgXs9:resolveLink({webPageId:\"xVXMrntyc\"},router),height:\"100%\",id:\"DQS2HSGfA\",IejEVkrjL:false,layoutId:\"DQS2HSGfA\",variant:\"D0tsKLOsP\",width:\"100%\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1nnkirb-container\",layoutDependency:layoutDependency,layoutId:\"zWC0JqFcM-container\",children:/*#__PURE__*/_jsx(MenuItem,{akEaMP2V_:\"Blog\",dpKtLgXs9:resolveLink({webPageId:\"vydAVXxfr\"},router),height:\"100%\",id:\"zWC0JqFcM\",IejEVkrjL:false,layoutId:\"zWC0JqFcM\",variant:\"D0tsKLOsP\",width:\"100%\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-zyzqua-container\",layoutDependency:layoutDependency,layoutId:\"mJvuLrLLy-container\",children:/*#__PURE__*/_jsx(MenuItem,{akEaMP2V_:\"Blog Details\",dpKtLgXs9:resolveLink({pathVariables:{bSBu2BztP:\"contrary-to-popular-is-belief-is-not-simply-random-text\"},webPageId:\"sufAHXyav\"},router),height:\"100%\",id:\"mJvuLrLLy\",IejEVkrjL:false,layoutId:\"mJvuLrLLy\",variant:\"D0tsKLOsP\",width:\"100%\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1pguhry-container\",layoutDependency:layoutDependency,layoutId:\"Alo0zro9_-container\",children:/*#__PURE__*/_jsx(MenuItem,{akEaMP2V_:\"Terms\",dpKtLgXs9:resolveLink({webPageId:\"rZK3qXsh7\"},router),height:\"100%\",id:\"Alo0zro9_\",IejEVkrjL:false,layoutId:\"Alo0zro9_\",variant:\"D0tsKLOsP\",width:\"100%\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1v5br8i-container\",layoutDependency:layoutDependency,layoutId:\"zmcRCLcxF-container\",children:/*#__PURE__*/_jsx(MenuItem,{akEaMP2V_:\"Privacy\",dpKtLgXs9:resolveLink({webPageId:\"RTiqB9LEP\"},router),height:\"100%\",id:\"zmcRCLcxF\",IejEVkrjL:false,layoutId:\"zmcRCLcxF\",variant:\"D0tsKLOsP\",width:\"100%\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-wvdext-container\",layoutDependency:layoutDependency,layoutId:\"J8Z28stmh-container\",children:/*#__PURE__*/_jsx(MenuItem,{akEaMP2V_:\"404\",dpKtLgXs9:resolveLink({webPageId:\"jSqB3r0Rl\"},router),height:\"100%\",id:\"J8Z28stmh\",IejEVkrjL:false,layoutId:\"J8Z28stmh\",variant:\"D0tsKLOsP\",width:\"100%\"})})]})})})});});const css=['.framer-jOPJ2 [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-jOPJ2 .framer-16owe8q { display: block; }\",\".framer-jOPJ2 .framer-11gzx0o { align-content: start; align-items: start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 16px 24px 16px 24px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-jOPJ2 .framer-gbw0ft-container, .framer-jOPJ2 .framer-1s4e2kl-container, .framer-jOPJ2 .framer-ot2vof-container, .framer-jOPJ2 .framer-1m5ga3p-container, .framer-jOPJ2 .framer-1o2cc5o-container, .framer-jOPJ2 .framer-1nnkirb-container, .framer-jOPJ2 .framer-zyzqua-container, .framer-jOPJ2 .framer-1pguhry-container, .framer-jOPJ2 .framer-1v5br8i-container, .framer-jOPJ2 .framer-wvdext-container { flex: none; height: auto; position: relative; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-jOPJ2 .framer-11gzx0o { gap: 0px; } .framer-jOPJ2 .framer-11gzx0o > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-jOPJ2 .framer-11gzx0o > :first-child { margin-top: 0px; } .framer-jOPJ2 .framer-11gzx0o > :last-child { margin-bottom: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 376\n * @framerIntrinsicWidth 192.5\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerImmutableVariables true\n */const FramerPayQRORxQ=withCSS(Component,css,\"framer-jOPJ2\");export default FramerPayQRORxQ;FramerPayQRORxQ.displayName=\"Dropdown Style 2\";FramerPayQRORxQ.defaultProps={height:376,width:192.5};addFonts(FramerPayQRORxQ,[...MenuItemFonts]);\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerPayQRORxQ\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"376\",\"framerIntrinsicWidth\":\"192.5\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (f4b44ab)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Link,RichText,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/qPcsejyyS1iNVLdU6Fd6/DvKQGiLKmjqNgVSNqmFU/edmMrk2Z3.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/7AFyv8vec0uoijMuPC3M/9K1hHPONZ5uNflHJhgbj/khNhtWMYb.js\";const cycleOrder=[\"ZvryWa6tJ\",\"tETucHonJ\",\"MpuAxQR9G\",\"CEPlTVT5H\",\"NbaIXwrWP\"];const serializationHash=\"framer-kgQlq\";const variantClassNames={CEPlTVT5H:\"framer-v-ky239\",MpuAxQR9G:\"framer-v-9f6pgg\",NbaIXwrWP:\"framer-v-1qp2m12\",tETucHonJ:\"framer-v-1kj3pon\",ZvryWa6tJ:\"framer-v-1xmkbi\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transitions={default:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"}};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const humanReadableVariantMap={\"Menu - Home - Phone\":\"NbaIXwrWP\",\"Menu - Home\":\"CEPlTVT5H\",\"Menu - Pages - Phone\":\"MpuAxQR9G\",\"Menu - Pages - Tablet\":\"tETucHonJ\",\"Menu - Pages\":\"ZvryWa6tJ\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"ZvryWa6tJ\"};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"ZvryWa6tJ\",transitions,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const isDisplayed=()=>{if([\"tETucHonJ\",\"MpuAxQR9G\",\"NbaIXwrWP\"].includes(baseVariant))return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];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-kgQlq\",...sharedStyleClassNames,classNames),style:{display:\"contents\"},children:/*#__PURE__*/_jsx(Transition,{value:transition,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(\"framer-1xmkbi\",className),\"data-framer-name\":\"Menu - Pages\",layoutDependency:layoutDependency,layoutId:\"ZvryWa6tJ\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"var(--token-a7f7ae5f-a181-442b-8823-be0ca1b170fe, rgb(255, 255, 255))\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,boxShadow:\"0px 25px 40px 0px rgba(0, 0, 0, 0.1)\",originX:0,originY:0,...style},variants:{MpuAxQR9G:{backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0,boxShadow:\"none\"},NbaIXwrWP:{borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0,boxShadow:\"none\"},tETucHonJ:{borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0,boxShadow:\"none\"}},...addPropertyOverrides({CEPlTVT5H:{\"data-framer-name\":\"Menu - Home\"},MpuAxQR9G:{\"data-framer-name\":\"Menu - Pages - Phone\"},NbaIXwrWP:{\"data-framer-name\":\"Menu - Home - Phone\"},tETucHonJ:{\"data-framer-name\":\"Menu - Pages - Tablet\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"170%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-862d4e66-56a5-436e-9653-7bf40e4fdb5e, rgb(79, 79, 89)))\"},children:\"All Pages\"})}),className:\"framer-1ytvllr\",layoutDependency:layoutDependency,layoutId:\"fFuiXrRXu\",style:{\"--extracted-r6o4lv\":\"var(--token-862d4e66-56a5-436e-9653-7bf40e4fdb5e, rgb(79, 79, 89))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({NbaIXwrWP:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"170%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-862d4e66-56a5-436e-9653-7bf40e4fdb5e, rgb(79, 79, 89)))\"},children:\"Homepage\"})})},tETucHonJ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1ci1g15\",\"data-styles-preset\":\"khNhtWMYb\",children:\"All Pages\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1nbvcvu\",layoutDependency:layoutDependency,layoutId:\"hrKnrvtVB\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1a1kwph\",\"data-framer-name\":\"Item\",layoutDependency:layoutDependency,layoutId:\"fB0SVKvry\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1ci1g15\",\"data-styles-preset\":\"khNhtWMYb\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"Up5VqiXr3\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-vup4yl\",\"data-styles-preset\":\"edmMrk2Z3\",children:\"About Us\"})})})}),className:\"framer-zaff9j\",layoutDependency:layoutDependency,layoutId:\"JwRbLbB1l\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1n9m84t\",\"data-framer-name\":\"Item\",layoutDependency:layoutDependency,layoutId:\"caOLIcYKv\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1ci1g15\",\"data-styles-preset\":\"khNhtWMYb\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"TmD1uOlMF\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-vup4yl\",\"data-styles-preset\":\"edmMrk2Z3\",children:\"Pricing\"})})})}),className:\"framer-786iux\",layoutDependency:layoutDependency,layoutId:\"yl_NwwQs7\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-ko59dx\",\"data-framer-name\":\"Item\",layoutDependency:layoutDependency,layoutId:\"CH3IkqE0C\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1ci1g15\",\"data-styles-preset\":\"khNhtWMYb\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"XMkS_pjrx\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-vup4yl\",\"data-styles-preset\":\"edmMrk2Z3\",children:\"Case Study\"})})})}),className:\"framer-1x6tlwn\",layoutDependency:layoutDependency,layoutId:\"KTyoZWHvf\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-bf7hj0\",\"data-framer-name\":\"Item\",layoutDependency:layoutDependency,layoutId:\"lKY9R4FJs\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1ci1g15\",\"data-styles-preset\":\"khNhtWMYb\",children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{N02J_ItLP:\"how-we-helped-confront-to-grow-faster-during-covid\"},webPageId:\"fVZtM7nMF\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-vup4yl\",\"data-styles-preset\":\"edmMrk2Z3\",children:\"Case Study Details\"})})})}),className:\"framer-bf6oxp\",layoutDependency:layoutDependency,layoutId:\"vqUTy8DGH\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1tbv1b4\",\"data-framer-name\":\"Item\",layoutDependency:layoutDependency,layoutId:\"z180ddT1W\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1ci1g15\",\"data-styles-preset\":\"khNhtWMYb\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"vydAVXxfr\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-vup4yl\",\"data-styles-preset\":\"edmMrk2Z3\",children:\"Blog\"})})})}),className:\"framer-1817cex\",layoutDependency:layoutDependency,layoutId:\"qOgSmCfXU\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-15c11wc\",\"data-framer-name\":\"Item\",layoutDependency:layoutDependency,layoutId:\"YkLgV9AAe\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1ci1g15\",\"data-styles-preset\":\"khNhtWMYb\",children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{N02J_ItLP:\"how-we-helped-confront-to-grow-faster-during-covid\"},webPageId:\"sufAHXyav\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-vup4yl\",\"data-styles-preset\":\"edmMrk2Z3\",children:\"Blog Details\"})})})}),className:\"framer-l4j5n6\",layoutDependency:layoutDependency,layoutId:\"eEBxRmbq9\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1u5sqco\",\"data-framer-name\":\"Item\",layoutDependency:layoutDependency,layoutId:\"Gl5fTgd7v\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1ci1g15\",\"data-styles-preset\":\"khNhtWMYb\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"xVXMrntyc\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-vup4yl\",\"data-styles-preset\":\"edmMrk2Z3\",children:\"Contact \"})})})}),className:\"framer-1aqa0co\",layoutDependency:layoutDependency,layoutId:\"PDjc_to7C\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-ztu85\",\"data-framer-name\":\"Item\",layoutDependency:layoutDependency,layoutId:\"INYhoVuE8\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1ci1g15\",\"data-styles-preset\":\"khNhtWMYb\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"rZK3qXsh7\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-vup4yl\",\"data-styles-preset\":\"edmMrk2Z3\",children:\"Term & condition\"})})})}),className:\"framer-awgape\",layoutDependency:layoutDependency,layoutId:\"Pl1Xaro6X\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-11uh5pm\",\"data-framer-name\":\"Item\",layoutDependency:layoutDependency,layoutId:\"vSv4kXjus\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1ci1g15\",\"data-styles-preset\":\"khNhtWMYb\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"RTiqB9LEP\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-vup4yl\",\"data-styles-preset\":\"edmMrk2Z3\",children:\"Privacy policy\"})})})}),className:\"framer-fq56qg\",layoutDependency:layoutDependency,layoutId:\"leUsgm3f8\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-10rr8k8\",\"data-framer-name\":\"Item\",layoutDependency:layoutDependency,layoutId:\"S0L_N7bIg\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1ci1g15\",\"data-styles-preset\":\"khNhtWMYb\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"jSqB3r0Rl\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-vup4yl\",\"data-styles-preset\":\"edmMrk2Z3\",children:\"404\"})})})}),className:\"framer-w630h7\",layoutDependency:layoutDependency,layoutId:\"pnArcW9yQ\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})})]})]})})})});});const css=['.framer-kgQlq [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-kgQlq .framer-1ajeaeu { display: block; }\",\".framer-kgQlq .framer-1xmkbi { align-content: start; align-items: start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 16px 22px 16px 22px; position: relative; width: 200px; will-change: var(--framer-will-change-override, transform); }\",\".framer-kgQlq .framer-1ytvllr { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-kgQlq .framer-1nbvcvu { align-content: start; align-items: start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-kgQlq .framer-1a1kwph, .framer-kgQlq .framer-1n9m84t, .framer-kgQlq .framer-ko59dx, .framer-kgQlq .framer-bf7hj0, .framer-kgQlq .framer-1tbv1b4, .framer-kgQlq .framer-1u5sqco, .framer-kgQlq .framer-ztu85, .framer-kgQlq .framer-11uh5pm { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-kgQlq .framer-zaff9j, .framer-kgQlq .framer-786iux, .framer-kgQlq .framer-1x6tlwn, .framer-kgQlq .framer-bf6oxp, .framer-kgQlq .framer-1817cex, .framer-kgQlq .framer-l4j5n6, .framer-kgQlq .framer-1aqa0co, .framer-kgQlq .framer-awgape, .framer-kgQlq .framer-fq56qg, .framer-kgQlq .framer-w630h7 { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-kgQlq .framer-15c11wc, .framer-kgQlq .framer-10rr8k8 { align-content: start; align-items: start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-kgQlq .framer-1xmkbi, .framer-kgQlq .framer-1nbvcvu, .framer-kgQlq .framer-1a1kwph, .framer-kgQlq .framer-1n9m84t, .framer-kgQlq .framer-ko59dx, .framer-kgQlq .framer-bf7hj0, .framer-kgQlq .framer-1tbv1b4, .framer-kgQlq .framer-15c11wc, .framer-kgQlq .framer-1u5sqco, .framer-kgQlq .framer-ztu85, .framer-kgQlq .framer-11uh5pm, .framer-kgQlq .framer-10rr8k8 { gap: 0px; } .framer-kgQlq .framer-1xmkbi > *, .framer-kgQlq .framer-1nbvcvu > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-kgQlq .framer-1xmkbi > :first-child, .framer-kgQlq .framer-1nbvcvu > :first-child { margin-top: 0px; } .framer-kgQlq .framer-1xmkbi > :last-child, .framer-kgQlq .framer-1nbvcvu > :last-child { margin-bottom: 0px; } .framer-kgQlq .framer-1a1kwph > *, .framer-kgQlq .framer-1n9m84t > *, .framer-kgQlq .framer-ko59dx > *, .framer-kgQlq .framer-bf7hj0 > *, .framer-kgQlq .framer-1tbv1b4 > *, .framer-kgQlq .framer-15c11wc > *, .framer-kgQlq .framer-1u5sqco > *, .framer-kgQlq .framer-ztu85 > *, .framer-kgQlq .framer-11uh5pm > *, .framer-kgQlq .framer-10rr8k8 > * { margin: 0px; margin-left: calc(15px / 2); margin-right: calc(15px / 2); } .framer-kgQlq .framer-1a1kwph > :first-child, .framer-kgQlq .framer-1n9m84t > :first-child, .framer-kgQlq .framer-ko59dx > :first-child, .framer-kgQlq .framer-bf7hj0 > :first-child, .framer-kgQlq .framer-1tbv1b4 > :first-child, .framer-kgQlq .framer-15c11wc > :first-child, .framer-kgQlq .framer-1u5sqco > :first-child, .framer-kgQlq .framer-ztu85 > :first-child, .framer-kgQlq .framer-11uh5pm > :first-child, .framer-kgQlq .framer-10rr8k8 > :first-child { margin-left: 0px; } .framer-kgQlq .framer-1a1kwph > :last-child, .framer-kgQlq .framer-1n9m84t > :last-child, .framer-kgQlq .framer-ko59dx > :last-child, .framer-kgQlq .framer-bf7hj0 > :last-child, .framer-kgQlq .framer-1tbv1b4 > :last-child, .framer-kgQlq .framer-15c11wc > :last-child, .framer-kgQlq .framer-1u5sqco > :last-child, .framer-kgQlq .framer-ztu85 > :last-child, .framer-kgQlq .framer-11uh5pm > :last-child, .framer-kgQlq .framer-10rr8k8 > :last-child { margin-right: 0px; } }\",\".framer-kgQlq.framer-v-1kj3pon .framer-1xmkbi { gap: 16px; padding: 0px 0px 0px 0px; width: 351px; }\",\".framer-kgQlq.framer-v-1kj3pon .framer-1ytvllr { order: 0; white-space: pre; width: auto; }\",\".framer-kgQlq.framer-v-1kj3pon .framer-1nbvcvu { gap: 8px; order: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-kgQlq.framer-v-1kj3pon .framer-1xmkbi, .framer-kgQlq.framer-v-1kj3pon .framer-1nbvcvu { gap: 0px; } .framer-kgQlq.framer-v-1kj3pon .framer-1xmkbi > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-kgQlq.framer-v-1kj3pon .framer-1xmkbi > :first-child, .framer-kgQlq.framer-v-1kj3pon .framer-1nbvcvu > :first-child { margin-top: 0px; } .framer-kgQlq.framer-v-1kj3pon .framer-1xmkbi > :last-child, .framer-kgQlq.framer-v-1kj3pon .framer-1nbvcvu > :last-child { margin-bottom: 0px; } .framer-kgQlq.framer-v-1kj3pon .framer-1nbvcvu > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } }\",\".framer-kgQlq.framer-v-9f6pgg .framer-1xmkbi { padding: 0px 0px 0px 0px; width: 220px; }\",\".framer-kgQlq.framer-v-9f6pgg .framer-1ytvllr, .framer-kgQlq.framer-v-1qp2m12 .framer-1ytvllr { order: 0; }\",\".framer-kgQlq.framer-v-9f6pgg .framer-1nbvcvu, .framer-kgQlq.framer-v-1qp2m12 .framer-1nbvcvu { order: 1; }\",\".framer-kgQlq.framer-v-ky239 .framer-1xmkbi { width: 151px; }\",\".framer-kgQlq.framer-v-1qp2m12 .framer-1xmkbi { gap: 16px; padding: 0px 0px 0px 0px; width: 150px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-kgQlq.framer-v-1qp2m12 .framer-1xmkbi { gap: 0px; } .framer-kgQlq.framer-v-1qp2m12 .framer-1xmkbi > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-kgQlq.framer-v-1qp2m12 .framer-1xmkbi > :first-child { margin-top: 0px; } .framer-kgQlq.framer-v-1qp2m12 .framer-1xmkbi > :last-child { margin-bottom: 0px; } }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 412\n * @framerIntrinsicWidth 200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"tETucHonJ\":{\"layout\":[\"fixed\",\"auto\"]},\"MpuAxQR9G\":{\"layout\":[\"fixed\",\"auto\"]},\"CEPlTVT5H\":{\"layout\":[\"fixed\",\"auto\"]},\"NbaIXwrWP\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n */const FramervLc0yibwo=withCSS(Component,css,\"framer-kgQlq\");export default FramervLc0yibwo;FramervLc0yibwo.displayName=\"Links: Resource 02\";FramervLc0yibwo.defaultProps={height:412,width:200};addPropertyControls(FramervLc0yibwo,{variant:{options:[\"ZvryWa6tJ\",\"tETucHonJ\",\"MpuAxQR9G\",\"CEPlTVT5H\",\"NbaIXwrWP\"],optionTitles:[\"Menu - Pages\",\"Menu - Pages - Tablet\",\"Menu - Pages - Phone\",\"Menu - Home\",\"Menu - Home - Phone\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramervLc0yibwo,[...sharedStyle.fonts,...sharedStyle1.fonts]);\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramervLc0yibwo\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"tETucHonJ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"MpuAxQR9G\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"CEPlTVT5H\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"NbaIXwrWP\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"200\",\"framerIntrinsicHeight\":\"412\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./vLc0yibwo.map", "// Generated by Framer (e8e43ad)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,Floating,getFonts,getFontsFromSharedStyle,Link,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOverlayState,useVariantState,withCSS,withFX}from\"framer\";import{AnimatePresence,LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import ElementsMenuIcon from\"https://framerusercontent.com/modules/KtVGDQXNUVZ5aqCs47VS/OMqTyVIbB7GZvcPewNwz/F8KjCKf_G.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/qPcsejyyS1iNVLdU6Fd6/DvKQGiLKmjqNgVSNqmFU/edmMrk2Z3.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/7AFyv8vec0uoijMuPC3M/9K1hHPONZ5uNflHJhgbj/khNhtWMYb.js\";import LinksResource from\"https://framerusercontent.com/modules/185sRGwkKMHo3oCMRA6V/NyhaCz4sa1ituFEPgbdH/fvU9HI9ma.js\";import BrandLogo from\"https://framerusercontent.com/modules/pP5uCwqBjHPyR98mcLCs/ajkTmLeFq1hu7nz91Cfa/HJM1nbTwW.js\";import DropdownStyle1 from\"https://framerusercontent.com/modules/DE3yF34HJkwPWFykqYuk/nzpkmGuBBZTsVnV3tMwD/jxx79utqk.js\";import Button from\"https://framerusercontent.com/modules/atH1LpNd0SpIqI1qGY5w/SRZttlJ7g7yZN0GzKiFY/OyzrDXQkY.js\";import DropdownStyle2 from\"https://framerusercontent.com/modules/azHGx5a6XwfoeVyz4VIp/W9mo6Sa3Ww4Bx3TsqezQ/PayQRORxQ.js\";import MenuItem from\"https://framerusercontent.com/modules/cocfvSSmgLP8udO0qQfg/9ta2hsmvzyHkm3hI82Uc/ud7WsLL0O.js\";import LinksResource02 from\"https://framerusercontent.com/modules/kjCbQJgSlVDpdjaeTo68/N80B7jSKFdJSWvOGKMW2/vLc0yibwo.js\";const BrandLogoFonts=getFonts(BrandLogo);const LinksResourceFonts=getFonts(LinksResource);const MenuItemFonts=getFonts(MenuItem);const DropdownStyle1Fonts=getFonts(DropdownStyle1);const MotionDivWithFX=withFX(motion.div);const DropdownStyle2Fonts=getFonts(DropdownStyle2);const LinksResource02Fonts=getFonts(LinksResource02);const ButtonFonts=getFonts(Button);const ElementsMenuIconFonts=getFonts(ElementsMenuIcon);const cycleOrder=[\"kORMRvu95\",\"cGvjWktTc\",\"DKKcrR5Br\",\"eSkcw_4MM\",\"VUYAtLVg3\",\"Hf7UC21RC\",\"CiA04POj7\",\"ZAsfRQrF3\",\"SpEIUjT6d\",\"nsRaO6UQI\"];const serializationHash=\"framer-hwanD\";const variantClassNames={cGvjWktTc:\"framer-v-13btghj\",CiA04POj7:\"framer-v-18pd18m\",DKKcrR5Br:\"framer-v-15dizxa\",eSkcw_4MM:\"framer-v-1uwy0b2\",Hf7UC21RC:\"framer-v-1xwan4j\",kORMRvu95:\"framer-v-1hpkm0z\",nsRaO6UQI:\"framer-v-1isd6xv\",SpEIUjT6d:\"framer-v-1kqbpuv\",VUYAtLVg3:\"framer-v-ox1j0u\",ZAsfRQrF3:\"framer-v-1kn16fq\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const transition2={damping:60,delay:0,mass:1.2,stiffness:300,type:\"spring\"};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const transition3={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3,x:0,y:0};const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3,x:0,y:0};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const Overlay=({children,blockDocumentScrolling,enabled=true})=>{const[visible,setVisible]=useOverlayState({blockDocumentScrolling});return children({hide:()=>setVisible(false),show:()=>setVisible(true),toggle:()=>setVisible(!visible),visible:enabled&&visible});};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={\"Large Desktop\":\"kORMRvu95\",\"Phone - Dark - Open\":\"SpEIUjT6d\",\"Phone - Dark\":\"ZAsfRQrF3\",\"Phone - Open\":\"CiA04POj7\",\"Tablet - Dark - Open\":\"VUYAtLVg3\",\"Tablet - Dark\":\"eSkcw_4MM\",\"Tablet - Open\":\"DKKcrR5Br\",Desktop:\"nsRaO6UQI\",Phone:\"Hf7UC21RC\",Tablet:\"cGvjWktTc\"};const getProps=({background,height,id,width,...props})=>{var _ref,_humanReadableVariantMap_props_variant,_ref1;return{...props,L3gfdQ2_y:(_ref=background!==null&&background!==void 0?background:props.L3gfdQ2_y)!==null&&_ref!==void 0?_ref:\"rgb(255, 255, 255)\",variant:(_ref1=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref1!==void 0?_ref1:\"kORMRvu95\"};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,L3gfdQ2_y,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"kORMRvu95\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const StjX81xm61gx595p=overlay=>activeVariantCallback(async(...args)=>{overlay.show();});const onTap1sdoh90=activeVariantCallback(async(...args)=>{setVariant(\"DKKcrR5Br\");});const onTap1epn8kc=activeVariantCallback(async(...args)=>{setVariant(\"cGvjWktTc\");});const onTapog03in=activeVariantCallback(async(...args)=>{setVariant(\"VUYAtLVg3\");});const onTapqrpf2l=activeVariantCallback(async(...args)=>{setVariant(\"eSkcw_4MM\");});const onTapltdykf=activeVariantCallback(async(...args)=>{setVariant(\"CiA04POj7\");});const onTap1hg4gpe=activeVariantCallback(async(...args)=>{setVariant(\"Hf7UC21RC\");});const onTap1aqwngy=activeVariantCallback(async(...args)=>{setVariant(\"SpEIUjT6d\");});const onTap105qlxz=activeVariantCallback(async(...args)=>{setVariant(\"ZAsfRQrF3\");});const ref1=React.useRef(null);const isDisplayed=()=>{if([\"DKKcrR5Br\",\"CiA04POj7\"].includes(baseVariant))return true;return false;};const isDisplayed1=()=>{if([\"cGvjWktTc\",\"DKKcrR5Br\",\"eSkcw_4MM\",\"VUYAtLVg3\",\"Hf7UC21RC\",\"CiA04POj7\",\"ZAsfRQrF3\",\"SpEIUjT6d\"].includes(baseVariant))return false;return true;};const ref2=React.useRef(null);const ref3=React.useRef(null);const ref4=React.useRef(null);const ref5=React.useRef(null);const isDisplayed2=()=>{if([\"cGvjWktTc\",\"DKKcrR5Br\",\"VUYAtLVg3\",\"Hf7UC21RC\",\"CiA04POj7\",\"ZAsfRQrF3\",\"SpEIUjT6d\"].includes(baseVariant))return false;return true;};const isDisplayed3=()=>{if([\"cGvjWktTc\",\"eSkcw_4MM\",\"VUYAtLVg3\",\"Hf7UC21RC\",\"ZAsfRQrF3\",\"SpEIUjT6d\"].includes(baseVariant))return true;return false;};const isDisplayed4=()=>{if([\"Hf7UC21RC\",\"CiA04POj7\"].includes(baseVariant))return false;return true;};const isDisplayed5=()=>{if([\"cGvjWktTc\",\"DKKcrR5Br\",\"eSkcw_4MM\",\"VUYAtLVg3\",\"Hf7UC21RC\",\"CiA04POj7\",\"ZAsfRQrF3\",\"SpEIUjT6d\"].includes(baseVariant))return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,...addPropertyOverrides({cGvjWktTc:{value:transition2},CiA04POj7:{value:transition2},DKKcrR5Br:{value:transition2},eSkcw_4MM:{value:transition2},Hf7UC21RC:{value:transition2},SpEIUjT6d:{value:transition2},VUYAtLVg3:{value:transition2},ZAsfRQrF3:{value:transition2}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1hpkm0z\",className,classNames),\"data-framer-name\":\"Large Desktop\",layoutDependency:layoutDependency,layoutId:\"kORMRvu95\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:L3gfdQ2_y,...style},variants:{CiA04POj7:{backgroundColor:\"var(--token-e7f9e99d-a86a-4d14-8e4b-1ab81b69bf60, rgb(255, 255, 255))\"},DKKcrR5Br:{backgroundColor:\"var(--token-e7f9e99d-a86a-4d14-8e4b-1ab81b69bf60, rgb(255, 255, 255))\"},eSkcw_4MM:{backgroundColor:\"var(--token-a7f7ae5f-a181-442b-8823-be0ca1b170fe, rgb(255, 255, 255))\"},ZAsfRQrF3:{backgroundColor:\"var(--token-a7f7ae5f-a181-442b-8823-be0ca1b170fe, rgb(255, 255, 255))\"}},...addPropertyOverrides({cGvjWktTc:{\"data-framer-name\":\"Tablet\"},CiA04POj7:{\"data-framer-name\":\"Phone - Open\"},DKKcrR5Br:{\"data-framer-name\":\"Tablet - Open\"},eSkcw_4MM:{\"data-framer-name\":\"Tablet - Dark\"},Hf7UC21RC:{\"data-framer-name\":\"Phone\"},nsRaO6UQI:{\"data-framer-name\":\"Desktop\"},SpEIUjT6d:{\"data-framer-name\":\"Phone - Dark - Open\"},VUYAtLVg3:{\"data-framer-name\":\"Tablet - Dark - Open\"},ZAsfRQrF3:{\"data-framer-name\":\"Phone - Dark\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-9gd29g\",\"data-framer-name\":\"Container\",layoutDependency:layoutDependency,layoutId:\"ZmhGdjEl0\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1jkiad5\",\"data-framer-name\":\"Navbar\",layoutDependency:layoutDependency,layoutId:\"o1AOoBUpk\",children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"augiA20Il\"},openInNewTab:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1vjgtuf framer-vfnghv\",\"data-framer-name\":\"Brand Logo\",layoutDependency:layoutDependency,layoutId:\"eoCPcLeuQ\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-wjzgue-container\",layoutDependency:layoutDependency,layoutId:\"R3R8m9uMd-container\",children:/*#__PURE__*/_jsx(BrandLogo,{height:\"100%\",id:\"R3R8m9uMd\",layoutId:\"R3R8m9uMd\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1g3n50x\",\"data-framer-name\":\"Main Menu\",layoutDependency:layoutDependency,layoutId:\"BePNiOJtE\",style:{backgroundColor:\"rgba(0, 0, 0, 0)\",boxShadow:\"none\"},variants:{cGvjWktTc:{backgroundColor:\"var(--token-a7f7ae5f-a181-442b-8823-be0ca1b170fe, rgb(255, 255, 255))\"},CiA04POj7:{backgroundColor:\"var(--token-a7f7ae5f-a181-442b-8823-be0ca1b170fe, rgb(255, 255, 255))\",boxShadow:\"0px 26px 40px 0px rgba(0, 0, 0, 0.1)\"},DKKcrR5Br:{backgroundColor:\"var(--token-a7f7ae5f-a181-442b-8823-be0ca1b170fe, rgb(255, 255, 255))\",boxShadow:\"0px 26px 40px 0px rgba(0, 0, 0, 0.1)\"},eSkcw_4MM:{backgroundColor:\"rgb(255, 255, 255)\"},Hf7UC21RC:{backgroundColor:\"var(--token-a7f7ae5f-a181-442b-8823-be0ca1b170fe, rgb(255, 255, 255))\"},SpEIUjT6d:{backgroundColor:\"var(--token-a7f7ae5f-a181-442b-8823-be0ca1b170fe, rgb(255, 255, 255))\",boxShadow:\"0px 24px 40px 0px rgba(0, 0, 0, 0.1)\"},VUYAtLVg3:{backgroundColor:\"rgb(255, 255, 255)\",boxShadow:\"0px 26px 40px 0px rgba(0, 0, 0, 0.1)\"},ZAsfRQrF3:{backgroundColor:\"var(--token-a7f7ae5f-a181-442b-8823-be0ca1b170fe, rgb(255, 255, 255))\"}},...addPropertyOverrides({DKKcrR5Br:{transformTemplate:transformTemplate1},VUYAtLVg3:{transformTemplate:transformTemplate1}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-yuu784-container\",layoutDependency:layoutDependency,layoutId:\"asnKLKmKg-container\",children:/*#__PURE__*/_jsx(LinksResource,{height:\"100%\",id:\"asnKLKmKg\",layoutId:\"asnKLKmKg\",style:{width:\"100%\"},variant:\"mpmKOxmRe\",width:\"100%\"})})}),isDisplayed1()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1tko6kc\",\"data-framer-name\":\"Menu Item\",layoutDependency:layoutDependency,layoutId:\"F99EMXAjB\",children:/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:false,children:overlay=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-b7ilu6-container\",id:`${layoutId}-b7ilu6`,layoutDependency:layoutDependency,layoutId:\"h3cJ0xDGi-container\",ref:ref2,children:[/*#__PURE__*/_jsx(MenuItem,{akEaMP2V_:\"Demos\",height:\"100%\",id:\"h3cJ0xDGi\",IejEVkrjL:true,layoutId:\"h3cJ0xDGi\",StjX81xm6:StjX81xm61gx595p(overlay),variant:overlay.visible?\"GNU2CefRM\":\"D0tsKLOsP\",width:\"100%\"}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay.visible&&/*#__PURE__*/_jsx(Floating,{alignment:\"start\",anchorRef:ref2,className:cx(serializationHash,classNames,...sharedStyleClassNames),collisionDetection:false,\"data-framer-portal-id\":`${layoutId}-b7ilu6`,offsetX:0,offsetY:16,onDismiss:overlay.hide,placement:\"bottom\",portalSelector:\"#overlay\",safeArea:true,zIndex:11,children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(MotionDivWithFX,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation1,className:\"framer-5uymlg-container\",exit:animation,initial:animation2,layoutDependency:layoutDependency,layoutId:\"cwI5Py8AH-container\",ref:ref3,role:\"dialog\",children:/*#__PURE__*/_jsx(DropdownStyle1,{height:\"100%\",id:\"cwI5Py8AH\",layoutId:\"cwI5Py8AH\",width:\"100%\"})})})})})]})})})})}),isDisplayed1()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-wdz82j\",\"data-framer-name\":\"Menu Item\",layoutDependency:layoutDependency,layoutId:\"TmAuRKofv\",children:/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:false,children:overlay1=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-5nhjf1-container\",id:`${layoutId}-5nhjf1`,layoutDependency:layoutDependency,layoutId:\"TAWBHCEOP-container\",ref:ref4,children:[/*#__PURE__*/_jsx(MenuItem,{akEaMP2V_:\"All Pages\",height:\"100%\",id:\"TAWBHCEOP\",IejEVkrjL:true,layoutId:\"TAWBHCEOP\",StjX81xm6:StjX81xm61gx595p(overlay1),variant:overlay1.visible?\"GNU2CefRM\":\"D0tsKLOsP\",width:\"100%\"}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay1.visible&&/*#__PURE__*/_jsx(Floating,{alignment:\"start\",anchorRef:ref4,className:cx(serializationHash,classNames,...sharedStyleClassNames),collisionDetection:false,\"data-framer-portal-id\":`${layoutId}-5nhjf1`,offsetX:0,offsetY:16,onDismiss:overlay1.hide,placement:\"bottom\",portalSelector:\"#overlay\",safeArea:true,zIndex:11,children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(MotionDivWithFX,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation1,className:\"framer-1nu0ywb-container\",exit:animation,initial:animation2,layoutDependency:layoutDependency,layoutId:\"H33TQp3cO-container\",ref:ref5,role:\"dialog\",children:/*#__PURE__*/_jsx(DropdownStyle2,{height:\"100%\",id:\"H33TQp3cO\",layoutId:\"H33TQp3cO\",style:{width:\"100%\"},width:\"100%\"})})})})})]})})})})}),isDisplayed2()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-h6g46x\",layoutDependency:layoutDependency,layoutId:\"YD_Skw5K9\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1ci1g15\",\"data-styles-preset\":\"khNhtWMYb\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"TmD1uOlMF\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-vup4yl\",\"data-styles-preset\":\"edmMrk2Z3\",children:\"Pricing\"})})})}),className:\"framer-1jqajhz\",\"data-framer-name\":\"About\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"cD1sO0GMM\",verticalAlignment:\"top\",withExternalLayout:true})}),isDisplayed2()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-7dnki6\",layoutDependency:layoutDependency,layoutId:\"SfdkHlHvu\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1ci1g15\",\"data-styles-preset\":\"khNhtWMYb\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"XMkS_pjrx\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-vup4yl\",\"data-styles-preset\":\"edmMrk2Z3\",children:\"Case Study\"})})})}),className:\"framer-1ab9uoz\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"VkWvgV3Vb\",verticalAlignment:\"top\",withExternalLayout:true})}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-k5uluk-container\",layoutDependency:layoutDependency,layoutId:\"sGyuEVKDZ-container\",children:/*#__PURE__*/_jsx(LinksResource,{height:\"100%\",id:\"sGyuEVKDZ\",layoutId:\"sGyuEVKDZ\",style:{width:\"100%\"},variant:\"k9HLtThpS\",width:\"100%\"})})}),isDisplayed3()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-xytxh7-container\",layoutDependency:layoutDependency,layoutId:\"nw3UDcLyJ-container\",children:/*#__PURE__*/_jsx(LinksResource02,{height:\"100%\",id:\"nw3UDcLyJ\",layoutId:\"nw3UDcLyJ\",style:{width:\"100%\"},variant:\"ZvryWa6tJ\",width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-d5dgt3\",\"data-framer-name\":\"Header Button\",layoutDependency:layoutDependency,layoutId:\"z1mu3Rx1p\",children:[isDisplayed4()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-8bzkm5-container\",layoutDependency:layoutDependency,layoutId:\"nseCMP99D-container\",children:/*#__PURE__*/_jsx(Button,{A2dWUqqQh:\"Get This Template\",DnytOe0Z8:\"https://finestdevs.com/buy-strivo\",Fben7NVCN:false,height:\"100%\",id:\"nseCMP99D\",layoutId:\"nseCMP99D\",oSfNN4wFr:true,v8ArQOg02:false,variant:\"g3Mr9Lfvg\",width:\"100%\",...addPropertyOverrides({cGvjWktTc:{variant:\"Bq4lBIkma\"},DKKcrR5Br:{variant:\"Bq4lBIkma\"}},baseVariant,gestureVariant)})})}),isDisplayed5()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1e2xuyr\",\"data-framer-name\":\"Hamburger\",layoutDependency:layoutDependency,layoutId:\"KCJt4_KK6\",style:{borderBottomLeftRadius:3,borderBottomRightRadius:3,borderTopLeftRadius:3,borderTopRightRadius:3},...addPropertyOverrides({cGvjWktTc:{\"data-highlight\":true,onTap:onTap1sdoh90},CiA04POj7:{\"data-highlight\":true,onTap:onTap1hg4gpe},DKKcrR5Br:{\"data-highlight\":true,onTap:onTap1epn8kc},eSkcw_4MM:{\"data-highlight\":true,onTap:onTapog03in},Hf7UC21RC:{\"data-highlight\":true,onTap:onTapltdykf},SpEIUjT6d:{\"data-highlight\":true,onTap:onTap105qlxz},VUYAtLVg3:{\"data-highlight\":true,onTap:onTapqrpf2l},ZAsfRQrF3:{\"data-highlight\":true,onTap:onTap1aqwngy}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-z3ij89-container\",layoutDependency:layoutDependency,layoutId:\"tCx3waWEN-container\",children:/*#__PURE__*/_jsx(ElementsMenuIcon,{color:\"var(--token-a7f7ae5f-a181-442b-8823-be0ca1b170fe, rgb(255, 255, 255))\",height:\"100%\",id:\"tCx3waWEN\",layoutId:\"tCx3waWEN\",style:{height:\"100%\",width:\"100%\"},variant:\"uL1KSNbAO\",width:\"100%\",...addPropertyOverrides({cGvjWktTc:{color:\"var(--token-7d238883-ff78-48dd-aa4d-b51420a44daf, rgb(14, 11, 23))\"},CiA04POj7:{color:\"var(--token-7d238883-ff78-48dd-aa4d-b51420a44daf, rgb(14, 11, 23))\",variant:\"wuYLgLVQz\"},DKKcrR5Br:{color:\"var(--token-7d238883-ff78-48dd-aa4d-b51420a44daf, rgb(14, 11, 23))\",variant:\"wuYLgLVQz\"},eSkcw_4MM:{color:\"var(--token-e29b414e-778b-4330-a92f-715c64d82d8a, rgb(8, 22, 23))\"},Hf7UC21RC:{color:\"var(--token-7d238883-ff78-48dd-aa4d-b51420a44daf, rgb(14, 11, 23))\"},SpEIUjT6d:{color:\"var(--token-e29b414e-778b-4330-a92f-715c64d82d8a, rgb(8, 22, 23))\",variant:\"wuYLgLVQz\"},VUYAtLVg3:{color:\"var(--token-e29b414e-778b-4330-a92f-715c64d82d8a, rgb(8, 22, 23))\",variant:\"wuYLgLVQz\"},ZAsfRQrF3:{color:\"var(--token-e29b414e-778b-4330-a92f-715c64d82d8a, rgb(8, 22, 23))\"}},baseVariant,gestureVariant)})})})})]})]})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-hwanD.framer-vfnghv, .framer-hwanD .framer-vfnghv { display: block; }\",\".framer-hwanD.framer-1hpkm0z { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: auto; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1440px; }\",\".framer-hwanD .framer-9gd29g { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: auto; justify-content: center; max-width: 1356px; overflow: visible; padding: 0px 30px 0px 30px; position: relative; width: 100%; }\",\".framer-hwanD .framer-1jkiad5 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; padding: 18px 0px 18px 0px; position: relative; width: 100%; }\",\".framer-hwanD .framer-1vjgtuf { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-hwanD .framer-wjzgue-container { flex: none; height: 28px; position: relative; width: 124px; }\",\".framer-hwanD .framer-1g3n50x { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 36px; height: auto; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: auto; }\",\".framer-hwanD .framer-yuu784-container, .framer-hwanD .framer-k5uluk-container { flex: none; height: auto; position: relative; width: 200px; }\",\".framer-hwanD .framer-1tko6kc, .framer-hwanD .framer-wdz82j { align-content: center; align-items: center; cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-hwanD .framer-b7ilu6-container, .framer-hwanD .framer-5nhjf1-container, .framer-hwanD .framer-8bzkm5-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-hwanD .framer-5uymlg-container { height: auto; position: relative; width: auto; }\",\".framer-hwanD .framer-1nu0ywb-container { height: auto; position: relative; width: 210px; }\",\".framer-hwanD .framer-h6g46x, .framer-hwanD .framer-7dnki6 { 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-hwanD .framer-1jqajhz, .framer-hwanD .framer-1ab9uoz { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-hwanD .framer-xytxh7-container { flex: none; height: auto; position: relative; width: 150px; }\",\".framer-hwanD .framer-d5dgt3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-end; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-hwanD .framer-1e2xuyr { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 42px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 42px; }\",\".framer-hwanD .framer-z3ij89-container { flex: none; height: 32px; position: relative; width: 32px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-hwanD.framer-1hpkm0z, .framer-hwanD .framer-9gd29g, .framer-hwanD .framer-1vjgtuf, .framer-hwanD .framer-1g3n50x, .framer-hwanD .framer-1tko6kc, .framer-hwanD .framer-wdz82j, .framer-hwanD .framer-h6g46x, .framer-hwanD .framer-7dnki6, .framer-hwanD .framer-d5dgt3, .framer-hwanD .framer-1e2xuyr { gap: 0px; } .framer-hwanD.framer-1hpkm0z > *, .framer-hwanD .framer-9gd29g > *, .framer-hwanD .framer-1e2xuyr > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-hwanD.framer-1hpkm0z > :first-child, .framer-hwanD .framer-9gd29g > :first-child, .framer-hwanD .framer-1e2xuyr > :first-child { margin-top: 0px; } .framer-hwanD.framer-1hpkm0z > :last-child, .framer-hwanD .framer-9gd29g > :last-child, .framer-hwanD .framer-1e2xuyr > :last-child { margin-bottom: 0px; } .framer-hwanD .framer-1vjgtuf > * { margin: 0px; margin-left: calc(6px / 2); margin-right: calc(6px / 2); } .framer-hwanD .framer-1vjgtuf > :first-child, .framer-hwanD .framer-1g3n50x > :first-child, .framer-hwanD .framer-1tko6kc > :first-child, .framer-hwanD .framer-wdz82j > :first-child, .framer-hwanD .framer-h6g46x > :first-child, .framer-hwanD .framer-7dnki6 > :first-child, .framer-hwanD .framer-d5dgt3 > :first-child { margin-left: 0px; } .framer-hwanD .framer-1vjgtuf > :last-child, .framer-hwanD .framer-1g3n50x > :last-child, .framer-hwanD .framer-1tko6kc > :last-child, .framer-hwanD .framer-wdz82j > :last-child, .framer-hwanD .framer-h6g46x > :last-child, .framer-hwanD .framer-7dnki6 > :last-child, .framer-hwanD .framer-d5dgt3 > :last-child { margin-right: 0px; } .framer-hwanD .framer-1g3n50x > * { margin: 0px; margin-left: calc(36px / 2); margin-right: calc(36px / 2); } .framer-hwanD .framer-1tko6kc > *, .framer-hwanD .framer-wdz82j > * { margin: 0px; margin-left: calc(5px / 2); margin-right: calc(5px / 2); } .framer-hwanD .framer-h6g46x > *, .framer-hwanD .framer-7dnki6 > *, .framer-hwanD .framer-d5dgt3 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } }\",\".framer-hwanD.framer-v-13btghj.framer-1hpkm0z, .framer-hwanD.framer-v-15dizxa.framer-1hpkm0z, .framer-hwanD.framer-v-1uwy0b2.framer-1hpkm0z, .framer-hwanD.framer-v-ox1j0u.framer-1hpkm0z { width: 800px; }\",\".framer-hwanD.framer-v-13btghj .framer-9gd29g, .framer-hwanD.framer-v-15dizxa .framer-9gd29g, .framer-hwanD.framer-v-1uwy0b2 .framer-9gd29g, .framer-hwanD.framer-v-ox1j0u .framer-9gd29g { max-width: 800px; padding: 0px 24px 0px 24px; }\",\".framer-hwanD.framer-v-13btghj .framer-1g3n50x { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 24px; height: 0%; left: calc(50.00000000000002% - 100% / 2); overflow: hidden; padding: 0px 20px 0px 20px; position: absolute; top: 85px; width: 100%; z-index: 1; }\",\".framer-hwanD.framer-v-13btghj .framer-xytxh7-container, .framer-hwanD.framer-v-ox1j0u .framer-xytxh7-container, .framer-hwanD.framer-v-1xwan4j .framer-xytxh7-container, .framer-hwanD.framer-v-1kn16fq .framer-xytxh7-container, .framer-hwanD.framer-v-1kqbpuv .framer-xytxh7-container { order: 5; width: 100%; }\",\".framer-hwanD.framer-v-13btghj .framer-8bzkm5-container, .framer-hwanD.framer-v-15dizxa .framer-8bzkm5-container, .framer-hwanD.framer-v-1uwy0b2 .framer-8bzkm5-container, .framer-hwanD.framer-v-ox1j0u .framer-8bzkm5-container, .framer-hwanD.framer-v-1xwan4j .framer-1vjgtuf { order: 0; }\",\".framer-hwanD.framer-v-13btghj .framer-1e2xuyr, .framer-hwanD.framer-v-15dizxa .framer-1e2xuyr, .framer-hwanD.framer-v-1uwy0b2 .framer-1e2xuyr, .framer-hwanD.framer-v-ox1j0u .framer-1e2xuyr { cursor: pointer; order: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-hwanD.framer-v-13btghj .framer-1g3n50x { gap: 0px; } .framer-hwanD.framer-v-13btghj .framer-1g3n50x > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-hwanD.framer-v-13btghj .framer-1g3n50x > :first-child { margin-top: 0px; } .framer-hwanD.framer-v-13btghj .framer-1g3n50x > :last-child { margin-bottom: 0px; } }\",\".framer-hwanD.framer-v-15dizxa .framer-1g3n50x { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 24px; left: 50%; overflow: hidden; padding: 20px; position: absolute; top: 85px; width: 100%; z-index: 1; }\",\".framer-hwanD.framer-v-15dizxa .framer-yuu784-container { order: 5; }\",\".framer-hwanD.framer-v-15dizxa .framer-k5uluk-container, .framer-hwanD.framer-v-18pd18m .framer-yuu784-container { order: 6; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-hwanD.framer-v-15dizxa .framer-1g3n50x { gap: 0px; } .framer-hwanD.framer-v-15dizxa .framer-1g3n50x > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-hwanD.framer-v-15dizxa .framer-1g3n50x > :first-child { margin-top: 0px; } .framer-hwanD.framer-v-15dizxa .framer-1g3n50x > :last-child { margin-bottom: 0px; } }\",\".framer-hwanD.framer-v-1uwy0b2 .framer-1g3n50x { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 24px; height: 0%; left: calc(50.00000000000002% - 100% / 2); overflow: hidden; padding: 0px 20px 0px 20px; position: absolute; top: 79px; width: 100%; z-index: 1; }\",\".framer-hwanD.framer-v-1uwy0b2 .framer-h6g46x { order: 1; }\",\".framer-hwanD.framer-v-1uwy0b2 .framer-7dnki6, .framer-hwanD.framer-v-1xwan4j .framer-d5dgt3 { order: 2; }\",\".framer-hwanD.framer-v-1uwy0b2 .framer-xytxh7-container { order: 5; width: 220px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-hwanD.framer-v-1uwy0b2 .framer-1g3n50x { gap: 0px; } .framer-hwanD.framer-v-1uwy0b2 .framer-1g3n50x > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-hwanD.framer-v-1uwy0b2 .framer-1g3n50x > :first-child { margin-top: 0px; } .framer-hwanD.framer-v-1uwy0b2 .framer-1g3n50x > :last-child { margin-bottom: 0px; } }\",\".framer-hwanD.framer-v-ox1j0u .framer-1g3n50x { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 24px; left: 50%; overflow: hidden; padding: 20px; position: absolute; top: 79px; width: 100%; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-hwanD.framer-v-ox1j0u .framer-1g3n50x { gap: 0px; } .framer-hwanD.framer-v-ox1j0u .framer-1g3n50x > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-hwanD.framer-v-ox1j0u .framer-1g3n50x > :first-child { margin-top: 0px; } .framer-hwanD.framer-v-ox1j0u .framer-1g3n50x > :last-child { margin-bottom: 0px; } }\",\".framer-hwanD.framer-v-1xwan4j.framer-1hpkm0z, .framer-hwanD.framer-v-18pd18m.framer-1hpkm0z, .framer-hwanD.framer-v-1kn16fq.framer-1hpkm0z, .framer-hwanD.framer-v-1kqbpuv.framer-1hpkm0z { width: 520px; }\",\".framer-hwanD.framer-v-1xwan4j .framer-9gd29g, .framer-hwanD.framer-v-18pd18m .framer-9gd29g, .framer-hwanD.framer-v-1kn16fq .framer-9gd29g, .framer-hwanD.framer-v-1kqbpuv .framer-9gd29g { max-width: 520px; padding: 0px 24px 0px 24px; }\",\".framer-hwanD.framer-v-1xwan4j .framer-1jkiad5, .framer-hwanD.framer-v-18pd18m .framer-1jkiad5 { align-content: flex-start; align-items: flex-start; }\",\".framer-hwanD.framer-v-1xwan4j .framer-1g3n50x { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 24px; height: 0%; left: 0px; max-width: 520px; order: 1; overflow: hidden; padding: 0px 20px 0px 20px; position: absolute; top: 79px; width: 100%; z-index: 1; }\",\".framer-hwanD.framer-v-1xwan4j .framer-1e2xuyr, .framer-hwanD.framer-v-18pd18m .framer-1e2xuyr, .framer-hwanD.framer-v-1kn16fq .framer-1e2xuyr, .framer-hwanD.framer-v-1kqbpuv .framer-1e2xuyr { cursor: pointer; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-hwanD.framer-v-1xwan4j .framer-1g3n50x { gap: 0px; } .framer-hwanD.framer-v-1xwan4j .framer-1g3n50x > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-hwanD.framer-v-1xwan4j .framer-1g3n50x > :first-child { margin-top: 0px; } .framer-hwanD.framer-v-1xwan4j .framer-1g3n50x > :last-child { margin-bottom: 0px; } }\",\".framer-hwanD.framer-v-18pd18m .framer-1g3n50x, .framer-hwanD.framer-v-1kqbpuv .framer-1g3n50x { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 24px; left: 0px; max-width: 520px; overflow: hidden; padding: 20px; position: absolute; top: 79px; width: 100%; z-index: 1; }\",\".framer-hwanD.framer-v-18pd18m .framer-k5uluk-container { order: 7; }\",\".framer-hwanD.framer-v-18pd18m .framer-d5dgt3, .framer-hwanD.framer-v-1kn16fq .framer-d5dgt3 { justify-content: center; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-hwanD.framer-v-18pd18m .framer-1g3n50x { gap: 0px; } .framer-hwanD.framer-v-18pd18m .framer-1g3n50x > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-hwanD.framer-v-18pd18m .framer-1g3n50x > :first-child { margin-top: 0px; } .framer-hwanD.framer-v-18pd18m .framer-1g3n50x > :last-child { margin-bottom: 0px; } }\",\".framer-hwanD.framer-v-1kn16fq .framer-1g3n50x { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 24px; height: 0%; left: 0px; max-width: 520px; overflow: hidden; padding: 0px 20px 0px 20px; position: absolute; top: 79px; width: 100%; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-hwanD.framer-v-1kn16fq .framer-1g3n50x { gap: 0px; } .framer-hwanD.framer-v-1kn16fq .framer-1g3n50x > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-hwanD.framer-v-1kn16fq .framer-1g3n50x > :first-child { margin-top: 0px; } .framer-hwanD.framer-v-1kn16fq .framer-1g3n50x > :last-child { margin-bottom: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-hwanD.framer-v-1kqbpuv .framer-1g3n50x { gap: 0px; } .framer-hwanD.framer-v-1kqbpuv .framer-1g3n50x > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-hwanD.framer-v-1kqbpuv .framer-1g3n50x > :first-child { margin-top: 0px; } .framer-hwanD.framer-v-1kqbpuv .framer-1g3n50x > :last-child { margin-bottom: 0px; } }\",\".framer-hwanD.framer-v-1isd6xv.framer-1hpkm0z { width: 1000px; }\",\".framer-hwanD.framer-v-1isd6xv .framer-1g3n50x { gap: 30px; max-width: 500px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-hwanD.framer-v-1isd6xv .framer-1g3n50x { gap: 0px; } .framer-hwanD.framer-v-1isd6xv .framer-1g3n50x > * { margin: 0px; margin-left: calc(30px / 2); margin-right: calc(30px / 2); } .framer-hwanD.framer-v-1isd6xv .framer-1g3n50x > :first-child { margin-left: 0px; } .framer-hwanD.framer-v-1isd6xv .framer-1g3n50x > :last-child { margin-right: 0px; } }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 91\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"cGvjWktTc\":{\"layout\":[\"fixed\",\"auto\"]},\"DKKcrR5Br\":{\"layout\":[\"fixed\",\"auto\"]},\"eSkcw_4MM\":{\"layout\":[\"fixed\",\"auto\"]},\"VUYAtLVg3\":{\"layout\":[\"fixed\",\"auto\"]},\"Hf7UC21RC\":{\"layout\":[\"fixed\",\"auto\"]},\"CiA04POj7\":{\"layout\":[\"fixed\",\"auto\"]},\"ZAsfRQrF3\":{\"layout\":[\"fixed\",\"auto\"]},\"SpEIUjT6d\":{\"layout\":[\"fixed\",\"auto\"]},\"nsRaO6UQI\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"L3gfdQ2_y\":\"background\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerNFESY9b70=withCSS(Component,css,\"framer-hwanD\");export default FramerNFESY9b70;FramerNFESY9b70.displayName=\"Header\";FramerNFESY9b70.defaultProps={height:91,width:1440};addPropertyControls(FramerNFESY9b70,{variant:{options:[\"kORMRvu95\",\"cGvjWktTc\",\"DKKcrR5Br\",\"eSkcw_4MM\",\"VUYAtLVg3\",\"Hf7UC21RC\",\"CiA04POj7\",\"ZAsfRQrF3\",\"SpEIUjT6d\",\"nsRaO6UQI\"],optionTitles:[\"Large Desktop\",\"Tablet\",\"Tablet - Open\",\"Tablet - Dark\",\"Tablet - Dark - Open\",\"Phone\",\"Phone - Open\",\"Phone - Dark\",\"Phone - Dark - Open\",\"Desktop\"],title:\"Variant\",type:ControlType.Enum},L3gfdQ2_y:{defaultValue:\"rgb(255, 255, 255)\",title:\"Background\",type:ControlType.Color}});addFonts(FramerNFESY9b70,[{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://app.framerstatic.com/Inter-Regular.cyrillic-ext-CFTLRB35.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://app.framerstatic.com/Inter-Regular.cyrillic-KKLZBALH.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-ext-ULEBLIFV.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-IRHSNFQB.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://app.framerstatic.com/Inter-Regular.latin-ext-VZDUGU3Q.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://app.framerstatic.com/Inter-Regular.latin-JLQMKCHE.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://app.framerstatic.com/Inter-Regular.vietnamese-QK7VSWXK.woff2\",weight:\"400\"}]},...BrandLogoFonts,...LinksResourceFonts,...MenuItemFonts,...DropdownStyle1Fonts,...DropdownStyle2Fonts,...LinksResource02Fonts,...ButtonFonts,...ElementsMenuIconFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerNFESY9b70\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"cGvjWktTc\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"DKKcrR5Br\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"eSkcw_4MM\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"VUYAtLVg3\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Hf7UC21RC\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"CiA04POj7\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ZAsfRQrF3\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"SpEIUjT6d\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"nsRaO6UQI\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"1440\",\"framerIntrinsicHeight\":\"91\",\"framerComponentViewportWidth\":\"true\",\"framerVariables\":\"{\\\"L3gfdQ2_y\\\":\\\"background\\\"}\",\"framerImmutableVariables\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{fontStore as e}from\"framer\";e.loadWebFontsFromSelectors([\"CUSTOM;Recoleta Regular\"]);export const fonts=[{family:\"Recoleta Regular\",url:\"https://framerusercontent.com/assets/4LstPUBZBcJQRBj8fsVaAQTQVo.woff2\"}];export const css=['.framer-SzcNn .framer-styles-preset-jrfiar:not(.rich-text-wrapper), .framer-SzcNn .framer-styles-preset-jrfiar.rich-text-wrapper h2 { --framer-font-family: \"Recoleta Regular\", \"Recoleta Regular Placeholder\", sans-serif; --framer-font-size: 72px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: -0.0277778em; --framer-line-height: 115%; --framer-paragraph-spacing: 0px; --framer-text-alignment: center; --framer-text-color: var(--token-86eb8ebb-a67b-4881-bab4-bef2965a7627, #110f16); --framer-text-decoration: none; --framer-text-transform: none; }','@media (max-width: 1439px) and (min-width: 992px) { .framer-SzcNn .framer-styles-preset-jrfiar:not(.rich-text-wrapper), .framer-SzcNn .framer-styles-preset-jrfiar.rich-text-wrapper h2 { --framer-font-family: \"Recoleta Regular\", \"Recoleta Regular Placeholder\", sans-serif; --framer-font-size: 56px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: -0.0277778em; --framer-line-height: 115%; --framer-paragraph-spacing: 0px; --framer-text-alignment: center; --framer-text-color: var(--token-86eb8ebb-a67b-4881-bab4-bef2965a7627, #110f16); --framer-text-decoration: none; --framer-text-transform: none; } }','@media (max-width: 991px) and (min-width: 768px) { .framer-SzcNn .framer-styles-preset-jrfiar:not(.rich-text-wrapper), .framer-SzcNn .framer-styles-preset-jrfiar.rich-text-wrapper h2 { --framer-font-family: \"Recoleta Regular\", \"Recoleta Regular Placeholder\", sans-serif; --framer-font-size: 48px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: -0.0277778em; --framer-line-height: 115%; --framer-paragraph-spacing: 0px; --framer-text-alignment: center; --framer-text-color: var(--token-86eb8ebb-a67b-4881-bab4-bef2965a7627, #110f16); --framer-text-decoration: none; --framer-text-transform: none; } }','@media (max-width: 767px) and (min-width: 0px) { .framer-SzcNn .framer-styles-preset-jrfiar:not(.rich-text-wrapper), .framer-SzcNn .framer-styles-preset-jrfiar.rich-text-wrapper h2 { --framer-font-family: \"Recoleta Regular\", \"Recoleta Regular Placeholder\", sans-serif; --framer-font-size: 42px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: -0.0277778em; --framer-line-height: 115%; --framer-paragraph-spacing: 0px; --framer-text-alignment: center; --framer-text-color: var(--token-86eb8ebb-a67b-4881-bab4-bef2965a7627, #110f16); --framer-text-decoration: none; --framer-text-transform: none; } }'];export const className=\"framer-SzcNn\";\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\"}}}", "import{fontStore}from\"framer\";fontStore.loadFonts([\"CUSTOM;Recoleta Regular\"]);export const fonts=[{family:\"Recoleta Regular\",url:\"https://framerusercontent.com/assets/4LstPUBZBcJQRBj8fsVaAQTQVo.woff2\"}];export const css=['.framer-vHP5m .framer-styles-preset-1o9poy8:not(.rich-text-wrapper), .framer-vHP5m .framer-styles-preset-1o9poy8.rich-text-wrapper h1 { --framer-font-family: \"Recoleta Regular\", \"Recoleta Regular Placeholder\", sans-serif; --framer-font-size: 80px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: -2px; --framer-line-height: 110%; --framer-paragraph-spacing: 0px; --framer-text-alignment: center; --framer-text-color: #110f16; --framer-text-decoration: none; --framer-text-transform: none; }','@media (max-width: 1439px) and (min-width: 992px) { .framer-vHP5m .framer-styles-preset-1o9poy8:not(.rich-text-wrapper), .framer-vHP5m .framer-styles-preset-1o9poy8.rich-text-wrapper h1 { --framer-font-family: \"Recoleta Regular\", \"Recoleta Regular Placeholder\", sans-serif; --framer-font-size: 64px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: -2px; --framer-line-height: 110%; --framer-paragraph-spacing: 0px; --framer-text-alignment: center; --framer-text-color: #110f16; --framer-text-decoration: none; --framer-text-transform: none; } }','@media (max-width: 991px) and (min-width: 768px) { .framer-vHP5m .framer-styles-preset-1o9poy8:not(.rich-text-wrapper), .framer-vHP5m .framer-styles-preset-1o9poy8.rich-text-wrapper h1 { --framer-font-family: \"Recoleta Regular\", \"Recoleta Regular Placeholder\", sans-serif; --framer-font-size: 36px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: -2px; --framer-line-height: 110%; --framer-paragraph-spacing: 0px; --framer-text-alignment: center; --framer-text-color: #110f16; --framer-text-decoration: none; --framer-text-transform: none; } }','@media (max-width: 767px) and (min-width: 0px) { .framer-vHP5m .framer-styles-preset-1o9poy8:not(.rich-text-wrapper), .framer-vHP5m .framer-styles-preset-1o9poy8.rich-text-wrapper h1 { --framer-font-family: \"Recoleta Regular\", \"Recoleta Regular Placeholder\", sans-serif; --framer-font-size: 32px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: -2px; --framer-line-height: 110%; --framer-paragraph-spacing: 0px; --framer-text-alignment: center; --framer-text-color: #110f16; --framer-text-decoration: none; --framer-text-transform: none; } }'];export const className=\"framer-vHP5m\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (f4b44ab)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFonts,resolveLink,RichText,SVG,useLocaleInfo,useRouter,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/9VXOABWznIecqTdAwNZD/NL21XCR2hbTSuInG7l0o/psFmiPy99.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/omsQg1fuP2UGGoiJKOlL/xLI9vDy94b40zizAR7U0/serHcjSOr.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/8882BhoKHdQsXVoWon3F/wlMATDHUWnhIeZRiCkGy/so0EbRtMY.js\";import Button from\"https://framerusercontent.com/modules/atH1LpNd0SpIqI1qGY5w/SRZttlJ7g7yZN0GzKiFY/OyzrDXQkY.js\";const MotionDivWithFX=withFX(motion.div);const RichTextWithFX=withFX(RichText);const ButtonFonts=getFonts(Button);const cycleOrder=[\"seubXShGd\",\"eQDQG38yz\",\"e97MNzCqV\",\"sj4tGzGL4\"];const serializationHash=\"framer-fpmqx\";const variantClassNames={e97MNzCqV:\"framer-v-u36f5x\",eQDQG38yz:\"framer-v-c800jm\",seubXShGd:\"framer-v-2nvm16\",sj4tGzGL4:\"framer-v-15xy7qy\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transitions={default:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"}};const transformTemplate=(_,t)=>`perspective(1200px) ${t}`;const animation={opacity:0,rotate:0,scale:1,x:0,y:50};const transition1={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const transition2={damping:30,delay:.1,mass:1,stiffness:400,type:\"spring\"};const transition3={damping:60,delay:.3,mass:1.2,stiffness:300,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const humanReadableVariantMap={\"Large Desktop\":\"seubXShGd\",Desktop:\"eQDQG38yz\",Mobile:\"sj4tGzGL4\",Tablet:\"e97MNzCqV\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"seubXShGd\"};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"seubXShGd\",transitions,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const router=useRouter();const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className];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-fpmqx\",...sharedStyleClassNames,classNames),style:{display:\"contents\"},children:/*#__PURE__*/_jsx(Transition,{value:transition,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(\"framer-2nvm16\",className),\"data-framer-name\":\"Large Desktop\",layoutDependency:layoutDependency,layoutId:\"seubXShGd\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"var(--token-4a413465-32a1-4e63-80f7-d68c28dc0453, rgb(255, 132, 115))\",...style},...addPropertyOverrides({e97MNzCqV:{\"data-framer-name\":\"Tablet\"},eQDQG38yz:{\"data-framer-name\":\"Desktop\"},sj4tGzGL4:{\"data-framer-name\":\"Mobile\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:100,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,x:0,y:0}},{target:{opacity:1,rotate:160,rotateX:0,rotateY:0,scale:1,x:0,y:0}}],__framer__transformTrigger:\"onScroll\",__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-u96qpn\",\"data-framer-name\":\"Cta Shape 01\",layoutDependency:layoutDependency,layoutId:\"AwCQHRIy5\",transformTemplate:transformTemplate,children:/*#__PURE__*/_jsx(SVG,{className:\"framer-v661dl\",\"data-framer-name\":\"Cta Shape 01\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:401,intrinsicWidth:401,layoutDependency:layoutDependency,layoutId:\"K745A8rWI\",svg:'<svg width=\"401\" height=\"401\" viewBox=\"0 0 401 401\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M254.129 54.0272L200.087 199.959L160.015 112.719C156.307 104.565 155.95 95.2804 159.02 86.8643L181.184 27.0139L254.129 54.0272Z\" fill=\"#FED94B\"/>\\n<path d=\"M346.059 254.016L200.085 199.958L287.397 159.891C291.478 157.991 295.9 156.934 300.399 156.783C304.898 156.633 309.38 157.392 313.578 159.015L373.412 181.172L346.059 254.016Z\" fill=\"#FED94B\"/>\\n<path d=\"M146.044 345.891L200.085 199.958L240.127 287.282C242.032 291.362 243.09 295.785 243.24 300.285C243.39 304.786 242.628 309.27 240.999 313.468L218.835 373.319L146.044 345.891Z\" fill=\"#FED94B\"/>\\n<path d=\"M54.1953 145.932L200.086 199.959L112.857 240.056C104.713 243.804 95.4153 244.164 87.0077 241.056L27.1743 218.898L54.1953 145.932Z\" fill=\"#FED94B\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:100,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,x:0,y:0}},{target:{opacity:1,rotate:-140,rotateX:0,rotateY:0,scale:1,x:0,y:0}}],__framer__transformTrigger:\"onScroll\",__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1rf3wn5\",\"data-framer-name\":\"Cta Shape 02\",layoutDependency:layoutDependency,layoutId:\"brucjA6ft\",transformTemplate:transformTemplate,children:/*#__PURE__*/_jsx(SVG,{className:\"framer-oji9v8\",\"data-framer-name\":\"Cta Shape 01\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:401,intrinsicWidth:401,layoutDependency:layoutDependency,layoutId:\"SBT0hCdVd\",svg:'<svg width=\"401\" height=\"401\" viewBox=\"0 0 401 401\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M254.129 54.0272L200.087 199.959L160.014 112.719C156.307 104.565 155.95 95.2804 159.02 86.8643L181.184 27.0139L254.129 54.0272Z\" fill=\"white\"/>\\n<path d=\"M346.059 254.016L200.086 199.958L287.397 159.891C291.478 157.991 295.9 156.934 300.399 156.783C304.898 156.633 309.38 157.392 313.579 159.015L373.412 181.172L346.059 254.016Z\" fill=\"white\"/>\\n<path d=\"M146.043 345.891L200.085 199.958L240.127 287.282C242.031 291.362 243.09 295.785 243.24 300.285C243.39 304.786 242.627 309.27 240.999 313.468L218.835 373.319L146.043 345.891Z\" fill=\"white\"/>\\n<path d=\"M54.1953 145.932L200.086 199.959L112.857 240.056C104.713 243.804 95.4153 244.164 87.0077 241.056L27.1743 218.898L54.1953 145.932Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-rrulz4\",\"data-framer-name\":\"Container\",layoutDependency:layoutDependency,layoutId:\"LtF2SPcPW\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1yki7vq\",\"data-framer-name\":\"Cta Content Stack\",layoutDependency:layoutDependency,layoutId:\"LuyBnu_hm\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-192mv6p\",\"data-framer-name\":\"Section Heading Block\",layoutDependency:layoutDependency,layoutId:\"Sx8X9m39T\",children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{className:\"framer-styles-preset-1o9poy8\",\"data-styles-preset\":\"so0EbRtMY\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-gdpscs, var(--token-55e41969-929b-4961-a243-cb37fef72b2f, rgb(255, 255, 255)))\"},children:\"Try Strivo for 14 days\"})}),className:\"framer-zzb5lm\",\"data-framer-name\":\"Cta Title\",layoutDependency:layoutDependency,layoutId:\"F3iho7Nc7\",style:{\"--extracted-gdpscs\":\"var(--token-55e41969-929b-4961-a243-cb37fef72b2f, rgb(255, 255, 255))\",\"--framer-paragraph-spacing\":\"0px\"},transformTemplate:transformTemplate,variants:{sj4tGzGL4:{\"--extracted-1of0zx5\":\"var(--token-55e41969-929b-4961-a243-cb37fef72b2f, rgb(255, 255, 255))\"}},verticalAlignment:\"center\",withExternalLayout:true,...addPropertyOverrides({sj4tGzGL4:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-jrfiar\",\"data-styles-preset\":\"serHcjSOr\",style:{\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-55e41969-929b-4961-a243-cb37fef72b2f, rgb(255, 255, 255)))\"},children:\"Try Strivo for 14 days\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-lfierc\",\"data-styles-preset\":\"psFmiPy99\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-55e41969-929b-4961-a243-cb37fef72b2f, rgb(255, 255, 255)))\"},children:\"Many desktop publishing packages and web page editors now use as their default model text, and a search for will uncover\"})}),className:\"framer-1bcje7p\",\"data-framer-name\":\"Paragraph\",layoutDependency:layoutDependency,layoutId:\"uf6me8Jod\",style:{\"--extracted-r6o4lv\":\"var(--token-55e41969-929b-4961-a243-cb37fef72b2f, rgb(255, 255, 255))\",\"--framer-paragraph-spacing\":\"0px\"},transformTemplate:transformTemplate,verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1ju3z0i-container\",layoutDependency:layoutDependency,layoutId:\"uUDTa4Uh3-container\",transformTemplate:transformTemplate,children:/*#__PURE__*/_jsx(Button,{A2dWUqqQh:\"Get Started Now\",DnytOe0Z8:resolveLink({webPageId:\"TmD1uOlMF\"},router),Fben7NVCN:false,height:\"100%\",id:\"uUDTa4Uh3\",layoutId:\"uUDTa4Uh3\",oSfNN4wFr:false,v8ArQOg02:false,variant:\"pyJnGqG6V\",width:\"100%\"})})]})})]})})})});});const css=['.framer-fpmqx [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-fpmqx .framer-c14pl5 { display: block; }\",\".framer-fpmqx .framer-2nvm16 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 145px 0px 145px 0px; position: relative; width: 1440px; }\",\".framer-fpmqx .framer-u96qpn { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 401px); left: -85px; overflow: hidden; position: absolute; top: -100px; width: 401px; z-index: 1; }\",\".framer-fpmqx .framer-v661dl, .framer-fpmqx .framer-oji9v8 { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-fpmqx .framer-1rf3wn5 { aspect-ratio: 1 / 1; bottom: 1px; flex: none; height: var(--framer-aspect-ratio-supported, 401px); overflow: hidden; position: absolute; right: -170px; width: 401px; z-index: 1; }\",\".framer-fpmqx .framer-rrulz4 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; max-width: 1356px; overflow: visible; padding: 0px 30px 0px 30px; position: relative; width: 1px; z-index: 2; }\",\".framer-fpmqx .framer-1yki7vq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-fpmqx .framer-192mv6p { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-fpmqx .framer-zzb5lm { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-fpmqx .framer-1bcje7p { flex: none; height: auto; max-width: 578px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-fpmqx .framer-1ju3z0i-container { flex: none; height: auto; position: relative; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-fpmqx .framer-2nvm16, .framer-fpmqx .framer-rrulz4, .framer-fpmqx .framer-1yki7vq, .framer-fpmqx .framer-192mv6p { gap: 0px; } .framer-fpmqx .framer-2nvm16 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-fpmqx .framer-2nvm16 > :first-child { margin-left: 0px; } .framer-fpmqx .framer-2nvm16 > :last-child { margin-right: 0px; } .framer-fpmqx .framer-rrulz4 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-fpmqx .framer-rrulz4 > :first-child, .framer-fpmqx .framer-1yki7vq > :first-child, .framer-fpmqx .framer-192mv6p > :first-child { margin-top: 0px; } .framer-fpmqx .framer-rrulz4 > :last-child, .framer-fpmqx .framer-1yki7vq > :last-child, .framer-fpmqx .framer-192mv6p > :last-child { margin-bottom: 0px; } .framer-fpmqx .framer-1yki7vq > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-fpmqx .framer-192mv6p > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } }\",\".framer-fpmqx.framer-v-c800jm .framer-2nvm16 { width: 992px; }\",\".framer-fpmqx.framer-v-c800jm .framer-u96qpn { height: var(--framer-aspect-ratio-supported, 309px); left: -90px; top: -110px; width: 309px; }\",\".framer-fpmqx.framer-v-c800jm .framer-1rf3wn5, .framer-fpmqx.framer-v-u36f5x .framer-1rf3wn5 { bottom: -59px; height: var(--framer-aspect-ratio-supported, 316px); right: -100px; width: 316px; }\",\".framer-fpmqx.framer-v-c800jm .framer-1yki7vq, .framer-fpmqx.framer-v-u36f5x .framer-1yki7vq, .framer-fpmqx.framer-v-15xy7qy .framer-1yki7vq { order: 0; }\",\".framer-fpmqx.framer-v-u36f5x .framer-2nvm16 { width: 768px; }\",\".framer-fpmqx.framer-v-u36f5x .framer-u96qpn { height: var(--framer-aspect-ratio-supported, 309px); left: -93px; top: -96px; width: 309px; }\",\".framer-fpmqx.framer-v-15xy7qy .framer-2nvm16 { width: 390px; }\",\".framer-fpmqx.framer-v-15xy7qy .framer-u96qpn { height: var(--framer-aspect-ratio-supported, 225px); left: -73px; top: -80px; width: 225px; }\",\".framer-fpmqx.framer-v-15xy7qy .framer-1rf3wn5 { bottom: -59px; height: var(--framer-aspect-ratio-supported, 221px); right: -80px; width: 221px; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 544.5\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"eQDQG38yz\":{\"layout\":[\"fixed\",\"auto\"]},\"e97MNzCqV\":{\"layout\":[\"fixed\",\"auto\"]},\"sj4tGzGL4\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n */const FramerW0I0KaZoC=withCSS(Component,css,\"framer-fpmqx\");export default FramerW0I0KaZoC;FramerW0I0KaZoC.displayName=\"CTA Section\";FramerW0I0KaZoC.defaultProps={height:544.5,width:1440};addPropertyControls(FramerW0I0KaZoC,{variant:{options:[\"seubXShGd\",\"eQDQG38yz\",\"e97MNzCqV\",\"sj4tGzGL4\"],optionTitles:[\"Large Desktop\",\"Desktop\",\"Tablet\",\"Mobile\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerW0I0KaZoC,[...ButtonFonts,...sharedStyle.fonts,...sharedStyle1.fonts,...sharedStyle2.fonts]);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerW0I0KaZoC\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"1440\",\"framerIntrinsicHeight\":\"544.5\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"eQDQG38yz\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"e97MNzCqV\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"sj4tGzGL4\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["fontStore", "fonts", "css", "className", "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", "u", "css", "FramerF8KjCKf_G", "withCSS", "F8KjCKf_G_default", "addPropertyControls", "ControlType", "addFonts", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "cycleOrder", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transitions", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "layoutDependency", "ref1", "pe", "isDisplayed", "isDisplayed1", "isDisplayed2", "defaultLayoutId", "ae", "sharedStyleClassNames", "LayoutGroup", "motion", "cx", "u", "RichText2", "x", "Link", "css", "FramerfvU9HI9ma", "withCSS", "fvU9HI9ma_default", "addPropertyControls", "ControlType", "addFonts", "fonts", "enabledGestures", "cycleOrder", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transitions", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "getProps", "height", "id", "link", "subTitle", "title", "width", "props", "_ref", "_ref1", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "H9_pVGPUC", "fkrP04sVN", "SgC8ISWag", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "enabledGestures", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "LayoutGroup", "motion", "cx", "Link", "u", "RichText2", "x", "css", "FramerhOrNdWHi6", "withCSS", "hOrNdWHi6_default", "addPropertyControls", "ControlType", "addFonts", "fonts", "SpecialMenuItemFonts", "getFonts", "hOrNdWHi6_default", "cycleOrder", "variantClassNames", "transitions", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "getProps", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "variantClassNames", "layoutDependency", "ref1", "pe", "router", "useRouter", "defaultLayoutId", "ae", "sharedStyleClassNames", "LayoutGroup", "motion", "cx", "u", "hOrNdWHi6_default", "resolveLink", "css", "Framerjxx79utqk", "withCSS", "jxx79utqk_default", "addFonts", "SpecialMenuItemFonts", "HeroFonts", "getFonts", "Icon", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "hover", "iconVisible", "id", "link", "title", "width", "props", "_ref", "_ref1", "_humanReadableVariantMap_props_variant", "_ref2", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "akEaMP2V_", "StjX81xm6", "IejEVkrjL", "dpKtLgXs9", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onMouseEnter1rzn7lf", "args", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "u", "cx", "RichText2", "ComponentViewportProvider", "css", "Framerud7WsLL0O", "withCSS", "ud7WsLL0O_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "MenuItemFonts", "getFonts", "ud7WsLL0O_default", "cycleOrder", "variantClassNames", "transitions", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "getProps", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "variantClassNames", "layoutDependency", "ref1", "pe", "router", "useRouter", "defaultLayoutId", "ae", "sharedStyleClassNames", "LayoutGroup", "motion", "cx", "u", "ud7WsLL0O_default", "resolveLink", "css", "FramerPayQRORxQ", "withCSS", "PayQRORxQ_default", "addFonts", "MenuItemFonts", "cycleOrder", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transitions", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "layoutDependency", "ref1", "pe", "isDisplayed", "defaultLayoutId", "ae", "sharedStyleClassNames", "LayoutGroup", "motion", "cx", "u", "RichText2", "x", "Link", "css", "FramervLc0yibwo", "withCSS", "vLc0yibwo_default", "addPropertyControls", "ControlType", "addFonts", "fonts", "BrandLogoFonts", "getFonts", "HJM1nbTwW_default", "LinksResourceFonts", "fvU9HI9ma_default", "MenuItemFonts", "ud7WsLL0O_default", "DropdownStyle1Fonts", "jxx79utqk_default", "MotionDivWithFX", "withFX", "motion", "DropdownStyle2Fonts", "PayQRORxQ_default", "LinksResource02Fonts", "vLc0yibwo_default", "ButtonFonts", "OyzrDXQkY_default", "ElementsMenuIconFonts", "F8KjCKf_G_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "transformTemplate1", "_", "t", "transition3", "animation", "animation1", "animation2", "Overlay", "children", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "Transition", "value", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "background", "height", "id", "width", "props", "_ref", "_humanReadableVariantMap_props_variant", "_ref1", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "L3gfdQ2_y", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "StjX81xm61gx595p", "overlay", "args", "onTap1sdoh90", "onTap1epn8kc", "onTapog03in", "onTapqrpf2l", "onTapltdykf", "onTap1hg4gpe", "onTap1aqwngy", "onTap105qlxz", "ref1", "pe", "isDisplayed", "isDisplayed1", "ref2", "ref3", "ref4", "ref5", "isDisplayed2", "isDisplayed3", "isDisplayed4", "isDisplayed5", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "u", "Link", "ComponentViewportProvider", "l", "AnimatePresence", "Floating", "overlay1", "RichText2", "css", "FramerNFESY9b70", "withCSS", "NFESY9b70_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "MotionDivWithFX", "withFX", "motion", "RichTextWithFX", "RichText2", "ButtonFonts", "getFonts", "OyzrDXQkY_default", "cycleOrder", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transitions", "transformTemplate", "_", "t", "animation", "transition1", "transition2", "transition3", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "layoutDependency", "ref1", "pe", "router", "useRouter", "defaultLayoutId", "ae", "sharedStyleClassNames", "LayoutGroup", "motion", "cx", "u", "MotionDivWithFX", "SVG", "RichTextWithFX", "x", "OyzrDXQkY_default", "resolveLink", "css", "FramerW0I0KaZoC", "withCSS", "W0I0KaZoC_default", "addPropertyControls", "ControlType", "addFonts", "ButtonFonts", "fonts"]
}
