{
  "version": 3,
  "sources": ["ssg:https://framer.com/m/framer/useConstant.js@^1.0.0", "ssg:https://framer.com/m/framer/randomID.js@^2.0.0", "ssg:https://framerusercontent.com/modules/KtVGDQXNUVZ5aqCs47VS/OMqTyVIbB7GZvcPewNwz/F8KjCKf_G.js", "ssg:https://framerusercontent.com/modules/mekUCjxn86iw9U3nQ8dM/Hq5k7eyRsUYFlkS4R2vg/S7JIaX3D9.js", "ssg:https://framerusercontent.com/modules/r9YmRIoWMayb7u1AKqoW/sOGprERDNHjEZtKO1Jgy/buh6M_G1z.js", "ssg:https://framerusercontent.com/modules/aqyGzltLgEXt9slWcWOu/AmKm7GKIcSMh2ZZn6neo/cp4q3RTCZ.js", "ssg:https://framerusercontent.com/modules/jKCIYto4gFGX8dtdOEdr/DwZWZaLULuN0P0Nbu6I1/DTrGQFLw5.js", "ssg:https://framerusercontent.com/modules/r5xlqyGr3qg5oncceqGc/g0Z8J0AuqvIjrPWbpmBd/EZPjNmdzl.js", "ssg:https://framerusercontent.com/modules/767O2ODWUeBDuliE8j2d/LpqssyodS6Z7IKIqea3V/Hgf2nKEDv.js", "ssg:https://framerusercontent.com/modules/6RWUAOvEMFmnZs9v6Fgn/4yxMBEXKHcaEnOdAOdCO/ljSN1mLHN.js", "ssg:https://framerusercontent.com/modules/VIXaYrV751CG6n66BWwq/rc7SIAOMLRYvCv7aYfUS/GqqwobEDt.js", "ssg:https://framerusercontent.com/modules/ziBxSO22DwyDWsMVWiMn/W1DDWM5hsMNeR6XovZvI/IAxc3cOpF.js", "ssg:https://framerusercontent.com/modules/opAsfv3FZUU2D10kIO7O/vXeIfRCrCmYZMmfqOMK3/jBH_xgmPC.js", "ssg:https://framerusercontent.com/modules/sBakXSOIsBTNXPpUbxVh/2BCMCdmROkWWBGCJ0aDV/xrEXTrCP5.js"],
  "sourcesContent": ["import { useRef } from \"react\";\n/**\n * Creates a constant value over the lifecycle of a component.\n *\n * Even if `useMemo` is provided an empty array as its final argument, it doesn't offer\n * a guarantee that it won't re-run for performance reasons later on.\n * By using `useConstant` you can ensure that initialisers don't execute twice or more.\n */ export function useConstant(init) {\n    const ref = useRef(null);\n    if (ref.current === null) {\n        ref.current = init();\n    }\n    return ref.current;\n}\n\nexport const __FramerMetadata__ = {\"exports\":{\"useConstant\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}}}}\n//# sourceMappingURL=./useConstant.map", "import { useConstant } from \"https://framer.com/m/framer/useConstant.js@^1.0.0\";\nconst BASE62 = \"0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz\";\n/**\n * Generates a random string of BASE62 characters.\n */ export function randomID(length = 5) {\n    return Array(length).fill(0).map(()=>BASE62[Math.floor(Math.random() * BASE62.length)]\n    ).join(\"\");\n}\nexport function useRandomID(length = 5) {\n    return useConstant(()=>randomID(length)\n    );\n}\nconst defaultStorageKey = \"$$FramerRandomID\";\n/**\n * `randomID` but cached in localStorage.\n */ export function useCachedRandomID(storageKey = defaultStorageKey) {\n    return useConstant(()=>{\n        const storage = getLocalStorage();\n        if (!storage) return randomID(8);\n        const cachedValue = storage.getItem(storageKey);\n        if (cachedValue) return cachedValue;\n        const newID = randomID(8);\n        storage.setItem(storageKey, newID);\n        return newID;\n    });\n}\nfunction getLocalStorage() {\n    if (typeof window === undefined) return undefined;\n    try {\n        return window.localStorage;\n    } catch (err) {\n        return undefined;\n    }\n}\n\nexport const __FramerMetadata__ = {\"exports\":{\"useRandomID\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useCachedRandomID\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"randomID\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}}}}\n//# sourceMappingURL=./randomID.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";// Generated by Framer (24f3304)\nimport*as React from\"react\";import{motion,LayoutGroup}from\"framer-motion\";import{useActiveVariantCallback,addFonts,withCSS,addPropertyControls,ControlType,cx,useAddVariantProps,useVariantState}from\"framer\";import{useRandomID}from\"https://framer.com/m/framer/randomID.js@^2.0.0\";const cycleOrder=[\"uL1KSNbAO\",\"wuYLgLVQz\"];const variantClassNames={\"uL1KSNbAO\":\"framer-v-sct6xz\",\"wuYLgLVQz\":\"framer-v-7ln769\"};const humanReadableVariantMap={\"Burger\":\"uL1KSNbAO\",\"X\":\"wuYLgLVQz\"};const transitions={\"default\":{\"type\":\"spring\",\"ease\":[0.44,0,0.56,1],\"duration\":5,\"delay\":0,\"stiffness\":400,\"damping\":30,\"mass\":1}};const Component=/*#__PURE__*/ React.forwardRef(function({style:externalStyle={},className,width,height,layoutId,variant:outerVariant=\"uL1KSNbAO\",tap:TBgHLr7MW,color:iWF8EWIN1=\"rgb(136, 136, 136)\",...restProps},ref){const outerVariantId=humanReadableVariantMap[outerVariant];const variant=outerVariantId||outerVariant;const{variants,baseVariant,gestureVariant,classNames,transition,setVariant,setGestureState}=useVariantState({defaultVariant:\"uL1KSNbAO\",variant,transitions,variantClassNames,cycleOrder});const layoutDependency=variants.join(\"-\")+restProps.layoutDependency;const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTapsct6xz=activeVariantCallback(async(...args)=>{if(TBgHLr7MW){const res=await TBgHLr7MW(...args);if(res===false)return false;}setVariant(\"wuYLgLVQz\");});const onTap7ln769=activeVariantCallback(async(...args)=>{if(TBgHLr7MW){const res=await TBgHLr7MW(...args);if(res===false)return false;}setVariant(\"uL1KSNbAO\");});const variantProps=React.useMemo(()=>({\"wuYLgLVQz\":{\"uL1KSNbAO\":{\"onTap\":onTap7ln769,\"data-framer-name\":\"X\",\"data-highlight\":true}}}),[onTap7ln769]);const addVariantProps=useAddVariantProps(baseVariant,gestureVariant,variantProps);const defaultLayoutId=useRandomID();const{pointerEvents,...style}=externalStyle;return(/*#__PURE__*/ _jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/ _jsx(motion.div,{\"data-framer-generated\":true,initial:variant,animate:variants,onHoverStart:()=>setGestureState({isHovered:true}),onHoverEnd:()=>setGestureState({isHovered:false}),onTapStart:()=>setGestureState({isPressed:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),className:cx(\"framer-OAsFD\",classNames),style:{\"display\":\"contents\",\"pointerEvents\":pointerEvents!==null&&pointerEvents!==void 0?pointerEvents:undefined},children:/*#__PURE__*/ _jsx(motion.div,{...restProps,layoutId:\"uL1KSNbAO\",className:cx(\"framer-sct6xz\",className),style:{...style},background:null,\"data-highlight\":true,\"data-framer-name\":\"Burger\",onTap:onTapsct6xz,transition:transition,layoutDependency:layoutDependency,ref:ref,...addVariantProps(\"uL1KSNbAO\"),children:/*#__PURE__*/ _jsxs(motion.div,{layoutId:\"grVqu8zO5\",className:\"framer-kqrzyc\",style:{},background:null,transition:transition,layoutDependency:layoutDependency,...addVariantProps(\"grVqu8zO5\"),children:[/*#__PURE__*/ _jsx(motion.div,{layoutId:\"x0ZufA4We\",className:\"framer-mzz784\",style:{\"backgroundColor\":iWF8EWIN1,\"rotate\":0},\"data-framer-name\":\"Bottom\",variants:{\"wuYLgLVQz\":{\"rotate\":-45}},transition:transition,layoutDependency:layoutDependency,...addVariantProps(\"x0ZufA4We\")}),/*#__PURE__*/ _jsx(motion.div,{layoutId:\"uR628goMu\",className:\"framer-1a74gli\",style:{\"backgroundColor\":iWF8EWIN1,\"rotate\":0,\"opacity\":1},\"data-framer-name\":\"Mid\",variants:{\"wuYLgLVQz\":{\"rotate\":0,\"opacity\":0}},transition:transition,layoutDependency:layoutDependency,...addVariantProps(\"uR628goMu\")}),/*#__PURE__*/ _jsx(motion.div,{layoutId:\"CpjUXrkWa\",className:\"framer-48wlq1\",style:{\"backgroundColor\":iWF8EWIN1,\"rotate\":0},\"data-framer-name\":\"Top\",variants:{\"wuYLgLVQz\":{\"rotate\":45}},transition:transition,layoutDependency:layoutDependency,...addVariantProps(\"CpjUXrkWa\")})]})})})}));});const css=[\".framer-OAsFD [data-border=\\\"true\\\"]::after { content: \\\"\\\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none;}\",\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-OAsFD * { box-sizing: border-box; }\",\".framer-OAsFD .framer-sct6xz { position: relative; cursor: pointer; overflow: hidden; width: 32px; height: 32px; }\",\".framer-OAsFD .framer-kqrzyc { position: absolute; overflow: visible; width: 24px; height: 18px; left: calc(50.00000000000002% - 24px/2); top: calc(50.00000000000002% - 18px/2); flex: none; }\",\".framer-OAsFD .framer-mzz784 { position: absolute; overflow: hidden; height: 2px; right: 0px; bottom: 0px; left: 0px; flex: none; }\",\".framer-OAsFD .framer-1a74gli { position: absolute; overflow: hidden; height: 2px; right: 0px; left: 0px; top: calc(50.00000000000002% - 2px/2); flex: none; }\",\".framer-OAsFD .framer-48wlq1 { position: absolute; overflow: hidden; height: 2px; right: 0px; left: 0px; top: 0px; flex: none; }\",\".framer-OAsFD.framer-v-7ln769 .framer-sct6xz { cursor: pointer; }\",\".framer-OAsFD.framer-v-7ln769 .framer-mzz784 { width: auto; height: 2px; right: 0px; bottom: auto; left: 0px; top: calc(50.00000000000002% - 2px/2); flex: none; aspect-ratio: unset; }\",\".framer-OAsFD.framer-v-7ln769 .framer-1a74gli { width: 2px; height: 2px; right: 0px; bottom: auto; left: auto; top: calc(50.00000000000002% - 2px/2); flex: none; aspect-ratio: unset; }\",\".framer-OAsFD.framer-v-7ln769 .framer-48wlq1 { width: 26px; height: 2px; right: -1px; bottom: auto; left: auto; top: calc(50.00000000000002% - 2px/2); flex: none; aspect-ratio: unset; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 32\n * @framerIntrinsicWidth 32\n * @framerCanvasComponentVariantDetails {\"propertyName\": \"variant\", \"data\": {\"default\": {\"layout\": [\"fixed\", \"fixed\"]}, \"wuYLgLVQz\": {\"layout\": [\"fixed\", \"fixed\"]}}}\n * @framerVariables {\"TBgHLr7MW\": \"tap\", \"iWF8EWIN1\": \"color\"}\n */ const FramerF8KjCKf_G=withCSS(Component,css);export default FramerF8KjCKf_G;FramerF8KjCKf_G.displayName=\"Elements/Menu Icon\";FramerF8KjCKf_G.defaultProps={\"width\":32,\"height\":32};addPropertyControls(FramerF8KjCKf_G,{\"variant\":{\"type\":ControlType.Enum,\"title\":\"Variant\",\"options\":[\"uL1KSNbAO\",\"wuYLgLVQz\"],\"optionTitles\":[\"Burger\",\"X\"]},\"TBgHLr7MW\":{\"type\":ControlType.EventHandler,\"title\":\"Tap\"},\"iWF8EWIN1\":{\"type\":ControlType.Color,\"title\":\"Color\",\"defaultValue\":\"rgb(136, 136, 136)\"}});addFonts(FramerF8KjCKf_G,[]);\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerF8KjCKf_G\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"32\",\"framerIntrinsicWidth\":\"32\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\": \\\"variant\\\", \\\"data\\\": {\\\"default\\\": {\\\"layout\\\": [\\\"fixed\\\", \\\"fixed\\\"]}, \\\"wuYLgLVQz\\\": {\\\"layout\\\": [\\\"fixed\\\", \\\"fixed\\\"]}}}\",\"framerVariables\":\"{\\\"TBgHLr7MW\\\": \\\"tap\\\", \\\"iWF8EWIN1\\\": \\\"color\\\"}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./F8KjCKf_G.map", "// Generated by Framer (d9af232)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"GF;Poppins-regular\",\"GF;Poppins-700\",\"GF;Poppins-700italic\",\"GF;Poppins-italic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Poppins\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/poppins/v21/pxiEyp8kv8JHgFVrFJXUc1NECPY.woff2\",weight:\"400\"},{family:\"Poppins\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/poppins/v21/pxiByp8kv8JHgFVrLCz7V15vFP-KUEg.woff2\",weight:\"700\"},{family:\"Poppins\",source:\"google\",style:\"italic\",url:\"https://fonts.gstatic.com/s/poppins/v21/pxiDyp8kv8JHgFVrJJLmy15lFd2PQEhcqw.woff2\",weight:\"700\"},{family:\"Poppins\",source:\"google\",style:\"italic\",url:\"https://fonts.gstatic.com/s/poppins/v21/pxiGyp8kv8JHgFVrJJLecnFBGPaTSQ.woff2\",weight:\"400\"}]}];export const css=['.framer-vXvD9 .framer-styles-preset-rzieet:not(.rich-text-wrapper), .framer-vXvD9 .framer-styles-preset-rzieet.rich-text-wrapper p { --framer-font-family: \"Poppins\", \"Poppins Placeholder\", sans-serif; --framer-font-family-bold: \"Poppins\", \"Poppins Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Poppins\", \"Poppins Placeholder\", sans-serif; --framer-font-family-italic: \"Poppins\", \"Poppins 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.09px; --framer-line-height: 24px; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: var(--token-99020cb2-3d55-4aa6-9744-53967b10b4c8, #28292a); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }'];export const className=\"framer-vXvD9\";\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 (575e68f)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getPropertyControls,Image,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/CAjjxbTJBxHwH1MagCef/Phosphor.js\";import{Icon as Phosphor1}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/p8dptk4UIND8hbFWz9V7/Phosphor.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/y3xHiA5Qs7EYaARG33SD/341tYhN3SNkOBX4vU7Ut/h2xr2T_5U.js\";const PhosphorFonts=getFonts(Phosphor);const Phosphor1Controls=getPropertyControls(Phosphor1);const enabledGestures={AXi6I2r47:{hover:true,pressed:true},b01bAsSqk:{hover:true,pressed:true},CAY8uKZ2o:{hover:true,pressed:true},E7AINHXaJ:{hover:true,pressed:true},JfdyCki1J:{hover:true,pressed:true},rnWK3hD4P:{hover:true,pressed:true},u9PqQdMf2:{hover:true,pressed:true}};const cycleOrder=[\"AXi6I2r47\",\"u9PqQdMf2\",\"CAY8uKZ2o\",\"rnWK3hD4P\",\"b01bAsSqk\",\"E7AINHXaJ\",\"JfdyCki1J\"];const serializationHash=\"framer-CuvY9\";const variantClassNames={AXi6I2r47:\"framer-v-mf72wb\",b01bAsSqk:\"framer-v-1ksmx0t\",CAY8uKZ2o:\"framer-v-1ulwjjt\",E7AINHXaJ:\"framer-v-1v8lj96\",JfdyCki1J:\"framer-v-1xjv7pb\",rnWK3hD4P:\"framer-v-7e9tt1\",u9PqQdMf2:\"framer-v-1i2ep7k\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={delay:0,duration:.3,ease:[.12,.23,.5,1],type:\"tween\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={\"Secondary - Large - L Icon\":\"u9PqQdMf2\",\"Secondary - Large - R Icon\":\"CAY8uKZ2o\",\"Secondary - Large\":\"AXi6I2r47\",\"Secondary - Medium - L Icon\":\"b01bAsSqk\",\"Secondary - Medium - R Icon\":\"E7AINHXaJ\",\"Secondary - Medium\":\"rnWK3hD4P\",\"tk 1\":\"JfdyCki1J\"};const getProps=({height,icon,id,lIcon,link,rIcon,title,width,...props})=>{var _ref,_ref1,_ref2,_ref3,_humanReadableVariantMap_props_variant,_ref4;return{...props,ftl3XnncM:(_ref=title!==null&&title!==void 0?title:props.ftl3XnncM)!==null&&_ref!==void 0?_ref:\"Sign up for free\",h8PGDiTvJ:link!==null&&link!==void 0?link:props.h8PGDiTvJ,RT0LyIPut:(_ref1=rIcon!==null&&rIcon!==void 0?rIcon:props.RT0LyIPut)!==null&&_ref1!==void 0?_ref1:{src:\"https://framerusercontent.com/images/KTjBt7Cs7SHNWux1dhgcN4k1GVc.svg\"},syqdJQsbQ:(_ref2=icon!==null&&icon!==void 0?icon:props.syqdJQsbQ)!==null&&_ref2!==void 0?_ref2:\"House\",szUqJH3Kk:(_ref3=lIcon!==null&&lIcon!==void 0?lIcon:props.szUqJH3Kk)!==null&&_ref3!==void 0?_ref3:{src:\"https://framerusercontent.com/images/KTjBt7Cs7SHNWux1dhgcN4k1GVc.svg\"},variant:(_ref4=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref4!==void 0?_ref4:\"AXi6I2r47\"};};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,ftl3XnncM,szUqJH3Kk,RT0LyIPut,h8PGDiTvJ,syqdJQsbQ,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"AXi6I2r47\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const isDisplayed=()=>{if([\"u9PqQdMf2-hover\",\"u9PqQdMf2-pressed\",\"b01bAsSqk-hover\",\"b01bAsSqk-pressed\"].includes(gestureVariant))return true;if([\"u9PqQdMf2\",\"b01bAsSqk\"].includes(baseVariant))return true;return false;};const isDisplayed1=()=>{if([\"JfdyCki1J-hover\",\"JfdyCki1J-pressed\"].includes(gestureVariant))return true;if(baseVariant===\"JfdyCki1J\")return true;return false;};const isDisplayed2=()=>{if([\"E7AINHXaJ-hover\",\"E7AINHXaJ-pressed\"].includes(gestureVariant))return true;if(baseVariant===\"E7AINHXaJ\")return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:h8PGDiTvJ,openInNewTab:false,children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-mf72wb\",className,classNames)} framer-80gye7`,\"data-framer-name\":\"Secondary - Large\",layoutDependency:layoutDependency,layoutId:\"AXi6I2r47\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"var(--token-47bece0f-745d-4be4-84da-84bbd1ba6a58, rgb(1, 80, 145))\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,...style},variants:{\"AXi6I2r47-hover\":{backgroundColor:\"var(--token-75d8d82a-9b14-4a3b-861d-239ac22fb073, rgb(169, 27, 20))\"},\"AXi6I2r47-pressed\":{backgroundColor:\"var(--token-8cdb74b3-0581-43ce-9874-8ef5ca76d72c, rgb(0, 27, 49))\"},\"b01bAsSqk-hover\":{backgroundColor:\"var(--token-75d8d82a-9b14-4a3b-861d-239ac22fb073, rgb(169, 27, 20))\"},\"b01bAsSqk-pressed\":{backgroundColor:\"var(--token-8cdb74b3-0581-43ce-9874-8ef5ca76d72c, rgb(0, 27, 49))\"},\"CAY8uKZ2o-hover\":{backgroundColor:\"var(--token-75d8d82a-9b14-4a3b-861d-239ac22fb073, rgb(169, 27, 20))\"},\"CAY8uKZ2o-pressed\":{backgroundColor:\"var(--token-8cdb74b3-0581-43ce-9874-8ef5ca76d72c, rgb(0, 27, 49))\"},\"E7AINHXaJ-hover\":{backgroundColor:\"var(--token-75d8d82a-9b14-4a3b-861d-239ac22fb073, rgb(169, 27, 20))\"},\"E7AINHXaJ-pressed\":{backgroundColor:\"var(--token-26228e18-5b63-4868-a865-233a860834a5, rgb(5, 5, 5))\"},\"JfdyCki1J-hover\":{backgroundColor:\"var(--token-75d8d82a-9b14-4a3b-861d-239ac22fb073, rgb(169, 27, 20))\"},\"JfdyCki1J-pressed\":{backgroundColor:\"var(--token-8cdb74b3-0581-43ce-9874-8ef5ca76d72c, rgb(0, 27, 49))\"},\"rnWK3hD4P-hover\":{backgroundColor:\"var(--token-75d8d82a-9b14-4a3b-861d-239ac22fb073, rgb(169, 27, 20))\"},\"rnWK3hD4P-pressed\":{backgroundColor:\"var(--token-8cdb74b3-0581-43ce-9874-8ef5ca76d72c, rgb(0, 27, 49))\"},\"u9PqQdMf2-hover\":{backgroundColor:\"var(--token-75d8d82a-9b14-4a3b-861d-239ac22fb073, rgb(169, 27, 20))\"},\"u9PqQdMf2-pressed\":{backgroundColor:\"var(--token-8cdb74b3-0581-43ce-9874-8ef5ca76d72c, rgb(0, 27, 49))\"},CAY8uKZ2o:{backgroundColor:\"var(--token-69268266-8d11-4cae-857f-b2432f07a7b6, rgb(255, 255, 255))\"}},...addPropertyOverrides({\"AXi6I2r47-hover\":{\"data-framer-name\":undefined},\"AXi6I2r47-pressed\":{\"data-framer-name\":undefined},\"b01bAsSqk-hover\":{\"data-framer-name\":undefined},\"b01bAsSqk-pressed\":{\"data-framer-name\":undefined},\"CAY8uKZ2o-hover\":{\"data-framer-name\":undefined},\"CAY8uKZ2o-pressed\":{\"data-framer-name\":undefined},\"E7AINHXaJ-hover\":{\"data-framer-name\":undefined},\"E7AINHXaJ-pressed\":{\"data-framer-name\":undefined},\"JfdyCki1J-hover\":{\"data-framer-name\":undefined},\"JfdyCki1J-pressed\":{\"data-framer-name\":undefined},\"rnWK3hD4P-hover\":{\"data-framer-name\":undefined},\"rnWK3hD4P-pressed\":{\"data-framer-name\":undefined},\"u9PqQdMf2-hover\":{\"data-framer-name\":undefined},\"u9PqQdMf2-pressed\":{\"data-framer-name\":undefined},b01bAsSqk:{\"data-framer-name\":\"Secondary - Medium - L Icon\"},CAY8uKZ2o:{\"data-framer-name\":\"Secondary - Large - R Icon\"},E7AINHXaJ:{\"data-framer-name\":\"Secondary - Medium - R Icon\"},JfdyCki1J:{\"data-framer-name\":\"tk 1\"},rnWK3hD4P:{\"data-framer-name\":\"Secondary - Medium\"},u9PqQdMf2:{\"data-framer-name\":\"Secondary - Large - L Icon\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:24,intrinsicWidth:25,pixelHeight:24,pixelWidth:25,...toResponsiveImage(szUqJH3Kk)},className:\"framer-1wqdjux\",\"data-framer-name\":\"L Icon\",layoutDependency:layoutDependency,layoutId:\"u3JVoLnpK\",...addPropertyOverrides({b01bAsSqk:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:24,intrinsicWidth:25,pixelHeight:24,pixelWidth:25,sizes:\"24px\",...toResponsiveImage(szUqJH3Kk)}},u9PqQdMf2:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:24,intrinsicWidth:25,pixelHeight:24,pixelWidth:25,sizes:\"24px\",...toResponsiveImage(szUqJH3Kk)}}},baseVariant,gestureVariant)}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-spbjo8-container\",layoutDependency:layoutDependency,layoutId:\"dLCXg1ciL-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-69268266-8d11-4cae-857f-b2432f07a7b6, rgb(255, 255, 255))\",height:\"100%\",iconSearch:\"House\",iconSelection:syqdJQsbQ,id:\"dLCXg1ciL\",layoutId:\"dLCXg1ciL\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-nts4cw\",\"data-styles-preset\":\"h2xr2T_5U\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-69268266-8d11-4cae-857f-b2432f07a7b6, rgb(255, 255, 255)))\"},children:\"Sign up for free\"})}),className:\"framer-19op2w2\",\"data-framer-name\":\"Sign up for free\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"AnZE5UDkH\",style:{\"--extracted-r6o4lv\":\"var(--token-69268266-8d11-4cae-857f-b2432f07a7b6, rgb(255, 255, 255))\"},text:ftl3XnncM,variants:{\"CAY8uKZ2o-hover\":{\"--extracted-r6o4lv\":\"var(--token-69268266-8d11-4cae-857f-b2432f07a7b6, rgb(255, 255, 255))\"},\"CAY8uKZ2o-pressed\":{\"--extracted-r6o4lv\":\"var(--token-69268266-8d11-4cae-857f-b2432f07a7b6, rgb(255, 255, 255))\"},CAY8uKZ2o:{\"--extracted-r6o4lv\":\"var(--token-47bece0f-745d-4be4-84da-84bbd1ba6a58, rgb(1, 80, 145))\"}},verticalAlignment:\"center\",withExternalLayout:true,...addPropertyOverrides({\"CAY8uKZ2o-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-nts4cw\",\"data-styles-preset\":\"h2xr2T_5U\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-69268266-8d11-4cae-857f-b2432f07a7b6, rgb(255, 255, 255)))\"},children:\"Sign up for free\"})})},\"CAY8uKZ2o-pressed\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-nts4cw\",\"data-styles-preset\":\"h2xr2T_5U\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-69268266-8d11-4cae-857f-b2432f07a7b6, rgb(255, 255, 255)))\"},children:\"Sign up for free\"})})},CAY8uKZ2o:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-nts4cw\",\"data-styles-preset\":\"h2xr2T_5U\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-47bece0f-745d-4be4-84da-84bbd1ba6a58, rgb(1, 80, 145)))\"},children:\"Sign up for free\"})})}},baseVariant,gestureVariant)}),isDisplayed2()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:24,intrinsicWidth:25,pixelHeight:24,pixelWidth:25,...toResponsiveImage(RT0LyIPut)},className:\"framer-1qgb2gp\",\"data-framer-name\":\"R Icon\",layoutDependency:layoutDependency,layoutId:\"anqQbQwvH\",...addPropertyOverrides({E7AINHXaJ:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:24,intrinsicWidth:25,pixelHeight:24,pixelWidth:25,sizes:\"24px\",...toResponsiveImage(RT0LyIPut)}}},baseVariant,gestureVariant)})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-CuvY9.framer-80gye7, .framer-CuvY9 .framer-80gye7 { display: block; }\",\".framer-CuvY9.framer-mf72wb { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: center; overflow: hidden; padding: 12px 20px 12px 20px; position: relative; text-decoration: none; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-CuvY9 .framer-1wqdjux, .framer-CuvY9 .framer-1qgb2gp { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 24px); overflow: hidden; position: relative; width: 24px; }\",\".framer-CuvY9 .framer-spbjo8-container { flex: none; height: 24px; position: relative; width: 24px; }\",\".framer-CuvY9 .framer-19op2w2 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-CuvY9.framer-mf72wb { gap: 0px; } .framer-CuvY9.framer-mf72wb > * { margin: 0px; margin-left: calc(6px / 2); margin-right: calc(6px / 2); } .framer-CuvY9.framer-mf72wb > :first-child { margin-left: 0px; } .framer-CuvY9.framer-mf72wb > :last-child { margin-right: 0px; } }\",\".framer-CuvY9.framer-v-1i2ep7k.framer-mf72wb { padding: 12px 20px 12px 16px; }\",\".framer-CuvY9.framer-v-1ulwjjt.framer-mf72wb { padding: 12px 16px 12px 16px; }\",\".framer-CuvY9.framer-v-7e9tt1.framer-mf72wb { padding: 8px 16px 8px 16px; }\",\".framer-CuvY9.framer-v-1ksmx0t.framer-mf72wb { padding: 8px 16px 8px 12px; }\",\".framer-CuvY9.framer-v-1v8lj96.framer-mf72wb { padding: 8px 12px 8px 16px; }\",\".framer-CuvY9.framer-v-1xjv7pb.framer-mf72wb { gap: 16px; padding: 16px 28px 16px 24px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-CuvY9.framer-v-1xjv7pb.framer-mf72wb { gap: 0px; } .framer-CuvY9.framer-v-1xjv7pb.framer-mf72wb > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-CuvY9.framer-v-1xjv7pb.framer-mf72wb > :first-child { margin-left: 0px; } .framer-CuvY9.framer-v-1xjv7pb.framer-mf72wb > :last-child { margin-right: 0px; } }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 48\n * @framerIntrinsicWidth 144\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"u9PqQdMf2\":{\"layout\":[\"auto\",\"auto\"]},\"CAY8uKZ2o\":{\"layout\":[\"auto\",\"auto\"]},\"rnWK3hD4P\":{\"layout\":[\"auto\",\"auto\"]},\"b01bAsSqk\":{\"layout\":[\"auto\",\"auto\"]},\"E7AINHXaJ\":{\"layout\":[\"auto\",\"auto\"]},\"JfdyCki1J\":{\"layout\":[\"auto\",\"auto\"]},\"cjrvwjG1y\":{\"layout\":[\"auto\",\"auto\"]},\"Jz2oxv50H\":{\"layout\":[\"auto\",\"auto\"]},\"uYR_qoyeY\":{\"layout\":[\"auto\",\"auto\"]},\"ilfQfxnKO\":{\"layout\":[\"auto\",\"auto\"]},\"bGrB2IiRm\":{\"layout\":[\"auto\",\"auto\"]},\"vRIUtoIue\":{\"layout\":[\"auto\",\"auto\"]},\"q6RXgW66X\":{\"layout\":[\"auto\",\"auto\"]},\"kUgoS1oS6\":{\"layout\":[\"auto\",\"auto\"]},\"KibBYMr54\":{\"layout\":[\"auto\",\"auto\"]},\"TO_HSdjxp\":{\"layout\":[\"auto\",\"auto\"]},\"yXlYproiy\":{\"layout\":[\"auto\",\"auto\"]},\"uy5JyCWdg\":{\"layout\":[\"auto\",\"auto\"]},\"HgU_gl_G3\":{\"layout\":[\"auto\",\"auto\"]},\"LBcp8AAaq\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"ftl3XnncM\":\"title\",\"szUqJH3Kk\":\"lIcon\",\"RT0LyIPut\":\"rIcon\",\"h8PGDiTvJ\":\"link\",\"syqdJQsbQ\":\"icon\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framerbuh6M_G1z=withCSS(Component,css,\"framer-CuvY9\");export default Framerbuh6M_G1z;Framerbuh6M_G1z.displayName=\"Button / Secondary\";Framerbuh6M_G1z.defaultProps={height:48,width:144};addPropertyControls(Framerbuh6M_G1z,{variant:{options:[\"AXi6I2r47\",\"u9PqQdMf2\",\"CAY8uKZ2o\",\"rnWK3hD4P\",\"b01bAsSqk\",\"E7AINHXaJ\",\"JfdyCki1J\"],optionTitles:[\"Secondary - Large\",\"Secondary - Large - L Icon\",\"Secondary - Large - R Icon\",\"Secondary - Medium\",\"Secondary - Medium - L Icon\",\"Secondary - Medium - R Icon\",\"tk 1\"],title:\"Variant\",type:ControlType.Enum},ftl3XnncM:{defaultValue:\"Sign up for free\",displayTextArea:false,title:\"Title\",type:ControlType.String},szUqJH3Kk:{__defaultAssetReference:\"data:framer/asset-reference,KTjBt7Cs7SHNWux1dhgcN4k1GVc.svg?originalFilename=White+Right+ICon.svg&preferredSize=auto\",title:\"L Icon\",type:ControlType.ResponsiveImage},RT0LyIPut:{__defaultAssetReference:\"data:framer/asset-reference,KTjBt7Cs7SHNWux1dhgcN4k1GVc.svg?originalFilename=White+Right+ICon.svg&preferredSize=auto\",title:\"R Icon\",type:ControlType.ResponsiveImage},h8PGDiTvJ:{title:\"Link\",type:ControlType.Link},syqdJQsbQ:(Phosphor1Controls===null||Phosphor1Controls===void 0?void 0:Phosphor1Controls[\"iconSelection\"])&&{...Phosphor1Controls[\"iconSelection\"],defaultValue:\"House\",description:undefined,hidden:undefined,title:\"Icon\"}});addFonts(Framerbuh6M_G1z,[{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\"}]},...PhosphorFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerbuh6M_G1z\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"48\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"u9PqQdMf2\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"CAY8uKZ2o\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"rnWK3hD4P\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"b01bAsSqk\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"E7AINHXaJ\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"JfdyCki1J\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"cjrvwjG1y\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"Jz2oxv50H\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"uYR_qoyeY\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"ilfQfxnKO\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"bGrB2IiRm\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"vRIUtoIue\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"q6RXgW66X\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"kUgoS1oS6\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"KibBYMr54\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"TO_HSdjxp\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"yXlYproiy\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"uy5JyCWdg\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"HgU_gl_G3\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"LBcp8AAaq\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"144\",\"framerContractVersion\":\"1\",\"framerVariables\":\"{\\\"ftl3XnncM\\\":\\\"title\\\",\\\"szUqJH3Kk\\\":\\\"lIcon\\\",\\\"RT0LyIPut\\\":\\\"rIcon\\\",\\\"h8PGDiTvJ\\\":\\\"link\\\",\\\"syqdJQsbQ\\\":\\\"icon\\\"}\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./buh6M_G1z.map", "// Generated by Framer (1e08357)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/CAjjxbTJBxHwH1MagCef/Phosphor.js\";const PhosphorFonts=getFonts(Phosphor);const enabledGestures={H9vd7dJV3:{hover:true}};const cycleOrder=[\"H9vd7dJV3\"];const serializationHash=\"framer-3m10j\";const variantClassNames={H9vd7dJV3:\"framer-v-i192bi\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const getProps=({height,id,link,title,width,...props})=>{var _ref;return{...props,BRl28kBHN:(_ref=title!==null&&title!==void 0?title:props.BRl28kBHN)!==null&&_ref!==void 0?_ref:\"Amazon\",ZYn5aa6DP:link!==null&&link!==void 0?link:props.ZYn5aa6DP};};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,BRl28kBHN,ZYn5aa6DP,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"H9vd7dJV3\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:ZYn5aa6DP,openInNewTab:false,children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-i192bi\",className,classNames)} framer-i0gwmx`,\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"H9vd7dJV3\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0,...style},variants:{\"H9vd7dJV3-hover\":{backgroundColor:\"var(--token-1cab753f-7df3-46fa-83a8-4e7ffa7f1580, rgb(234, 234, 235))\",borderBottomLeftRadius:4,borderBottomRightRadius:4,borderTopLeftRadius:4,borderTopRightRadius:4}},...addPropertyOverrides({\"H9vd7dJV3-hover\":{\"data-framer-name\":undefined}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-12m201k\",\"data-framer-name\":\"Item\",layoutDependency:layoutDependency,layoutId:\"n_VTmLiJX\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(17, 17, 17))\"},children:\"Amazon\"})}),className:\"framer-1jtujpr\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"vT_AlRlJH\",style:{\"--extracted-r6o4lv\":\"rgb(17, 17, 17)\",\"--framer-paragraph-spacing\":\"0px\"},text:BRl28kBHN,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-nn20n6-container\",layoutDependency:layoutDependency,layoutId:\"ut_b8Tneb-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-47bece0f-745d-4be4-84da-84bbd1ba6a58, rgb(1, 80, 145))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"ArrowUpRight\",id:\"ut_b8Tneb\",layoutId:\"ut_b8Tneb\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-3m10j.framer-i0gwmx, .framer-3m10j .framer-i0gwmx { display: block; }\",\".framer-3m10j.framer-i192bi { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 8px; position: relative; text-decoration: none; width: 240px; }\",\".framer-3m10j .framer-12m201k { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-3m10j .framer-1jtujpr { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre; width: auto; }\",\".framer-3m10j .framer-nn20n6-container { flex: none; height: 16px; position: relative; width: 16px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-3m10j.framer-i192bi, .framer-3m10j .framer-12m201k { gap: 0px; } .framer-3m10j.framer-i192bi > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-3m10j.framer-i192bi > :first-child { margin-left: 0px; } .framer-3m10j.framer-i192bi > :last-child { margin-right: 0px; } .framer-3m10j .framer-12m201k > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-3m10j .framer-12m201k > :first-child { margin-top: 0px; } .framer-3m10j .framer-12m201k > :last-child { margin-bottom: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 39\n * @framerIntrinsicWidth 240\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"PEn_Ksk1i\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"BRl28kBHN\":\"title\",\"ZYn5aa6DP\":\"link\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framercp4q3RTCZ=withCSS(Component,css,\"framer-3m10j\");export default Framercp4q3RTCZ;Framercp4q3RTCZ.displayName=\"Dropdown 1\";Framercp4q3RTCZ.defaultProps={height:39,width:240};addPropertyControls(Framercp4q3RTCZ,{BRl28kBHN:{defaultValue:\"Amazon\",displayTextArea:true,title:\"Title\",type:ControlType.String},ZYn5aa6DP:{title:\"Link\",type:ControlType.Link}});addFonts(Framercp4q3RTCZ,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5A3Ce6C9YYmCjpQx9M4inSaKU.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/Qx95Xyt0Ka3SGhinnbXIGpEIyP4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/6mJuEAguuIuMog10gGvH5d3cl8.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/xYYWaj7wCU5zSQH0eXvSaS19wo.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/otTaNuNpVK4RbdlT7zDDdKvQBA.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/d3tHnaQIAeqiE5hGcRw4mmgWYU.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/DolVirEGb34pEXEp8t8FQBSK4.woff2\",weight:\"500\"}]},...PhosphorFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Framercp4q3RTCZ\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"240\",\"framerVariables\":\"{\\\"BRl28kBHN\\\":\\\"title\\\",\\\"ZYn5aa6DP\\\":\\\"link\\\"}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"PEn_Ksk1i\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"39\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./cp4q3RTCZ.map", "// Generated by Framer (8d84d1c)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,Link,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/iAiWcQiz7A8oZ40dW2Az/glLqcQbEEZeNDWgaF0eD/XhW2JbaJ9.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/a4wT3F4fpcQIo2ZEjNnR/L2fcU3oDrHlrsNrGKu6X/Zm13E6csR.js\";const enabledGestures={FRQ9Jtd0v:{hover:true}};const cycleOrder=[\"FRQ9Jtd0v\",\"Bvt8PyRxY\"];const serializationHash=\"framer-WrDHs\";const variantClassNames={Bvt8PyRxY:\"framer-v-1n0rvra\",FRQ9Jtd0v:\"framer-v-1287r3l\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={delay:0,duration:.3,ease:[.12,.23,.5,1],type:\"tween\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={Active:\"Bvt8PyRxY\",Default:\"FRQ9Jtd0v\"};const getProps=({click,height,id,link,title,width,...props})=>{var _ref,_humanReadableVariantMap_props_variant,_ref1;return{...props,mgnJiPHiA:link!==null&&link!==void 0?link:props.mgnJiPHiA,S1Rf6xng8:(_ref=title!==null&&title!==void 0?title:props.S1Rf6xng8)!==null&&_ref!==void 0?_ref:\"About\",variant:(_ref1=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref1!==void 0?_ref1:\"FRQ9Jtd0v\",vwqVc_004:click!==null&&click!==void 0?click:props.vwqVc_004};};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,mgnJiPHiA,S1Rf6xng8,vwqVc_004,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"FRQ9Jtd0v\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap161r46z=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(vwqVc_004){const res=await vwqVc_004(...args);if(res===false)return false;}});const ref1=React.useRef(null);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,children:/*#__PURE__*/_jsx(Link,{href:mgnJiPHiA,openInNewTab:false,children:/*#__PURE__*/_jsx(motion.a,{...restProps,...gestureHandlers,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-1287r3l\",className,classNames)} framer-16sy86n`,\"data-framer-name\":\"Default\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"FRQ9Jtd0v\",onTap:onTap161r46z,ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"rgba(247, 247, 247, 0)\",borderBottomLeftRadius:999,borderBottomRightRadius:999,borderTopLeftRadius:999,borderTopRightRadius:999,...style},variants:{\"FRQ9Jtd0v-hover\":{backgroundColor:\"rgba(0, 0, 0, 0)\"},Bvt8PyRxY:{backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}},...addPropertyOverrides({\"FRQ9Jtd0v-hover\":{\"data-framer-name\":undefined},Bvt8PyRxY:{\"data-framer-name\":\"Active\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1sm4l7z\",\"data-styles-preset\":\"Zm13E6csR\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-26228e18-5b63-4868-a865-233a860834a5, rgb(5, 5, 5)))\"},children:\"About\"})}),className:\"framer-pkb4cy\",\"data-framer-name\":\"About\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"ZYQBIsMus\",style:{\"--extracted-r6o4lv\":\"var(--token-26228e18-5b63-4868-a865-233a860834a5, rgb(5, 5, 5))\"},text:S1Rf6xng8,variants:{\"FRQ9Jtd0v-hover\":{\"--extracted-r6o4lv\":\"var(--token-af259a36-0791-410f-a1e9-3f7d0c49a5c1, rgb(15, 146, 254))\"},Bvt8PyRxY:{\"--extracted-r6o4lv\":\"var(--token-af259a36-0791-410f-a1e9-3f7d0c49a5c1, rgb(15, 146, 254))\"}},verticalAlignment:\"center\",withExternalLayout:true,...addPropertyOverrides({\"FRQ9Jtd0v-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1sm4l7z\",\"data-styles-preset\":\"Zm13E6csR\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-af259a36-0791-410f-a1e9-3f7d0c49a5c1, rgb(15, 146, 254)))\"},children:\"About\"})})},Bvt8PyRxY:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-ch1ot7\",\"data-styles-preset\":\"XhW2JbaJ9\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-af259a36-0791-410f-a1e9-3f7d0c49a5c1, rgb(15, 146, 254)))\"},children:\"About\"})})}},baseVariant,gestureVariant)})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-WrDHs.framer-16sy86n, .framer-WrDHs .framer-16sy86n { display: block; }\",\".framer-WrDHs.framer-1287r3l { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 4px 16px 4px 16px; position: relative; text-decoration: none; width: min-content; }\",\".framer-WrDHs .framer-pkb4cy { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-WrDHs.framer-1287r3l { gap: 0px; } .framer-WrDHs.framer-1287r3l > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-WrDHs.framer-1287r3l > :first-child { margin-left: 0px; } .framer-WrDHs.framer-1287r3l > :last-child { margin-right: 0px; } }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 40\n * @framerIntrinsicWidth 79\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"Bvt8PyRxY\":{\"layout\":[\"auto\",\"auto\"]},\"kg3FSTVlA\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"mgnJiPHiA\":\"link\",\"S1Rf6xng8\":\"title\",\"vwqVc_004\":\"click\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerDTrGQFLw5=withCSS(Component,css,\"framer-WrDHs\");export default FramerDTrGQFLw5;FramerDTrGQFLw5.displayName=\"Button / Nav Link\";FramerDTrGQFLw5.defaultProps={height:40,width:79};addPropertyControls(FramerDTrGQFLw5,{variant:{options:[\"FRQ9Jtd0v\",\"Bvt8PyRxY\"],optionTitles:[\"Default\",\"Active\"],title:\"Variant\",type:ControlType.Enum},mgnJiPHiA:{title:\"Link\",type:ControlType.Link},S1Rf6xng8:{defaultValue:\"About\",displayTextArea:false,title:\"Title\",type:ControlType.String},vwqVc_004:{title:\"Click\",type:ControlType.EventHandler}});addFonts(FramerDTrGQFLw5,[{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\"}]},...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerDTrGQFLw5\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"40\",\"framerIntrinsicWidth\":\"79\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"Bvt8PyRxY\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"kg3FSTVlA\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerVariables\":\"{\\\"mgnJiPHiA\\\":\\\"link\\\",\\\"S1Rf6xng8\\\":\\\"title\\\",\\\"vwqVc_004\\\":\\\"click\\\"}\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./DTrGQFLw5.map", "// Generated by Framer (1e08357)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/CAjjxbTJBxHwH1MagCef/Phosphor.js\";const PhosphorFonts=getFonts(Phosphor);const enabledGestures={EPOf8hOkO:{hover:true}};const cycleOrder=[\"EPOf8hOkO\"];const serializationHash=\"framer-PNzhq\";const variantClassNames={EPOf8hOkO:\"framer-v-hpg3db\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const getProps=({amount,height,id,link,width,...props})=>{var _ref;return{...props,B78f2pOY_:link!==null&&link!==void 0?link:props.B78f2pOY_,da8xseUDc:(_ref=amount!==null&&amount!==void 0?amount:props.da8xseUDc)!==null&&_ref!==void 0?_ref:\"360\\xb0 Account Management\"};};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,da8xseUDc,B78f2pOY_,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"EPOf8hOkO\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:B78f2pOY_,openInNewTab:false,children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-hpg3db\",className,classNames)} framer-m1v5wb`,\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"EPOf8hOkO\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:4,borderBottomRightRadius:4,borderTopLeftRadius:4,borderTopRightRadius:4,...style},variants:{\"EPOf8hOkO-hover\":{backgroundColor:\"var(--token-1cab753f-7df3-46fa-83a8-4e7ffa7f1580, rgb(234, 234, 235))\"}},...addPropertyOverrides({\"EPOf8hOkO-hover\":{\"data-framer-name\":undefined}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-18oq3xa\",\"data-framer-name\":\"Item\",layoutDependency:layoutDependency,layoutId:\"GplgN218P\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(17, 17, 17))\"},children:\"360\\xb0 Account Management\"})}),className:\"framer-1tlwrkg\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"pGrBrEKN4\",style:{\"--extracted-r6o4lv\":\"rgb(17, 17, 17)\",\"--framer-paragraph-spacing\":\"0px\"},text:da8xseUDc,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-21dc4-container\",layoutDependency:layoutDependency,layoutId:\"Sqw02LFyY-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-47bece0f-745d-4be4-84da-84bbd1ba6a58, rgb(1, 80, 145))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"ArrowUpRight\",id:\"Sqw02LFyY\",layoutId:\"Sqw02LFyY\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-PNzhq.framer-m1v5wb, .framer-PNzhq .framer-m1v5wb { display: block; }\",\".framer-PNzhq.framer-hpg3db { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 4px; position: relative; text-decoration: none; width: 239px; }\",\".framer-PNzhq .framer-18oq3xa { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-PNzhq .framer-1tlwrkg { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre; width: auto; }\",\".framer-PNzhq .framer-21dc4-container { flex: none; height: 16px; position: relative; width: 16px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-PNzhq.framer-hpg3db, .framer-PNzhq .framer-18oq3xa { gap: 0px; } .framer-PNzhq.framer-hpg3db > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-PNzhq.framer-hpg3db > :first-child { margin-left: 0px; } .framer-PNzhq.framer-hpg3db > :last-child { margin-right: 0px; } .framer-PNzhq .framer-18oq3xa > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-PNzhq .framer-18oq3xa > :first-child { margin-top: 0px; } .framer-PNzhq .framer-18oq3xa > :last-child { margin-bottom: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 31\n * @framerIntrinsicWidth 239\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"qPS0cElzt\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"da8xseUDc\":\"amount\",\"B78f2pOY_\":\"link\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerEZPjNmdzl=withCSS(Component,css,\"framer-PNzhq\");export default FramerEZPjNmdzl;FramerEZPjNmdzl.displayName=\"Nav 2\";FramerEZPjNmdzl.defaultProps={height:31,width:239};addPropertyControls(FramerEZPjNmdzl,{da8xseUDc:{defaultValue:\"360\\xb0 Account Management\",displayTextArea:false,title:\"Amount\",type:ControlType.String},B78f2pOY_:{title:\"Link\",type:ControlType.Link}});addFonts(FramerEZPjNmdzl,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5A3Ce6C9YYmCjpQx9M4inSaKU.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/Qx95Xyt0Ka3SGhinnbXIGpEIyP4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/6mJuEAguuIuMog10gGvH5d3cl8.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/xYYWaj7wCU5zSQH0eXvSaS19wo.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/otTaNuNpVK4RbdlT7zDDdKvQBA.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/d3tHnaQIAeqiE5hGcRw4mmgWYU.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/DolVirEGb34pEXEp8t8FQBSK4.woff2\",weight:\"500\"}]},...PhosphorFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerEZPjNmdzl\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"31\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"qPS0cElzt\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerVariables\":\"{\\\"da8xseUDc\\\":\\\"amount\\\",\\\"B78f2pOY_\\\":\\\"link\\\"}\",\"framerIntrinsicWidth\":\"239\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./EZPjNmdzl.map", "// Generated by Framer (8d84d1c)\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 Material}from\"https://framerusercontent.com/modules/6Ldpz1V0DkD45gXvi67I/PCgBX5d6MdQT7E7nhdXn/Material.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/a4wT3F4fpcQIo2ZEjNnR/L2fcU3oDrHlrsNrGKu6X/Zm13E6csR.js\";const MaterialFonts=getFonts(Material);const enabledGestures={XHXtZ6eOr:{hover:true}};const cycleOrder=[\"XHXtZ6eOr\",\"NMwxJsod1\"];const serializationHash=\"framer-d0rVo\";const variantClassNames={NMwxJsod1:\"framer-v-rt5qgo\",XHXtZ6eOr:\"framer-v-1xrultn\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={delay:0,duration:.3,ease:[.12,.23,.5,1],type:\"tween\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={Default:\"XHXtZ6eOr\",Open:\"NMwxJsod1\"};const getProps=({click,height,id,title,width,...props})=>{var _ref,_humanReadableVariantMap_props_variant,_ref1;return{...props,S1Rf6xng8:(_ref=title!==null&&title!==void 0?title:props.S1Rf6xng8)!==null&&_ref!==void 0?_ref:\"About\",variant:(_ref1=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref1!==void 0?_ref1:\"XHXtZ6eOr\",vwqVc_004:click!==null&&click!==void 0?click:props.vwqVc_004};};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,S1Rf6xng8,vwqVc_004,mgnJiPHiADTrGQFLw5,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"XHXtZ6eOr\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap161r46z=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(vwqVc_004){const res=await vwqVc_004(...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:mgnJiPHiADTrGQFLw5,openInNewTab:false,children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-1xrultn\",className,classNames)} framer-rhux9o`,\"data-framer-name\":\"Default\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"XHXtZ6eOr\",onTap:onTap161r46z,ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"rgba(247, 247, 247, 0)\",borderBottomLeftRadius:999,borderBottomRightRadius:999,borderTopLeftRadius:999,borderTopRightRadius:999,opacity:1,...style},variants:{\"XHXtZ6eOr-hover\":{backgroundColor:\"rgba(0, 0, 0, 0)\"},NMwxJsod1:{backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,opacity:.5}},...addPropertyOverrides({\"XHXtZ6eOr-hover\":{\"data-framer-name\":undefined},NMwxJsod1:{\"data-framer-name\":\"Open\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1sm4l7z\",\"data-styles-preset\":\"Zm13E6csR\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-26228e18-5b63-4868-a865-233a860834a5, rgb(5, 5, 5)))\"},children:\"About\"})}),className:\"framer-mvbduq\",\"data-framer-name\":\"About\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"pxJzQtgVU\",style:{\"--extracted-r6o4lv\":\"var(--token-26228e18-5b63-4868-a865-233a860834a5, rgb(5, 5, 5))\"},text:S1Rf6xng8,variants:{\"XHXtZ6eOr-hover\":{\"--extracted-r6o4lv\":\"var(--token-af259a36-0791-410f-a1e9-3f7d0c49a5c1, rgb(15, 146, 254))\"}},verticalAlignment:\"center\",withExternalLayout:true,...addPropertyOverrides({\"XHXtZ6eOr-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1sm4l7z\",\"data-styles-preset\":\"Zm13E6csR\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-af259a36-0791-410f-a1e9-3f7d0c49a5c1, rgb(15, 146, 254)))\"},children:\"About\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1518ce6-container\",layoutDependency:layoutDependency,layoutId:\"fsdAPP5Hx-container\",style:{rotate:90},variants:{NMwxJsod1:{rotate:-91}},children:/*#__PURE__*/_jsx(Material,{color:\"var(--token-26228e18-5b63-4868-a865-233a860834a5, rgb(5, 5, 5))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"ChevronRight\",iconStyle15:\"Filled\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"fsdAPP5Hx\",layoutId:\"fsdAPP5Hx\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\",...addPropertyOverrides({\"XHXtZ6eOr-hover\":{color:\"var(--token-af259a36-0791-410f-a1e9-3f7d0c49a5c1, rgb(15, 146, 254))\"}},baseVariant,gestureVariant)})})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-d0rVo.framer-rhux9o, .framer-d0rVo .framer-rhux9o { display: block; }\",\".framer-d0rVo.framer-1xrultn { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 4px 16px 4px 16px; position: relative; text-decoration: none; width: min-content; }\",\".framer-d0rVo .framer-mvbduq { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-d0rVo .framer-1518ce6-container { flex: none; height: 16px; position: relative; width: 16px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-d0rVo.framer-1xrultn { gap: 0px; } .framer-d0rVo.framer-1xrultn > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-d0rVo.framer-1xrultn > :first-child { margin-left: 0px; } .framer-d0rVo.framer-1xrultn > :last-child { margin-right: 0px; } }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 40\n * @framerIntrinsicWidth 103\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"NMwxJsod1\":{\"layout\":[\"auto\",\"auto\"]},\"Jm0K3qkqd\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"S1Rf6xng8\":\"title\",\"vwqVc_004\":\"click\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerHgf2nKEDv=withCSS(Component,css,\"framer-d0rVo\");export default FramerHgf2nKEDv;FramerHgf2nKEDv.displayName=\"Button / Nav Link Copy\";FramerHgf2nKEDv.defaultProps={height:40,width:103};addPropertyControls(FramerHgf2nKEDv,{variant:{options:[\"XHXtZ6eOr\",\"NMwxJsod1\"],optionTitles:[\"Default\",\"Open\"],title:\"Variant\",type:ControlType.Enum},S1Rf6xng8:{defaultValue:\"About\",displayTextArea:false,title:\"Title\",type:ControlType.String},vwqVc_004:{title:\"Click\",type:ControlType.EventHandler}});addFonts(FramerHgf2nKEDv,[{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\"}]},...MaterialFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerHgf2nKEDv\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerVariables\":\"{\\\"S1Rf6xng8\\\":\\\"title\\\",\\\"vwqVc_004\\\":\\\"click\\\"}\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"103\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"NMwxJsod1\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"Jm0K3qkqd\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"40\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Hgf2nKEDv.map", "// Generated by Framer (cf240c2)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,Floating,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,getPropertyControls,Image,Link,ResolveLinks,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOverlayState,useRouter,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 sharedStyle from\"https://framerusercontent.com/modules/mekUCjxn86iw9U3nQ8dM/Hq5k7eyRsUYFlkS4R2vg/S7JIaX3D9.js\";import ButtonSecondary from\"https://framerusercontent.com/modules/r9YmRIoWMayb7u1AKqoW/sOGprERDNHjEZtKO1Jgy/buh6M_G1z.js\";import Dropdown1 from\"https://framerusercontent.com/modules/aqyGzltLgEXt9slWcWOu/AmKm7GKIcSMh2ZZn6neo/cp4q3RTCZ.js\";import ButtonNavLink from\"https://framerusercontent.com/modules/jKCIYto4gFGX8dtdOEdr/DwZWZaLULuN0P0Nbu6I1/DTrGQFLw5.js\";import Nav2 from\"https://framerusercontent.com/modules/r5xlqyGr3qg5oncceqGc/g0Z8J0AuqvIjrPWbpmBd/EZPjNmdzl.js\";import ButtonNavLinkCopy from\"https://framerusercontent.com/modules/767O2ODWUeBDuliE8j2d/LpqssyodS6Z7IKIqea3V/Hgf2nKEDv.js\";const ElementsMenuIconFonts=getFonts(ElementsMenuIcon);const ButtonNavLinkCopyFonts=getFonts(ButtonNavLinkCopy);const Dropdown1Fonts=getFonts(Dropdown1);const Nav2Fonts=getFonts(Nav2);const MotionDivWithFX=withFX(motion.div);const ButtonNavLinkFonts=getFonts(ButtonNavLink);const ButtonSecondaryFonts=getFonts(ButtonSecondary);const ButtonNavLinkControls=getPropertyControls(ButtonNavLink);const cycleOrder=[\"h8c46N1yH\",\"sjLSFztF6\",\"B1H6Ne9pp\"];const serializationHash=\"framer-K8aqi\";const variantClassNames={B1H6Ne9pp:\"framer-v-1xcq4ud\",h8c46N1yH:\"framer-v-15yj3p9\",sjLSFztF6:\"framer-v-14t31y4\"};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: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:transition2,x:0,y:0};const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const Overlay=({children,blockDocumentScrolling,enabled=true})=>{const[visible,setVisible]=useOverlayState({blockDocumentScrolling});return children({hide:()=>setVisible(false),show:()=>setVisible(true),toggle:()=>setVisible(!visible),visible:enabled&&visible});};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableEnumMap={Active:\"Bvt8PyRxY\",Default:\"FRQ9Jtd0v\"};const humanReadableVariantMap={\"Mobile - Closed\":\"sjLSFztF6\",\"Mobile - Opened\":\"B1H6Ne9pp\",\"Top Navigation\":\"h8c46N1yH\"};const getProps=({aboutUsActive,contactUsActive,fBARefundsActive,height,id,rIcon,width,...props})=>{var _humanReadableEnumMap_contactUsActive,_ref,_ref1,_humanReadableEnumMap_fBARefundsActive,_ref2,_ref3,_humanReadableEnumMap_aboutUsActive,_ref4,_ref5,_humanReadableVariantMap_props_variant,_ref6,_ref7;return{...props,Fq7RwA2sa:(_ref1=(_ref=(_humanReadableEnumMap_contactUsActive=humanReadableEnumMap[contactUsActive])!==null&&_humanReadableEnumMap_contactUsActive!==void 0?_humanReadableEnumMap_contactUsActive:contactUsActive)!==null&&_ref!==void 0?_ref:props.Fq7RwA2sa)!==null&&_ref1!==void 0?_ref1:\"FRQ9Jtd0v\",JwPIjmcb0:(_ref3=(_ref2=(_humanReadableEnumMap_fBARefundsActive=humanReadableEnumMap[fBARefundsActive])!==null&&_humanReadableEnumMap_fBARefundsActive!==void 0?_humanReadableEnumMap_fBARefundsActive:fBARefundsActive)!==null&&_ref2!==void 0?_ref2:props.JwPIjmcb0)!==null&&_ref3!==void 0?_ref3:\"FRQ9Jtd0v\",OROXrj_6s:(_ref5=(_ref4=(_humanReadableEnumMap_aboutUsActive=humanReadableEnumMap[aboutUsActive])!==null&&_humanReadableEnumMap_aboutUsActive!==void 0?_humanReadableEnumMap_aboutUsActive:aboutUsActive)!==null&&_ref4!==void 0?_ref4:props.OROXrj_6s)!==null&&_ref5!==void 0?_ref5:\"FRQ9Jtd0v\",variant:(_ref6=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref6!==void 0?_ref6:\"h8c46N1yH\",vG3pAKrp1:(_ref7=rIcon!==null&&rIcon!==void 0?rIcon:props.vG3pAKrp1)!==null&&_ref7!==void 0?_ref7:{src:\"https://framerusercontent.com/images/KTjBt7Cs7SHNWux1dhgcN4k1GVc.svg\"}};};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,JwPIjmcb0,OROXrj_6s,Fq7RwA2sa,vG3pAKrp1,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"h8c46N1yH\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const tap1ibuh1p=activeVariantCallback(async(...args)=>{setVariant(\"B1H6Ne9pp\");});const tap1lv800d=activeVariantCallback(async(...args)=>{setVariant(\"sjLSFztF6\");});const vwqVc_004izu9gt=({overlay,paginationInfo})=>activeVariantCallback(async(...args)=>{overlay.show();});const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"B1H6Ne9pp\")return false;return true;};const isDisplayed1=()=>{if([\"sjLSFztF6\",\"B1H6Ne9pp\"].includes(baseVariant))return true;return false;};const isDisplayed2=()=>{if(baseVariant===\"sjLSFztF6\")return false;return true;};const ref2=React.useRef(null);const ref3=React.useRef(null);const router=useRouter();const ref4=React.useRef(null);const ref5=React.useRef(null);const isDisplayed3=()=>{if(baseVariant===\"B1H6Ne9pp\")return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-15yj3p9\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Top Navigation\",layoutDependency:layoutDependency,layoutId:\"h8c46N1yH\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-50815380-ecfc-4eba-b0fe-53964bd8242b, rgb(218, 219, 220))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backdropFilter:\"blur(9px)\",backgroundColor:\"rgba(255, 255, 255, 0.78)\",boxShadow:\"0px 5px 25px 0px rgba(0, 0, 0, 0.1)\",WebkitBackdropFilter:\"blur(9px)\",...style},variants:{B1H6Ne9pp:{backgroundColor:\"rgb(255, 255, 255)\"},sjLSFztF6:{backgroundColor:\"rgb(255, 255, 255)\"}},...addPropertyOverrides({B1H6Ne9pp:{\"data-framer-name\":\"Mobile - Opened\"},sjLSFztF6:{\"data-framer-name\":\"Mobile - Closed\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ha0vto\",\"data-framer-name\":\"Container\",layoutDependency:layoutDependency,layoutId:\"XO1FTenn4\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-lbpypq\",\"data-framer-name\":\"Logo\",layoutDependency:layoutDependency,layoutId:\"W3CbxX3NY\",children:[isDisplayed()&&/*#__PURE__*/_jsx(Link,{href:{webPageId:\"augiA20Il\"},children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fit\",intrinsicHeight:32,intrinsicWidth:126,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(24+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||88)-48-48)/2)+12+0),pixelHeight:55,pixelWidth:378,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/kCSzw7qrPQxFBXMeDguAsHGyU.png\"},className:\"framer-117t2m3 framer-3n0vzc\",\"data-framer-name\":\"Logo\",layoutDependency:layoutDependency,layoutId:\"Eex5wUPvn\",...addPropertyOverrides({sjLSFztF6:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:32,intrinsicWidth:126,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+16+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||64)-32-32)/2+0+0)+0+0+8),pixelHeight:55,pixelWidth:378,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/kCSzw7qrPQxFBXMeDguAsHGyU.png\"}}},baseVariant,gestureVariant)})}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-gn55mp-container\",layoutDependency:layoutDependency,layoutId:\"wwCDWyLlf-container\",children:/*#__PURE__*/_jsx(ElementsMenuIcon,{color:\"rgb(136, 136, 136)\",height:\"100%\",id:\"wwCDWyLlf\",layoutId:\"wwCDWyLlf\",style:{height:\"100%\",width:\"100%\"},variant:\"wuYLgLVQz\",width:\"100%\",...addPropertyOverrides({B1H6Ne9pp:{color:\"var(--token-ed541533-f9b3-4cd9-bcb9-0188d19eed95, rgb(104, 106, 110))\",tap:tap1lv800d},sjLSFztF6:{color:\"var(--token-ed541533-f9b3-4cd9-bcb9-0188d19eed95, rgb(104, 106, 110))\",tap:tap1ibuh1p,variant:\"uL1KSNbAO\"}},baseVariant,gestureVariant)})})})]}),isDisplayed2()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-k1rrkf\",layoutDependency:layoutDependency,layoutId:\"aU2scwAon\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-66gl5z\",\"data-framer-name\":\"Nav Menu\",layoutDependency:layoutDependency,layoutId:\"btRClmEJB\",children:[isDisplayed()&&/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:false,children:overlay=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(24+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||88)-48-48)/2)+0+0+4,children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ttii51-container\",id:`${layoutId}-ttii51`,layoutDependency:layoutDependency,layoutId:\"LnisURH_o-container\",ref:ref2,children:[/*#__PURE__*/_jsx(ButtonNavLinkCopy,{height:\"100%\",id:\"LnisURH_o\",layoutId:\"LnisURH_o\",S1Rf6xng8:\"Services\",variant:overlay.visible?\"NMwxJsod1\":\"XHXtZ6eOr\",vwqVc_004:vwqVc_004izu9gt({overlay}),width:\"100%\"}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay.visible&&/*#__PURE__*/_jsx(Floating,{alignment:\"center\",anchorRef:ref2,className:cx(serializationHash,classNames,...sharedStyleClassNames),collisionDetection:false,\"data-framer-portal-id\":`${layoutId}-ttii51`,offsetX:0,offsetY:48,onDismiss:overlay.hide,placement:\"bottom\",portalSelector:\"#overlay\",safeArea:true,zIndex:11,children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation1,className:\"framer-ic82tj\",\"data-border\":true,\"data-framer-name\":\"Menu\",exit:animation,initial:animation2,layoutDependency:layoutDependency,layoutId:\"AEwVwxqMa\",ref:ref3,role:\"dialog\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(235, 235, 235)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-5ksprl\",\"data-framer-name\":\"Left\",layoutDependency:layoutDependency,layoutId:\"WTZ7LNFHA\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"I2RVexRC5\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:39,width:\"240px\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(24+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||88)-48-48)/2)+0+0+4+0+0+30+0,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1adem9k-container\",layoutDependency:layoutDependency,layoutId:\"y7Cygf3Qd-container\",children:/*#__PURE__*/_jsx(Dropdown1,{BRl28kBHN:\"Amazon\",height:\"100%\",id:\"y7Cygf3Qd\",layoutId:\"y7Cygf3Qd\",style:{width:\"100%\"},width:\"100%\",ZYn5aa6DP:resolvedLinks[0]})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"z4QL81AYy\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:39,width:\"240px\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(24+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||88)-48-48)/2)+0+0+4+0+0+30+55,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-5rwrzl-container\",layoutDependency:layoutDependency,layoutId:\"JZspFcnJs-container\",children:/*#__PURE__*/_jsx(Dropdown1,{BRl28kBHN:\"Shopify\",height:\"100%\",id:\"JZspFcnJs\",layoutId:\"JZspFcnJs\",style:{width:\"100%\"},width:\"100%\",ZYn5aa6DP:resolvedLinks1[0]})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"fAfHZZJ_o\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:39,width:\"240px\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(24+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||88)-48-48)/2)+0+0+4+0+0+30+110,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ucnqm7-container\",layoutDependency:layoutDependency,layoutId:\"cLini2KRN-container\",children:/*#__PURE__*/_jsx(Dropdown1,{BRl28kBHN:\"New Product Launch\",height:\"100%\",id:\"cLini2KRN\",layoutId:\"cLini2KRN\",style:{width:\"100%\"},width:\"100%\",ZYn5aa6DP:resolvedLinks2[0]})})})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-172cnig\",\"data-framer-name\":\"Separator\",layoutDependency:layoutDependency,layoutId:\"FEWHI0sHB\",style:{backgroundColor:\"rgb(235, 235, 235)\"}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1berjbp\",\"data-framer-name\":\"Right\",layoutDependency:layoutDependency,layoutId:\"E7Idkxs6X\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"10px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0.05em\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(0, 0, 0, 0.4))\"},children:\"AMAZON SERVICES\"})}),className:\"framer-1xu3ikn\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"xVFnFgXbG\",style:{\"--extracted-r6o4lv\":\"rgba(0, 0, 0, 0.4)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"KFllFAJNp\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:31,width:\"239px\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(24+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||88)-48-48)/2)+0+0+4+0+0+30+-25.5,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1jp48r-container\",layoutDependency:layoutDependency,layoutId:\"CfZ8ch8hU-container\",children:/*#__PURE__*/_jsx(Nav2,{B78f2pOY_:resolvedLinks3[0],da8xseUDc:\"360\\xb0 Account Management\",height:\"100%\",id:\"CfZ8ch8hU\",layoutId:\"CfZ8ch8hU\",style:{width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"mhxlz22Hd\"},implicitPathVariables:undefined}],children:resolvedLinks4=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:31,width:\"239px\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(24+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||88)-48-48)/2)+0+0+4+0+0+30+25.5,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1awb27j-container\",layoutDependency:layoutDependency,layoutId:\"AYdYy7DCr-container\",children:/*#__PURE__*/_jsx(Nav2,{B78f2pOY_:resolvedLinks4[0],da8xseUDc:\"Improve Product Visibility\",height:\"100%\",id:\"AYdYy7DCr\",layoutId:\"AYdYy7DCr\",style:{width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"gfuVvPV5L\"},implicitPathVariables:undefined}],children:resolvedLinks5=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:31,width:\"239px\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(24+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||88)-48-48)/2)+0+0+4+0+0+30+76.5,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1yj2spn-container\",layoutDependency:layoutDependency,layoutId:\"LnZ9eRc_e-container\",children:/*#__PURE__*/_jsx(Nav2,{B78f2pOY_:resolvedLinks5[0],da8xseUDc:\"Optimize Sales Conversion\",height:\"100%\",id:\"LnZ9eRc_e\",layoutId:\"LnZ9eRc_e\",style:{width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"UKJSVN_8h\"},implicitPathVariables:undefined}],children:resolvedLinks6=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:31,width:\"239px\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(24+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||88)-48-48)/2)+0+0+4+0+0+30+127.5,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1i97m9s-container\",layoutDependency:layoutDependency,layoutId:\"qC2Awtrjw-container\",children:/*#__PURE__*/_jsx(Nav2,{B78f2pOY_:resolvedLinks6[0],da8xseUDc:\"Amazon Sponsored Ads\",height:\"100%\",id:\"qC2Awtrjw\",layoutId:\"qC2Awtrjw\",style:{width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"VwkA8teSM\"},implicitPathVariables:undefined}],children:resolvedLinks7=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:31,width:\"239px\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(24+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||88)-48-48)/2)+0+0+4+0+0+30+178.5,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1gifcpi-container\",layoutDependency:layoutDependency,layoutId:\"OATJj1vOr-container\",children:/*#__PURE__*/_jsx(Nav2,{B78f2pOY_:resolvedLinks7[0],da8xseUDc:\"Photography & Videography\",height:\"100%\",id:\"OATJj1vOr\",layoutId:\"OATJj1vOr\",style:{width:\"100%\"},width:\"100%\"})})})})]})]})})})]})})})}),isDisplayed()&&/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:false,children:overlay1=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(24+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||88)-48-48)/2)+0+0+4,children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-h1xj5a-container\",id:`${layoutId}-h1xj5a`,layoutDependency:layoutDependency,layoutId:\"qr20o48_F-container\",ref:ref4,children:[/*#__PURE__*/_jsx(ButtonNavLinkCopy,{height:\"100%\",id:\"qr20o48_F\",layoutId:\"qr20o48_F\",S1Rf6xng8:\"Resources\",variant:overlay1.visible?\"NMwxJsod1\":\"XHXtZ6eOr\",vwqVc_004:vwqVc_004izu9gt({overlay:overlay1}),width:\"100%\"}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay1.visible&&/*#__PURE__*/_jsx(Floating,{alignment:\"center\",anchorRef:ref4,className:cx(serializationHash,classNames,...sharedStyleClassNames),collisionDetection:false,\"data-framer-portal-id\":`${layoutId}-h1xj5a`,offsetX:0,offsetY:40,onDismiss:overlay1.hide,placement:\"bottom\",portalSelector:\"#overlay\",safeArea:true,zIndex:11,children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation1,className:\"framer-ewvawm\",\"data-border\":true,\"data-framer-name\":\"Menu\",exit:animation,initial:animation2,layoutDependency:layoutDependency,layoutId:\"GBDlkD2jR\",ref:ref5,role:\"dialog\",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:15,borderBottomRightRadius:15,borderTopLeftRadius:15,borderTopRightRadius:15},children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"lvv7YoXPT\"},implicitPathVariables:undefined}],children:resolvedLinks8=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:39,width:\"240px\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(24+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||88)-48-48)/2)+0+0+4+0+15+0,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-127hudm-container\",layoutDependency:layoutDependency,layoutId:\"OVo0FU2kj-container\",children:/*#__PURE__*/_jsx(Dropdown1,{BRl28kBHN:\"Blogs\",height:\"100%\",id:\"OVo0FU2kj\",layoutId:\"OVo0FU2kj\",style:{width:\"100%\"},width:\"100%\",ZYn5aa6DP:resolvedLinks8[0]})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"Yp15snv1D\"},implicitPathVariables:undefined}],children:resolvedLinks9=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:39,width:\"240px\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(24+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||88)-48-48)/2)+0+0+4+0+15+49,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-qouref-container\",layoutDependency:layoutDependency,layoutId:\"KBXW40o_z-container\",children:/*#__PURE__*/_jsx(Dropdown1,{BRl28kBHN:\"Case Studies\",height:\"100%\",id:\"KBXW40o_z\",layoutId:\"KBXW40o_z\",style:{width:\"100%\"},width:\"100%\",ZYn5aa6DP:resolvedLinks9[0]})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"yRggtd52p\"},implicitPathVariables:undefined}],children:resolvedLinks10=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:39,width:\"240px\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(24+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||88)-48-48)/2)+0+0+4+0+15+98,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-198zhss-container\",layoutDependency:layoutDependency,layoutId:\"VSGVzxn6_-container\",children:/*#__PURE__*/_jsx(Dropdown1,{BRl28kBHN:\"Portfolio\",height:\"100%\",id:\"VSGVzxn6_\",layoutId:\"VSGVzxn6_\",style:{width:\"100%\"},width:\"100%\",ZYn5aa6DP:resolvedLinks10[0]})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"UTySEIlFE\"},implicitPathVariables:undefined}],children:resolvedLinks11=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:39,width:\"240px\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(24+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||88)-48-48)/2)+0+0+4+0+15+147,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-ydz5zg-container\",layoutDependency:layoutDependency,layoutId:\"T6f9wGU9d-container\",children:/*#__PURE__*/_jsx(Dropdown1,{BRl28kBHN:\"Amazon Updates\",height:\"100%\",id:\"T6f9wGU9d\",layoutId:\"T6f9wGU9d\",style:{width:\"100%\"},width:\"100%\",ZYn5aa6DP:resolvedLinks11[0]})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"pDWn8IQGv\"},implicitPathVariables:undefined}],children:resolvedLinks12=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:39,width:\"240px\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(24+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||88)-48-48)/2)+0+0+4+0+15+196,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-86sljh-container\",layoutDependency:layoutDependency,layoutId:\"dBlXI3MAe-container\",children:/*#__PURE__*/_jsx(Dropdown1,{BRl28kBHN:\"Amazon Guide\",height:\"100%\",id:\"dBlXI3MAe\",layoutId:\"dBlXI3MAe\",style:{width:\"100%\"},width:\"100%\",ZYn5aa6DP:resolvedLinks12[0]})})})})]})})})]})})})}),isDisplayed3()&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"I2RVexRC5\"},implicitPathVariables:undefined},{href:{webPageId:\"I2RVexRC5\"},implicitPathVariables:undefined}],children:resolvedLinks13=>/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({B1H6Ne9pp:{height:31,width:`min(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 48px, 1200px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+16+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||642)-40-801)/2+0+0)+0+32+0+117+0+124}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ovo6vm-container\",layoutDependency:layoutDependency,layoutId:\"Y9uu_jdiU-container\",children:/*#__PURE__*/_jsx(Nav2,{B78f2pOY_:resolvedLinks13[0],da8xseUDc:\"Amazon\",height:\"100%\",id:\"Y9uu_jdiU\",layoutId:\"Y9uu_jdiU\",style:{width:\"100%\"},width:\"100%\",...addPropertyOverrides({B1H6Ne9pp:{B78f2pOY_:resolvedLinks13[1]}},baseVariant,gestureVariant)})})})}),isDisplayed3()&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"z4QL81AYy\"},implicitPathVariables:undefined},{href:{webPageId:\"z4QL81AYy\"},implicitPathVariables:undefined}],children:resolvedLinks14=>/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({B1H6Ne9pp:{height:31,width:`min(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 48px, 1200px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+16+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||642)-40-801)/2+0+0)+0+32+0+117+0+159}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-7f1q0n-container\",layoutDependency:layoutDependency,layoutId:\"Bw2PwjfJf-container\",children:/*#__PURE__*/_jsx(Nav2,{B78f2pOY_:resolvedLinks14[0],da8xseUDc:\"Shopify\",height:\"100%\",id:\"Bw2PwjfJf\",layoutId:\"Bw2PwjfJf\",style:{width:\"100%\"},width:\"100%\",...addPropertyOverrides({B1H6Ne9pp:{B78f2pOY_:resolvedLinks14[1]}},baseVariant,gestureVariant)})})})}),isDisplayed3()&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"fAfHZZJ_o\"},implicitPathVariables:undefined},{href:{webPageId:\"fAfHZZJ_o\"},implicitPathVariables:undefined}],children:resolvedLinks15=>/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({B1H6Ne9pp:{height:31,width:`min(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 48px, 1200px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+16+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||642)-40-801)/2+0+0)+0+32+0+117+0+194}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-11u5unz-container\",layoutDependency:layoutDependency,layoutId:\"y9BEu5Mva-container\",children:/*#__PURE__*/_jsx(Nav2,{B78f2pOY_:resolvedLinks15[0],da8xseUDc:\"New Product Launch\",height:\"100%\",id:\"y9BEu5Mva\",layoutId:\"y9BEu5Mva\",style:{width:\"100%\"},width:\"100%\",...addPropertyOverrides({B1H6Ne9pp:{B78f2pOY_:resolvedLinks15[1]}},baseVariant,gestureVariant)})})})}),isDisplayed()&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"tmlremblP\"},implicitPathVariables:undefined}],children:resolvedLinks16=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(24+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||88)-48-48)/2)+0+0+4,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-13er294-container\",layoutDependency:layoutDependency,layoutId:\"NepGLUpYL-container\",children:/*#__PURE__*/_jsx(ButtonNavLink,{height:\"100%\",id:\"NepGLUpYL\",layoutId:\"NepGLUpYL\",mgnJiPHiA:resolvedLinks16[0],S1Rf6xng8:\"FBA Refunds\",variant:JwPIjmcb0,width:\"100%\"})})})}),isDisplayed3()&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"gfuVvPV5L\"},implicitPathVariables:undefined},{href:{webPageId:\"gfuVvPV5L\"},implicitPathVariables:undefined}],children:resolvedLinks17=>/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({B1H6Ne9pp:{height:31,width:`min(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 48px, 1200px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+16+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||642)-40-801)/2+0+0)+0+32+0+117+0+229}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-939tre-container\",layoutDependency:layoutDependency,layoutId:\"zuUf4BTZh-container\",children:/*#__PURE__*/_jsx(Nav2,{B78f2pOY_:resolvedLinks17[0],da8xseUDc:\"Optimize Sales Conversion\",height:\"100%\",id:\"zuUf4BTZh\",layoutId:\"zuUf4BTZh\",style:{width:\"100%\"},width:\"100%\",...addPropertyOverrides({B1H6Ne9pp:{B78f2pOY_:resolvedLinks17[1]}},baseVariant,gestureVariant)})})})}),isDisplayed3()&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"mhxlz22Hd\"},implicitPathVariables:undefined},{href:{webPageId:\"mhxlz22Hd\"},implicitPathVariables:undefined}],children:resolvedLinks18=>/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({B1H6Ne9pp:{height:31,width:`min(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 48px, 1200px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+16+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||642)-40-801)/2+0+0)+0+32+0+117+0+264}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-14sr56g-container\",layoutDependency:layoutDependency,layoutId:\"c6OEGbUXp-container\",children:/*#__PURE__*/_jsx(Nav2,{B78f2pOY_:resolvedLinks18[0],da8xseUDc:\"Improve Product Visibility\",height:\"100%\",id:\"c6OEGbUXp\",layoutId:\"c6OEGbUXp\",style:{width:\"100%\"},width:\"100%\",...addPropertyOverrides({B1H6Ne9pp:{B78f2pOY_:resolvedLinks18[1]}},baseVariant,gestureVariant)})})})}),isDisplayed3()&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"UKJSVN_8h\"},implicitPathVariables:undefined},{href:{webPageId:\"UKJSVN_8h\"},implicitPathVariables:undefined}],children:resolvedLinks19=>/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({B1H6Ne9pp:{height:31,width:`min(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 48px, 1200px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+16+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||642)-40-801)/2+0+0)+0+32+0+117+0+299}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-iohpxk-container\",layoutDependency:layoutDependency,layoutId:\"I1u9i_9LC-container\",children:/*#__PURE__*/_jsx(Nav2,{B78f2pOY_:resolvedLinks19[0],da8xseUDc:\"Amazon Sponsored Ads\",height:\"100%\",id:\"I1u9i_9LC\",layoutId:\"I1u9i_9LC\",style:{width:\"100%\"},width:\"100%\",...addPropertyOverrides({B1H6Ne9pp:{B78f2pOY_:resolvedLinks19[1]}},baseVariant,gestureVariant)})})})}),isDisplayed3()&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"KFllFAJNp\"},implicitPathVariables:undefined},{href:{webPageId:\"KFllFAJNp\"},implicitPathVariables:undefined}],children:resolvedLinks20=>/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({B1H6Ne9pp:{height:31,width:`min(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 48px, 1200px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+16+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||642)-40-801)/2+0+0)+0+32+0+117+0+334}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-yd8ae3-container\",layoutDependency:layoutDependency,layoutId:\"swhkko_K5-container\",children:/*#__PURE__*/_jsx(Nav2,{B78f2pOY_:resolvedLinks20[0],da8xseUDc:\"360 degree Account Management\",height:\"100%\",id:\"swhkko_K5\",layoutId:\"swhkko_K5\",style:{width:\"100%\"},width:\"100%\",...addPropertyOverrides({B1H6Ne9pp:{B78f2pOY_:resolvedLinks20[1]}},baseVariant,gestureVariant)})})})}),isDisplayed3()&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"VwkA8teSM\"},implicitPathVariables:undefined},{href:{webPageId:\"VwkA8teSM\"},implicitPathVariables:undefined}],children:resolvedLinks21=>/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({B1H6Ne9pp:{height:31,width:`min(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 48px, 1200px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+16+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||642)-40-801)/2+0+0)+0+32+0+117+0+369}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-dxchgb-container\",layoutDependency:layoutDependency,layoutId:\"HNmWhbqPg-container\",children:/*#__PURE__*/_jsx(Nav2,{B78f2pOY_:resolvedLinks21[0],da8xseUDc:\"Product Photo & Videography\",height:\"100%\",id:\"HNmWhbqPg\",layoutId:\"HNmWhbqPg\",style:{width:\"100%\"},width:\"100%\",...addPropertyOverrides({B1H6Ne9pp:{B78f2pOY_:resolvedLinks21[1]}},baseVariant,gestureVariant)})})})}),isDisplayed()&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"tAyCnfoaa\"},implicitPathVariables:undefined}],children:resolvedLinks22=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(24+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||88)-48-48)/2)+0+0+4,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1abswsa-container\",layoutDependency:layoutDependency,layoutId:\"edZySBKxC-container\",children:/*#__PURE__*/_jsx(ButtonNavLink,{height:\"100%\",id:\"edZySBKxC\",layoutId:\"edZySBKxC\",mgnJiPHiA:resolvedLinks22[0],S1Rf6xng8:\"About Us\",variant:OROXrj_6s,width:\"100%\"})})})}),isDisplayed()&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"gQZmd6pZ4\"},implicitPathVariables:undefined}],children:resolvedLinks23=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(24+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||88)-48-48)/2)+0+0+4,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-18iqao5-container\",layoutDependency:layoutDependency,layoutId:\"TCX4KCAQI-container\",children:/*#__PURE__*/_jsx(ButtonNavLink,{height:\"100%\",id:\"TCX4KCAQI\",layoutId:\"TCX4KCAQI\",mgnJiPHiA:resolvedLinks23[0],S1Rf6xng8:\"Contact Us\",variant:Fq7RwA2sa,width:\"100%\"})})})}),isDisplayed()&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"gQZmd6pZ4\"},implicitPathVariables:undefined}],children:resolvedLinks24=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(24+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||88)-48-48)/2)+0+0+0,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-gat56c-container\",layoutDependency:layoutDependency,layoutId:\"BuG_jF7Mk-container\",children:/*#__PURE__*/_jsx(ButtonSecondary,{ftl3XnncM:\"Get a quote\",h8PGDiTvJ:resolvedLinks24[0],height:\"100%\",id:\"BuG_jF7Mk\",layoutId:\"BuG_jF7Mk\",RT0LyIPut:toResponsiveImage(vG3pAKrp1),syqdJQsbQ:\"House\",variant:\"E7AINHXaJ\",width:\"100%\"})})})}),isDisplayed3()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-rzieet\",\"data-styles-preset\":\"S7JIaX3D9\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-1f07d8f8-1de6-4b5c-b947-7e7ec74452e2, rgb(140, 142, 146)))\"},children:\"Services\"})}),className:\"framer-9evvfa\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Nc0C_FLHn\",style:{\"--extracted-r6o4lv\":\"var(--token-1f07d8f8-1de6-4b5c-b947-7e7ec74452e2, rgb(140, 142, 146))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed3()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-17xt5hq\",\"data-framer-name\":\"Nav Menu\",layoutDependency:layoutDependency,layoutId:\"BK6EcjI2H\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"lvv7YoXPT\"},implicitPathVariables:undefined},{href:{webPageId:\"lvv7YoXPT\"},implicitPathVariables:undefined}],children:resolvedLinks25=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:31,...addPropertyOverrides({B1H6Ne9pp:{width:`min(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 48px, 1200px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+16+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||642)-40-801)/2+0+0)+0+32+0+525+0+120}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1sdmk6h-container\",layoutDependency:layoutDependency,layoutId:\"zqrxKCpIP-container\",children:/*#__PURE__*/_jsx(Nav2,{B78f2pOY_:resolvedLinks25[0],da8xseUDc:\"Blogs\",height:\"100%\",id:\"zqrxKCpIP\",layoutId:\"zqrxKCpIP\",style:{width:\"100%\"},width:\"100%\",...addPropertyOverrides({B1H6Ne9pp:{B78f2pOY_:resolvedLinks25[1]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"Yp15snv1D\"},implicitPathVariables:undefined},{href:{webPageId:\"Yp15snv1D\"},implicitPathVariables:undefined}],children:resolvedLinks26=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:31,...addPropertyOverrides({B1H6Ne9pp:{width:`min(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 48px, 1200px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+16+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||642)-40-801)/2+0+0)+0+32+0+525+0+151}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-11jc7q0-container\",layoutDependency:layoutDependency,layoutId:\"eMWIeFcr4-container\",children:/*#__PURE__*/_jsx(Nav2,{B78f2pOY_:resolvedLinks26[0],da8xseUDc:\"Case Studies\",height:\"100%\",id:\"eMWIeFcr4\",layoutId:\"eMWIeFcr4\",style:{width:\"100%\"},width:\"100%\",...addPropertyOverrides({B1H6Ne9pp:{B78f2pOY_:resolvedLinks26[1]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"yRggtd52p\"},implicitPathVariables:undefined},{href:{webPageId:\"yRggtd52p\"},implicitPathVariables:undefined}],children:resolvedLinks27=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:31,...addPropertyOverrides({B1H6Ne9pp:{width:`min(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 48px, 1200px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+16+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||642)-40-801)/2+0+0)+0+32+0+525+0+182}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-z74q3n-container\",layoutDependency:layoutDependency,layoutId:\"qpD53T5TD-container\",children:/*#__PURE__*/_jsx(Nav2,{B78f2pOY_:resolvedLinks27[0],da8xseUDc:\"Portfolio\",height:\"100%\",id:\"qpD53T5TD\",layoutId:\"qpD53T5TD\",style:{width:\"100%\"},width:\"100%\",...addPropertyOverrides({B1H6Ne9pp:{B78f2pOY_:resolvedLinks27[1]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"UTySEIlFE\"},implicitPathVariables:undefined},{href:{webPageId:\"UTySEIlFE\"},implicitPathVariables:undefined}],children:resolvedLinks28=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:31,...addPropertyOverrides({B1H6Ne9pp:{width:`min(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 48px, 1200px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+16+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||642)-40-801)/2+0+0)+0+32+0+525+0+213}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1smnzl2-container\",layoutDependency:layoutDependency,layoutId:\"UFUH4SAUe-container\",children:/*#__PURE__*/_jsx(Nav2,{B78f2pOY_:resolvedLinks28[0],da8xseUDc:\"Amazon Updates\",height:\"100%\",id:\"UFUH4SAUe\",layoutId:\"UFUH4SAUe\",style:{width:\"100%\"},width:\"100%\",...addPropertyOverrides({B1H6Ne9pp:{B78f2pOY_:resolvedLinks28[1]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-rzieet\",\"data-styles-preset\":\"S7JIaX3D9\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-1f07d8f8-1de6-4b5c-b947-7e7ec74452e2, rgb(140, 142, 146)))\"},children:\"Resources\"})}),className:\"framer-1knqxyb\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"tvmeuVbVM\",style:{\"--extracted-r6o4lv\":\"var(--token-1f07d8f8-1de6-4b5c-b947-7e7ec74452e2, rgb(140, 142, 146))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed3()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1pi5msr\",layoutDependency:layoutDependency,layoutId:\"jI873NxlE\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"tmlremblP\"},implicitPathVariables:undefined},{href:{webPageId:\"tmlremblP\"},implicitPathVariables:undefined}],children:resolvedLinks29=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:31,...addPropertyOverrides({B1H6Ne9pp:{width:`min(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 48px, 1200px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+16+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||642)-40-801)/2+0+0)+0+32+0+0+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-155yi5f-container\",layoutDependency:layoutDependency,layoutId:\"j7jbqolzZ-container\",children:/*#__PURE__*/_jsx(Nav2,{B78f2pOY_:resolvedLinks29[0],da8xseUDc:\"FBA Refunds\",height:\"100%\",id:\"j7jbqolzZ\",layoutId:\"j7jbqolzZ\",style:{width:\"100%\"},width:\"100%\",...addPropertyOverrides({B1H6Ne9pp:{B78f2pOY_:resolvedLinks29[1]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"tAyCnfoaa\"},implicitPathVariables:undefined},{href:{webPageId:\"tAyCnfoaa\"},implicitPathVariables:undefined}],children:resolvedLinks30=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:31,...addPropertyOverrides({B1H6Ne9pp:{width:`min(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 48px, 1200px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+16+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||642)-40-801)/2+0+0)+0+32+0+0+0+39}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-hy1qhk-container\",layoutDependency:layoutDependency,layoutId:\"L2J0loOGR-container\",children:/*#__PURE__*/_jsx(Nav2,{B78f2pOY_:resolvedLinks30[0],da8xseUDc:\"About Us\",height:\"100%\",id:\"L2J0loOGR\",layoutId:\"L2J0loOGR\",style:{width:\"100%\"},width:\"100%\",...addPropertyOverrides({B1H6Ne9pp:{B78f2pOY_:resolvedLinks30[1]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"gQZmd6pZ4\"},implicitPathVariables:undefined},{href:{webPageId:\"gQZmd6pZ4\"},implicitPathVariables:undefined}],children:resolvedLinks31=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:31,...addPropertyOverrides({B1H6Ne9pp:{width:`min(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 48px, 1200px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+16+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||642)-40-801)/2+0+0)+0+32+0+0+0+78}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1v3hk9u-container\",layoutDependency:layoutDependency,layoutId:\"ROZ3tKRls-container\",children:/*#__PURE__*/_jsx(Nav2,{B78f2pOY_:resolvedLinks31[0],da8xseUDc:\"Contact Us\",height:\"100%\",id:\"ROZ3tKRls\",layoutId:\"ROZ3tKRls\",style:{width:\"100%\"},width:\"100%\",...addPropertyOverrides({B1H6Ne9pp:{B78f2pOY_:resolvedLinks31[1]}},baseVariant,gestureVariant)})})})})]})]})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-K8aqi.framer-3n0vzc, .framer-K8aqi .framer-3n0vzc { display: block; }\",\".framer-K8aqi.framer-15yj3p9 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 88px; justify-content: center; overflow: hidden; padding: 24px; position: relative; width: 1200px; }\",\".framer-K8aqi .framer-ha0vto { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-K8aqi .framer-lbpypq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-K8aqi .framer-117t2m3 { aspect-ratio: 7.5 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 24px); overflow: visible; position: relative; text-decoration: none; width: 180px; }\",\".framer-K8aqi .framer-gn55mp-container { flex: none; height: 32px; position: relative; width: 32px; }\",\".framer-K8aqi .framer-k1rrkf { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-end; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-K8aqi .framer-66gl5z { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-K8aqi .framer-ttii51-container, .framer-K8aqi .framer-h1xj5a-container, .framer-K8aqi .framer-13er294-container, .framer-K8aqi .framer-1abswsa-container, .framer-K8aqi .framer-18iqao5-container, .framer-K8aqi .framer-gat56c-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-K8aqi .framer-ic82tj { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 600px; will-change: var(--framer-will-change-override, transform); }\",\".framer-K8aqi .framer-5ksprl { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 30px; position: relative; width: 1px; }\",\".framer-K8aqi .framer-1adem9k-container, .framer-K8aqi .framer-5rwrzl-container, .framer-K8aqi .framer-1ucnqm7-container, .framer-K8aqi .framer-1gifcpi-container, .framer-K8aqi .framer-1sdmk6h-container, .framer-K8aqi .framer-11jc7q0-container, .framer-K8aqi .framer-z74q3n-container, .framer-K8aqi .framer-1smnzl2-container, .framer-K8aqi .framer-155yi5f-container, .framer-K8aqi .framer-hy1qhk-container, .framer-K8aqi .framer-1v3hk9u-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-K8aqi .framer-172cnig { align-self: stretch; flex: none; height: auto; overflow: hidden; position: relative; width: 1px; }\",\".framer-K8aqi .framer-1berjbp { align-content: flex-start; align-items: flex-start; align-self: stretch; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: auto; justify-content: center; overflow: hidden; padding: 30px; position: relative; width: 299px; }\",\".framer-K8aqi .framer-1xu3ikn { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre; width: auto; }\",\".framer-K8aqi .framer-1jp48r-container, .framer-K8aqi .framer-1awb27j-container, .framer-K8aqi .framer-1yj2spn-container, .framer-K8aqi .framer-1i97m9s-container { flex: none; height: auto; position: relative; width: 239px; }\",\".framer-K8aqi .framer-ewvawm { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 15px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-K8aqi .framer-127hudm-container, .framer-K8aqi .framer-qouref-container, .framer-K8aqi .framer-198zhss-container, .framer-K8aqi .framer-ydz5zg-container, .framer-K8aqi .framer-86sljh-container { flex: none; height: auto; position: relative; width: 240px; }\",\".framer-K8aqi .framer-1ovo6vm-container, .framer-K8aqi .framer-7f1q0n-container, .framer-K8aqi .framer-11u5unz-container, .framer-K8aqi .framer-939tre-container, .framer-K8aqi .framer-14sr56g-container, .framer-K8aqi .framer-iohpxk-container, .framer-K8aqi .framer-yd8ae3-container, .framer-K8aqi .framer-dxchgb-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-K8aqi .framer-9evvfa { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-K8aqi .framer-17xt5hq { 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: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-K8aqi .framer-1knqxyb { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-K8aqi .framer-1pi5msr { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-K8aqi.framer-15yj3p9, .framer-K8aqi .framer-lbpypq, .framer-K8aqi .framer-k1rrkf, .framer-K8aqi .framer-66gl5z, .framer-K8aqi .framer-ic82tj, .framer-K8aqi .framer-5ksprl, .framer-K8aqi .framer-1berjbp, .framer-K8aqi .framer-ewvawm, .framer-K8aqi .framer-17xt5hq, .framer-K8aqi .framer-1pi5msr { gap: 0px; } .framer-K8aqi.framer-15yj3p9 > *, .framer-K8aqi .framer-ic82tj > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-K8aqi.framer-15yj3p9 > :first-child, .framer-K8aqi .framer-lbpypq > :first-child, .framer-K8aqi .framer-k1rrkf > :first-child, .framer-K8aqi .framer-66gl5z > :first-child, .framer-K8aqi .framer-ic82tj > :first-child { margin-left: 0px; } .framer-K8aqi.framer-15yj3p9 > :last-child, .framer-K8aqi .framer-lbpypq > :last-child, .framer-K8aqi .framer-k1rrkf > :last-child, .framer-K8aqi .framer-66gl5z > :last-child, .framer-K8aqi .framer-ic82tj > :last-child { margin-right: 0px; } .framer-K8aqi .framer-lbpypq > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } .framer-K8aqi .framer-k1rrkf > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-K8aqi .framer-66gl5z > * { margin: 0px; margin-left: calc(4px / 2); margin-right: calc(4px / 2); } .framer-K8aqi .framer-5ksprl > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-K8aqi .framer-5ksprl > :first-child, .framer-K8aqi .framer-1berjbp > :first-child, .framer-K8aqi .framer-ewvawm > :first-child, .framer-K8aqi .framer-17xt5hq > :first-child, .framer-K8aqi .framer-1pi5msr > :first-child { margin-top: 0px; } .framer-K8aqi .framer-5ksprl > :last-child, .framer-K8aqi .framer-1berjbp > :last-child, .framer-K8aqi .framer-ewvawm > :last-child, .framer-K8aqi .framer-17xt5hq > :last-child, .framer-K8aqi .framer-1pi5msr > :last-child { margin-bottom: 0px; } .framer-K8aqi .framer-1berjbp > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-K8aqi .framer-ewvawm > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-K8aqi .framer-17xt5hq > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-K8aqi .framer-1pi5msr > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } }\",\".framer-K8aqi.framer-v-14t31y4.framer-15yj3p9 { flex-direction: column; gap: 24px; height: min-content; padding: 16px 24px 16px 24px; width: 390px; }\",\".framer-K8aqi.framer-v-14t31y4 .framer-ha0vto { flex-direction: column; gap: 24px; justify-content: flex-start; }\",\".framer-K8aqi.framer-v-14t31y4 .framer-lbpypq { gap: unset; justify-content: space-between; width: 100%; }\",\".framer-K8aqi.framer-v-14t31y4 .framer-117t2m3 { height: var(--framer-aspect-ratio-supported, 16px); width: 120px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-K8aqi.framer-v-14t31y4.framer-15yj3p9, .framer-K8aqi.framer-v-14t31y4 .framer-ha0vto, .framer-K8aqi.framer-v-14t31y4 .framer-lbpypq { gap: 0px; } .framer-K8aqi.framer-v-14t31y4.framer-15yj3p9 > *, .framer-K8aqi.framer-v-14t31y4 .framer-ha0vto > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-K8aqi.framer-v-14t31y4.framer-15yj3p9 > :first-child, .framer-K8aqi.framer-v-14t31y4 .framer-ha0vto > :first-child { margin-top: 0px; } .framer-K8aqi.framer-v-14t31y4.framer-15yj3p9 > :last-child, .framer-K8aqi.framer-v-14t31y4 .framer-ha0vto > :last-child { margin-bottom: 0px; } .framer-K8aqi.framer-v-14t31y4 .framer-lbpypq > *, .framer-K8aqi.framer-v-14t31y4 .framer-lbpypq > :first-child, .framer-K8aqi.framer-v-14t31y4 .framer-lbpypq > :last-child { margin: 0px; } }\",\".framer-K8aqi.framer-v-1xcq4ud.framer-15yj3p9 { flex-direction: column; gap: 24px; height: min-content; overflow: auto; padding: 16px 24px 24px 24px; width: 390px; }\",\".framer-K8aqi.framer-v-1xcq4ud .framer-ha0vto { flex-direction: column; gap: 0px; justify-content: flex-start; order: 0; }\",\".framer-K8aqi.framer-v-1xcq4ud .framer-lbpypq { justify-content: flex-end; width: 100%; }\",\".framer-K8aqi.framer-v-1xcq4ud .framer-k1rrkf { flex: none; flex-direction: column; width: 100%; }\",\".framer-K8aqi.framer-v-1xcq4ud .framer-66gl5z { flex-direction: column; order: 1; width: 100%; }\",\".framer-K8aqi.framer-v-1xcq4ud .framer-1ovo6vm-container { flex: none; order: 5; width: 100%; }\",\".framer-K8aqi.framer-v-1xcq4ud .framer-7f1q0n-container { flex: none; order: 6; width: 100%; }\",\".framer-K8aqi.framer-v-1xcq4ud .framer-11u5unz-container { flex: none; order: 7; width: 100%; }\",\".framer-K8aqi.framer-v-1xcq4ud .framer-939tre-container { flex: none; order: 8; width: 100%; }\",\".framer-K8aqi.framer-v-1xcq4ud .framer-14sr56g-container { flex: none; order: 9; width: 100%; }\",\".framer-K8aqi.framer-v-1xcq4ud .framer-iohpxk-container { flex: none; order: 10; width: 100%; }\",\".framer-K8aqi.framer-v-1xcq4ud .framer-yd8ae3-container { flex: none; order: 11; width: 100%; }\",\".framer-K8aqi.framer-v-1xcq4ud .framer-dxchgb-container { flex: none; order: 12; width: 100%; }\",\".framer-K8aqi.framer-v-1xcq4ud .framer-9evvfa { flex: none; order: 4; width: 100%; }\",\".framer-K8aqi.framer-v-1xcq4ud .framer-17xt5hq { flex: none; order: 2; width: 100%; }\",\".framer-K8aqi.framer-v-1xcq4ud .framer-1sdmk6h-container { order: 5; }\",\".framer-K8aqi.framer-v-1xcq4ud .framer-11jc7q0-container { order: 6; }\",\".framer-K8aqi.framer-v-1xcq4ud .framer-z74q3n-container { order: 7; }\",\".framer-K8aqi.framer-v-1xcq4ud .framer-1smnzl2-container { order: 8; }\",\".framer-K8aqi.framer-v-1xcq4ud .framer-1knqxyb { order: 4; }\",\".framer-K8aqi.framer-v-1xcq4ud .framer-1pi5msr { flex: none; order: 0; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-K8aqi.framer-v-1xcq4ud.framer-15yj3p9, .framer-K8aqi.framer-v-1xcq4ud .framer-ha0vto, .framer-K8aqi.framer-v-1xcq4ud .framer-k1rrkf, .framer-K8aqi.framer-v-1xcq4ud .framer-66gl5z { gap: 0px; } .framer-K8aqi.framer-v-1xcq4ud.framer-15yj3p9 > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-K8aqi.framer-v-1xcq4ud.framer-15yj3p9 > :first-child, .framer-K8aqi.framer-v-1xcq4ud .framer-ha0vto > :first-child, .framer-K8aqi.framer-v-1xcq4ud .framer-k1rrkf > :first-child, .framer-K8aqi.framer-v-1xcq4ud .framer-66gl5z > :first-child { margin-top: 0px; } .framer-K8aqi.framer-v-1xcq4ud.framer-15yj3p9 > :last-child, .framer-K8aqi.framer-v-1xcq4ud .framer-ha0vto > :last-child, .framer-K8aqi.framer-v-1xcq4ud .framer-k1rrkf > :last-child, .framer-K8aqi.framer-v-1xcq4ud .framer-66gl5z > :last-child { margin-bottom: 0px; } .framer-K8aqi.framer-v-1xcq4ud .framer-ha0vto > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-K8aqi.framer-v-1xcq4ud .framer-k1rrkf > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-K8aqi.framer-v-1xcq4ud .framer-66gl5z > * { margin: 0px; margin-bottom: calc(4px / 2); margin-top: calc(4px / 2); } }\",...sharedStyle.css,'.framer-K8aqi[data-border=\"true\"]::after, .framer-K8aqi [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 88\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"sjLSFztF6\":{\"layout\":[\"fixed\",\"auto\"]},\"B1H6Ne9pp\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"JwPIjmcb0\":\"fBARefundsActive\",\"OROXrj_6s\":\"aboutUsActive\",\"Fq7RwA2sa\":\"contactUsActive\",\"vG3pAKrp1\":\"rIcon\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerljSN1mLHN=withCSS(Component,css,\"framer-K8aqi\");export default FramerljSN1mLHN;FramerljSN1mLHN.displayName=\"Section / Navigation\";FramerljSN1mLHN.defaultProps={height:88,width:1200};addPropertyControls(FramerljSN1mLHN,{variant:{options:[\"h8c46N1yH\",\"sjLSFztF6\",\"B1H6Ne9pp\"],optionTitles:[\"Top Navigation\",\"Mobile - Closed\",\"Mobile - Opened\"],title:\"Variant\",type:ControlType.Enum},JwPIjmcb0:(ButtonNavLinkControls===null||ButtonNavLinkControls===void 0?void 0:ButtonNavLinkControls[\"variant\"])&&{...ButtonNavLinkControls[\"variant\"],defaultValue:\"FRQ9Jtd0v\",description:undefined,hidden:undefined,title:\"FBA Refunds - Active\"},OROXrj_6s:(ButtonNavLinkControls===null||ButtonNavLinkControls===void 0?void 0:ButtonNavLinkControls[\"variant\"])&&{...ButtonNavLinkControls[\"variant\"],defaultValue:\"FRQ9Jtd0v\",description:undefined,hidden:undefined,title:\"About us - active\"},Fq7RwA2sa:(ButtonNavLinkControls===null||ButtonNavLinkControls===void 0?void 0:ButtonNavLinkControls[\"variant\"])&&{...ButtonNavLinkControls[\"variant\"],defaultValue:\"FRQ9Jtd0v\",description:undefined,hidden:undefined,title:\"Contact Us Active\"},vG3pAKrp1:{__defaultAssetReference:\"data:framer/asset-reference,KTjBt7Cs7SHNWux1dhgcN4k1GVc.svg?originalFilename=White+Right+ICon.svg&preferredSize=auto\",title:\"R Icon\",type:ControlType.ResponsiveImage}});addFonts(FramerljSN1mLHN,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5A3Ce6C9YYmCjpQx9M4inSaKU.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/Qx95Xyt0Ka3SGhinnbXIGpEIyP4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/6mJuEAguuIuMog10gGvH5d3cl8.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/xYYWaj7wCU5zSQH0eXvSaS19wo.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/otTaNuNpVK4RbdlT7zDDdKvQBA.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/d3tHnaQIAeqiE5hGcRw4mmgWYU.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/DolVirEGb34pEXEp8t8FQBSK4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/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\"}]},...ElementsMenuIconFonts,...ButtonNavLinkCopyFonts,...Dropdown1Fonts,...Nav2Fonts,...ButtonNavLinkFonts,...ButtonSecondaryFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerljSN1mLHN\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerVariables\":\"{\\\"JwPIjmcb0\\\":\\\"fBARefundsActive\\\",\\\"OROXrj_6s\\\":\\\"aboutUsActive\\\",\\\"Fq7RwA2sa\\\":\\\"contactUsActive\\\",\\\"vG3pAKrp1\\\":\\\"rIcon\\\"}\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"88\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"1200\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"sjLSFztF6\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"B1H6Ne9pp\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./ljSN1mLHN.map", "// Generated by Framer (e4277c8)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/p8dptk4UIND8hbFWz9V7/Phosphor.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/4mWlu8aOmhR7Jtr7SECL/tvuxwHfExr6rfl1lFiXB/qa27axrNS.js\";const PhosphorFonts=getFonts(Phosphor);const MotionAWithFX=withFX(motion.a);const MotionDivWithFX=withFX(motion.div);const ImageWithFX=withFX(Image);const cycleOrder=[\"nNm8N6pG1\",\"NR8kNsJqU\"];const serializationHash=\"framer-GwQhB\";const variantClassNames={nNm8N6pG1:\"framer-v-1toqkml\",NR8kNsJqU:\"framer-v-1xg680j\"};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 animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.9,skewX:0,skewY:0,transformPerspective:1200,x:0,y:32};const transition2={delay:.2,duration:.6,ease:[.12,.23,.5,1],type:\"tween\"};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.9,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:32};const transition3={delay:.6,duration:.6,ease:[.12,.23,.5,1],type:\"tween\"};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.9,skewX:0,skewY:0,transformPerspective:1200,transition:transition3,x:0,y:32};const animation3={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.8,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const transition4={delay:.2,duration:.4,ease:[.12,.23,.5,1],type:\"tween\"};const animation4={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.8,skewX:0,skewY:0,transformPerspective:1200,transition:transition4,x:0,y:0};const transition5={delay:.8,duration:.6,ease:[.12,.23,.5,1],type:\"tween\"};const animation5={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.8,skewX:0,skewY:0,transformPerspective:1200,transition:transition5,x:0,y:0};const transition6={delay:0,duration:2,ease:[.12,.23,.5,1],type:\"tween\"};const animation6={opacity:1,rotate:360,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const animation7={opacity:1,rotate:-360,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};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={\"Contact us footer mobile\":\"NR8kNsJqU\",\"Contact us footer\":\"nNm8N6pG1\"};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:\"nNm8N6pG1\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"nNm8N6pG1\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);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(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1toqkml\",className,classNames),\"data-framer-name\":\"Contact us footer\",layoutDependency:layoutDependency,layoutId:\"nNm8N6pG1\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({NR8kNsJqU:{\"data-framer-name\":\"Contact us footer mobile\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1orzyby\",\"data-framer-name\":\"Container\",layoutDependency:layoutDependency,layoutId:\"xSFw253HJ\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1vmdo7m\",\"data-framer-name\":\"Wrap\",layoutDependency:layoutDependency,layoutId:\"XdJIR4c1R\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-63l251\",layoutDependency:layoutDependency,layoutId:\"LDWkz5ikE\",children:[/*#__PURE__*/_jsx(Link,{href:\"https://calendly.com/call-estorefactory/30min\",children:/*#__PURE__*/_jsxs(MotionAWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-mkkkqk framer-o4zjsx\",\"data-border\":true,\"data-framer-name\":\"Card\",layoutDependency:layoutDependency,layoutId:\"bFGsXcVXl\",style:{\"--border-bottom-width\":\"2px\",\"--border-color\":\"var(--token-1cab753f-7df3-46fa-83a8-4e7ffa7f1580, rgb(234, 234, 235))\",\"--border-left-width\":\"2px\",\"--border-right-width\":\"2px\",\"--border-style\":\"solid\",\"--border-top-width\":\"2px\",backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,boxShadow:\"0px 0.3010936508871964px 1.0237184130164678px -1.1666666666666665px rgba(0, 0, 0, 0.20277), 0px 1.1442666516217286px 3.890506615513877px -2.333333333333333px rgba(0, 0, 0, 0.18254), 0px 5px 17px -3.5px rgba(0, 0, 0, 0.09)\",transformPerspective:1200},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-wnyg8c\",\"data-framer-name\":\"Icon Wrap\",layoutDependency:layoutDependency,layoutId:\"ssaAaOQuQ\",style:{backgroundColor:\"var(--token-cf38b389-38f3-4e90-ad07-14284c173b89, rgb(247, 247, 247))\",borderBottomLeftRadius:999,borderBottomRightRadius:999,borderTopLeftRadius:999,borderTopRightRadius:999},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-zt55aw\",\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"mLjXxFqjG\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1m8d388-container\",layoutDependency:layoutDependency,layoutId:\"smOczSQPc-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-47bece0f-745d-4be4-84da-84bbd1ba6a58, rgb(1, 80, 145))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"CalendarBlank\",id:\"smOczSQPc\",layoutId:\"smOczSQPc\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1arna3c\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"cGsdUjEVV\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-gqzbdl\",\"data-styles-preset\":\"qa27axrNS\",style:{\"--framer-text-alignment\":\"center\"},children:\"Schedule a call\"})}),className:\"framer-1l01tga\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"TctwgVQkx\",verticalAlignment:\"top\",withExternalLayout:true})})]})}),/*#__PURE__*/_jsx(Link,{href:\"tel:+18183505302\",openInNewTab:false,children:/*#__PURE__*/_jsxs(MotionAWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-z3dktf framer-o4zjsx\",\"data-border\":true,\"data-framer-name\":\"Card\",layoutDependency:layoutDependency,layoutId:\"rBV9Rme7L\",style:{\"--border-bottom-width\":\"2px\",\"--border-color\":\"var(--token-1cab753f-7df3-46fa-83a8-4e7ffa7f1580, rgb(234, 234, 235))\",\"--border-left-width\":\"2px\",\"--border-right-width\":\"2px\",\"--border-style\":\"solid\",\"--border-top-width\":\"2px\",backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,boxShadow:\"0px 0.3010936508871964px 1.0237184130164678px -1.1666666666666665px rgba(0, 0, 0, 0.20277), 0px 1.1442666516217286px 3.890506615513877px -2.333333333333333px rgba(0, 0, 0, 0.18254), 0px 5px 17px -3.5px rgba(0, 0, 0, 0.09)\",transformPerspective:1200},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1uez8iq\",\"data-framer-name\":\"Icon Wrap\",layoutDependency:layoutDependency,layoutId:\"ntb02KZra\",style:{backgroundColor:\"var(--token-cf38b389-38f3-4e90-ad07-14284c173b89, rgb(247, 247, 247))\",borderBottomLeftRadius:999,borderBottomRightRadius:999,borderTopLeftRadius:999,borderTopRightRadius:999},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-nn87pv\",\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"zahULx3Yu\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1yyyybq-container\",layoutDependency:layoutDependency,layoutId:\"BRv5uLUxY-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-47bece0f-745d-4be4-84da-84bbd1ba6a58, rgb(1, 80, 145))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Phone\",id:\"BRv5uLUxY\",layoutId:\"BRv5uLUxY\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1dkj134\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"wDDUjQ2dm\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-gqzbdl\",\"data-styles-preset\":\"qa27axrNS\",style:{\"--framer-text-alignment\":\"center\"},children:\"Call us\"})}),className:\"framer-1hxdk3m\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Ghpmm0UsG\",verticalAlignment:\"top\",withExternalLayout:true})})]})}),/*#__PURE__*/_jsx(Link,{href:\"https://api.whatsapp.com/send?phone=17172245547\",openInNewTab:true,children:/*#__PURE__*/_jsxs(MotionAWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-48p4c3 framer-o4zjsx\",\"data-border\":true,\"data-framer-name\":\"Card\",layoutDependency:layoutDependency,layoutId:\"zugQ4UY8j\",style:{\"--border-bottom-width\":\"2px\",\"--border-color\":\"var(--token-1cab753f-7df3-46fa-83a8-4e7ffa7f1580, rgb(234, 234, 235))\",\"--border-left-width\":\"2px\",\"--border-right-width\":\"2px\",\"--border-style\":\"solid\",\"--border-top-width\":\"2px\",backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,boxShadow:\"0px 0.3010936508871964px 1.0237184130164678px -1.1666666666666665px rgba(0, 0, 0, 0.20277), 0px 1.1442666516217286px 3.890506615513877px -2.333333333333333px rgba(0, 0, 0, 0.18254), 0px 5px 17px -3.5px rgba(0, 0, 0, 0.09)\",transformPerspective:1200},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-16nihb5\",\"data-framer-name\":\"Icon Wrap\",layoutDependency:layoutDependency,layoutId:\"K1NijwKIf\",style:{backgroundColor:\"var(--token-cf38b389-38f3-4e90-ad07-14284c173b89, rgb(247, 247, 247))\",borderBottomLeftRadius:999,borderBottomRightRadius:999,borderTopLeftRadius:999,borderTopRightRadius:999},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1xwc3dj\",\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"NqA_H3YBR\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-epvyzm-container\",layoutDependency:layoutDependency,layoutId:\"wSjBic2BI-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-47bece0f-745d-4be4-84da-84bbd1ba6a58, rgb(1, 80, 145))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"WhatsappLogo\",id:\"wSjBic2BI\",layoutId:\"wSjBic2BI\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-dzim28\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"xAEu6tGew\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-gqzbdl\",\"data-styles-preset\":\"qa27axrNS\",style:{\"--framer-text-alignment\":\"center\"},children:\"Whatsapp us\"})}),className:\"framer-1i7x6rx\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"SGib1DuR_\",verticalAlignment:\"top\",withExternalLayout:true})})]})})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation3,__framer__exit:animation4,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-nlec2b\",\"data-framer-name\":\"Background\",layoutDependency:layoutDependency,layoutId:\"aUTGAsCMZ\",style:{backgroundColor:\"var(--token-27616077-69e4-4af0-8c43-37c11e89f185, rgb(253, 242, 241))\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,transformPerspective:1200},children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:360,intrinsicWidth:416,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+100+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||362)-140-221.6)/2+0+0)+0+0+-50+0),pixelHeight:360,pixelWidth:416,src:\"https://framerusercontent.com/images/aLfIeREuserR0qBuRQPggSc5TE.svg\"},className:\"framer-1ezhbqf\",\"data-framer-name\":\"Pattern\",layoutDependency:layoutDependency,layoutId:\"cUoB6547U\",...addPropertyOverrides({NR8kNsJqU:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:360,intrinsicWidth:416,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+100+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||612)-140-471.79999999999995)/2+0+0)+0+0+-50+0),pixelHeight:360,pixelWidth:416,src:\"https://framerusercontent.com/images/aLfIeREuserR0qBuRQPggSc5TE.svg\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:360,intrinsicWidth:416,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+100+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||362)-140-221.6)/2+0+0)+0+0+-50+0),pixelHeight:360,pixelWidth:416,src:\"https://framerusercontent.com/images/a1Ka7eH3A42WXFnSSJATRBOjvk.svg\"},className:\"framer-1nqbwvo\",\"data-framer-name\":\"Pattern\",layoutDependency:layoutDependency,layoutId:\"ZTn8Wc7BH\",...addPropertyOverrides({NR8kNsJqU:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:360,intrinsicWidth:416,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+100+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||612)-140-471.79999999999995)/2+0+0)+0+0+-50+0),pixelHeight:360,pixelWidth:416,src:\"https://framerusercontent.com/images/a1Ka7eH3A42WXFnSSJATRBOjvk.svg\"}}},baseVariant,gestureVariant)})]})]}),/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation3,__framer__exit:animation5,__framer__loop:animation6,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:.6,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition6,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:48,intrinsicWidth:48,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+100+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||362)-140-221.6)/2+0+0)+-879),pixelHeight:48,pixelWidth:48,src:\"https://framerusercontent.com/images/wObACbeWO5hfeznCAloUfpkvlYo.svg\"},className:\"framer-ln777d\",\"data-framer-name\":\"Asterix\",layoutDependency:layoutDependency,layoutId:\"D18drso1M\",style:{transformPerspective:1200},...addPropertyOverrides({NR8kNsJqU:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:48,intrinsicWidth:48,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+100+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||612)-140-471.79999999999995)/2+0+0)+-879),pixelHeight:48,pixelWidth:48,src:\"https://framerusercontent.com/images/wObACbeWO5hfeznCAloUfpkvlYo.svg\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation3,__framer__exit:animation5,__framer__loop:animation7,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:.6,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition6,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:48,intrinsicWidth:48,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+100+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||362)-140-221.6)/2+0+0)+-879),pixelHeight:48,pixelWidth:48,src:\"https://framerusercontent.com/images/wObACbeWO5hfeznCAloUfpkvlYo.svg\"},className:\"framer-11b6852\",\"data-framer-name\":\"Asterix\",layoutDependency:layoutDependency,layoutId:\"iuVYT43k4\",style:{transformPerspective:1200},...addPropertyOverrides({NR8kNsJqU:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:48,intrinsicWidth:48,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+100+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||612)-140-471.79999999999995)/2+0+0)+-879),pixelHeight:48,pixelWidth:48,src:\"https://framerusercontent.com/images/wObACbeWO5hfeznCAloUfpkvlYo.svg\"}}},baseVariant,gestureVariant)})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-GwQhB.framer-o4zjsx, .framer-GwQhB .framer-o4zjsx { display: block; }\",\".framer-GwQhB.framer-1toqkml { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; max-width: 1216px; overflow: visible; padding: 100px 0px 40px 0px; position: relative; width: 1152px; }\",\".framer-GwQhB .framer-1orzyby { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; max-width: 1216px; overflow: visible; padding: 0px 0px 40px 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-GwQhB .framer-1vmdo7m { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-GwQhB .framer-63l251 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-GwQhB .framer-mkkkqk, .framer-GwQhB .framer-z3dktf, .framer-GwQhB .framer-48p4c3 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 32px 40px 32px 40px; position: relative; text-decoration: none; width: 1px; z-index: 2; }\",\".framer-GwQhB .framer-wnyg8c, .framer-GwQhB .framer-1uez8iq, .framer-GwQhB .framer-16nihb5 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 16px; position: relative; width: min-content; }\",\".framer-GwQhB .framer-zt55aw, .framer-GwQhB .framer-nn87pv, .framer-GwQhB .framer-1xwc3dj { align-content: center; align-items: center; aspect-ratio: 1 / 1; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: var(--framer-aspect-ratio-supported, 32px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 32px; }\",\".framer-GwQhB .framer-1m8d388-container, .framer-GwQhB .framer-1yyyybq-container, .framer-GwQhB .framer-epvyzm-container { flex: none; height: 32px; position: relative; width: 32px; }\",\".framer-GwQhB .framer-1arna3c, .framer-GwQhB .framer-1dkj134, .framer-GwQhB .framer-dzim28 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-GwQhB .framer-1l01tga, .framer-GwQhB .framer-1hxdk3m, .framer-GwQhB .framer-1i7x6rx { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-GwQhB .framer-nlec2b { bottom: -50px; flex: none; left: calc(50.00000000000002% - 70% / 2); overflow: hidden; position: absolute; top: -50px; width: 70%; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-GwQhB .framer-1ezhbqf { bottom: 0px; flex: none; overflow: hidden; position: absolute; right: 0px; top: 0px; width: 416px; }\",\".framer-GwQhB .framer-1nqbwvo { bottom: 0px; flex: none; left: 0px; overflow: hidden; position: absolute; top: 0px; width: 416px; }\",\".framer-GwQhB .framer-ln777d { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 48px); left: 124px; overflow: hidden; position: absolute; top: -879px; width: 48px; z-index: 1; }\",\".framer-GwQhB .framer-11b6852 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 48px); left: 1010px; overflow: hidden; position: absolute; top: -879px; width: 48px; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-GwQhB.framer-1toqkml, .framer-GwQhB .framer-1orzyby, .framer-GwQhB .framer-1vmdo7m, .framer-GwQhB .framer-63l251, .framer-GwQhB .framer-mkkkqk, .framer-GwQhB .framer-wnyg8c, .framer-GwQhB .framer-zt55aw, .framer-GwQhB .framer-1arna3c, .framer-GwQhB .framer-z3dktf, .framer-GwQhB .framer-1uez8iq, .framer-GwQhB .framer-nn87pv, .framer-GwQhB .framer-1dkj134, .framer-GwQhB .framer-48p4c3, .framer-GwQhB .framer-16nihb5, .framer-GwQhB .framer-1xwc3dj, .framer-GwQhB .framer-dzim28 { gap: 0px; } .framer-GwQhB.framer-1toqkml > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-GwQhB.framer-1toqkml > :first-child, .framer-GwQhB .framer-1orzyby > :first-child, .framer-GwQhB .framer-mkkkqk > :first-child, .framer-GwQhB .framer-1arna3c > :first-child, .framer-GwQhB .framer-z3dktf > :first-child, .framer-GwQhB .framer-1dkj134 > :first-child, .framer-GwQhB .framer-48p4c3 > :first-child, .framer-GwQhB .framer-dzim28 > :first-child { margin-top: 0px; } .framer-GwQhB.framer-1toqkml > :last-child, .framer-GwQhB .framer-1orzyby > :last-child, .framer-GwQhB .framer-mkkkqk > :last-child, .framer-GwQhB .framer-1arna3c > :last-child, .framer-GwQhB .framer-z3dktf > :last-child, .framer-GwQhB .framer-1dkj134 > :last-child, .framer-GwQhB .framer-48p4c3 > :last-child, .framer-GwQhB .framer-dzim28 > :last-child { margin-bottom: 0px; } .framer-GwQhB .framer-1orzyby > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-GwQhB .framer-1vmdo7m > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-GwQhB .framer-1vmdo7m > :first-child, .framer-GwQhB .framer-63l251 > :first-child, .framer-GwQhB .framer-wnyg8c > :first-child, .framer-GwQhB .framer-zt55aw > :first-child, .framer-GwQhB .framer-1uez8iq > :first-child, .framer-GwQhB .framer-nn87pv > :first-child, .framer-GwQhB .framer-16nihb5 > :first-child, .framer-GwQhB .framer-1xwc3dj > :first-child { margin-left: 0px; } .framer-GwQhB .framer-1vmdo7m > :last-child, .framer-GwQhB .framer-63l251 > :last-child, .framer-GwQhB .framer-wnyg8c > :last-child, .framer-GwQhB .framer-zt55aw > :last-child, .framer-GwQhB .framer-1uez8iq > :last-child, .framer-GwQhB .framer-nn87pv > :last-child, .framer-GwQhB .framer-16nihb5 > :last-child, .framer-GwQhB .framer-1xwc3dj > :last-child { margin-right: 0px; } .framer-GwQhB .framer-63l251 > * { margin: 0px; margin-left: calc(32px / 2); margin-right: calc(32px / 2); } .framer-GwQhB .framer-mkkkqk > *, .framer-GwQhB .framer-z3dktf > *, .framer-GwQhB .framer-48p4c3 > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-GwQhB .framer-wnyg8c > *, .framer-GwQhB .framer-1uez8iq > *, .framer-GwQhB .framer-16nihb5 > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-GwQhB .framer-zt55aw > *, .framer-GwQhB .framer-nn87pv > *, .framer-GwQhB .framer-1xwc3dj > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-GwQhB .framer-1arna3c > *, .framer-GwQhB .framer-1dkj134 > *, .framer-GwQhB .framer-dzim28 > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } }\",\".framer-GwQhB.framer-v-1xg680j.framer-1toqkml { width: 390px; }\",\".framer-GwQhB.framer-v-1xg680j .framer-1vmdo7m { flex-direction: column; }\",\".framer-GwQhB.framer-v-1xg680j .framer-63l251 { flex: none; flex-direction: column; gap: 16px; width: 100%; }\",\".framer-GwQhB.framer-v-1xg680j .framer-mkkkqk, .framer-GwQhB.framer-v-1xg680j .framer-48p4c3 { flex: none; gap: 16px; padding: 16px 40px 16px 40px; width: 100%; }\",\".framer-GwQhB.framer-v-1xg680j .framer-z3dktf { flex: none; gap: 15px; padding: 16px 40px 16px 40px; width: 100%; }\",\".framer-GwQhB.framer-v-1xg680j .framer-1hxdk3m { order: 0; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-GwQhB.framer-v-1xg680j .framer-1vmdo7m, .framer-GwQhB.framer-v-1xg680j .framer-63l251, .framer-GwQhB.framer-v-1xg680j .framer-mkkkqk, .framer-GwQhB.framer-v-1xg680j .framer-z3dktf, .framer-GwQhB.framer-v-1xg680j .framer-48p4c3 { gap: 0px; } .framer-GwQhB.framer-v-1xg680j .framer-1vmdo7m > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-GwQhB.framer-v-1xg680j .framer-1vmdo7m > :first-child, .framer-GwQhB.framer-v-1xg680j .framer-63l251 > :first-child, .framer-GwQhB.framer-v-1xg680j .framer-mkkkqk > :first-child, .framer-GwQhB.framer-v-1xg680j .framer-z3dktf > :first-child, .framer-GwQhB.framer-v-1xg680j .framer-48p4c3 > :first-child { margin-top: 0px; } .framer-GwQhB.framer-v-1xg680j .framer-1vmdo7m > :last-child, .framer-GwQhB.framer-v-1xg680j .framer-63l251 > :last-child, .framer-GwQhB.framer-v-1xg680j .framer-mkkkqk > :last-child, .framer-GwQhB.framer-v-1xg680j .framer-z3dktf > :last-child, .framer-GwQhB.framer-v-1xg680j .framer-48p4c3 > :last-child { margin-bottom: 0px; } .framer-GwQhB.framer-v-1xg680j .framer-63l251 > *, .framer-GwQhB.framer-v-1xg680j .framer-mkkkqk > *, .framer-GwQhB.framer-v-1xg680j .framer-48p4c3 > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-GwQhB.framer-v-1xg680j .framer-z3dktf > * { margin: 0px; margin-bottom: calc(15px / 2); margin-top: calc(15px / 2); } }\",...sharedStyle.css,'.framer-GwQhB[data-border=\"true\"]::after, .framer-GwQhB [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 362\n * @framerIntrinsicWidth 1152\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"1216px\",null,null]},\"NR8kNsJqU\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"1216px\",null,null]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerGqqwobEDt=withCSS(Component,css,\"framer-GwQhB\");export default FramerGqqwobEDt;FramerGqqwobEDt.displayName=\"Contact footer\";FramerGqqwobEDt.defaultProps={height:362,width:1152};addPropertyControls(FramerGqqwobEDt,{variant:{options:[\"nNm8N6pG1\",\"NR8kNsJqU\"],optionTitles:[\"Contact us footer\",\"Contact us footer mobile\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerGqqwobEDt,[{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\"}]},...PhosphorFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerGqqwobEDt\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"362\",\"framerIntrinsicWidth\":\"1152\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"1216px\\\",null,null]},\\\"NR8kNsJqU\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"1216px\\\",null,null]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./GqqwobEDt.map", "// Generated by Framer (8857874)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,Link,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/xZIKDE2n3PUVqR6AMmBD/oZvlDiZDBh02tWlU7n6a/S7JIaX3D9.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/zAMw5yt6iOKnWOnU4pdQ/nhce2tOZchB8BvrnT4Ld/WksKeqVre.js\";const enabledGestures={sEPKp7oTM:{hover:true},ual0xq12t:{hover:true}};const cycleOrder=[\"sEPKp7oTM\",\"wMCdsMmi0\",\"ual0xq12t\",\"NbAtF0QXx\"];const serializationHash=\"framer-U0IGJ\";const variantClassNames={NbAtF0QXx:\"framer-v-114jdjp\",sEPKp7oTM:\"framer-v-15vrocw\",ual0xq12t:\"framer-v-11fv1ct\",wMCdsMmi0:\"framer-v-33two6\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={delay:0,duration:.3,ease:[.12,.23,.5,1],type:\"tween\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={\"Footer Link\":\"sEPKp7oTM\",\"Tab Active\":\"NbAtF0QXx\",\"Variant 2\":\"wMCdsMmi0\",Tab:\"ual0xq12t\"};const getProps=({click,height,id,link,title,width,...props})=>{var _ref,_humanReadableVariantMap_props_variant,_ref1;return{...props,FqbNu_He0:link!==null&&link!==void 0?link:props.FqbNu_He0,K4izAbmn9:click!==null&&click!==void 0?click:props.K4izAbmn9,rA9CxB8kV:(_ref=title!==null&&title!==void 0?title:props.rA9CxB8kV)!==null&&_ref!==void 0?_ref:\"Add a Footer Link\",variant:(_ref1=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref1!==void 0?_ref1:\"sEPKp7oTM\"};};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,rA9CxB8kV,FqbNu_He0,K4izAbmn9,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"sEPKp7oTM\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTapi9pfhi=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(K4izAbmn9){const res=await K4izAbmn9(...args);if(res===false)return false;}});const ref1=React.useRef(null);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,children:/*#__PURE__*/_jsx(Link,{href:FqbNu_He0,openInNewTab:false,children:/*#__PURE__*/_jsx(motion.a,{...restProps,...gestureHandlers,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-15vrocw\",className,classNames)} framer-1c8ft9r`,\"data-framer-name\":\"Footer Link\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"sEPKp7oTM\",onTap:onTapi9pfhi,ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({\"sEPKp7oTM-hover\":{\"data-framer-name\":undefined},\"ual0xq12t-hover\":{\"data-framer-name\":undefined},NbAtF0QXx:{\"data-framer-name\":\"Tab Active\"},ual0xq12t:{\"data-framer-name\":\"Tab\"},wMCdsMmi0:{\"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-rzieet\",\"data-styles-preset\":\"S7JIaX3D9\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-ed541533-f9b3-4cd9-bcb9-0188d19eed95, rgb(104, 106, 110)))\"},children:\"Add a Footer Link\"})}),className:\"framer-rz5xk1\",\"data-framer-name\":\"Alternative 01\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"BLCN1TI6e\",style:{\"--extracted-r6o4lv\":\"var(--token-ed541533-f9b3-4cd9-bcb9-0188d19eed95, rgb(104, 106, 110))\"},text:rA9CxB8kV,variants:{\"sEPKp7oTM-hover\":{\"--extracted-r6o4lv\":\"var(--token-99020cb2-3d55-4aa6-9744-53967b10b4c8, rgb(40, 41, 42))\"},\"ual0xq12t-hover\":{\"--extracted-r6o4lv\":\"var(--token-13f39641-31da-4220-a14b-a92e44bb9b99, rgb(0, 54, 98))\"},NbAtF0QXx:{\"--extracted-r6o4lv\":\"var(--token-75d8d82a-9b14-4a3b-861d-239ac22fb073, rgb(169, 27, 20))\"},wMCdsMmi0:{\"--extracted-r6o4lv\":\"var(--token-13f39641-31da-4220-a14b-a92e44bb9b99, rgb(0, 54, 98))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"sEPKp7oTM-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-rzieet\",\"data-styles-preset\":\"S7JIaX3D9\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-99020cb2-3d55-4aa6-9744-53967b10b4c8, rgb(40, 41, 42)))\"},children:\"Add a Footer Link\"})})},\"ual0xq12t-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-rzieet\",\"data-styles-preset\":\"S7JIaX3D9\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-13f39641-31da-4220-a14b-a92e44bb9b99, rgb(0, 54, 98)))\"},children:\"Add a Footer Link\"})})},NbAtF0QXx:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-rkat84\",\"data-styles-preset\":\"WksKeqVre\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-75d8d82a-9b14-4a3b-861d-239ac22fb073, rgb(169, 27, 20)))\"},children:\"Add a Footer Link\"})})},wMCdsMmi0:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-rkat84\",\"data-styles-preset\":\"WksKeqVre\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-13f39641-31da-4220-a14b-a92e44bb9b99, rgb(0, 54, 98)))\"},children:\"Add a Footer Link\"})})}},baseVariant,gestureVariant)})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-U0IGJ.framer-1c8ft9r, .framer-U0IGJ .framer-1c8ft9r { display: block; }\",\".framer-U0IGJ.framer-15vrocw { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; text-decoration: none; width: 117px; }\",\".framer-U0IGJ .framer-rz5xk1 { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-U0IGJ.framer-15vrocw { gap: 0px; } .framer-U0IGJ.framer-15vrocw > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-U0IGJ.framer-15vrocw > :first-child { margin-left: 0px; } .framer-U0IGJ.framer-15vrocw > :last-child { margin-right: 0px; } }\",\".framer-U0IGJ.framer-v-11fv1ct.framer-15vrocw, .framer-U0IGJ.framer-v-114jdjp.framer-15vrocw { width: min-content; }\",\".framer-U0IGJ.framer-v-11fv1ct .framer-rz5xk1, .framer-U0IGJ.framer-v-114jdjp .framer-rz5xk1 { flex: none; white-space: pre; width: auto; }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 48\n * @framerIntrinsicWidth 117\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"wMCdsMmi0\":{\"layout\":[\"fixed\",\"auto\"]},\"ual0xq12t\":{\"layout\":[\"auto\",\"auto\"]},\"NbAtF0QXx\":{\"layout\":[\"auto\",\"auto\"]},\"u0WrGEZH5\":{\"layout\":[\"fixed\",\"auto\"]},\"oWS1bd3zJ\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"rA9CxB8kV\":\"title\",\"FqbNu_He0\":\"link\",\"K4izAbmn9\":\"click\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerIAxc3cOpF=withCSS(Component,css,\"framer-U0IGJ\");export default FramerIAxc3cOpF;FramerIAxc3cOpF.displayName=\"Button / Footer Link\";FramerIAxc3cOpF.defaultProps={height:48,width:117};addPropertyControls(FramerIAxc3cOpF,{variant:{options:[\"sEPKp7oTM\",\"wMCdsMmi0\",\"ual0xq12t\",\"NbAtF0QXx\"],optionTitles:[\"Footer Link\",\"Variant 2\",\"Tab\",\"Tab Active\"],title:\"Variant\",type:ControlType.Enum},rA9CxB8kV:{defaultValue:\"Add a Footer Link\",displayTextArea:false,title:\"Title\",type:ControlType.String},FqbNu_He0:{title:\"Link\",type:ControlType.Link},K4izAbmn9:{title:\"Click\",type:ControlType.EventHandler}});addFonts(FramerIAxc3cOpF,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerIAxc3cOpF\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"wMCdsMmi0\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ual0xq12t\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"NbAtF0QXx\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"u0WrGEZH5\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"oWS1bd3zJ\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"48\",\"framerVariables\":\"{\\\"rA9CxB8kV\\\":\\\"title\\\",\\\"FqbNu_He0\\\":\\\"link\\\",\\\"K4izAbmn9\\\":\\\"click\\\"}\",\"framerIntrinsicWidth\":\"117\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./IAxc3cOpF.map", "// Generated by Framer (575e68f)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,Link,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/p8dptk4UIND8hbFWz9V7/Phosphor.js\";const PhosphorFonts=getFonts(Phosphor);const enabledGestures={mL6LzXDgv:{hover:true,pressed:true},tiBXIR6Vj:{hover:true,pressed:true},u7_jWHFr4:{hover:true,pressed:true}};const cycleOrder=[\"tiBXIR6Vj\",\"u7_jWHFr4\",\"mL6LzXDgv\"];const serializationHash=\"framer-l9jTm\";const variantClassNames={mL6LzXDgv:\"framer-v-lnpeun\",tiBXIR6Vj:\"framer-v-1fordzg\",u7_jWHFr4:\"framer-v-9xi484\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={delay:0,duration:.3,ease:[.12,.23,.5,1],type:\"tween\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={\"Social Link\":\"tiBXIR6Vj\",\"Variant 2\":\"u7_jWHFr4\",\"Variant 3\":\"mL6LzXDgv\"};const getProps=({height,id,link,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:\"tiBXIR6Vj\",VrHVEIhoJ:link!==null&&link!==void 0?link:props.VrHVEIhoJ};};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,VrHVEIhoJ,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"tiBXIR6Vj\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:VrHVEIhoJ,openInNewTab:true,children:/*#__PURE__*/_jsx(motion.a,{...restProps,...gestureHandlers,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-1fordzg\",className,classNames)} framer-1s08jqi`,\"data-border\":true,\"data-framer-name\":\"Social Link\",layoutDependency:layoutDependency,layoutId:\"tiBXIR6Vj\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--border-bottom-width\":\"1.5px\",\"--border-color\":\"var(--token-50815380-ecfc-4eba-b0fe-53964bd8242b, rgb(218, 219, 220))\",\"--border-left-width\":\"1.5px\",\"--border-right-width\":\"1.5px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1.5px\",backgroundColor:\"var(--token-69268266-8d11-4cae-857f-b2432f07a7b6, rgb(255, 255, 255))\",borderBottomLeftRadius:6,borderBottomRightRadius:6,borderTopLeftRadius:6,borderTopRightRadius:6,...style},variants:{\"mL6LzXDgv-hover\":{backgroundColor:\"var(--token-1cab753f-7df3-46fa-83a8-4e7ffa7f1580, rgb(234, 234, 235))\"},\"mL6LzXDgv-pressed\":{backgroundColor:\"rgb(200, 189, 166)\"},\"tiBXIR6Vj-hover\":{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",backgroundColor:\"rgb(248, 246, 242)\"},\"tiBXIR6Vj-pressed\":{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",backgroundColor:\"rgb(200, 189, 166)\"},\"u7_jWHFr4-hover\":{backgroundColor:\"var(--token-1cab753f-7df3-46fa-83a8-4e7ffa7f1580, rgb(234, 234, 235))\"},\"u7_jWHFr4-pressed\":{backgroundColor:\"rgb(200, 189, 166)\"}},...addPropertyOverrides({\"mL6LzXDgv-hover\":{\"data-framer-name\":undefined},\"mL6LzXDgv-pressed\":{\"data-framer-name\":undefined},\"tiBXIR6Vj-hover\":{\"data-framer-name\":undefined},\"tiBXIR6Vj-pressed\":{\"data-framer-name\":undefined},\"u7_jWHFr4-hover\":{\"data-framer-name\":undefined},\"u7_jWHFr4-pressed\":{\"data-framer-name\":undefined},mL6LzXDgv:{\"data-framer-name\":\"Variant 3\"},u7_jWHFr4:{\"data-framer-name\":\"Variant 2\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-17r8rgi-container\",layoutDependency:layoutDependency,layoutId:\"T0C4D2YBl-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-13f39641-31da-4220-a14b-a92e44bb9b99, rgb(0, 54, 98))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"LinkedinLogo\",id:\"T0C4D2YBl\",layoutId:\"T0C4D2YBl\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\",...addPropertyOverrides({mL6LzXDgv:{iconSelection:\"FacebookLogo\"},u7_jWHFr4:{iconSelection:\"InstagramLogo\"}},baseVariant,gestureVariant)})})})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-l9jTm.framer-1s08jqi, .framer-l9jTm .framer-1s08jqi { display: block; }\",\".framer-l9jTm.framer-1fordzg { align-content: flex-start; align-items: flex-start; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 8px; position: relative; text-decoration: none; width: min-content; }\",\".framer-l9jTm .framer-17r8rgi-container { flex: none; height: 24px; position: relative; width: 24px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-l9jTm.framer-1fordzg { gap: 0px; } .framer-l9jTm.framer-1fordzg > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-l9jTm.framer-1fordzg > :first-child { margin-left: 0px; } .framer-l9jTm.framer-1fordzg > :last-child { margin-right: 0px; } }\",'.framer-l9jTm[data-border=\"true\"]::after, .framer-l9jTm [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 40\n * @framerIntrinsicWidth 40\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"u7_jWHFr4\":{\"layout\":[\"auto\",\"auto\"]},\"mL6LzXDgv\":{\"layout\":[\"auto\",\"auto\"]},\"fGlKU5FTy\":{\"layout\":[\"auto\",\"auto\"]},\"wDGofNVHx\":{\"layout\":[\"auto\",\"auto\"]},\"k_gNrtoJA\":{\"layout\":[\"auto\",\"auto\"]},\"MLmLLFJHs\":{\"layout\":[\"auto\",\"auto\"]},\"kLAaWh5K1\":{\"layout\":[\"auto\",\"auto\"]},\"ZYOUjBkoC\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"VrHVEIhoJ\":\"link\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerjBH_xgmPC=withCSS(Component,css,\"framer-l9jTm\");export default FramerjBH_xgmPC;FramerjBH_xgmPC.displayName=\"Button / Social Link\";FramerjBH_xgmPC.defaultProps={height:40,width:40};addPropertyControls(FramerjBH_xgmPC,{variant:{options:[\"tiBXIR6Vj\",\"u7_jWHFr4\",\"mL6LzXDgv\"],optionTitles:[\"Social Link\",\"Variant 2\",\"Variant 3\"],title:\"Variant\",type:ControlType.Enum},VrHVEIhoJ:{title:\"Link\",type:ControlType.Link}});addFonts(FramerjBH_xgmPC,[{explicitInter:true,fonts:[]},...PhosphorFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerjBH_xgmPC\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerVariables\":\"{\\\"VrHVEIhoJ\\\":\\\"link\\\"}\",\"framerIntrinsicHeight\":\"40\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"u7_jWHFr4\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"mL6LzXDgv\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"fGlKU5FTy\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"wDGofNVHx\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"k_gNrtoJA\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"MLmLLFJHs\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"kLAaWh5K1\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"ZYOUjBkoC\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"40\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./jBH_xgmPC.map", "// Generated by Framer (21e8ff0)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,ResolveLinks,RichText,useComponentViewport,useLocaleInfo,useRouter,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import CookieBanner from\"https://framerusercontent.com/modules/GbX8S6ghmyszcS2GLR2F/CUUcuP1woK9faEWrL9ZQ/Cookies.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/gJtwAroghvSsplTVXB9L/goERBj7J3jmeWYGmJ3f6/M6T3Bm2NS.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/xZIKDE2n3PUVqR6AMmBD/oZvlDiZDBh02tWlU7n6a/S7JIaX3D9.js\";import ContactFooter from\"https://framerusercontent.com/modules/VIXaYrV751CG6n66BWwq/rc7SIAOMLRYvCv7aYfUS/GqqwobEDt.js\";import ButtonFooterLink from\"https://framerusercontent.com/modules/ziBxSO22DwyDWsMVWiMn/W1DDWM5hsMNeR6XovZvI/IAxc3cOpF.js\";import ButtonSocialLink from\"https://framerusercontent.com/modules/opAsfv3FZUU2D10kIO7O/vXeIfRCrCmYZMmfqOMK3/jBH_xgmPC.js\";const ContactFooterFonts=getFonts(ContactFooter);const MotionDivWithFX=withFX(motion.div);const ButtonFooterLinkFonts=getFonts(ButtonFooterLink);const ButtonSocialLinkFonts=getFonts(ButtonSocialLink);const CookieBannerFonts=getFonts(CookieBanner);const cycleOrder=[\"q7FfmAV82\",\"h5N8ld_5d\",\"QVlN8o90y\",\"FVP9QM1Ty\",\"gLjDmy05C\",\"eKjGXRSJg\"];const serializationHash=\"framer-hqh6Z\";const variantClassNames={eKjGXRSJg:\"framer-v-13e587x\",FVP9QM1Ty:\"framer-v-b2i42b\",gLjDmy05C:\"framer-v-13odlbc\",h5N8ld_5d:\"framer-v-19nsuq5\",q7FfmAV82:\"framer-v-16449hz\",QVlN8o90y:\"framer-v-bcx1rr\"};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 animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:50};const transition2={delay:.1,duration:1,ease:[.44,0,.56,1],type:\"tween\"};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:50};const transition3={delay:.2,duration:1,ease:[.44,0,.56,1],type:\"tween\"};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition3,x:0,y:50};const transition4={delay:0,duration:1,ease:[.44,0,.56,1],type:\"tween\"};const animation3={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition4,x:0,y:50};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"No footer desktop\":\"FVP9QM1Ty\",\"no footer mobile\":\"eKjGXRSJg\",\"No footer tablet\":\"gLjDmy05C\",Desktop:\"q7FfmAV82\",Phone:\"QVlN8o90y\",Tablet:\"h5N8ld_5d\"};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:\"q7FfmAV82\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"q7FfmAV82\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const isDisplayed=()=>{if([\"FVP9QM1Ty\",\"gLjDmy05C\",\"eKjGXRSJg\"].includes(baseVariant))return false;return true;};const router=useRouter();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,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-16449hz\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"q7FfmAV82\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"rgb(255, 255, 255)\",...style},...addPropertyOverrides({eKjGXRSJg:{\"data-framer-name\":\"no footer mobile\"},FVP9QM1Ty:{\"data-framer-name\":\"No footer desktop\"},gLjDmy05C:{\"data-framer-name\":\"No footer tablet\"},h5N8ld_5d:{\"data-framer-name\":\"Tablet\"},QVlN8o90y:{\"data-framer-name\":\"Phone\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:362,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+48+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1575)-96-1933)/2+0+0),...addPropertyOverrides({eKjGXRSJg:{width:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 48px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-64-1279.1)/2+0+0)},FVP9QM1Ty:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+48+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1520)-96-1145)/2+0+0)},gLjDmy05C:{width:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 48px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-48-1201)/2+0+0)},h5N8ld_5d:{width:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 48px)`,y:undefined},QVlN8o90y:{width:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 48px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||3323)-64-3871.1)/2+0+0)}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ak83gh-container\",layoutDependency:layoutDependency,layoutId:\"Z7vLtf3n9-container\",children:/*#__PURE__*/_jsx(ContactFooter,{height:\"100%\",id:\"Z7vLtf3n9\",layoutId:\"Z7vLtf3n9\",variant:\"nNm8N6pG1\",width:\"100%\",...addPropertyOverrides({eKjGXRSJg:{style:{width:\"100%\"},variant:\"NR8kNsJqU\"},gLjDmy05C:{style:{width:\"100%\"}},h5N8ld_5d:{style:{width:\"100%\"}},QVlN8o90y:{style:{width:\"100%\"},variant:\"NR8kNsJqU\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1h1tx7j\",\"data-framer-name\":\"Container\",layoutDependency:layoutDependency,layoutId:\"ycWlVnrp_\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-14dk0vw\",\"data-framer-name\":\"Title\",layoutDependency:layoutDependency,layoutId:\"VKQF1VkfH\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ia67el\",\"data-framer-name\":\"Title\",layoutDependency:layoutDependency,layoutId:\"AQ7TirLQU\",children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"augiA20Il\"},children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fit\",intrinsicHeight:40,intrinsicWidth:158,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+48+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1575)-96-1933)/2+362+10)+0+0+0+0+0+0),pixelHeight:358,pixelWidth:2463,positionX:\"center\",positionY:\"center\",sizes:\"178px\",src:\"https://framerusercontent.com/images/3EJr7IeNWF0cVeN6HM1cB9Njyw.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/3EJr7IeNWF0cVeN6HM1cB9Njyw.png?scale-down-to=512 512w,https://framerusercontent.com/images/3EJr7IeNWF0cVeN6HM1cB9Njyw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/3EJr7IeNWF0cVeN6HM1cB9Njyw.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/3EJr7IeNWF0cVeN6HM1cB9Njyw.png 2463w\"},className:\"framer-169mljo framer-gee9se\",\"data-framer-name\":\"Logo\",layoutDependency:layoutDependency,layoutId:\"AaxrKyEXb\",...addPropertyOverrides({eKjGXRSJg:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:40,intrinsicWidth:158,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-64-1279.1)/2+362+10)+0+0+0+0+0+0),pixelHeight:358,pixelWidth:2463,positionX:\"center\",positionY:\"center\",sizes:\"178px\",src:\"https://framerusercontent.com/images/3EJr7IeNWF0cVeN6HM1cB9Njyw.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/3EJr7IeNWF0cVeN6HM1cB9Njyw.png?scale-down-to=512 512w,https://framerusercontent.com/images/3EJr7IeNWF0cVeN6HM1cB9Njyw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/3EJr7IeNWF0cVeN6HM1cB9Njyw.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/3EJr7IeNWF0cVeN6HM1cB9Njyw.png 2463w\"}},FVP9QM1Ty:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:40,intrinsicWidth:158,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+48+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1520)-96-1145)/2+362+10)+0+0+0+0+0+0),pixelHeight:358,pixelWidth:2463,positionX:\"center\",positionY:\"center\",sizes:\"178px\",src:\"https://framerusercontent.com/images/3EJr7IeNWF0cVeN6HM1cB9Njyw.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/3EJr7IeNWF0cVeN6HM1cB9Njyw.png?scale-down-to=512 512w,https://framerusercontent.com/images/3EJr7IeNWF0cVeN6HM1cB9Njyw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/3EJr7IeNWF0cVeN6HM1cB9Njyw.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/3EJr7IeNWF0cVeN6HM1cB9Njyw.png 2463w\"}},gLjDmy05C:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:40,intrinsicWidth:158,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-48-1201)/2+362+10)+0+0+0+0+0+0),pixelHeight:358,pixelWidth:2463,positionX:\"center\",positionY:\"center\",sizes:\"178px\",src:\"https://framerusercontent.com/images/3EJr7IeNWF0cVeN6HM1cB9Njyw.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/3EJr7IeNWF0cVeN6HM1cB9Njyw.png?scale-down-to=512 512w,https://framerusercontent.com/images/3EJr7IeNWF0cVeN6HM1cB9Njyw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/3EJr7IeNWF0cVeN6HM1cB9Njyw.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/3EJr7IeNWF0cVeN6HM1cB9Njyw.png 2463w\"}},h5N8ld_5d:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:40,intrinsicWidth:158,pixelHeight:358,pixelWidth:2463,positionX:\"center\",positionY:\"center\",sizes:\"178px\",src:\"https://framerusercontent.com/images/3EJr7IeNWF0cVeN6HM1cB9Njyw.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/3EJr7IeNWF0cVeN6HM1cB9Njyw.png?scale-down-to=512 512w,https://framerusercontent.com/images/3EJr7IeNWF0cVeN6HM1cB9Njyw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/3EJr7IeNWF0cVeN6HM1cB9Njyw.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/3EJr7IeNWF0cVeN6HM1cB9Njyw.png 2463w\"}},QVlN8o90y:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:40,intrinsicWidth:158,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||3323)-64-3871.1)/2+362+10)+0+0+0+0+0+0),pixelHeight:358,pixelWidth:2463,positionX:\"center\",positionY:\"center\",sizes:\"178px\",src:\"https://framerusercontent.com/images/3EJr7IeNWF0cVeN6HM1cB9Njyw.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/3EJr7IeNWF0cVeN6HM1cB9Njyw.png?scale-down-to=512 512w,https://framerusercontent.com/images/3EJr7IeNWF0cVeN6HM1cB9Njyw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/3EJr7IeNWF0cVeN6HM1cB9Njyw.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/3EJr7IeNWF0cVeN6HM1cB9Njyw.png 2463w\"}}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-rzieet\",\"data-styles-preset\":\"S7JIaX3D9\",children:\"eStore Factory is a full-service Amazon agency dedicated to building end-to-end strategies for brands of all sizes.\\xa0\"})}),className:\"framer-a0f5d1\",\"data-framer-name\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam ut lorem quis lectus molestie malesuada.\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"K5vZ_Ozit\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-xvu9jm\",layoutDependency:layoutDependency,layoutId:\"SpkV703l2\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:86.4,intrinsicWidth:105.6,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+48+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1575)-96-1933)/2+362+10)+0+0+0+54.900000000000006+.45909090909089656),pixelHeight:108,pixelWidth:132,src:\"https://framerusercontent.com/images/FTbFsygBTCEZtQhWEi9S0rzFj4.png\"},className:\"framer-1j8h9tx\",\"data-framer-name\":\"$12_1\",layoutDependency:layoutDependency,layoutId:\"niMwiTjw5\",...addPropertyOverrides({eKjGXRSJg:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:86.4,intrinsicWidth:105.6,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-64-1279.1)/2+362+10)+0+0+0+205+.45909090909089656),pixelHeight:108,pixelWidth:132,src:\"https://framerusercontent.com/images/FTbFsygBTCEZtQhWEi9S0rzFj4.png\"}},FVP9QM1Ty:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:86.4,intrinsicWidth:105.6,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+48+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1520)-96-1145)/2+362+10)+0+0+0+54.900000000000006+.45909090909089656),pixelHeight:108,pixelWidth:132,src:\"https://framerusercontent.com/images/FTbFsygBTCEZtQhWEi9S0rzFj4.png\"}},gLjDmy05C:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:86.4,intrinsicWidth:105.6,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-48-1201)/2+362+10)+0+0+0+54.900000000000006+.45909090909089656),pixelHeight:108,pixelWidth:132,src:\"https://framerusercontent.com/images/FTbFsygBTCEZtQhWEi9S0rzFj4.png\"}},h5N8ld_5d:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:86.4,intrinsicWidth:105.6,pixelHeight:108,pixelWidth:132,src:\"https://framerusercontent.com/images/FTbFsygBTCEZtQhWEi9S0rzFj4.png\"}},QVlN8o90y:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:86.4,intrinsicWidth:105.6,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||3323)-64-3871.1)/2+362+10)+0+0+0+205+.45909090909089656),pixelHeight:108,pixelWidth:132,src:\"https://framerusercontent.com/images/FTbFsygBTCEZtQhWEi9S0rzFj4.png\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:77.6,intrinsicWidth:96,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+48+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1575)-96-1933)/2+362+10)+0+0+0+54.900000000000006+0),pixelHeight:97,pixelWidth:120,src:\"https://framerusercontent.com/images/bga2TsY1U0z56lmcv43dYLdOTY.png\"},className:\"framer-s9qbph\",\"data-framer-name\":\"$11_1\",layoutDependency:layoutDependency,layoutId:\"fVX3pKo5X\",...addPropertyOverrides({eKjGXRSJg:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:77.6,intrinsicWidth:96,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-64-1279.1)/2+362+10)+0+0+0+205+0),pixelHeight:97,pixelWidth:120,src:\"https://framerusercontent.com/images/bga2TsY1U0z56lmcv43dYLdOTY.png\"}},FVP9QM1Ty:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:77.6,intrinsicWidth:96,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+48+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1520)-96-1145)/2+362+10)+0+0+0+54.900000000000006+0),pixelHeight:97,pixelWidth:120,src:\"https://framerusercontent.com/images/bga2TsY1U0z56lmcv43dYLdOTY.png\"}},gLjDmy05C:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:77.6,intrinsicWidth:96,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-48-1201)/2+362+10)+0+0+0+54.900000000000006+0),pixelHeight:97,pixelWidth:120,src:\"https://framerusercontent.com/images/bga2TsY1U0z56lmcv43dYLdOTY.png\"}},h5N8ld_5d:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:77.6,intrinsicWidth:96,pixelHeight:97,pixelWidth:120,src:\"https://framerusercontent.com/images/bga2TsY1U0z56lmcv43dYLdOTY.png\"}},QVlN8o90y:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:77.6,intrinsicWidth:96,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||3323)-64-3871.1)/2+362+10)+0+0+0+205+0),pixelHeight:97,pixelWidth:120,src:\"https://framerusercontent.com/images/bga2TsY1U0z56lmcv43dYLdOTY.png\"}}},baseVariant,gestureVariant)})]})]}),isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-18liiap\",\"data-framer-name\":\"Divider\",layoutDependency:layoutDependency,layoutId:\"rhTYiQddX\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-6j87op\",\"data-framer-name\":\"Line\",layoutDependency:layoutDependency,layoutId:\"ju_joFbVX\",style:{backgroundColor:\"var(--token-1cab753f-7df3-46fa-83a8-4e7ffa7f1580, rgb(234, 234, 235))\"}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-by73mn\",layoutDependency:layoutDependency,layoutId:\"aqAJjtu1O\",style:{backgroundColor:\"var(--token-1cab753f-7df3-46fa-83a8-4e7ffa7f1580, rgb(234, 234, 235))\",borderBottomLeftRadius:99,borderBottomRightRadius:99,borderTopLeftRadius:99,borderTopRightRadius:99}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1n09jz0\",\"data-framer-name\":\"Line\",layoutDependency:layoutDependency,layoutId:\"NG5flFTzi\",style:{backgroundColor:\"var(--token-1cab753f-7df3-46fa-83a8-4e7ffa7f1580, rgb(234, 234, 235))\"}})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1i4w1d\",layoutDependency:layoutDependency,layoutId:\"OS7BDm05u\",children:isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-56s2o9\",layoutDependency:layoutDependency,layoutId:\"S07IUDXzU\",children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1dwddv8\",\"data-framer-name\":\"Grid\",layoutDependency:layoutDependency,layoutId:\"zOcsAn5ji\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1lpy6x1\",\"data-framer-name\":\"Menu\",layoutDependency:layoutDependency,layoutId:\"dcTJMjJiG\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1nensji\",\"data-styles-preset\":\"M6T3Bm2NS\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-26228e18-5b63-4868-a865-233a860834a5, rgb(5, 5, 5)))\"},children:\"SERVICES FOR AMAZON\"})}),className:\"framer-10gej9r\",\"data-framer-name\":\"Insurances\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"GPsob_E3W\",style:{\"--extracted-r6o4lv\":\"var(--token-26228e18-5b63-4868-a865-233a860834a5, rgb(5, 5, 5))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"kQ3KqEvBa\"},implicitPathVariables:undefined},{href:{webPageId:\"kQ3KqEvBa\"},implicitPathVariables:undefined},{href:{webPageId:\"kQ3KqEvBa\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,width:`max((max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 48px, 1px) - 108px) / 4, 1px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+48+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1575)-96-1933)/2+362+10)+0+265+0+0+0+0+0+0+40,...addPropertyOverrides({h5N8ld_5d:{width:`max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 84px) / 2, 1px)`,y:undefined},QVlN8o90y:{width:`max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 48px, 1px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||3323)-64-3871.1)/2+362+10)+0+383.1+0+0+0+0+0+0+0+40}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-pssnlt-container\",layoutDependency:layoutDependency,layoutId:\"PfqBHejgy-container\",children:/*#__PURE__*/_jsx(ButtonFooterLink,{FqbNu_He0:resolvedLinks[0],height:\"100%\",id:\"PfqBHejgy\",layoutId:\"PfqBHejgy\",rA9CxB8kV:\"SEO Consultancy for Amazon\",style:{height:\"100%\",width:\"100%\"},variant:\"sEPKp7oTM\",width:\"100%\",...addPropertyOverrides({h5N8ld_5d:{FqbNu_He0:resolvedLinks[1]},QVlN8o90y:{FqbNu_He0:resolvedLinks[2]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"ARfdTus9Y\"},implicitPathVariables:undefined},{href:{webPageId:\"ARfdTus9Y\"},implicitPathVariables:undefined},{href:{webPageId:\"ARfdTus9Y\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,width:`max((max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 48px, 1px) - 108px) / 4, 1px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+48+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1575)-96-1933)/2+362+10)+0+265+0+0+0+0+0+0+80,...addPropertyOverrides({h5N8ld_5d:{width:`max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 84px) / 2, 1px)`,y:undefined},QVlN8o90y:{width:`max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 48px, 1px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||3323)-64-3871.1)/2+362+10)+0+383.1+0+0+0+0+0+0+0+80}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-19pe0i7-container\",layoutDependency:layoutDependency,layoutId:\"g_QJM1a5D-container\",children:/*#__PURE__*/_jsx(ButtonFooterLink,{FqbNu_He0:resolvedLinks1[0],height:\"100%\",id:\"g_QJM1a5D\",layoutId:\"g_QJM1a5D\",rA9CxB8kV:\"Sponsored Ads(PPC) for Amazon\",style:{height:\"100%\",width:\"100%\"},variant:\"sEPKp7oTM\",width:\"100%\",...addPropertyOverrides({h5N8ld_5d:{FqbNu_He0:resolvedLinks1[1]},QVlN8o90y:{FqbNu_He0:resolvedLinks1[2]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"kiH8q1aId\"},implicitPathVariables:undefined},{href:{webPageId:\"kiH8q1aId\"},implicitPathVariables:undefined},{href:{webPageId:\"kiH8q1aId\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,width:`max((max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 48px, 1px) - 108px) / 4, 1px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+48+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1575)-96-1933)/2+362+10)+0+265+0+0+0+0+0+0+120,...addPropertyOverrides({h5N8ld_5d:{width:`max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 84px) / 2, 1px)`,y:undefined},QVlN8o90y:{width:`max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 48px, 1px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||3323)-64-3871.1)/2+362+10)+0+383.1+0+0+0+0+0+0+0+120}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-6kraal-container\",layoutDependency:layoutDependency,layoutId:\"QICXXO5gN-container\",children:/*#__PURE__*/_jsx(ButtonFooterLink,{FqbNu_He0:resolvedLinks2[0],height:\"100%\",id:\"QICXXO5gN\",layoutId:\"QICXXO5gN\",rA9CxB8kV:\"Account Management for Amazon\",style:{height:\"100%\",width:\"100%\"},variant:\"sEPKp7oTM\",width:\"100%\",...addPropertyOverrides({h5N8ld_5d:{FqbNu_He0:resolvedLinks2[1]},QVlN8o90y:{FqbNu_He0:resolvedLinks2[2]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"l4Rmcbxiv\"},implicitPathVariables:undefined},{href:{webPageId:\"l4Rmcbxiv\"},implicitPathVariables:undefined},{href:{webPageId:\"l4Rmcbxiv\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,width:`max((max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 48px, 1px) - 108px) / 4, 1px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+48+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1575)-96-1933)/2+362+10)+0+265+0+0+0+0+0+0+160,...addPropertyOverrides({h5N8ld_5d:{width:`max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 84px) / 2, 1px)`,y:undefined},QVlN8o90y:{width:`max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 48px, 1px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||3323)-64-3871.1)/2+362+10)+0+383.1+0+0+0+0+0+0+0+160}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-zxu4qg-container\",layoutDependency:layoutDependency,layoutId:\"iGym3SqaB-container\",children:/*#__PURE__*/_jsx(ButtonFooterLink,{FqbNu_He0:resolvedLinks3[0],height:\"100%\",id:\"iGym3SqaB\",layoutId:\"iGym3SqaB\",rA9CxB8kV:\"Account Audit for Amazon\",style:{height:\"100%\",width:\"100%\"},variant:\"sEPKp7oTM\",width:\"100%\",...addPropertyOverrides({h5N8ld_5d:{FqbNu_He0:resolvedLinks3[1]},QVlN8o90y:{FqbNu_He0:resolvedLinks3[2]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"OghdrVL96\"},implicitPathVariables:undefined},{href:{webPageId:\"OghdrVL96\"},implicitPathVariables:undefined},{href:{webPageId:\"OghdrVL96\"},implicitPathVariables:undefined}],children:resolvedLinks4=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,width:`max((max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 48px, 1px) - 108px) / 4, 1px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+48+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1575)-96-1933)/2+362+10)+0+265+0+0+0+0+0+0+200,...addPropertyOverrides({h5N8ld_5d:{width:`max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 84px) / 2, 1px)`,y:undefined},QVlN8o90y:{width:`max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 48px, 1px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||3323)-64-3871.1)/2+362+10)+0+383.1+0+0+0+0+0+0+0+200}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-ijd6ua-container\",layoutDependency:layoutDependency,layoutId:\"X6hAkf5dY-container\",children:/*#__PURE__*/_jsx(ButtonFooterLink,{FqbNu_He0:resolvedLinks4[0],height:\"100%\",id:\"X6hAkf5dY\",layoutId:\"X6hAkf5dY\",rA9CxB8kV:\"Marketing Services for Amazon\",style:{height:\"100%\",width:\"100%\"},variant:\"sEPKp7oTM\",width:\"100%\",...addPropertyOverrides({h5N8ld_5d:{FqbNu_He0:resolvedLinks4[1]},QVlN8o90y:{FqbNu_He0:resolvedLinks4[2]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"tmlremblP\"},implicitPathVariables:undefined},{href:{webPageId:\"tmlremblP\"},implicitPathVariables:undefined},{href:{webPageId:\"tmlremblP\"},implicitPathVariables:undefined}],children:resolvedLinks5=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,width:`max((max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 48px, 1px) - 108px) / 4, 1px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+48+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1575)-96-1933)/2+362+10)+0+265+0+0+0+0+0+0+240,...addPropertyOverrides({h5N8ld_5d:{width:`max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 84px) / 2, 1px)`,y:undefined},QVlN8o90y:{width:`max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 48px, 1px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||3323)-64-3871.1)/2+362+10)+0+383.1+0+0+0+0+0+0+0+240}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1aft4ph-container\",layoutDependency:layoutDependency,layoutId:\"A3bPHctXO-container\",children:/*#__PURE__*/_jsx(ButtonFooterLink,{FqbNu_He0:resolvedLinks5[0],height:\"100%\",id:\"A3bPHctXO\",layoutId:\"A3bPHctXO\",rA9CxB8kV:\"FBA Reimbursements\",style:{height:\"100%\",width:\"100%\"},variant:\"sEPKp7oTM\",width:\"100%\",...addPropertyOverrides({h5N8ld_5d:{FqbNu_He0:resolvedLinks5[1]},QVlN8o90y:{FqbNu_He0:resolvedLinks5[2]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"Twkgw_P_k\"},implicitPathVariables:undefined},{href:{webPageId:\"Twkgw_P_k\"},implicitPathVariables:undefined},{href:{webPageId:\"Twkgw_P_k\"},implicitPathVariables:undefined}],children:resolvedLinks6=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,width:`max((max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 48px, 1px) - 108px) / 4, 1px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+48+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1575)-96-1933)/2+362+10)+0+265+0+0+0+0+0+0+280,...addPropertyOverrides({h5N8ld_5d:{width:`max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 84px) / 2, 1px)`,y:undefined},QVlN8o90y:{width:`max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 48px, 1px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||3323)-64-3871.1)/2+362+10)+0+383.1+0+0+0+0+0+0+0+280}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-ekvnus-container\",layoutDependency:layoutDependency,layoutId:\"BV1xI4BXp-container\",children:/*#__PURE__*/_jsx(ButtonFooterLink,{FqbNu_He0:resolvedLinks6[0],height:\"100%\",id:\"BV1xI4BXp\",layoutId:\"BV1xI4BXp\",rA9CxB8kV:\"Amazon Product Ranking\",style:{height:\"100%\",width:\"100%\"},variant:\"sEPKp7oTM\",width:\"100%\",...addPropertyOverrides({h5N8ld_5d:{FqbNu_He0:resolvedLinks6[1]},QVlN8o90y:{FqbNu_He0:resolvedLinks6[2]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"yUvvsJNj1\"},implicitPathVariables:undefined},{href:{webPageId:\"yUvvsJNj1\"},implicitPathVariables:undefined},{href:{webPageId:\"yUvvsJNj1\"},implicitPathVariables:undefined}],children:resolvedLinks7=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,width:`max((max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 48px, 1px) - 108px) / 4, 1px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+48+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1575)-96-1933)/2+362+10)+0+265+0+0+0+0+0+0+320,...addPropertyOverrides({h5N8ld_5d:{width:`max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 84px) / 2, 1px)`,y:undefined},QVlN8o90y:{width:`max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 48px, 1px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||3323)-64-3871.1)/2+362+10)+0+383.1+0+0+0+0+0+0+0+320}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-190zqen-container\",layoutDependency:layoutDependency,layoutId:\"CX0cV8C5p-container\",children:/*#__PURE__*/_jsx(ButtonFooterLink,{FqbNu_He0:resolvedLinks7[0],height:\"100%\",id:\"CX0cV8C5p\",layoutId:\"CX0cV8C5p\",rA9CxB8kV:\"Amazon Seller Central Services\",style:{height:\"100%\",width:\"100%\"},variant:\"sEPKp7oTM\",width:\"100%\",...addPropertyOverrides({h5N8ld_5d:{FqbNu_He0:resolvedLinks7[1]},QVlN8o90y:{FqbNu_He0:resolvedLinks7[2]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"edH0SDYBA\"},implicitPathVariables:undefined},{href:{webPageId:\"edH0SDYBA\"},implicitPathVariables:undefined},{href:{webPageId:\"edH0SDYBA\"},implicitPathVariables:undefined}],children:resolvedLinks8=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,width:`max((max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 48px, 1px) - 108px) / 4, 1px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+48+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1575)-96-1933)/2+362+10)+0+265+0+0+0+0+0+0+360,...addPropertyOverrides({h5N8ld_5d:{width:`max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 84px) / 2, 1px)`,y:undefined},QVlN8o90y:{width:`max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 48px, 1px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||3323)-64-3871.1)/2+362+10)+0+383.1+0+0+0+0+0+0+0+360}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-f1a5ib-container\",layoutDependency:layoutDependency,layoutId:\"NmvumsG6J-container\",children:/*#__PURE__*/_jsx(ButtonFooterLink,{FqbNu_He0:resolvedLinks8[0],height:\"100%\",id:\"NmvumsG6J\",layoutId:\"NmvumsG6J\",rA9CxB8kV:\"Amazon FBA Consulting Services\",style:{height:\"100%\",width:\"100%\"},variant:\"sEPKp7oTM\",width:\"100%\",...addPropertyOverrides({h5N8ld_5d:{FqbNu_He0:resolvedLinks8[1]},QVlN8o90y:{FqbNu_He0:resolvedLinks8[2]}},baseVariant,gestureVariant)})})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-zhrbu7\",\"data-framer-name\":\"Menu\",layoutDependency:layoutDependency,layoutId:\"LQwYnNIsR\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1yw2mp9\",layoutDependency:layoutDependency,layoutId:\"m2qxucu7t\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1nensji\",\"data-styles-preset\":\"M6T3Bm2NS\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-26228e18-5b63-4868-a865-233a860834a5, rgb(5, 5, 5)))\"},children:\"Product Setup ON AMAZON\"})}),className:\"framer-1wrnrrr\",\"data-framer-name\":\"Company\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"EezzWfVWN\",style:{\"--extracted-r6o4lv\":\"var(--token-26228e18-5b63-4868-a865-233a860834a5, rgb(5, 5, 5))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"M7xxSbNAz\"},implicitPathVariables:undefined},{href:{webPageId:\"M7xxSbNAz\"},implicitPathVariables:undefined},{href:{webPageId:\"M7xxSbNAz\"},implicitPathVariables:undefined}],children:resolvedLinks9=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,width:`max((max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 48px, 1px) - 108px) / 4, 1px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+48+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1575)-96-1933)/2+362+10)+0+265+0+0+0+0+0+0+0+0+132,...addPropertyOverrides({h5N8ld_5d:{width:`max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 84px) / 2, 1px)`,y:undefined},QVlN8o90y:{width:`max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 48px, 1px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||3323)-64-3871.1)/2+362+10)+0+383.1+0+0+0+0+0+420+0+0+0+132}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-w87q4b-container\",layoutDependency:layoutDependency,layoutId:\"edjNH4OYP-container\",children:/*#__PURE__*/_jsx(ButtonFooterLink,{FqbNu_He0:resolvedLinks9[0],height:\"100%\",id:\"edjNH4OYP\",layoutId:\"edjNH4OYP\",rA9CxB8kV:\"Keyword Research on Amazon\",style:{height:\"100%\",width:\"100%\"},variant:\"sEPKp7oTM\",width:\"100%\",...addPropertyOverrides({h5N8ld_5d:{FqbNu_He0:resolvedLinks9[1]},QVlN8o90y:{FqbNu_He0:resolvedLinks9[2]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"BxDj431ov\"},implicitPathVariables:undefined},{href:{webPageId:\"BxDj431ov\"},implicitPathVariables:undefined},{href:{webPageId:\"BxDj431ov\"},implicitPathVariables:undefined}],children:resolvedLinks10=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,width:`max((max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 48px, 1px) - 108px) / 4, 1px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+48+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1575)-96-1933)/2+362+10)+0+265+0+0+0+0+0+0+0+0+168,...addPropertyOverrides({h5N8ld_5d:{width:`max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 84px) / 2, 1px)`,y:undefined},QVlN8o90y:{width:`max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 48px, 1px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||3323)-64-3871.1)/2+362+10)+0+383.1+0+0+0+0+0+420+0+0+0+168}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-181btdd-container\",layoutDependency:layoutDependency,layoutId:\"rwUU_sCUr-container\",children:/*#__PURE__*/_jsx(ButtonFooterLink,{FqbNu_He0:resolvedLinks10[0],height:\"100%\",id:\"rwUU_sCUr\",layoutId:\"rwUU_sCUr\",rA9CxB8kV:\"Product Listing on Amazon\",style:{height:\"100%\",width:\"100%\"},variant:\"sEPKp7oTM\",width:\"100%\",...addPropertyOverrides({h5N8ld_5d:{FqbNu_He0:resolvedLinks10[1]},QVlN8o90y:{FqbNu_He0:resolvedLinks10[2]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"NhSL1JkTU\"},implicitPathVariables:undefined},{href:{webPageId:\"NhSL1JkTU\"},implicitPathVariables:undefined},{href:{webPageId:\"NhSL1JkTU\"},implicitPathVariables:undefined}],children:resolvedLinks11=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,width:`max((max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 48px, 1px) - 108px) / 4, 1px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+48+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1575)-96-1933)/2+362+10)+0+265+0+0+0+0+0+0+0+0+204,...addPropertyOverrides({h5N8ld_5d:{width:`max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 84px) / 2, 1px)`,y:undefined},QVlN8o90y:{width:`max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 48px, 1px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||3323)-64-3871.1)/2+362+10)+0+383.1+0+0+0+0+0+420+0+0+0+204}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-oi9idx-container\",layoutDependency:layoutDependency,layoutId:\"pcharQhjl-container\",children:/*#__PURE__*/_jsx(ButtonFooterLink,{FqbNu_He0:resolvedLinks11[0],height:\"100%\",id:\"pcharQhjl\",layoutId:\"pcharQhjl\",rA9CxB8kV:\"Product Listing Translation Services\",style:{height:\"100%\",width:\"100%\"},variant:\"sEPKp7oTM\",width:\"100%\",...addPropertyOverrides({h5N8ld_5d:{FqbNu_He0:resolvedLinks11[1]},QVlN8o90y:{FqbNu_He0:resolvedLinks11[2]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"LoETdbghW\"},implicitPathVariables:undefined},{href:{webPageId:\"LoETdbghW\"},implicitPathVariables:undefined},{href:{webPageId:\"LoETdbghW\"},implicitPathVariables:undefined}],children:resolvedLinks12=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,width:`max((max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 48px, 1px) - 108px) / 4, 1px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+48+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1575)-96-1933)/2+362+10)+0+265+0+0+0+0+0+0+0+0+240,...addPropertyOverrides({h5N8ld_5d:{width:`max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 84px) / 2, 1px)`,y:undefined},QVlN8o90y:{width:`max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 48px, 1px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||3323)-64-3871.1)/2+362+10)+0+383.1+0+0+0+0+0+420+0+0+0+240}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-2y245k-container\",layoutDependency:layoutDependency,layoutId:\"bN42m7KZu-container\",children:/*#__PURE__*/_jsx(ButtonFooterLink,{FqbNu_He0:resolvedLinks12[0],height:\"100%\",id:\"bN42m7KZu\",layoutId:\"bN42m7KZu\",rA9CxB8kV:\"Brand Registry for Amazon\",style:{height:\"100%\",width:\"100%\"},variant:\"sEPKp7oTM\",width:\"100%\",...addPropertyOverrides({h5N8ld_5d:{FqbNu_He0:resolvedLinks12[1]},QVlN8o90y:{FqbNu_He0:resolvedLinks12[2]}},baseVariant,gestureVariant)})})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1vn2by0\",layoutDependency:layoutDependency,layoutId:\"SCOE_JBfb\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1nensji\",\"data-styles-preset\":\"M6T3Bm2NS\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-26228e18-5b63-4868-a865-233a860834a5, rgb(5, 5, 5)))\"},children:\"CONSULTANT SERVICES\"})}),className:\"framer-f3wnwf\",\"data-framer-name\":\"Company\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"MTMIinmwh\",style:{\"--extracted-r6o4lv\":\"var(--token-26228e18-5b63-4868-a865-233a860834a5, rgb(5, 5, 5))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"OEEQ6acs2\"},implicitPathVariables:undefined},{href:{webPageId:\"OEEQ6acs2\"},implicitPathVariables:undefined},{href:{webPageId:\"OEEQ6acs2\"},implicitPathVariables:undefined}],children:resolvedLinks13=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,width:`max((max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 48px, 1px) - 108px) / 4, 1px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+48+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1575)-96-1933)/2+362+10)+0+265+0+0+0+0+0+0+336+0+132,...addPropertyOverrides({h5N8ld_5d:{width:`max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 84px) / 2, 1px)`,y:undefined},QVlN8o90y:{width:`max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 48px, 1px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||3323)-64-3871.1)/2+362+10)+0+383.1+0+0+0+0+0+420+0+336+0+132}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-tmszch-container\",layoutDependency:layoutDependency,layoutId:\"YvkEdT6Q1-container\",children:/*#__PURE__*/_jsx(ButtonFooterLink,{FqbNu_He0:resolvedLinks13[0],height:\"100%\",id:\"YvkEdT6Q1\",layoutId:\"YvkEdT6Q1\",rA9CxB8kV:\"Amazon Marketing Consultant\",style:{height:\"100%\",width:\"100%\"},variant:\"sEPKp7oTM\",width:\"100%\",...addPropertyOverrides({h5N8ld_5d:{FqbNu_He0:resolvedLinks13[1]},QVlN8o90y:{FqbNu_He0:resolvedLinks13[2]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"lQ00ZOViw\"},implicitPathVariables:undefined},{href:{webPageId:\"lQ00ZOViw\"},implicitPathVariables:undefined},{href:{webPageId:\"lQ00ZOViw\"},implicitPathVariables:undefined}],children:resolvedLinks14=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,width:`max((max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 48px, 1px) - 108px) / 4, 1px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+48+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1575)-96-1933)/2+362+10)+0+265+0+0+0+0+0+0+336+0+168,...addPropertyOverrides({h5N8ld_5d:{width:`max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 84px) / 2, 1px)`,y:undefined},QVlN8o90y:{width:`max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 48px, 1px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||3323)-64-3871.1)/2+362+10)+0+383.1+0+0+0+0+0+420+0+336+0+168}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1l88fhd-container\",layoutDependency:layoutDependency,layoutId:\"PQrjbVsdW-container\",children:/*#__PURE__*/_jsx(ButtonFooterLink,{FqbNu_He0:resolvedLinks14[0],height:\"100%\",id:\"PQrjbVsdW\",layoutId:\"PQrjbVsdW\",rA9CxB8kV:\"Ecommerce SEO Consultant\",style:{height:\"100%\",width:\"100%\"},variant:\"sEPKp7oTM\",width:\"100%\",...addPropertyOverrides({h5N8ld_5d:{FqbNu_He0:resolvedLinks14[1]},QVlN8o90y:{FqbNu_He0:resolvedLinks14[2]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"J3WdDBW2b\"},implicitPathVariables:undefined},{href:{webPageId:\"J3WdDBW2b\"},implicitPathVariables:undefined},{href:{webPageId:\"J3WdDBW2b\"},implicitPathVariables:undefined}],children:resolvedLinks15=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,width:`max((max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 48px, 1px) - 108px) / 4, 1px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+48+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1575)-96-1933)/2+362+10)+0+265+0+0+0+0+0+0+336+0+204,...addPropertyOverrides({h5N8ld_5d:{width:`max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 84px) / 2, 1px)`,y:undefined},QVlN8o90y:{width:`max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 48px, 1px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||3323)-64-3871.1)/2+362+10)+0+383.1+0+0+0+0+0+420+0+336+0+204}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-aqwa38-container\",layoutDependency:layoutDependency,layoutId:\"AnL7hxOV0-container\",children:/*#__PURE__*/_jsx(ButtonFooterLink,{FqbNu_He0:resolvedLinks15[0],height:\"100%\",id:\"AnL7hxOV0\",layoutId:\"AnL7hxOV0\",rA9CxB8kV:\"Amazon Expert\",style:{height:\"100%\",width:\"100%\"},variant:\"sEPKp7oTM\",width:\"100%\",...addPropertyOverrides({h5N8ld_5d:{FqbNu_He0:resolvedLinks15[1]},QVlN8o90y:{FqbNu_He0:resolvedLinks15[2]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"j63T29OYo\"},implicitPathVariables:undefined},{href:{webPageId:\"j63T29OYo\"},implicitPathVariables:undefined},{href:{webPageId:\"j63T29OYo\"},implicitPathVariables:undefined}],children:resolvedLinks16=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,width:`max((max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 48px, 1px) - 108px) / 4, 1px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+48+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1575)-96-1933)/2+362+10)+0+265+0+0+0+0+0+0+336+0+240,...addPropertyOverrides({h5N8ld_5d:{width:`max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 84px) / 2, 1px)`,y:undefined},QVlN8o90y:{width:`max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 48px, 1px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||3323)-64-3871.1)/2+362+10)+0+383.1+0+0+0+0+0+420+0+336+0+240}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1q9umc1-container\",layoutDependency:layoutDependency,layoutId:\"hgaxsL0SF-container\",children:/*#__PURE__*/_jsx(ButtonFooterLink,{FqbNu_He0:resolvedLinks16[0],height:\"100%\",id:\"hgaxsL0SF\",layoutId:\"hgaxsL0SF\",rA9CxB8kV:\"Best Amazon Consultant\",style:{height:\"100%\",width:\"100%\"},variant:\"sEPKp7oTM\",width:\"100%\",...addPropertyOverrides({h5N8ld_5d:{FqbNu_He0:resolvedLinks16[1]},QVlN8o90y:{FqbNu_He0:resolvedLinks16[2]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"TswMR6gex\"},implicitPathVariables:undefined},{href:{webPageId:\"TswMR6gex\"},implicitPathVariables:undefined},{href:{webPageId:\"TswMR6gex\"},implicitPathVariables:undefined}],children:resolvedLinks17=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,width:`max((max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 48px, 1px) - 108px) / 4, 1px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+48+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1575)-96-1933)/2+362+10)+0+265+0+0+0+0+0+0+336+0+276,...addPropertyOverrides({h5N8ld_5d:{width:`max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 84px) / 2, 1px)`,y:undefined},QVlN8o90y:{width:`max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 48px, 1px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||3323)-64-3871.1)/2+362+10)+0+383.1+0+0+0+0+0+420+0+336+0+276}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-9t3s96-container\",layoutDependency:layoutDependency,layoutId:\"HmV41NPI7-container\",children:/*#__PURE__*/_jsx(ButtonFooterLink,{FqbNu_He0:resolvedLinks17[0],height:\"100%\",id:\"HmV41NPI7\",layoutId:\"HmV41NPI7\",rA9CxB8kV:\"Amazon Management Consultant\",style:{height:\"100%\",width:\"100%\"},variant:\"sEPKp7oTM\",width:\"100%\",...addPropertyOverrides({h5N8ld_5d:{FqbNu_He0:resolvedLinks17[1]},QVlN8o90y:{FqbNu_He0:resolvedLinks17[2]}},baseVariant,gestureVariant)})})})})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-juov73\",\"data-framer-name\":\"Menu\",layoutDependency:layoutDependency,layoutId:\"GkyGFFZAe\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-y5r963\",layoutDependency:layoutDependency,layoutId:\"xkEDhabNP\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1nensji\",\"data-styles-preset\":\"M6T3Bm2NS\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-26228e18-5b63-4868-a865-233a860834a5, rgb(5, 5, 5)))\"},children:\"GRAPHICS & BRANDING SERVICES\"})}),className:\"framer-1jwwosg\",\"data-framer-name\":\"Component\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"VWhqyCEfW\",style:{\"--extracted-r6o4lv\":\"var(--token-26228e18-5b63-4868-a865-233a860834a5, rgb(5, 5, 5))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"s248qlFCf\"},implicitPathVariables:undefined},{href:{webPageId:\"s248qlFCf\"},implicitPathVariables:undefined},{href:{webPageId:\"s248qlFCf\"},implicitPathVariables:undefined}],children:resolvedLinks18=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,width:`max((max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 48px, 1px) - 108px) / 4, 1px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+48+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1575)-96-1933)/2+362+10)+0+265+0+0+0+0+0+0+0+0+132,...addPropertyOverrides({h5N8ld_5d:{width:`max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 84px) / 2, 1px)`,y:undefined},QVlN8o90y:{width:`max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 48px, 1px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||3323)-64-3871.1)/2+362+10)+0+383.1+0+0+0+0+0+1092+0+0+0+132}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-v9j5bu-container\",layoutDependency:layoutDependency,layoutId:\"MccFT7Y3w-container\",children:/*#__PURE__*/_jsx(ButtonFooterLink,{FqbNu_He0:resolvedLinks18[0],height:\"100%\",id:\"MccFT7Y3w\",layoutId:\"MccFT7Y3w\",rA9CxB8kV:\"Storefront Design for Amazon\",style:{height:\"100%\",width:\"100%\"},variant:\"sEPKp7oTM\",width:\"100%\",...addPropertyOverrides({h5N8ld_5d:{FqbNu_He0:resolvedLinks18[1]},QVlN8o90y:{FqbNu_He0:resolvedLinks18[2]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"pvoWin4BG\"},implicitPathVariables:undefined},{href:{webPageId:\"pvoWin4BG\"},implicitPathVariables:undefined},{href:{webPageId:\"pvoWin4BG\"},implicitPathVariables:undefined}],children:resolvedLinks19=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,width:`max((max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 48px, 1px) - 108px) / 4, 1px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+48+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1575)-96-1933)/2+362+10)+0+265+0+0+0+0+0+0+0+0+168,...addPropertyOverrides({h5N8ld_5d:{width:`max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 84px) / 2, 1px)`,y:undefined},QVlN8o90y:{width:`max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 48px, 1px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||3323)-64-3871.1)/2+362+10)+0+383.1+0+0+0+0+0+1092+0+0+0+168}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-7vya9t-container\",layoutDependency:layoutDependency,layoutId:\"uPMWq2rrl-container\",children:/*#__PURE__*/_jsx(ButtonFooterLink,{FqbNu_He0:resolvedLinks19[0],height:\"100%\",id:\"uPMWq2rrl\",layoutId:\"uPMWq2rrl\",rA9CxB8kV:\"Premium A+ Content\",style:{height:\"100%\",width:\"100%\"},variant:\"sEPKp7oTM\",width:\"100%\",...addPropertyOverrides({h5N8ld_5d:{FqbNu_He0:resolvedLinks19[1]},QVlN8o90y:{FqbNu_He0:resolvedLinks19[2]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"hFLAlsmLL\"},implicitPathVariables:undefined},{href:{webPageId:\"hFLAlsmLL\"},implicitPathVariables:undefined},{href:{webPageId:\"hFLAlsmLL\"},implicitPathVariables:undefined}],children:resolvedLinks20=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,width:`max((max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 48px, 1px) - 108px) / 4, 1px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+48+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1575)-96-1933)/2+362+10)+0+265+0+0+0+0+0+0+0+0+204,...addPropertyOverrides({h5N8ld_5d:{width:`max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 84px) / 2, 1px)`,y:undefined},QVlN8o90y:{width:`max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 48px, 1px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||3323)-64-3871.1)/2+362+10)+0+383.1+0+0+0+0+0+1092+0+0+0+204}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-10kfttf-container\",layoutDependency:layoutDependency,layoutId:\"gX97BZA3L-container\",children:/*#__PURE__*/_jsx(ButtonFooterLink,{FqbNu_He0:resolvedLinks20[0],height:\"100%\",id:\"gX97BZA3L\",layoutId:\"gX97BZA3L\",rA9CxB8kV:\"Amazon Brand Story Design\",style:{height:\"100%\",width:\"100%\"},variant:\"sEPKp7oTM\",width:\"100%\",...addPropertyOverrides({h5N8ld_5d:{FqbNu_He0:resolvedLinks20[1]},QVlN8o90y:{FqbNu_He0:resolvedLinks20[2]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"czxDvmfIY\"},implicitPathVariables:undefined},{href:{webPageId:\"czxDvmfIY\"},implicitPathVariables:undefined},{href:{webPageId:\"czxDvmfIY\"},implicitPathVariables:undefined}],children:resolvedLinks21=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,width:`max((max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 48px, 1px) - 108px) / 4, 1px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+48+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1575)-96-1933)/2+362+10)+0+265+0+0+0+0+0+0+0+0+240,...addPropertyOverrides({h5N8ld_5d:{width:`max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 84px) / 2, 1px)`,y:undefined},QVlN8o90y:{width:`max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 48px, 1px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||3323)-64-3871.1)/2+362+10)+0+383.1+0+0+0+0+0+1092+0+0+0+240}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-lbgwb9-container\",layoutDependency:layoutDependency,layoutId:\"aDCe1UxMN-container\",children:/*#__PURE__*/_jsx(ButtonFooterLink,{FqbNu_He0:resolvedLinks21[0],height:\"100%\",id:\"aDCe1UxMN\",layoutId:\"aDCe1UxMN\",rA9CxB8kV:\"Enhanced Brand Content/ A+ Content\",style:{height:\"100%\",width:\"100%\"},variant:\"sEPKp7oTM\",width:\"100%\",...addPropertyOverrides({h5N8ld_5d:{FqbNu_He0:resolvedLinks21[1]},QVlN8o90y:{FqbNu_He0:resolvedLinks21[2]}},baseVariant,gestureVariant)})})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ixd920\",layoutDependency:layoutDependency,layoutId:\"yzV2YJwSI\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1nensji\",\"data-styles-preset\":\"M6T3Bm2NS\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-26228e18-5b63-4868-a865-233a860834a5, rgb(5, 5, 5)))\"},children:\"PHOTOGRAPHY SERVICES\"})}),className:\"framer-cuclz4\",\"data-framer-name\":\"Component\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"a9HdjbzJL\",style:{\"--extracted-r6o4lv\":\"var(--token-26228e18-5b63-4868-a865-233a860834a5, rgb(5, 5, 5))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"AsDnNtG5Y\"},implicitPathVariables:undefined},{href:{webPageId:\"AsDnNtG5Y\"},implicitPathVariables:undefined},{href:{webPageId:\"AsDnNtG5Y\"},implicitPathVariables:undefined}],children:resolvedLinks22=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,width:`max((max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 48px, 1px) - 108px) / 4, 1px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+48+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1575)-96-1933)/2+362+10)+0+265+0+0+0+0+0+0+336+0+130,...addPropertyOverrides({h5N8ld_5d:{width:`max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 84px) / 2, 1px)`,y:undefined},QVlN8o90y:{width:`max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 48px, 1px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||3323)-64-3871.1)/2+362+10)+0+383.1+0+0+0+0+0+1092+0+336+0+130}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1kz8rf4-container\",layoutDependency:layoutDependency,layoutId:\"pT7M7SWkM-container\",children:/*#__PURE__*/_jsx(ButtonFooterLink,{FqbNu_He0:resolvedLinks22[0],height:\"100%\",id:\"pT7M7SWkM\",layoutId:\"pT7M7SWkM\",rA9CxB8kV:\"Product Photography\",style:{height:\"100%\",width:\"100%\"},variant:\"sEPKp7oTM\",width:\"100%\",...addPropertyOverrides({h5N8ld_5d:{FqbNu_He0:resolvedLinks22[1]},QVlN8o90y:{FqbNu_He0:resolvedLinks22[2]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"zVH0nlKij\"},implicitPathVariables:undefined},{href:{webPageId:\"zVH0nlKij\"},implicitPathVariables:undefined},{href:{webPageId:\"zVH0nlKij\"},implicitPathVariables:undefined}],children:resolvedLinks23=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,width:`max((max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 48px, 1px) - 108px) / 4, 1px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+48+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1575)-96-1933)/2+362+10)+0+265+0+0+0+0+0+0+336+0+164,...addPropertyOverrides({h5N8ld_5d:{width:`max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 84px) / 2, 1px)`,y:undefined},QVlN8o90y:{width:`max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 48px, 1px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||3323)-64-3871.1)/2+362+10)+0+383.1+0+0+0+0+0+1092+0+336+0+164}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1usat3r-container\",layoutDependency:layoutDependency,layoutId:\"SnBrtP8rT-container\",children:/*#__PURE__*/_jsx(ButtonFooterLink,{FqbNu_He0:resolvedLinks23[0],height:\"100%\",id:\"SnBrtP8rT\",layoutId:\"SnBrtP8rT\",rA9CxB8kV:\"Product Infographics/ Lifestyle Images\",style:{width:\"100%\"},variant:\"sEPKp7oTM\",width:\"100%\",...addPropertyOverrides({h5N8ld_5d:{FqbNu_He0:resolvedLinks23[1]},QVlN8o90y:{FqbNu_He0:resolvedLinks23[2]}},baseVariant,gestureVariant)})})})})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-kcomiz\",\"data-framer-name\":\"Menu\",layoutDependency:layoutDependency,layoutId:\"Y7xa7nEKr\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-on558e\",layoutDependency:layoutDependency,layoutId:\"murnSOfN2\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1nensji\",\"data-styles-preset\":\"M6T3Bm2NS\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-26228e18-5b63-4868-a865-233a860834a5, rgb(5, 5, 5)))\"},children:\"PPC MANAGEMENT\"})}),className:\"framer-5t5krt\",\"data-framer-name\":\"Component\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Ah6dS6fFR\",style:{\"--extracted-r6o4lv\":\"var(--token-26228e18-5b63-4868-a865-233a860834a5, rgb(5, 5, 5))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"ARfdTus9Y\"},implicitPathVariables:undefined},{href:{webPageId:\"ARfdTus9Y\"},implicitPathVariables:undefined},{href:{webPageId:\"ARfdTus9Y\"},implicitPathVariables:undefined}],children:resolvedLinks24=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,width:`max((max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 48px, 1px) - 108px) / 4, 1px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+48+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1575)-96-1933)/2+362+10)+0+265+0+0+0+0+0+0+0+0+132,...addPropertyOverrides({h5N8ld_5d:{width:`max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 84px) / 2, 1px)`,y:undefined},QVlN8o90y:{width:`max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 48px, 1px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||3323)-64-3871.1)/2+362+10)+0+383.1+0+0+0+0+0+1676+0+0+0+132}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-uvbh8n-container\",layoutDependency:layoutDependency,layoutId:\"OLKho7hUc-container\",children:/*#__PURE__*/_jsx(ButtonFooterLink,{FqbNu_He0:resolvedLinks24[0],height:\"100%\",id:\"OLKho7hUc\",layoutId:\"OLKho7hUc\",rA9CxB8kV:\"Amazon PPC Management\",style:{height:\"100%\",width:\"100%\"},variant:\"sEPKp7oTM\",width:\"100%\",...addPropertyOverrides({h5N8ld_5d:{FqbNu_He0:resolvedLinks24[1]},QVlN8o90y:{FqbNu_He0:resolvedLinks24[2]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"WrUQAx2Lv\"},implicitPathVariables:undefined},{href:{webPageId:\"WrUQAx2Lv\"},implicitPathVariables:undefined},{href:{webPageId:\"WrUQAx2Lv\"},implicitPathVariables:undefined}],children:resolvedLinks25=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,width:`max((max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 48px, 1px) - 108px) / 4, 1px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+48+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1575)-96-1933)/2+362+10)+0+265+0+0+0+0+0+0+0+0+168,...addPropertyOverrides({h5N8ld_5d:{width:`max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 84px) / 2, 1px)`,y:undefined},QVlN8o90y:{width:`max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 48px, 1px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||3323)-64-3871.1)/2+362+10)+0+383.1+0+0+0+0+0+1676+0+0+0+168}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-brgdt-container\",layoutDependency:layoutDependency,layoutId:\"djWySwfIn-container\",children:/*#__PURE__*/_jsx(ButtonFooterLink,{FqbNu_He0:resolvedLinks25[0],height:\"100%\",id:\"djWySwfIn\",layoutId:\"djWySwfIn\",rA9CxB8kV:\"DSP Ads for Amazon\",style:{height:\"100%\",width:\"100%\"},variant:\"sEPKp7oTM\",width:\"100%\",...addPropertyOverrides({h5N8ld_5d:{FqbNu_He0:resolvedLinks25[1]},QVlN8o90y:{FqbNu_He0:resolvedLinks25[2]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{kgOF0Ku1M:\"amazon-launches-off-site-sponsored-products-ads-everything-you-need-to-know\"},unresolvedPathSlugs:{kgOF0Ku1M:{collectionId:\"xDaj2QqY2\",collectionItemId:\"T_3DAEsPr\"}},webPageId:\"SBAaBdba_\"},implicitPathVariables:undefined},{href:{pathVariables:{kgOF0Ku1M:\"amazon-launches-off-site-sponsored-products-ads-everything-you-need-to-know\"},unresolvedPathSlugs:{kgOF0Ku1M:{collectionId:\"xDaj2QqY2\",collectionItemId:\"T_3DAEsPr\"}},webPageId:\"SBAaBdba_\"},implicitPathVariables:undefined},{href:{pathVariables:{kgOF0Ku1M:\"amazon-launches-off-site-sponsored-products-ads-everything-you-need-to-know\"},unresolvedPathSlugs:{kgOF0Ku1M:{collectionId:\"xDaj2QqY2\",collectionItemId:\"T_3DAEsPr\"}},webPageId:\"SBAaBdba_\"},implicitPathVariables:undefined}],children:resolvedLinks26=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,width:`max((max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 48px, 1px) - 108px) / 4, 1px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+48+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1575)-96-1933)/2+362+10)+0+265+0+0+0+0+0+0+0+0+204,...addPropertyOverrides({h5N8ld_5d:{width:`max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 84px) / 2, 1px)`,y:undefined},QVlN8o90y:{width:`max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 48px, 1px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||3323)-64-3871.1)/2+362+10)+0+383.1+0+0+0+0+0+1676+0+0+0+204}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1sgf9tj-container\",layoutDependency:layoutDependency,layoutId:\"NRgn2sKSl-container\",children:/*#__PURE__*/_jsx(ButtonFooterLink,{FqbNu_He0:resolvedLinks26[0],height:\"100%\",id:\"NRgn2sKSl\",layoutId:\"NRgn2sKSl\",rA9CxB8kV:\"Amazon Sponsored Products Ads\",style:{height:\"100%\",width:\"100%\"},variant:\"sEPKp7oTM\",width:\"100%\",...addPropertyOverrides({h5N8ld_5d:{FqbNu_He0:resolvedLinks26[1]},QVlN8o90y:{FqbNu_He0:resolvedLinks26[2]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"df8uv6GCZ\"},implicitPathVariables:undefined},{href:{webPageId:\"df8uv6GCZ\"},implicitPathVariables:undefined},{href:{webPageId:\"df8uv6GCZ\"},implicitPathVariables:undefined}],children:resolvedLinks27=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,width:`max((max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 48px, 1px) - 108px) / 4, 1px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+48+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1575)-96-1933)/2+362+10)+0+265+0+0+0+0+0+0+0+0+240,...addPropertyOverrides({h5N8ld_5d:{width:`max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 84px) / 2, 1px)`,y:undefined},QVlN8o90y:{width:`max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 48px, 1px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||3323)-64-3871.1)/2+362+10)+0+383.1+0+0+0+0+0+1676+0+0+0+240}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-7jd15n-container\",layoutDependency:layoutDependency,layoutId:\"P59U_Pzts-container\",children:/*#__PURE__*/_jsx(ButtonFooterLink,{FqbNu_He0:resolvedLinks27[0],height:\"100%\",id:\"P59U_Pzts\",layoutId:\"P59U_Pzts\",rA9CxB8kV:\"Amazon Advertising Manager\",style:{height:\"100%\",width:\"100%\"},variant:\"sEPKp7oTM\",width:\"100%\",...addPropertyOverrides({h5N8ld_5d:{FqbNu_He0:resolvedLinks27[1]},QVlN8o90y:{FqbNu_He0:resolvedLinks27[2]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"pYc6_u55M\"},implicitPathVariables:undefined},{href:{webPageId:\"pYc6_u55M\"},implicitPathVariables:undefined},{href:{webPageId:\"pYc6_u55M\"},implicitPathVariables:undefined}],children:resolvedLinks28=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,width:`max((max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 48px, 1px) - 108px) / 4, 1px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+48+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1575)-96-1933)/2+362+10)+0+265+0+0+0+0+0+0+0+0+276,...addPropertyOverrides({h5N8ld_5d:{width:`max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 84px) / 2, 1px)`,y:undefined},QVlN8o90y:{width:`max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 48px, 1px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||3323)-64-3871.1)/2+362+10)+0+383.1+0+0+0+0+0+1676+0+0+0+276}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1dmjipb-container\",layoutDependency:layoutDependency,layoutId:\"u1AwIwfcu-container\",children:/*#__PURE__*/_jsx(ButtonFooterLink,{FqbNu_He0:resolvedLinks28[0],height:\"100%\",id:\"u1AwIwfcu\",layoutId:\"u1AwIwfcu\",rA9CxB8kV:\"Amazon Ads Specialist\",style:{height:\"100%\",width:\"100%\"},variant:\"sEPKp7oTM\",width:\"100%\",...addPropertyOverrides({h5N8ld_5d:{FqbNu_He0:resolvedLinks28[1]},QVlN8o90y:{FqbNu_He0:resolvedLinks28[2]}},baseVariant,gestureVariant)})})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-183deiz\",layoutDependency:layoutDependency,layoutId:\"ACOwd6KQR\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1nensji\",\"data-styles-preset\":\"M6T3Bm2NS\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-26228e18-5b63-4868-a865-233a860834a5, rgb(5, 5, 5)))\"},children:\"OTHERS\"})}),className:\"framer-uzrpqp\",\"data-framer-name\":\"Component\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"ndwxS_IFA\",style:{\"--extracted-r6o4lv\":\"var(--token-26228e18-5b63-4868-a865-233a860834a5, rgb(5, 5, 5))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"qyDGXfPW7\"},implicitPathVariables:undefined},{href:{webPageId:\"qyDGXfPW7\"},implicitPathVariables:undefined},{href:{webPageId:\"qyDGXfPW7\"},implicitPathVariables:undefined}],children:resolvedLinks29=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,width:`max((max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 48px, 1px) - 108px) / 4, 1px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+48+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1575)-96-1933)/2+362+10)+0+265+0+0+0+0+0+0+336+0+132,...addPropertyOverrides({h5N8ld_5d:{width:`max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 84px) / 2, 1px)`,y:undefined},QVlN8o90y:{width:`max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 48px, 1px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||3323)-64-3871.1)/2+362+10)+0+383.1+0+0+0+0+0+1676+0+336+0+132}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-15hckqf-container\",layoutDependency:layoutDependency,layoutId:\"JAF4_WGkn-container\",children:/*#__PURE__*/_jsx(ButtonFooterLink,{FqbNu_He0:resolvedLinks29[0],height:\"100%\",id:\"JAF4_WGkn\",layoutId:\"JAF4_WGkn\",rA9CxB8kV:\"Shopify Store Development Services\",style:{height:\"100%\",width:\"100%\"},variant:\"sEPKp7oTM\",width:\"100%\",...addPropertyOverrides({h5N8ld_5d:{FqbNu_He0:resolvedLinks29[1]},QVlN8o90y:{FqbNu_He0:resolvedLinks29[2]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"T7BEwFmH2\"},implicitPathVariables:undefined},{href:{webPageId:\"T7BEwFmH2\"},implicitPathVariables:undefined},{href:{webPageId:\"T7BEwFmH2\"},implicitPathVariables:undefined}],children:resolvedLinks30=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,width:`max((max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 48px, 1px) - 108px) / 4, 1px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+48+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1575)-96-1933)/2+362+10)+0+265+0+0+0+0+0+0+336+0+168,...addPropertyOverrides({h5N8ld_5d:{width:`max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 84px) / 2, 1px)`,y:undefined},QVlN8o90y:{width:`max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 48px, 1px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||3323)-64-3871.1)/2+362+10)+0+383.1+0+0+0+0+0+1676+0+336+0+168}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-jviru8-container\",layoutDependency:layoutDependency,layoutId:\"E2ibTepbg-container\",children:/*#__PURE__*/_jsx(ButtonFooterLink,{FqbNu_He0:resolvedLinks30[0],height:\"100%\",id:\"E2ibTepbg\",layoutId:\"E2ibTepbg\",rA9CxB8kV:\"SEO Services\",style:{height:\"100%\",width:\"100%\"},variant:\"sEPKp7oTM\",width:\"100%\",...addPropertyOverrides({h5N8ld_5d:{FqbNu_He0:resolvedLinks30[1]},QVlN8o90y:{FqbNu_He0:resolvedLinks30[2]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"GI5E_rHgQ\"},implicitPathVariables:undefined},{href:{webPageId:\"GI5E_rHgQ\"},implicitPathVariables:undefined},{href:{webPageId:\"GI5E_rHgQ\"},implicitPathVariables:undefined}],children:resolvedLinks31=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,width:`max((max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 48px, 1px) - 108px) / 4, 1px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+48+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1575)-96-1933)/2+362+10)+0+265+0+0+0+0+0+0+336+0+204,...addPropertyOverrides({h5N8ld_5d:{width:`max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 84px) / 2, 1px)`,y:undefined},QVlN8o90y:{width:`max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 48px, 1px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||3323)-64-3871.1)/2+362+10)+0+383.1+0+0+0+0+0+1676+0+336+0+204}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-119xe0v-container\",layoutDependency:layoutDependency,layoutId:\"G812CyYmA-container\",children:/*#__PURE__*/_jsx(ButtonFooterLink,{FqbNu_He0:resolvedLinks31[0],height:\"100%\",id:\"G812CyYmA\",layoutId:\"G812CyYmA\",rA9CxB8kV:\"Virtual Product Bundles\",style:{height:\"100%\",width:\"100%\"},variant:\"sEPKp7oTM\",width:\"100%\",...addPropertyOverrides({h5N8ld_5d:{FqbNu_He0:resolvedLinks31[1]},QVlN8o90y:{FqbNu_He0:resolvedLinks31[2]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"F7TLrsTRO\"},implicitPathVariables:undefined},{href:{webPageId:\"F7TLrsTRO\"},implicitPathVariables:undefined},{href:{webPageId:\"F7TLrsTRO\"},implicitPathVariables:undefined}],children:resolvedLinks32=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,width:`max((max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 48px, 1px) - 108px) / 4, 1px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+48+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1575)-96-1933)/2+362+10)+0+265+0+0+0+0+0+0+336+0+240,...addPropertyOverrides({h5N8ld_5d:{width:`max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 84px) / 2, 1px)`,y:undefined},QVlN8o90y:{width:`max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 48px, 1px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||3323)-64-3871.1)/2+362+10)+0+383.1+0+0+0+0+0+1676+0+336+0+240}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-ndwdxp-container\",layoutDependency:layoutDependency,layoutId:\"AdGdkI4TF-container\",children:/*#__PURE__*/_jsx(ButtonFooterLink,{FqbNu_He0:resolvedLinks32[0],height:\"100%\",id:\"AdGdkI4TF\",layoutId:\"AdGdkI4TF\",rA9CxB8kV:\"Amazon Posts\",style:{height:\"100%\",width:\"100%\"},variant:\"sEPKp7oTM\",width:\"100%\",...addPropertyOverrides({h5N8ld_5d:{FqbNu_He0:resolvedLinks32[1]},QVlN8o90y:{FqbNu_He0:resolvedLinks32[2]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"ZD6Khsz7E\"},implicitPathVariables:undefined},{href:{webPageId:\"ZD6Khsz7E\"},implicitPathVariables:undefined},{href:{webPageId:\"ZD6Khsz7E\"},implicitPathVariables:undefined}],children:resolvedLinks33=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,width:`max((max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 48px, 1px) - 108px) / 4, 1px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+48+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1575)-96-1933)/2+362+10)+0+265+0+0+0+0+0+0+336+0+276,...addPropertyOverrides({h5N8ld_5d:{width:`max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 84px) / 2, 1px)`,y:undefined},QVlN8o90y:{width:`max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 48px, 1px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||3323)-64-3871.1)/2+362+10)+0+383.1+0+0+0+0+0+1676+0+336+0+276}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1irlz68-container\",layoutDependency:layoutDependency,layoutId:\"P7s37IQEw-container\",children:/*#__PURE__*/_jsx(ButtonFooterLink,{FqbNu_He0:resolvedLinks33[0],height:\"100%\",id:\"P7s37IQEw\",layoutId:\"P7s37IQEw\",rA9CxB8kV:\"Amazon Live\",style:{height:\"100%\",width:\"100%\"},variant:\"sEPKp7oTM\",width:\"100%\",...addPropertyOverrides({h5N8ld_5d:{FqbNu_He0:resolvedLinks33[1]},QVlN8o90y:{FqbNu_He0:resolvedLinks33[2]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"F6hwa9qVg\"},implicitPathVariables:undefined},{href:{webPageId:\"F6hwa9qVg\"},implicitPathVariables:undefined},{href:{webPageId:\"F6hwa9qVg\"},implicitPathVariables:undefined}],children:resolvedLinks34=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,width:`max((max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 48px, 1px) - 108px) / 4, 1px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+48+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1575)-96-1933)/2+362+10)+0+265+0+0+0+0+0+0+336+0+312,...addPropertyOverrides({h5N8ld_5d:{width:`max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 84px) / 2, 1px)`,y:undefined},QVlN8o90y:{width:`max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 48px, 1px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||3323)-64-3871.1)/2+362+10)+0+383.1+0+0+0+0+0+1676+0+336+0+312}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-13c0rf8-container\",layoutDependency:layoutDependency,layoutId:\"hBtoJq3Xe-container\",children:/*#__PURE__*/_jsx(ButtonFooterLink,{FqbNu_He0:resolvedLinks34[0],height:\"100%\",id:\"hBtoJq3Xe\",layoutId:\"hBtoJq3Xe\",rA9CxB8kV:\"Amazon Attribution\",style:{height:\"100%\",width:\"100%\"},variant:\"sEPKp7oTM\",width:\"100%\",...addPropertyOverrides({h5N8ld_5d:{FqbNu_He0:resolvedLinks34[1]},QVlN8o90y:{FqbNu_He0:resolvedLinks34[2]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"nCOtH2z50\"},implicitPathVariables:undefined},{href:{webPageId:\"nCOtH2z50\"},implicitPathVariables:undefined},{href:{webPageId:\"nCOtH2z50\"},implicitPathVariables:undefined}],children:resolvedLinks35=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,width:`max((max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 48px, 1px) - 108px) / 4, 1px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+48+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1575)-96-1933)/2+362+10)+0+265+0+0+0+0+0+0+336+0+348,...addPropertyOverrides({h5N8ld_5d:{width:`max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 84px) / 2, 1px)`,y:undefined},QVlN8o90y:{width:`max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 48px, 1px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||3323)-64-3871.1)/2+362+10)+0+383.1+0+0+0+0+0+1676+0+336+0+348}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-5xmd3c-container\",layoutDependency:layoutDependency,layoutId:\"jT2o98KPt-container\",children:/*#__PURE__*/_jsx(ButtonFooterLink,{FqbNu_He0:resolvedLinks35[0],height:\"100%\",id:\"jT2o98KPt\",layoutId:\"jT2o98KPt\",rA9CxB8kV:\"Sitemap\",style:{height:\"100%\",width:\"100%\"},variant:\"sEPKp7oTM\",width:\"100%\",...addPropertyOverrides({h5N8ld_5d:{FqbNu_He0:resolvedLinks35[1]},QVlN8o90y:{FqbNu_He0:resolvedLinks35[2]}},baseVariant,gestureVariant)})})})})]})]})]})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-525s2f\",layoutDependency:layoutDependency,layoutId:\"GxPbn3zTY\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-q71r1z\",\"data-framer-name\":\"Divider\",layoutDependency:layoutDependency,layoutId:\"EcHSMWWg8\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-5z0beh\",\"data-framer-name\":\"Line\",layoutDependency:layoutDependency,layoutId:\"yx1Vt1r9z\",style:{backgroundColor:\"var(--token-1cab753f-7df3-46fa-83a8-4e7ffa7f1580, rgb(234, 234, 235))\"}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1wfyktg\",layoutDependency:layoutDependency,layoutId:\"vSt_8MdZM\",style:{backgroundColor:\"var(--token-1cab753f-7df3-46fa-83a8-4e7ffa7f1580, rgb(234, 234, 235))\",borderBottomLeftRadius:99,borderBottomRightRadius:99,borderTopLeftRadius:99,borderTopRightRadius:99}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-17anzwj\",\"data-framer-name\":\"Line\",layoutDependency:layoutDependency,layoutId:\"mREenmN16\",style:{backgroundColor:\"var(--token-1cab753f-7df3-46fa-83a8-4e7ffa7f1580, rgb(234, 234, 235))\"}})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1g9nems\",\"data-framer-name\":\"Legal\",layoutDependency:layoutDependency,layoutId:\"D_Fre0J_7\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-wpqwg4\",layoutDependency:layoutDependency,layoutId:\"z0LPxUI6I\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"h_e5x7Y4T\"},implicitPathVariables:undefined},{href:{webPageId:\"h_e5x7Y4T\"},implicitPathVariables:undefined},{href:{webPageId:\"h_e5x7Y4T\"},implicitPathVariables:undefined},{href:{webPageId:\"h_e5x7Y4T\"},implicitPathVariables:undefined},{href:{webPageId:\"h_e5x7Y4T\"},implicitPathVariables:undefined},{href:{webPageId:\"h_e5x7Y4T\"},implicitPathVariables:undefined}],children:resolvedLinks36=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,width:\"92px\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+48+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1575)-96-1933)/2+362+10)+0+1049+0+20+8+0,...addPropertyOverrides({eKjGXRSJg:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-64-1279.1)/2+362+10)+0+379.1+0+20+0+0+0},FVP9QM1Ty:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+48+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1520)-96-1145)/2+362+10)+0+261+0+20+8+0},gLjDmy05C:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-48-1201)/2+362+10)+0+261+0+20+0+0+0},h5N8ld_5d:{y:undefined},QVlN8o90y:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||3323)-64-3871.1)/2+362+10)+0+2827.1+0+20+0+0+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1rvab01-container\",layoutDependency:layoutDependency,layoutId:\"BsO4P86BB-container\",children:/*#__PURE__*/_jsx(ButtonFooterLink,{FqbNu_He0:resolvedLinks36[0],height:\"100%\",id:\"BsO4P86BB\",layoutId:\"BsO4P86BB\",rA9CxB8kV:\"Terms of Use\",style:{height:\"100%\",width:\"100%\"},variant:\"sEPKp7oTM\",width:\"100%\",...addPropertyOverrides({eKjGXRSJg:{FqbNu_He0:resolvedLinks36[5]},FVP9QM1Ty:{FqbNu_He0:resolvedLinks36[3]},gLjDmy05C:{FqbNu_He0:resolvedLinks36[4]},h5N8ld_5d:{FqbNu_He0:resolvedLinks36[1]},QVlN8o90y:{FqbNu_He0:resolvedLinks36[2]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"CnRkeLYKZ\"},implicitPathVariables:undefined},{href:{webPageId:\"CnRkeLYKZ\"},implicitPathVariables:undefined},{href:{webPageId:\"CnRkeLYKZ\"},implicitPathVariables:undefined},{href:{webPageId:\"CnRkeLYKZ\"},implicitPathVariables:undefined},{href:{webPageId:\"CnRkeLYKZ\"},implicitPathVariables:undefined},{href:{webPageId:\"CnRkeLYKZ\"},implicitPathVariables:undefined}],children:resolvedLinks37=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,width:\"94px\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+48+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1575)-96-1933)/2+362+10)+0+1049+0+20+8+0,...addPropertyOverrides({eKjGXRSJg:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-64-1279.1)/2+362+10)+0+379.1+0+20+0+0+0},FVP9QM1Ty:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+48+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1520)-96-1145)/2+362+10)+0+261+0+20+8+0},gLjDmy05C:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-48-1201)/2+362+10)+0+261+0+20+0+0+0},h5N8ld_5d:{y:undefined},QVlN8o90y:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||3323)-64-3871.1)/2+362+10)+0+2827.1+0+20+0+0+0+36}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1gtm5cw-container\",layoutDependency:layoutDependency,layoutId:\"p5ZKTNF9j-container\",children:/*#__PURE__*/_jsx(ButtonFooterLink,{FqbNu_He0:resolvedLinks37[0],height:\"100%\",id:\"p5ZKTNF9j\",layoutId:\"p5ZKTNF9j\",rA9CxB8kV:\"Refund Policy\",style:{height:\"100%\",width:\"100%\"},variant:\"sEPKp7oTM\",width:\"100%\",...addPropertyOverrides({eKjGXRSJg:{FqbNu_He0:resolvedLinks37[5]},FVP9QM1Ty:{FqbNu_He0:resolvedLinks37[3]},gLjDmy05C:{FqbNu_He0:resolvedLinks37[4]},h5N8ld_5d:{FqbNu_He0:resolvedLinks37[1]},QVlN8o90y:{FqbNu_He0:resolvedLinks37[2]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"cmR6hNMsq\"},implicitPathVariables:undefined},{href:{webPageId:\"cmR6hNMsq\"},implicitPathVariables:undefined},{href:{webPageId:\"cmR6hNMsq\"},implicitPathVariables:undefined},{href:{webPageId:\"cmR6hNMsq\"},implicitPathVariables:undefined},{href:{webPageId:\"cmR6hNMsq\"},implicitPathVariables:undefined},{href:{webPageId:\"cmR6hNMsq\"},implicitPathVariables:undefined}],children:resolvedLinks38=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,width:\"94px\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+48+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1575)-96-1933)/2+362+10)+0+1049+0+20+8+0,...addPropertyOverrides({eKjGXRSJg:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-64-1279.1)/2+362+10)+0+379.1+0+20+0+0+0},FVP9QM1Ty:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+48+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1520)-96-1145)/2+362+10)+0+261+0+20+8+0},gLjDmy05C:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-48-1201)/2+362+10)+0+261+0+20+0+0+0},h5N8ld_5d:{y:undefined},QVlN8o90y:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||3323)-64-3871.1)/2+362+10)+0+2827.1+0+20+0+0+0+72}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1vh0nxy-container\",layoutDependency:layoutDependency,layoutId:\"G_rO3I18d-container\",children:/*#__PURE__*/_jsx(ButtonFooterLink,{FqbNu_He0:resolvedLinks38[0],height:\"100%\",id:\"G_rO3I18d\",layoutId:\"G_rO3I18d\",rA9CxB8kV:\"Privacy Policy\",style:{height:\"100%\",width:\"100%\"},variant:\"sEPKp7oTM\",width:\"100%\",...addPropertyOverrides({eKjGXRSJg:{FqbNu_He0:resolvedLinks38[5]},FVP9QM1Ty:{FqbNu_He0:resolvedLinks38[3]},gLjDmy05C:{FqbNu_He0:resolvedLinks38[4]},h5N8ld_5d:{FqbNu_He0:resolvedLinks38[1]},QVlN8o90y:{FqbNu_He0:resolvedLinks38[2]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"UTySEIlFE\"},implicitPathVariables:undefined},{href:{webPageId:\"UTySEIlFE\"},implicitPathVariables:undefined},{href:{webPageId:\"UTySEIlFE\"},implicitPathVariables:undefined},{href:{webPageId:\"UTySEIlFE\"},implicitPathVariables:undefined},{href:{webPageId:\"UTySEIlFE\"},implicitPathVariables:undefined},{href:{webPageId:\"UTySEIlFE\"},implicitPathVariables:undefined}],children:resolvedLinks39=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,width:\"236px\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+48+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1575)-96-1933)/2+362+10)+0+1049+0+20+8+0,...addPropertyOverrides({eKjGXRSJg:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-64-1279.1)/2+362+10)+0+379.1+0+20+0+0+0},FVP9QM1Ty:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+48+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1520)-96-1145)/2+362+10)+0+261+0+20+8+0},gLjDmy05C:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-48-1201)/2+362+10)+0+261+0+20+0+0+0},h5N8ld_5d:{y:undefined},QVlN8o90y:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||3323)-64-3871.1)/2+362+10)+0+2827.1+0+20+0+0+0+108}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1axhzz4-container\",layoutDependency:layoutDependency,layoutId:\"f04OKXyik-container\",children:/*#__PURE__*/_jsx(ButtonFooterLink,{FqbNu_He0:resolvedLinks39[0],height:\"100%\",id:\"f04OKXyik\",layoutId:\"f04OKXyik\",rA9CxB8kV:\"Amazon Seller Central Update\",style:{height:\"100%\",width:\"100%\"},variant:\"sEPKp7oTM\",width:\"100%\",...addPropertyOverrides({eKjGXRSJg:{FqbNu_He0:resolvedLinks39[5]},FVP9QM1Ty:{FqbNu_He0:resolvedLinks39[3]},gLjDmy05C:{FqbNu_He0:resolvedLinks39[4]},h5N8ld_5d:{FqbNu_He0:resolvedLinks39[1]},QVlN8o90y:{FqbNu_He0:resolvedLinks39[2]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"yRggtd52p\"},implicitPathVariables:undefined},{href:{webPageId:\"yRggtd52p\"},implicitPathVariables:undefined},{href:{webPageId:\"yRggtd52p\"},implicitPathVariables:undefined},{href:{webPageId:\"yRggtd52p\"},implicitPathVariables:undefined},{href:{webPageId:\"yRggtd52p\"},implicitPathVariables:undefined},{href:{webPageId:\"yRggtd52p\"},implicitPathVariables:undefined}],children:resolvedLinks40=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,width:\"236px\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+48+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1575)-96-1933)/2+362+10)+0+1049+0+20+8+0,...addPropertyOverrides({eKjGXRSJg:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-64-1279.1)/2+362+10)+0+379.1+0+20+0+0+0},FVP9QM1Ty:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+48+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1520)-96-1145)/2+362+10)+0+261+0+20+8+0},gLjDmy05C:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-48-1201)/2+362+10)+0+261+0+20+0+0+0},h5N8ld_5d:{y:undefined},QVlN8o90y:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||3323)-64-3871.1)/2+362+10)+0+2827.1+0+20+0+0+0+144}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-ul64y8-container\",layoutDependency:layoutDependency,layoutId:\"yoh3nEL9_-container\",children:/*#__PURE__*/_jsx(ButtonFooterLink,{FqbNu_He0:resolvedLinks40[0],height:\"100%\",id:\"yoh3nEL9_\",layoutId:\"yoh3nEL9_\",rA9CxB8kV:\"Amazon Creative service Portfolio\",style:{height:\"100%\",width:\"100%\"},variant:\"sEPKp7oTM\",width:\"100%\",...addPropertyOverrides({eKjGXRSJg:{FqbNu_He0:resolvedLinks40[5]},FVP9QM1Ty:{FqbNu_He0:resolvedLinks40[3]},gLjDmy05C:{FqbNu_He0:resolvedLinks40[4]},h5N8ld_5d:{FqbNu_He0:resolvedLinks40[1]},QVlN8o90y:{FqbNu_He0:resolvedLinks40[2]}},baseVariant,gestureVariant)})})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1jz3tu4\",\"data-framer-name\":\"Social Group\",layoutDependency:layoutDependency,layoutId:\"K4gg8pFf5\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+48+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1575)-96-1933)/2+362+10)+0+1049+0+20+0+0,...addPropertyOverrides({eKjGXRSJg:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-64-1279.1)/2+362+10)+0+379.1+0+20+0+48+0},FVP9QM1Ty:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+48+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1520)-96-1145)/2+362+10)+0+261+0+20+0+0},gLjDmy05C:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-48-1201)/2+362+10)+0+261+0+20+0+56+0},h5N8ld_5d:{y:undefined},QVlN8o90y:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||3323)-64-3871.1)/2+362+10)+0+2827.1+0+20+0+192+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-108vr6y-container\",layoutDependency:layoutDependency,layoutId:\"tS8mNpiKM-container\",children:/*#__PURE__*/_jsx(ButtonSocialLink,{height:\"100%\",id:\"tS8mNpiKM\",layoutId:\"tS8mNpiKM\",variant:\"tiBXIR6Vj\",VrHVEIhoJ:\"https://www.linkedin.com/company/estorefactory/\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+48+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1575)-96-1933)/2+362+10)+0+1049+0+20+0+0,...addPropertyOverrides({eKjGXRSJg:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-64-1279.1)/2+362+10)+0+379.1+0+20+0+48+0},FVP9QM1Ty:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+48+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1520)-96-1145)/2+362+10)+0+261+0+20+0+0},gLjDmy05C:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-48-1201)/2+362+10)+0+261+0+20+0+56+0},h5N8ld_5d:{y:undefined},QVlN8o90y:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||3323)-64-3871.1)/2+362+10)+0+2827.1+0+20+0+192+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-oq2fdz-container\",layoutDependency:layoutDependency,layoutId:\"GvuxJGpy5-container\",children:/*#__PURE__*/_jsx(ButtonSocialLink,{height:\"100%\",id:\"GvuxJGpy5\",layoutId:\"GvuxJGpy5\",variant:\"u7_jWHFr4\",VrHVEIhoJ:\"https://www.instagram.com/estorefactory/\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+48+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1575)-96-1933)/2+362+10)+0+1049+0+20+0+0,...addPropertyOverrides({eKjGXRSJg:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-64-1279.1)/2+362+10)+0+379.1+0+20+0+48+0},FVP9QM1Ty:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+48+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1520)-96-1145)/2+362+10)+0+261+0+20+0+0},gLjDmy05C:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-48-1201)/2+362+10)+0+261+0+20+0+56+0},h5N8ld_5d:{y:undefined},QVlN8o90y:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||3323)-64-3871.1)/2+362+10)+0+2827.1+0+20+0+192+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-13n40mu-container\",layoutDependency:layoutDependency,layoutId:\"zGdrYIh_9-container\",children:/*#__PURE__*/_jsx(ButtonSocialLink,{height:\"100%\",id:\"zGdrYIh_9\",layoutId:\"zGdrYIh_9\",variant:\"mL6LzXDgv\",VrHVEIhoJ:\"https://www.facebook.com/eStoreFactory/\",width:\"100%\"})})})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-o6hhjt\",\"data-framer-name\":\"Divider\",layoutDependency:layoutDependency,layoutId:\"XDnoZktXO\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ivgvfw\",\"data-framer-name\":\"Line\",layoutDependency:layoutDependency,layoutId:\"hO6375_CL\",style:{backgroundColor:\"var(--token-1cab753f-7df3-46fa-83a8-4e7ffa7f1580, rgb(234, 234, 235))\"}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-p0m6dh\",layoutDependency:layoutDependency,layoutId:\"Z7ftdXggP\",style:{backgroundColor:\"var(--token-1cab753f-7df3-46fa-83a8-4e7ffa7f1580, rgb(234, 234, 235))\",borderBottomLeftRadius:99,borderBottomRightRadius:99,borderTopLeftRadius:99,borderTopRightRadius:99}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-frtkyb\",\"data-framer-name\":\"Line\",layoutDependency:layoutDependency,layoutId:\"sluu8F9TM\",style:{backgroundColor:\"var(--token-1cab753f-7df3-46fa-83a8-4e7ffa7f1580, rgb(234, 234, 235))\"}})]})]}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1oukwl0\",\"data-framer-name\":\"Legal\",layoutDependency:layoutDependency,layoutId:\"ydQM2DfSt\",style:{backgroundColor:\"var(--token-47bece0f-745d-4be4-84da-84bbd1ba6a58, rgb(1, 80, 145))\",transformPerspective:1200},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-rzieet\",\"data-styles-preset\":\"S7JIaX3D9\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-69268266-8d11-4cae-857f-b2432f07a7b6, rgb(255, 255, 255)))\"},children:\"\\xa9 Copyright 2014 - 2024. All Rights Reserved.\"})}),className:\"framer-15369tm\",\"data-framer-name\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam ut lorem quis lectus molestie malesuada.\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Y9Xtu3tRU\",style:{\"--extracted-r6o4lv\":\"var(--token-69268266-8d11-4cae-857f-b2432f07a7b6, rgb(255, 255, 255))\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-azxxul-container\",layoutDependency:layoutDependency,layoutId:\"v0JVTO9hG-container\",children:/*#__PURE__*/_jsx(CookieBanner,{banner:{animation:{scale:0,transition:{delay:0,duration:.3,ease:[.44,0,.56,1],type:\"tween\"},x:0,y:10},containerWidth:0,inset:20,insetBottom:20,insetLeft:20,insetPerSide:false,insetRight:20,insetTop:20,padding:20,paddingBottom:20,paddingLeft:20,paddingPerSide:false,paddingRight:20,paddingTop:20,position:\"bottom-left\",style:{backdrop:\"rgba(0, 0, 0, 0.1)\",border:{color:\"rgba(0, 0, 0, 0.05)\",radius:14,width:1},colorBody:\"rgb(68, 68, 68)\",colorTitle:\"rgb(0, 0, 0)\",fill:\"rgb(255, 255, 255)\",fontBody:{},fontTitle:{},link:\"rgb(153, 153, 153)\"},width:360,zIndex:10},button:{borderRadius:8,direction:\"row\",fluid:true,font:{},hoverOpacity:.6,labels:{accept:\"Accept\",acceptAll:\"Accept all\",confirm:\"Okay\",customize:\"Customize\",reject:\"Reject\",rejectAll:\"Reject all\",save:\"Save Preferences\"},padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,primary:{color:\"rgb(255, 255, 255)\",fill:\"rgb(0, 0, 0)\"},secondary:{color:\"rgb(68, 68, 68)\",fill:\"rgb(238, 238, 238)\"},tapOpacity:.4},content:{euBlocking:false,euDefaults:{analytics:false,marketing:false,necessary:true,preferences:false},euDescription:\"We use cookies to enhance your experience, analyze site traffic and deliver personalized content.\",euPolicy:{label:\"Cookie Policy\",link:\"https://www.framer.com/legal/policy/\",prefix:\"Read our\"},euShowReject:true,euTitle:\"Cookie Settings\",euType:\"medium\",isEU:false,worldBlocking:false,worldDefaults:{analytics:true,marketing:true,necessary:true,preferences:true},worldDescription:\"We use cookies to personalize content, run ads, and analyze traffic.\",worldPolicy:{label:\"Cookie Policy\",prefix:\"Read our\"},worldShowReject:true,worldTitle:\"Cookie Settings\",worldType:\"simple\"},gtmId:\"GTM-TLB49DNZ\",height:\"100%\",id:\"v0JVTO9hG\",layoutId:\"v0JVTO9hG\",options:{analytics:{description:\"Enables tracking of performance.\",title:\"Analytics\"},marketing:{description:\"Enables ads personalization and tracking.\",title:\"Marketing\"},necessary:{description:\"Enables security and basic functionality.\",optional:true,title:\"Necessary\"},preferences:{description:\"Enables personalized content and settings.\",title:\"Preferences\"},preview:false,style:{background:\"rgba(0, 0, 0, 0.02)\",border:{color:\"rgba(0, 0, 0, 0.02)\",radius:8,width:0},fontBody:{},fontTitle:{},padding:12,paddingBottom:12,paddingLeft:12,paddingPerSide:false,paddingRight:12,paddingTop:12,toggleColor:\"rgb(0, 0, 0)\",toggleColorInactive:\"rgba(0, 0, 0, 0.1)\"}},preview:true,trigger:{color:\"rgb(51, 51, 51)\",iconSize:24,iconType:\"default\",text:\"Cookie Settings\",textFont:{},type:\"none\"},width:\"100%\",...addPropertyOverrides({QVlN8o90y:{banner:{animation:{scale:0,transition:{delay:0,duration:.3,ease:[.44,0,.56,1],type:\"tween\"},x:0,y:10},containerWidth:0,inset:20,insetBottom:20,insetLeft:20,insetPerSide:false,insetRight:20,insetTop:20,padding:20,paddingBottom:20,paddingLeft:20,paddingPerSide:false,paddingRight:20,paddingTop:20,position:\"top-center\",style:{backdrop:\"rgba(0, 0, 0, 0.1)\",border:{color:\"rgba(0, 0, 0, 0.05)\",radius:14,width:1},colorBody:\"rgb(68, 68, 68)\",colorTitle:\"rgb(0, 0, 0)\",fill:\"rgb(255, 255, 255)\",fontBody:{},fontTitle:{},link:\"rgb(153, 153, 153)\"},width:360,zIndex:10}}},baseVariant,gestureVariant)})})})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-hqh6Z.framer-gee9se, .framer-hqh6Z .framer-gee9se { display: block; }\",\".framer-hqh6Z.framer-16449hz { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 48px 24px 48px 24px; position: relative; width: 1234px; }\",\".framer-hqh6Z .framer-1ak83gh-container { flex: none; height: auto; position: relative; width: auto; z-index: 1; }\",\".framer-hqh6Z .framer-1h1tx7j { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-hqh6Z .framer-14dk0vw { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-hqh6Z .framer-1ia67el { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; max-width: 384px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-hqh6Z .framer-169mljo { aspect-ratio: 3.95 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 45px); overflow: visible; position: relative; text-decoration: none; width: 178px; }\",\".framer-hqh6Z .framer-a0f5d1, .framer-hqh6Z .framer-1wrnrrr, .framer-hqh6Z .framer-f3wnwf, .framer-hqh6Z .framer-1jwwosg, .framer-hqh6Z .framer-cuclz4, .framer-hqh6Z .framer-5t5krt, .framer-hqh6Z .framer-uzrpqp { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-hqh6Z .framer-xvu9jm { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-end; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-hqh6Z .framer-1j8h9tx { aspect-ratio: 1.222222222222222 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 126px); overflow: visible; position: relative; width: 153px; }\",\".framer-hqh6Z .framer-s9qbph { aspect-ratio: 1.2371134020618557 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 126px); overflow: visible; position: relative; width: 156px; }\",\".framer-hqh6Z .framer-18liiap, .framer-hqh6Z .framer-q71r1z, .framer-hqh6Z .framer-o6hhjt { 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: 100%; }\",\".framer-hqh6Z .framer-6j87op, .framer-hqh6Z .framer-1n09jz0, .framer-hqh6Z .framer-5z0beh, .framer-hqh6Z .framer-17anzwj, .framer-hqh6Z .framer-1ivgvfw, .framer-hqh6Z .framer-frtkyb { flex: 1 0 0px; height: 1px; overflow: visible; position: relative; width: 1px; }\",\".framer-hqh6Z .framer-by73mn, .framer-hqh6Z .framer-1wfyktg, .framer-hqh6Z .framer-p0m6dh { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 4px); overflow: visible; position: relative; width: 4px; }\",\".framer-hqh6Z .framer-1i4w1d, .framer-hqh6Z .framer-525s2f { 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; position: relative; width: 100%; }\",\".framer-hqh6Z .framer-56s2o9 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-hqh6Z .framer-1dwddv8 { display: grid; flex: 1 0 0px; gap: 36px; grid-auto-rows: min-content; grid-template-columns: repeat(4, minmax(1px, 1fr)); grid-template-rows: repeat(2, min-content); height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-hqh6Z .framer-1lpy6x1 { align-content: flex-start; align-items: flex-start; align-self: start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; justify-self: start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-hqh6Z .framer-10gej9r { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-hqh6Z .framer-pssnlt-container, .framer-hqh6Z .framer-19pe0i7-container, .framer-hqh6Z .framer-6kraal-container, .framer-hqh6Z .framer-zxu4qg-container, .framer-hqh6Z .framer-ijd6ua-container, .framer-hqh6Z .framer-1aft4ph-container, .framer-hqh6Z .framer-ekvnus-container, .framer-hqh6Z .framer-190zqen-container, .framer-hqh6Z .framer-f1a5ib-container, .framer-hqh6Z .framer-w87q4b-container, .framer-hqh6Z .framer-181btdd-container, .framer-hqh6Z .framer-oi9idx-container, .framer-hqh6Z .framer-2y245k-container, .framer-hqh6Z .framer-tmszch-container, .framer-hqh6Z .framer-1l88fhd-container, .framer-hqh6Z .framer-aqwa38-container, .framer-hqh6Z .framer-1q9umc1-container, .framer-hqh6Z .framer-9t3s96-container, .framer-hqh6Z .framer-v9j5bu-container, .framer-hqh6Z .framer-7vya9t-container, .framer-hqh6Z .framer-10kfttf-container, .framer-hqh6Z .framer-lbgwb9-container, .framer-hqh6Z .framer-1kz8rf4-container, .framer-hqh6Z .framer-uvbh8n-container, .framer-hqh6Z .framer-brgdt-container, .framer-hqh6Z .framer-1sgf9tj-container, .framer-hqh6Z .framer-7jd15n-container, .framer-hqh6Z .framer-1dmjipb-container, .framer-hqh6Z .framer-15hckqf-container, .framer-hqh6Z .framer-jviru8-container, .framer-hqh6Z .framer-119xe0v-container, .framer-hqh6Z .framer-ndwdxp-container, .framer-hqh6Z .framer-1irlz68-container, .framer-hqh6Z .framer-13c0rf8-container, .framer-hqh6Z .framer-5xmd3c-container { flex: none; height: 24px; position: relative; width: 100%; }\",\".framer-hqh6Z .framer-zhrbu7 { align-content: flex-start; align-items: flex-start; align-self: start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 72px; height: auto; justify-content: flex-end; justify-self: start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-hqh6Z .framer-1yw2mp9, .framer-hqh6Z .framer-1vn2by0, .framer-hqh6Z .framer-on558e, .framer-hqh6Z .framer-183deiz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-hqh6Z .framer-juov73 { align-content: flex-start; align-items: flex-start; align-self: start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 72px; height: auto; justify-content: flex-start; justify-self: start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-hqh6Z .framer-y5r963 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-hqh6Z .framer-1ixd920 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-hqh6Z .framer-1usat3r-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-hqh6Z .framer-kcomiz { align-content: flex-start; align-items: flex-start; align-self: start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 36px; height: auto; justify-content: flex-start; justify-self: start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-hqh6Z .framer-1g9nems { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-hqh6Z .framer-wpqwg4 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-hqh6Z .framer-1rvab01-container { flex: none; height: 24px; position: relative; width: 92px; }\",\".framer-hqh6Z .framer-1gtm5cw-container, .framer-hqh6Z .framer-1vh0nxy-container { flex: none; height: 24px; position: relative; width: 94px; }\",\".framer-hqh6Z .framer-1axhzz4-container, .framer-hqh6Z .framer-ul64y8-container { flex: none; height: 24px; position: relative; width: 236px; }\",\".framer-hqh6Z .framer-1jz3tu4 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-hqh6Z .framer-108vr6y-container, .framer-hqh6Z .framer-oq2fdz-container, .framer-hqh6Z .framer-13n40mu-container, .framer-hqh6Z .framer-azxxul-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-hqh6Z .framer-1oukwl0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 16px 0px 16px 0px; position: relative; width: 100%; }\",\".framer-hqh6Z .framer-15369tm { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-hqh6Z.framer-16449hz, .framer-hqh6Z .framer-1h1tx7j, .framer-hqh6Z .framer-1ia67el, .framer-hqh6Z .framer-xvu9jm, .framer-hqh6Z .framer-18liiap, .framer-hqh6Z .framer-1i4w1d, .framer-hqh6Z .framer-1lpy6x1, .framer-hqh6Z .framer-zhrbu7, .framer-hqh6Z .framer-1yw2mp9, .framer-hqh6Z .framer-1vn2by0, .framer-hqh6Z .framer-juov73, .framer-hqh6Z .framer-y5r963, .framer-hqh6Z .framer-1ixd920, .framer-hqh6Z .framer-kcomiz, .framer-hqh6Z .framer-on558e, .framer-hqh6Z .framer-183deiz, .framer-hqh6Z .framer-525s2f, .framer-hqh6Z .framer-q71r1z, .framer-hqh6Z .framer-1g9nems, .framer-hqh6Z .framer-wpqwg4, .framer-hqh6Z .framer-1jz3tu4, .framer-hqh6Z .framer-o6hhjt, .framer-hqh6Z .framer-1oukwl0 { gap: 0px; } .framer-hqh6Z.framer-16449hz > *, .framer-hqh6Z .framer-1ixd920 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-hqh6Z.framer-16449hz > :first-child, .framer-hqh6Z .framer-1h1tx7j > :first-child, .framer-hqh6Z .framer-1ia67el > :first-child, .framer-hqh6Z .framer-1i4w1d > :first-child, .framer-hqh6Z .framer-1lpy6x1 > :first-child, .framer-hqh6Z .framer-zhrbu7 > :first-child, .framer-hqh6Z .framer-1yw2mp9 > :first-child, .framer-hqh6Z .framer-1vn2by0 > :first-child, .framer-hqh6Z .framer-juov73 > :first-child, .framer-hqh6Z .framer-y5r963 > :first-child, .framer-hqh6Z .framer-1ixd920 > :first-child, .framer-hqh6Z .framer-kcomiz > :first-child, .framer-hqh6Z .framer-on558e > :first-child, .framer-hqh6Z .framer-183deiz > :first-child, .framer-hqh6Z .framer-525s2f > :first-child { margin-top: 0px; } .framer-hqh6Z.framer-16449hz > :last-child, .framer-hqh6Z .framer-1h1tx7j > :last-child, .framer-hqh6Z .framer-1ia67el > :last-child, .framer-hqh6Z .framer-1i4w1d > :last-child, .framer-hqh6Z .framer-1lpy6x1 > :last-child, .framer-hqh6Z .framer-zhrbu7 > :last-child, .framer-hqh6Z .framer-1yw2mp9 > :last-child, .framer-hqh6Z .framer-1vn2by0 > :last-child, .framer-hqh6Z .framer-juov73 > :last-child, .framer-hqh6Z .framer-y5r963 > :last-child, .framer-hqh6Z .framer-1ixd920 > :last-child, .framer-hqh6Z .framer-kcomiz > :last-child, .framer-hqh6Z .framer-on558e > :last-child, .framer-hqh6Z .framer-183deiz > :last-child, .framer-hqh6Z .framer-525s2f > :last-child { margin-bottom: 0px; } .framer-hqh6Z .framer-1h1tx7j > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-hqh6Z .framer-1ia67el > *, .framer-hqh6Z .framer-1i4w1d > *, .framer-hqh6Z .framer-1lpy6x1 > *, .framer-hqh6Z .framer-525s2f > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-hqh6Z .framer-xvu9jm > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-hqh6Z .framer-xvu9jm > :first-child, .framer-hqh6Z .framer-18liiap > :first-child, .framer-hqh6Z .framer-q71r1z > :first-child, .framer-hqh6Z .framer-1g9nems > :first-child, .framer-hqh6Z .framer-wpqwg4 > :first-child, .framer-hqh6Z .framer-1jz3tu4 > :first-child, .framer-hqh6Z .framer-o6hhjt > :first-child, .framer-hqh6Z .framer-1oukwl0 > :first-child { margin-left: 0px; } .framer-hqh6Z .framer-xvu9jm > :last-child, .framer-hqh6Z .framer-18liiap > :last-child, .framer-hqh6Z .framer-q71r1z > :last-child, .framer-hqh6Z .framer-1g9nems > :last-child, .framer-hqh6Z .framer-wpqwg4 > :last-child, .framer-hqh6Z .framer-1jz3tu4 > :last-child, .framer-hqh6Z .framer-o6hhjt > :last-child, .framer-hqh6Z .framer-1oukwl0 > :last-child { margin-right: 0px; } .framer-hqh6Z .framer-18liiap > *, .framer-hqh6Z .framer-q71r1z > *, .framer-hqh6Z .framer-o6hhjt > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-hqh6Z .framer-zhrbu7 > *, .framer-hqh6Z .framer-juov73 > * { margin: 0px; margin-bottom: calc(72px / 2); margin-top: calc(72px / 2); } .framer-hqh6Z .framer-1yw2mp9 > *, .framer-hqh6Z .framer-1vn2by0 > *, .framer-hqh6Z .framer-y5r963 > *, .framer-hqh6Z .framer-on558e > *, .framer-hqh6Z .framer-183deiz > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-hqh6Z .framer-kcomiz > * { margin: 0px; margin-bottom: calc(36px / 2); margin-top: calc(36px / 2); } .framer-hqh6Z .framer-1g9nems > *, .framer-hqh6Z .framer-wpqwg4 > *, .framer-hqh6Z .framer-1oukwl0 > * { margin: 0px; margin-left: calc(32px / 2); margin-right: calc(32px / 2); } .framer-hqh6Z .framer-1jz3tu4 > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } }\",\".framer-hqh6Z.framer-v-19nsuq5.framer-16449hz, .framer-hqh6Z.framer-v-13odlbc.framer-16449hz { padding: 0px 24px 48px 24px; width: 810px; }\",\".framer-hqh6Z.framer-v-19nsuq5 .framer-1ak83gh-container, .framer-hqh6Z.framer-v-bcx1rr .framer-1ak83gh-container, .framer-hqh6Z.framer-v-13odlbc .framer-1ak83gh-container, .framer-hqh6Z.framer-v-13e587x .framer-1ak83gh-container { width: 100%; }\",\".framer-hqh6Z.framer-v-19nsuq5 .framer-56s2o9, .framer-hqh6Z.framer-v-bcx1rr .framer-56s2o9 { flex-direction: column; gap: 32px; justify-content: flex-start; }\",\".framer-hqh6Z.framer-v-19nsuq5 .framer-1dwddv8 { flex: none; grid-template-columns: repeat(2, minmax(1px, 1fr)); width: 100%; }\",\".framer-hqh6Z.framer-v-19nsuq5 .framer-zhrbu7 { gap: 56px; }\",\".framer-hqh6Z.framer-v-19nsuq5 .framer-1g9nems, .framer-hqh6Z.framer-v-13odlbc .framer-1g9nems { flex-direction: column; }\",\".framer-hqh6Z.framer-v-19nsuq5 .framer-wpqwg4 { flex: none; flex-wrap: wrap; gap: 16px; justify-content: center; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-hqh6Z.framer-v-19nsuq5 .framer-56s2o9, .framer-hqh6Z.framer-v-19nsuq5 .framer-zhrbu7, .framer-hqh6Z.framer-v-19nsuq5 .framer-1g9nems, .framer-hqh6Z.framer-v-19nsuq5 .framer-wpqwg4 { gap: 0px; } .framer-hqh6Z.framer-v-19nsuq5 .framer-56s2o9 > *, .framer-hqh6Z.framer-v-19nsuq5 .framer-1g9nems > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-hqh6Z.framer-v-19nsuq5 .framer-56s2o9 > :first-child, .framer-hqh6Z.framer-v-19nsuq5 .framer-zhrbu7 > :first-child, .framer-hqh6Z.framer-v-19nsuq5 .framer-1g9nems > :first-child { margin-top: 0px; } .framer-hqh6Z.framer-v-19nsuq5 .framer-56s2o9 > :last-child, .framer-hqh6Z.framer-v-19nsuq5 .framer-zhrbu7 > :last-child, .framer-hqh6Z.framer-v-19nsuq5 .framer-1g9nems > :last-child { margin-bottom: 0px; } .framer-hqh6Z.framer-v-19nsuq5 .framer-zhrbu7 > * { margin: 0px; margin-bottom: calc(56px / 2); margin-top: calc(56px / 2); } .framer-hqh6Z.framer-v-19nsuq5 .framer-wpqwg4 > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-hqh6Z.framer-v-19nsuq5 .framer-wpqwg4 > :first-child { margin-left: 0px; } .framer-hqh6Z.framer-v-19nsuq5 .framer-wpqwg4 > :last-child { margin-right: 0px; } }\",\".framer-hqh6Z.framer-v-bcx1rr.framer-16449hz, .framer-hqh6Z.framer-v-13e587x.framer-16449hz { padding: 0px 24px 64px 24px; width: 390px; }\",\".framer-hqh6Z.framer-v-bcx1rr .framer-1h1tx7j, .framer-hqh6Z.framer-v-13e587x .framer-1h1tx7j { gap: 24px; }\",\".framer-hqh6Z.framer-v-bcx1rr .framer-14dk0vw, .framer-hqh6Z.framer-v-13e587x .framer-14dk0vw { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 24px; justify-content: flex-start; }\",\".framer-hqh6Z.framer-v-bcx1rr .framer-1ia67el, .framer-hqh6Z.framer-v-13e587x .framer-1ia67el, .framer-hqh6Z.framer-v-13e587x .framer-wpqwg4 { flex: none; width: 100%; }\",\".framer-hqh6Z.framer-v-bcx1rr .framer-xvu9jm, .framer-hqh6Z.framer-v-13e587x .framer-xvu9jm { flex: none; justify-content: center; width: 100%; }\",\".framer-hqh6Z.framer-v-bcx1rr .framer-1j8h9tx, .framer-hqh6Z.framer-v-13odlbc .framer-1j8h9tx, .framer-hqh6Z.framer-v-13e587x .framer-1j8h9tx { height: var(--framer-aspect-ratio-supported, 125px); }\",\".framer-hqh6Z.framer-v-bcx1rr .framer-1dwddv8 { flex: none; grid-template-columns: repeat(1, minmax(1px, 1fr)); grid-template-rows: repeat(5, min-content); width: 100%; }\",\".framer-hqh6Z.framer-v-bcx1rr .framer-1g9nems, .framer-hqh6Z.framer-v-13e587x .framer-1g9nems { flex-direction: column; gap: 24px; }\",\".framer-hqh6Z.framer-v-bcx1rr .framer-wpqwg4 { align-content: flex-start; align-items: flex-start; flex: none; flex-direction: column; flex-wrap: wrap; gap: 12px; width: 100%; }\",\".framer-hqh6Z.framer-v-bcx1rr .framer-1oukwl0, .framer-hqh6Z.framer-v-13e587x .framer-1oukwl0 { align-content: flex-start; align-items: flex-start; gap: 24px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-hqh6Z.framer-v-bcx1rr .framer-1h1tx7j, .framer-hqh6Z.framer-v-bcx1rr .framer-14dk0vw, .framer-hqh6Z.framer-v-bcx1rr .framer-56s2o9, .framer-hqh6Z.framer-v-bcx1rr .framer-1g9nems, .framer-hqh6Z.framer-v-bcx1rr .framer-wpqwg4, .framer-hqh6Z.framer-v-bcx1rr .framer-1oukwl0 { gap: 0px; } .framer-hqh6Z.framer-v-bcx1rr .framer-1h1tx7j > *, .framer-hqh6Z.framer-v-bcx1rr .framer-14dk0vw > *, .framer-hqh6Z.framer-v-bcx1rr .framer-1g9nems > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-hqh6Z.framer-v-bcx1rr .framer-1h1tx7j > :first-child, .framer-hqh6Z.framer-v-bcx1rr .framer-14dk0vw > :first-child, .framer-hqh6Z.framer-v-bcx1rr .framer-56s2o9 > :first-child, .framer-hqh6Z.framer-v-bcx1rr .framer-1g9nems > :first-child, .framer-hqh6Z.framer-v-bcx1rr .framer-wpqwg4 > :first-child { margin-top: 0px; } .framer-hqh6Z.framer-v-bcx1rr .framer-1h1tx7j > :last-child, .framer-hqh6Z.framer-v-bcx1rr .framer-14dk0vw > :last-child, .framer-hqh6Z.framer-v-bcx1rr .framer-56s2o9 > :last-child, .framer-hqh6Z.framer-v-bcx1rr .framer-1g9nems > :last-child, .framer-hqh6Z.framer-v-bcx1rr .framer-wpqwg4 > :last-child { margin-bottom: 0px; } .framer-hqh6Z.framer-v-bcx1rr .framer-56s2o9 > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-hqh6Z.framer-v-bcx1rr .framer-wpqwg4 > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-hqh6Z.framer-v-bcx1rr .framer-1oukwl0 > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-hqh6Z.framer-v-bcx1rr .framer-1oukwl0 > :first-child { margin-left: 0px; } .framer-hqh6Z.framer-v-bcx1rr .framer-1oukwl0 > :last-child { margin-right: 0px; } }\",\".framer-hqh6Z.framer-v-b2i42b .framer-1i4w1d, .framer-hqh6Z.framer-v-13odlbc .framer-1i4w1d, .framer-hqh6Z.framer-v-13e587x .framer-1i4w1d { min-height: 541px; }\",\".framer-hqh6Z.framer-v-13odlbc .framer-wpqwg4 { flex: none; gap: unset; justify-content: space-evenly; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-hqh6Z.framer-v-13odlbc .framer-1g9nems, .framer-hqh6Z.framer-v-13odlbc .framer-wpqwg4 { gap: 0px; } .framer-hqh6Z.framer-v-13odlbc .framer-1g9nems > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-hqh6Z.framer-v-13odlbc .framer-1g9nems > :first-child { margin-top: 0px; } .framer-hqh6Z.framer-v-13odlbc .framer-1g9nems > :last-child { margin-bottom: 0px; } .framer-hqh6Z.framer-v-13odlbc .framer-wpqwg4 > *, .framer-hqh6Z.framer-v-13odlbc .framer-wpqwg4 > :first-child, .framer-hqh6Z.framer-v-13odlbc .framer-wpqwg4 > :last-child { margin: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-hqh6Z.framer-v-13e587x .framer-1h1tx7j, .framer-hqh6Z.framer-v-13e587x .framer-14dk0vw, .framer-hqh6Z.framer-v-13e587x .framer-1g9nems, .framer-hqh6Z.framer-v-13e587x .framer-1oukwl0 { gap: 0px; } .framer-hqh6Z.framer-v-13e587x .framer-1h1tx7j > *, .framer-hqh6Z.framer-v-13e587x .framer-14dk0vw > *, .framer-hqh6Z.framer-v-13e587x .framer-1g9nems > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-hqh6Z.framer-v-13e587x .framer-1h1tx7j > :first-child, .framer-hqh6Z.framer-v-13e587x .framer-14dk0vw > :first-child, .framer-hqh6Z.framer-v-13e587x .framer-1g9nems > :first-child { margin-top: 0px; } .framer-hqh6Z.framer-v-13e587x .framer-1h1tx7j > :last-child, .framer-hqh6Z.framer-v-13e587x .framer-14dk0vw > :last-child, .framer-hqh6Z.framer-v-13e587x .framer-1g9nems > :last-child { margin-bottom: 0px; } .framer-hqh6Z.framer-v-13e587x .framer-1oukwl0 > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-hqh6Z.framer-v-13e587x .framer-1oukwl0 > :first-child { margin-left: 0px; } .framer-hqh6Z.framer-v-13e587x .framer-1oukwl0 > :last-child { margin-right: 0px; } }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 1575\n * @framerIntrinsicWidth 1234\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"h5N8ld_5d\":{\"layout\":[\"fixed\",\"auto\"]},\"QVlN8o90y\":{\"layout\":[\"fixed\",\"auto\"]},\"FVP9QM1Ty\":{\"layout\":[\"fixed\",\"auto\"]},\"gLjDmy05C\":{\"layout\":[\"fixed\",\"auto\"]},\"eKjGXRSJg\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerxrEXTrCP5=withCSS(Component,css,\"framer-hqh6Z\");export default FramerxrEXTrCP5;FramerxrEXTrCP5.displayName=\"Section / Footer\";FramerxrEXTrCP5.defaultProps={height:1575,width:1234};addPropertyControls(FramerxrEXTrCP5,{variant:{options:[\"q7FfmAV82\",\"h5N8ld_5d\",\"QVlN8o90y\",\"FVP9QM1Ty\",\"gLjDmy05C\",\"eKjGXRSJg\"],optionTitles:[\"Desktop\",\"Tablet\",\"Phone\",\"No footer desktop\",\"No footer tablet\",\"no footer mobile\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerxrEXTrCP5,[{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\"}]},...ContactFooterFonts,...ButtonFooterLinkFonts,...ButtonSocialLinkFonts,...CookieBannerFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerxrEXTrCP5\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"1234\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"h5N8ld_5d\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"QVlN8o90y\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"FVP9QM1Ty\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"gLjDmy05C\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"eKjGXRSJg\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"1575\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./xrEXTrCP5.map"],
  "mappings": "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",
  "names": ["useConstant", "init", "ref", "pe", "BASE62", "randomID", "length", "useRandomID", "useConstant", "cycleOrder", "variantClassNames", "humanReadableVariantMap", "transitions", "Component", "Y", "externalStyle", "className", "width", "height", "layoutId", "outerVariant", "TBgHLr7MW", "iWF8EWIN1", "restProps", "ref", "variant", "variants", "baseVariant", "gestureVariant", "classNames", "transition", "setVariant", "setGestureState", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTapsct6xz", "args", "onTap7ln769", "variantProps", "se", "addVariantProps", "useAddVariantProps", "defaultLayoutId", "useRandomID", "pointerEvents", "style", "p", "LayoutGroup", "motion", "cx", "u", "css", "FramerF8KjCKf_G", "withCSS", "F8KjCKf_G_default", "addPropertyControls", "ControlType", "addFonts", "fontStore", "fonts", "css", "className", "PhosphorFonts", "getFonts", "Icon", "Phosphor1Controls", "getPropertyControls", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "toResponsiveImage", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "icon", "id", "lIcon", "link", "rIcon", "title", "width", "props", "_ref", "_ref1", "_ref2", "_ref3", "_humanReadableVariantMap_props_variant", "_ref4", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "ftl3XnncM", "szUqJH3Kk", "RT0LyIPut", "h8PGDiTvJ", "syqdJQsbQ", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "isDisplayed", "isDisplayed1", "isDisplayed2", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "u", "cx", "Image2", "ComponentViewportProvider", "RichText2", "css", "Framerbuh6M_G1z", "withCSS", "buh6M_G1z_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "PhosphorFonts", "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", "getProps", "height", "id", "link", "title", "width", "props", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "BRl28kBHN", "ZYn5aa6DP", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "u", "cx", "RichText2", "ComponentViewportProvider", "css", "Framercp4q3RTCZ", "withCSS", "cp4q3RTCZ_default", "addPropertyControls", "ControlType", "addFonts", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "click", "height", "id", "link", "title", "width", "props", "_ref", "_humanReadableVariantMap_props_variant", "_ref1", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "mgnJiPHiA", "S1Rf6xng8", "vwqVc_004", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap161r46z", "args", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "cx", "RichText2", "css", "FramerDTrGQFLw5", "withCSS", "DTrGQFLw5_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "PhosphorFonts", "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", "getProps", "amount", "height", "id", "link", "width", "props", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "da8xseUDc", "B78f2pOY_", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "u", "cx", "RichText2", "ComponentViewportProvider", "css", "FramerEZPjNmdzl", "withCSS", "EZPjNmdzl_default", "addPropertyControls", "ControlType", "addFonts", "MaterialFonts", "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", "click", "height", "id", "title", "width", "props", "_ref", "_humanReadableVariantMap_props_variant", "_ref1", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "S1Rf6xng8", "vwqVc_004", "mgnJiPHiADTrGQFLw5", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap161r46z", "args", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "u", "cx", "RichText2", "ComponentViewportProvider", "css", "FramerHgf2nKEDv", "withCSS", "Hgf2nKEDv_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "ElementsMenuIconFonts", "getFonts", "F8KjCKf_G_default", "ButtonNavLinkCopyFonts", "Hgf2nKEDv_default", "Dropdown1Fonts", "cp4q3RTCZ_default", "Nav2Fonts", "EZPjNmdzl_default", "MotionDivWithFX", "withFX", "motion", "ButtonNavLinkFonts", "DTrGQFLw5_default", "ButtonSecondaryFonts", "buh6M_G1z_default", "ButtonNavLinkControls", "getPropertyControls", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "animation", "animation1", "animation2", "Overlay", "children", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "toResponsiveImage", "value", "Transition", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableEnumMap", "humanReadableVariantMap", "getProps", "aboutUsActive", "contactUsActive", "fBARefundsActive", "height", "id", "rIcon", "width", "props", "_humanReadableEnumMap_contactUsActive", "_ref", "_ref1", "_humanReadableEnumMap_fBARefundsActive", "_ref2", "_ref3", "_humanReadableEnumMap_aboutUsActive", "_ref4", "_ref5", "_humanReadableVariantMap_props_variant", "_ref6", "_ref7", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "JwPIjmcb0", "OROXrj_6s", "Fq7RwA2sa", "vG3pAKrp1", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "tap1ibuh1p", "args", "tap1lv800d", "vwqVc_004izu9gt", "overlay", "paginationInfo", "ref1", "pe", "isDisplayed", "isDisplayed1", "isDisplayed2", "ref2", "ref3", "router", "useRouter", "ref4", "ref5", "isDisplayed3", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "u", "Link", "Image2", "getLoadingLazyAtYPosition", "ComponentViewportProvider", "l", "AnimatePresence", "Floating", "ResolveLinks", "resolvedLinks", "resolvedLinks1", "resolvedLinks2", "RichText2", "resolvedLinks3", "resolvedLinks4", "resolvedLinks5", "resolvedLinks6", "resolvedLinks7", "overlay1", "resolvedLinks8", "resolvedLinks9", "resolvedLinks10", "resolvedLinks11", "resolvedLinks12", "resolvedLinks13", "resolvedLinks14", "resolvedLinks15", "resolvedLinks16", "resolvedLinks17", "resolvedLinks18", "resolvedLinks19", "resolvedLinks20", "resolvedLinks21", "resolvedLinks22", "resolvedLinks23", "resolvedLinks24", "resolvedLinks25", "resolvedLinks26", "resolvedLinks27", "resolvedLinks28", "resolvedLinks29", "resolvedLinks30", "resolvedLinks31", "css", "FramerljSN1mLHN", "withCSS", "ljSN1mLHN_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "PhosphorFonts", "getFonts", "Icon", "MotionAWithFX", "withFX", "motion", "MotionDivWithFX", "ImageWithFX", "Image2", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "animation", "transition2", "animation1", "transition3", "animation2", "animation3", "transition4", "animation4", "transition5", "animation5", "transition6", "animation6", "animation7", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "u", "Link", "ComponentViewportProvider", "RichText2", "getLoadingLazyAtYPosition", "css", "FramerGqqwobEDt", "withCSS", "GqqwobEDt_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "click", "height", "id", "link", "title", "width", "props", "_ref", "_humanReadableVariantMap_props_variant", "_ref1", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "rA9CxB8kV", "FqbNu_He0", "K4izAbmn9", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTapi9pfhi", "args", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "cx", "RichText2", "css", "FramerIAxc3cOpF", "withCSS", "IAxc3cOpF_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "PhosphorFonts", "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", "id", "link", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "VrHVEIhoJ", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "cx", "ComponentViewportProvider", "css", "FramerjBH_xgmPC", "withCSS", "jBH_xgmPC_default", "addPropertyControls", "ControlType", "addFonts", "ContactFooterFonts", "getFonts", "GqqwobEDt_default", "MotionDivWithFX", "withFX", "motion", "ButtonFooterLinkFonts", "IAxc3cOpF_default", "ButtonSocialLinkFonts", "jBH_xgmPC_default", "CookieBannerFonts", "CookieBanner", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "animation", "transition2", "animation1", "transition3", "animation2", "transition4", "animation3", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "isDisplayed", "router", "useRouter", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "ComponentViewportProvider", "Link", "Image2", "getLoadingLazyAtYPosition", "RichText2", "ResolveLinks", "resolvedLinks", "resolvedLinks1", "resolvedLinks2", "resolvedLinks3", "resolvedLinks4", "resolvedLinks5", "resolvedLinks6", "resolvedLinks7", "resolvedLinks8", "resolvedLinks9", "resolvedLinks10", "resolvedLinks11", "resolvedLinks12", "resolvedLinks13", "resolvedLinks14", "resolvedLinks15", "resolvedLinks16", "resolvedLinks17", "resolvedLinks18", "resolvedLinks19", "resolvedLinks20", "resolvedLinks21", "resolvedLinks22", "resolvedLinks23", "resolvedLinks24", "resolvedLinks25", "resolvedLinks26", "resolvedLinks27", "resolvedLinks28", "resolvedLinks29", "resolvedLinks30", "resolvedLinks31", "resolvedLinks32", "resolvedLinks33", "resolvedLinks34", "resolvedLinks35", "resolvedLinks36", "resolvedLinks37", "resolvedLinks38", "resolvedLinks39", "resolvedLinks40", "css", "FramerxrEXTrCP5", "withCSS", "xrEXTrCP5_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts"]
}
