{
  "version": 3,
  "sources": ["ssg:https://framer.com/m/framer/store.js@^1.0.0", "ssg:https://framer.com/m/framer/utils.js@^0.9.0", "ssg:https://framerusercontent.com/modules/Wytf0TRZmz1zjIIwuCgn/jXhjanqfckOoXzMbDLlW/Vwo_click_menucta.js", "ssg:https://framerusercontent.com/modules/i3Z9hV8XcHvj6Q26AETb/BebxLsQuITwrqrt30p35/A83DWhho4.js", "ssg:https://framerusercontent.com/modules/CjwzMkoCv2NXHgE4cAQF/7I8uxvltCaDeHehe0q6j/MEYrt1mVZ.js", "ssg:https://framerusercontent.com/modules/sa3cRpMhSRZc0Rel9bKd/W0B5aTMZqwBmxMHe7KAf/mSQVX6Tbe.js", "ssg:https://framerusercontent.com/modules/XtPdp6vmwEv5EP9RoaiP/AstCiid9CaM6Xciz1TF6/Tu4uPEe7t.js", "ssg:https://framerusercontent.com/modules/D6ffpY8rrBbXw7ZEtVEI/xlaqKRS4ZDYjY4DXx7lv/VTK_x9x__.js", "ssg:https://framerusercontent.com/modules/CuuytxP7kIpdgjGwL5Tp/AQLiKMlrQwjSjeX3GDri/Z5wneH1Su.js", "ssg:https://framerusercontent.com/modules/CYZA8im1LUSJsy9Vcm8Z/FRRNQhk0mmFPiXdFKXMA/xpY5YIhsR.js"],
  "sourcesContent": ["import{useState,useEffect}from\"react\";import{Data,useObserveData}from\"framer\";export function createStore(state1){// Use Data so that a Preview reload resets the state\nconst dataStore=Data({state:Object.freeze({...state1})});// Create a set function that updates the state\nconst setDataStore=newState=>{// If the state is an object, make sure we copy it\nif(typeof newState===\"function\"){newState=newState(dataStore.state);}dataStore.state=Object.freeze({...dataStore.state,...newState});};// Store the initial state, copy the object if it's an object\nlet storeState=typeof state1===\"object\"?Object.freeze({...state1}):state1;// Keep a list of all the listeners, in the form of React hook setters\nconst storeSetters=new Set();// Create a set function that updates all the listeners / setters\nconst setStoreState=newState=>{// If the state is an object, make sure we copy it\nif(typeof newState===\"function\"){newState=newState(storeState);}storeState=typeof newState===\"object\"?Object.freeze({...storeState,...newState}):newState;// Update all the listeners / setters with the new value\nstoreSetters.forEach(setter=>setter(storeState));};// Create the actual hook based on everything above\nfunction useStore(){// Create the hook we are going to use as a listener\nconst[state,setState]=useState(storeState);// If we unmount the component using this hook, we need to remove the listener\n// @ts-ignore\nuseEffect(()=>{// But right now, we need to add the listener\nstoreSetters.add(setState);return()=>storeSetters.delete(setState);},[]);// If Data context exists, use Data, otherwise use vanilla React state\nif(useObserveData()===true){useObserveData();return[dataStore.state,setDataStore];}else{// Return the state and a function to update the central store\nreturn[state,setStoreState];}}return useStore;}\nexport const __FramerMetadata__ = {\"exports\":{\"createStore\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./createStore.map", "export const centerContent = {\n    display: \"flex\",\n    justifyContent: \"center\",\n    alignItems: \"center\"\n};\nexport const autoSizingText = {\n    width: \"max-content\",\n    wordBreak: \"break-word\",\n    overflowWrap: \"break-word\",\n    overflow: \"hidden\",\n    whiteSpace: \"pre-wrap\",\n    flexShrink: 0\n};\nexport const defaultContainerStyles = {\n    ...centerContent,\n    overflow: \"hidden\"\n};\nexport const containerStyles = defaultContainerStyles;\nexport const randomColor = ()=>\"#\" + Math.floor(Math.random() * 16777215).toString(16)\n;\n\nexport const __FramerMetadata__ = {\"exports\":{\"centerContent\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"containerStyles\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"autoSizingText\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"defaultContainerStyles\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"randomColor\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}}}}\n//# sourceMappingURL=./Utils.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import{createStore}from\"https://framer.com/m/framer/store.js@^1.0.0\";import{randomColor}from\"https://framer.com/m/framer/utils.js@^0.9.0\";// Learn more: https://www.framer.com/developers/overrides/\nconst useStore=createStore({background:\"#0099FF\"});export function withClass(Component){return props=>{props.className+=\" vwo-click-menucta\"// Remember to add a space\n;return /*#__PURE__*/_jsx(Component,{...props});};}export function withRotate(Component){return props=>{return /*#__PURE__*/_jsx(Component,{...props,animate:{rotate:90},transition:{duration:2}});};}export function withHover(Component){return props=>{return /*#__PURE__*/_jsx(Component,{...props,whileHover:{scale:1.05}});};}export function withRandomColor(Component){return props=>{const[store,setStore]=useStore();return /*#__PURE__*/_jsx(Component,{...props,animate:{background:store.background},onClick:()=>{setStore({background:randomColor()});}});};}\nexport const __FramerMetadata__ = {\"exports\":{\"withRotate\":{\"type\":\"reactHoc\",\"name\":\"withRotate\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withRandomColor\":{\"type\":\"reactHoc\",\"name\":\"withRandomColor\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withHover\":{\"type\":\"reactHoc\",\"name\":\"withHover\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withClass\":{\"type\":\"reactHoc\",\"name\":\"withClass\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Vwo_click_menucta.map", "// Generated by Framer (e010222)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/3hlwzTMpMscIsbGDY0TH/2gcSf2NNpy6l2h2RlTYU/majvrcgXp.js\";const cycleOrder=[\"oR7WfrMOM\",\"x3wLTuZhw\",\"UVJuk9F3i\",\"m7hVIovZm\"];const serializationHash=\"framer-NIfAo\";const variantClassNames={m7hVIovZm:\"framer-v-8e1gsq\",oR7WfrMOM:\"framer-v-15pb148\",UVJuk9F3i:\"framer-v-a5rphq\",x3wLTuZhw:\"framer-v-lqtvv8\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Desktop About\":\"oR7WfrMOM\",Laptop:\"x3wLTuZhw\",Mobile:\"m7hVIovZm\",Tablet:\"UVJuk9F3i\"};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:\"oR7WfrMOM\"};};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:\"oR7WfrMOM\",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-15pb148\",className,classNames),\"data-framer-name\":\"Desktop About\",layoutDependency:layoutDependency,layoutId:\"oR7WfrMOM\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,boxShadow:\"0px 10px 20px 0px rgba(0,0,0,0.05)\",...style},variants:{m7hVIovZm:{borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0,boxShadow:\"none\"},UVJuk9F3i:{borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0,boxShadow:\"none\"},x3wLTuZhw:{borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0,boxShadow:\"none\"}},...addPropertyOverrides({m7hVIovZm:{\"data-framer-name\":\"Mobile\"},UVJuk9F3i:{\"data-framer-name\":\"Tablet\"},x3wLTuZhw:{\"data-framer-name\":\"Laptop\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ij7bty\",\"data-framer-name\":\"Menu\",layoutDependency:layoutDependency,layoutId:\"UmQsPYoG4\",style:{backgroundColor:\"rgb(255, 255, 255)\",boxShadow:\"0px 8px 9px -2px rgba(0, 0, 0, 0.20000000298023224)\"},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-782nk3\",\"data-framer-name\":\"Col 8\",layoutDependency:layoutDependency,layoutId:\"r192LZ91h\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7R2Vpc3QtNjAw\",\"--framer-font-family\":'\"Geist\", \"Geist Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.08em\",\"--framer-line-height\":\"30.6px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 36, 78))\",\"--framer-text-transform\":\"uppercase\"},children:\"Your Automation Experts\"})}),className:\"framer-4j09gn\",\"data-framer-name\":\"Your Automation Experts\",fonts:[\"GF;Geist-600\"],layoutDependency:layoutDependency,layoutId:\"M9O0DG0D2\",style:{\"--extracted-r6o4lv\":\"rgb(255, 36, 78)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-19hnpbl\",\"data-framer-name\":\"Links\",layoutDependency:layoutDependency,layoutId:\"deqOCRlkj\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1yfr6w9\",\"data-framer-name\":\"Menu Item\",layoutDependency:layoutDependency,layoutId:\"kKUXs4Tcr\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"27.2px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(72, 77, 103))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"AjyFryZVK\"},nodeId:\"WtTAtD1Z3\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-yhwqya\",\"data-styles-preset\":\"majvrcgXp\",children:\"Resell Wrk\"})})})}),className:\"framer-1h4emk2\",\"data-framer-name\":\"Resell Wrk\",fonts:[\"Inter-Bold\"],layoutDependency:layoutDependency,layoutId:\"WtTAtD1Z3\",style:{\"--extracted-r6o4lv\":\"rgb(72, 77, 103)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(136, 146, 166))\"},children:\"Partner with us to offer our platform to your clients\"})}),className:\"framer-1r2zbak\",\"data-framer-name\":\"Partner with us to offer our platform to your clients\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"I2B6yNjIs\",style:{\"--extracted-r6o4lv\":\"rgb(136, 146, 166)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-uliw3p\",\"data-framer-name\":\"Menu Item\",layoutDependency:layoutDependency,layoutId:\"ppMuYrHdE\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"27.2px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(72, 77, 103))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"XL9MN6srX\"},nodeId:\"HtvBsKdut\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-yhwqya\",\"data-styles-preset\":\"majvrcgXp\",children:\"About Us\"})})})}),className:\"framer-fl4znp\",\"data-framer-name\":\"Resell Wrk\",fonts:[\"Inter-Bold\"],layoutDependency:layoutDependency,layoutId:\"HtvBsKdut\",style:{\"--extracted-r6o4lv\":\"rgb(72, 77, 103)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(136, 146, 166))\"},children:\"Our history\"})}),className:\"framer-e1q4h9\",\"data-framer-name\":\"Partner with us to offer our platform to your clients\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"MdlH7_W7A\",style:{\"--extracted-r6o4lv\":\"rgb(136, 146, 166)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-v6kj7o\",\"data-framer-name\":\"Menu Item\",layoutDependency:layoutDependency,layoutId:\"XAONQ3VM8\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"27.2px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(72, 77, 103))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://www.wrk.com/compare\",nodeId:\"uiknc5AkW\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-yhwqya\",\"data-styles-preset\":\"majvrcgXp\",children:\"Wrk vs. Competitors\"})})})}),className:\"framer-19eepkk\",\"data-framer-name\":\"Careers\",fonts:[\"Inter-Bold\"],layoutDependency:layoutDependency,layoutId:\"uiknc5AkW\",style:{\"--extracted-r6o4lv\":\"rgb(72, 77, 103)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1rsb8h1\",\"data-border\":true,\"data-framer-name\":\"Col 6\",layoutDependency:layoutDependency,layoutId:\"NtdTYCJCt\",style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgb(205, 206, 216)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"},variants:{m7hVIovZm:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\"},UVJuk9F3i:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\"},x3wLTuZhw:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\"}},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7R2Vpc3QtNjAw\",\"--framer-font-family\":'\"Geist\", \"Geist Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.08em\",\"--framer-line-height\":\"30.6px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 36, 78))\",\"--framer-text-transform\":\"uppercase\"},children:\"Our Certifications\"})}),className:\"framer-1jdjlqf\",\"data-framer-name\":\"Our Certifications\",fonts:[\"GF;Geist-600\"],layoutDependency:layoutDependency,layoutId:\"kvaBJ7dTc\",style:{\"--extracted-r6o4lv\":\"rgb(255, 36, 78)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-io10tk\",\"data-framer-name\":\"Links\",layoutDependency:layoutDependency,layoutId:\"esJgdpwT6\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-owsn5o\",\"data-border\":true,\"data-framer-name\":\"Menu Item\",layoutDependency:layoutDependency,layoutId:\"O7OjUgRRI\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(234, 238, 240)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(251, 251, 252)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-6gwqu6\",\"data-framer-name\":\"Frame 113\",layoutDependency:layoutDependency,layoutId:\"eLuz7ivEB\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||321)-0-891)/2)+58+0+169+0+12+0),positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/dK4gCOLt0AsWJSzkkllH1ItLyo.png\"},className:\"framer-1m7v1u4\",\"data-framer-name\":\"image 20\",layoutDependency:layoutDependency,layoutId:\"ghobxrZqf\",...addPropertyOverrides({m7hVIovZm:{background:{alt:\"\",fit:\"fit\",positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/dK4gCOLt0AsWJSzkkllH1ItLyo.png\"}},UVJuk9F3i:{background:{alt:\"\",fit:\"fit\",positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/dK4gCOLt0AsWJSzkkllH1ItLyo.png\"}},x3wLTuZhw:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||530.5)-0-1136)/2+0+0)+58+815+0+0+0+12+0),positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/dK4gCOLt0AsWJSzkkllH1ItLyo.png\"}}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1lb9h9j\",\"data-framer-name\":\"Frame 114\",layoutDependency:layoutDependency,layoutId:\"noK528TlR\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7R2Vpc3QtMTAw\",\"--framer-font-family\":'\"Geist\", sans-serif',\"--framer-font-weight\":\"100\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(9, 12, 28))\"},children:\"SOC 2 Type II certified\"})}),className:\"framer-1ini934\",\"data-framer-name\":\"SOC 2 Type II certified\",fonts:[\"GF;Geist-100\"],layoutDependency:layoutDependency,layoutId:\"xrVSrUOIw\",style:{\"--extracted-r6o4lv\":\"rgb(9, 12, 28)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"160%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(136, 146, 166))\"},children:\"Wrk is SOC 2 Type II compliant, ensuring the highest standards of security, availability, and confidentiality for your data.\"})}),className:\"framer-1m422gb\",\"data-framer-name\":\"Wrk is SOC 2 Type II compliant, ensuring the highest standards of security, availability, and confidentiality for your data.\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"DwKkdyUXS\",style:{\"--extracted-r6o4lv\":\"rgb(136, 146, 166)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-r4ycfj\",\"data-border\":true,\"data-framer-name\":\"Menu Item\",layoutDependency:layoutDependency,layoutId:\"uh8OFFwp4\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(234, 238, 240)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(251, 251, 252)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1gv9rq8\",\"data-framer-name\":\"Frame 113\",layoutDependency:layoutDependency,layoutId:\"xhoVuFekI\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||321)-0-891)/2)+58+0+169+0+12+72),pixelHeight:373,pixelWidth:387,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/xavBBB2DITIWm9ZVkWeZ2tT9QqI.png\"},className:\"framer-1y1q42z\",\"data-framer-name\":\"hipaa-compliance-1 1\",layoutDependency:layoutDependency,layoutId:\"X2bhOaf5I\",...addPropertyOverrides({m7hVIovZm:{background:{alt:\"\",fit:\"fit\",pixelHeight:373,pixelWidth:387,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/xavBBB2DITIWm9ZVkWeZ2tT9QqI.png\"}},UVJuk9F3i:{background:{alt:\"\",fit:\"fit\",pixelHeight:373,pixelWidth:387,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/xavBBB2DITIWm9ZVkWeZ2tT9QqI.png\"}},x3wLTuZhw:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||530.5)-0-1136)/2+0+0)+58+815+0+0+0+12+72),pixelHeight:373,pixelWidth:387,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/xavBBB2DITIWm9ZVkWeZ2tT9QqI.png\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||321)-0-891)/2)+58+0+169+0+12+0),positionX:\"center\",positionY:\"center\",sizes:\"75px\",src:\"https://framerusercontent.com/images/nf0Oxd7qiV0NBDNwIcghYxkGUc.png\",srcSet:\"https://framerusercontent.com/images/nf0Oxd7qiV0NBDNwIcghYxkGUc.png?scale-down-to=512 512w,https://framerusercontent.com/images/nf0Oxd7qiV0NBDNwIcghYxkGUc.png 835w\"},className:\"framer-kb9oq\",\"data-framer-name\":\"hipaa-compliance-1 1\",layoutDependency:layoutDependency,layoutId:\"D7OWIBj9H\",...addPropertyOverrides({m7hVIovZm:{background:{alt:\"\",fit:\"fit\",positionX:\"center\",positionY:\"center\",sizes:\"75px\",src:\"https://framerusercontent.com/images/nf0Oxd7qiV0NBDNwIcghYxkGUc.png\",srcSet:\"https://framerusercontent.com/images/nf0Oxd7qiV0NBDNwIcghYxkGUc.png?scale-down-to=512 512w,https://framerusercontent.com/images/nf0Oxd7qiV0NBDNwIcghYxkGUc.png 835w\"}},UVJuk9F3i:{background:{alt:\"\",fit:\"fit\",positionX:\"center\",positionY:\"center\",sizes:\"75px\",src:\"https://framerusercontent.com/images/nf0Oxd7qiV0NBDNwIcghYxkGUc.png\",srcSet:\"https://framerusercontent.com/images/nf0Oxd7qiV0NBDNwIcghYxkGUc.png?scale-down-to=512 512w,https://framerusercontent.com/images/nf0Oxd7qiV0NBDNwIcghYxkGUc.png 835w\"}},x3wLTuZhw:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||530.5)-0-1136)/2+0+0)+58+815+0+0+0+12+0),positionX:\"center\",positionY:\"center\",sizes:\"75px\",src:\"https://framerusercontent.com/images/nf0Oxd7qiV0NBDNwIcghYxkGUc.png\",srcSet:\"https://framerusercontent.com/images/nf0Oxd7qiV0NBDNwIcghYxkGUc.png?scale-down-to=512 512w,https://framerusercontent.com/images/nf0Oxd7qiV0NBDNwIcghYxkGUc.png 835w\"}}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-153nf64\",\"data-framer-name\":\"Frame 114\",layoutDependency:layoutDependency,layoutId:\"aoXMSxjFy\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7R2Vpc3QtMTAw\",\"--framer-font-family\":'\"Geist\", sans-serif',\"--framer-font-weight\":\"100\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(9, 12, 28))\"},children:\"HIPAA and PIPEDA Compliant\"})}),className:\"framer-go79wa\",\"data-framer-name\":\"HIPPA Compliant\",fonts:[\"GF;Geist-100\"],layoutDependency:layoutDependency,layoutId:\"TcPQX4D7h\",style:{\"--extracted-r6o4lv\":\"rgb(9, 12, 28)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"160%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(136, 146, 166))\"},children:\"Wrk is HIPAA and PIPEDA compliant, safeguarding protected health information (PHI) to meet stringent healthcare regulations and protect patient privacy.\"})}),className:\"framer-1b2nr05\",\"data-framer-name\":\"Wrk is HIPAA compliant, safeguarding protected health information (PHI) to meet stringent healthcare regulations and protect patient privacy.\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"xBkRqau9p\",style:{\"--extracted-r6o4lv\":\"rgb(136, 146, 166)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]})]})]})]})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-NIfAo.framer-t1qeod, .framer-NIfAo .framer-t1qeod { display: block; }\",\".framer-NIfAo.framer-15pb148 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-NIfAo .framer-ij7bty { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 58px 300px 28px 300px; position: relative; width: 1920px; }\",\".framer-NIfAo .framer-782nk3 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 380px; }\",\".framer-NIfAo .framer-4j09gn, .framer-NIfAo .framer-1h4emk2, .framer-NIfAo .framer-1r2zbak, .framer-NIfAo .framer-fl4znp, .framer-NIfAo .framer-e1q4h9, .framer-NIfAo .framer-19eepkk { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 380px; word-break: break-word; word-wrap: break-word; }\",\".framer-NIfAo .framer-19hnpbl { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-NIfAo .framer-1yfr6w9, .framer-NIfAo .framer-uliw3p, .framer-NIfAo .framer-v6kj7o { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-NIfAo .framer-1rsb8h1 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: 235px; justify-content: flex-start; overflow: visible; padding: 0px 0px 0px 60px; position: relative; width: 1px; }\",\".framer-NIfAo .framer-1jdjlqf { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 760px; word-break: break-word; word-wrap: break-word; }\",\".framer-NIfAo .framer-io10tk { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: 171px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-NIfAo .framer-owsn5o, .framer-NIfAo .framer-r4ycfj { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: 159px; justify-content: flex-start; overflow: visible; padding: 12px; position: relative; width: 1px; }\",\".framer-NIfAo .framer-6gwqu6, .framer-NIfAo .framer-1gv9rq8 { flex: none; height: 147px; overflow: visible; position: relative; width: 75px; }\",\".framer-NIfAo .framer-1m7v1u4 { aspect-ratio: 0.9333333333333333 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 75px); left: 5px; position: absolute; top: 0px; width: 70px; }\",\".framer-NIfAo .framer-1lb9h9j, .framer-NIfAo .framer-153nf64 { flex: none; height: 147px; overflow: visible; position: relative; width: 257px; }\",\".framer-NIfAo .framer-1ini934, .framer-NIfAo .framer-go79wa { flex: none; height: auto; left: 0px; position: absolute; top: 0px; white-space: pre-wrap; width: 240px; word-break: break-word; word-wrap: break-word; }\",\".framer-NIfAo .framer-1m422gb { flex: none; height: auto; left: 0px; position: absolute; top: 38px; white-space: pre-wrap; width: 297px; word-break: break-word; word-wrap: break-word; }\",\".framer-NIfAo .framer-1y1q42z { aspect-ratio: 1 / 1; bottom: 13px; flex: none; position: absolute; right: 3px; top: 72px; width: var(--framer-aspect-ratio-supported, 62px); }\",\".framer-NIfAo .framer-kb9oq { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 75px); left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-NIfAo .framer-1b2nr05 { flex: none; height: auto; left: 0px; position: absolute; top: 38px; white-space: pre-wrap; width: 307px; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-NIfAo.framer-15pb148, .framer-NIfAo .framer-ij7bty, .framer-NIfAo .framer-782nk3, .framer-NIfAo .framer-19hnpbl, .framer-NIfAo .framer-1yfr6w9, .framer-NIfAo .framer-uliw3p, .framer-NIfAo .framer-v6kj7o, .framer-NIfAo .framer-1rsb8h1, .framer-NIfAo .framer-io10tk, .framer-NIfAo .framer-owsn5o, .framer-NIfAo .framer-r4ycfj { gap: 0px; } .framer-NIfAo.framer-15pb148 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-NIfAo.framer-15pb148 > :first-child, .framer-NIfAo .framer-ij7bty > :first-child, .framer-NIfAo .framer-io10tk > :first-child, .framer-NIfAo .framer-owsn5o > :first-child, .framer-NIfAo .framer-r4ycfj > :first-child { margin-left: 0px; } .framer-NIfAo.framer-15pb148 > :last-child, .framer-NIfAo .framer-ij7bty > :last-child, .framer-NIfAo .framer-io10tk > :last-child, .framer-NIfAo .framer-owsn5o > :last-child, .framer-NIfAo .framer-r4ycfj > :last-child { margin-right: 0px; } .framer-NIfAo .framer-ij7bty > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-NIfAo .framer-782nk3 > *, .framer-NIfAo .framer-19hnpbl > *, .framer-NIfAo .framer-1rsb8h1 > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-NIfAo .framer-782nk3 > :first-child, .framer-NIfAo .framer-19hnpbl > :first-child, .framer-NIfAo .framer-1yfr6w9 > :first-child, .framer-NIfAo .framer-uliw3p > :first-child, .framer-NIfAo .framer-v6kj7o > :first-child, .framer-NIfAo .framer-1rsb8h1 > :first-child { margin-top: 0px; } .framer-NIfAo .framer-782nk3 > :last-child, .framer-NIfAo .framer-19hnpbl > :last-child, .framer-NIfAo .framer-1yfr6w9 > :last-child, .framer-NIfAo .framer-uliw3p > :last-child, .framer-NIfAo .framer-v6kj7o > :last-child, .framer-NIfAo .framer-1rsb8h1 > :last-child { margin-bottom: 0px; } .framer-NIfAo .framer-1yfr6w9 > *, .framer-NIfAo .framer-uliw3p > *, .framer-NIfAo .framer-v6kj7o > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-NIfAo .framer-io10tk > *, .framer-NIfAo .framer-owsn5o > *, .framer-NIfAo .framer-r4ycfj > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } }\",\".framer-NIfAo.framer-v-lqtvv8.framer-15pb148, .framer-NIfAo.framer-v-a5rphq.framer-15pb148, .framer-NIfAo.framer-v-8e1gsq.framer-15pb148 { flex-direction: column; }\",\".framer-NIfAo.framer-v-lqtvv8 .framer-ij7bty { align-content: center; align-items: center; flex-direction: column; flex-wrap: wrap; gap: 10px; justify-content: center; padding: 58px 20px 28px 20px; width: 992px; }\",\".framer-NIfAo.framer-v-lqtvv8 .framer-1rsb8h1 { flex: none; flex-wrap: wrap; padding: 0px; width: 100%; }\",\".framer-NIfAo.framer-v-lqtvv8 .framer-io10tk { justify-content: center; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-NIfAo.framer-v-lqtvv8.framer-15pb148, .framer-NIfAo.framer-v-lqtvv8 .framer-ij7bty { gap: 0px; } .framer-NIfAo.framer-v-lqtvv8.framer-15pb148 > *, .framer-NIfAo.framer-v-lqtvv8 .framer-ij7bty > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-NIfAo.framer-v-lqtvv8.framer-15pb148 > :first-child, .framer-NIfAo.framer-v-lqtvv8 .framer-ij7bty > :first-child { margin-top: 0px; } .framer-NIfAo.framer-v-lqtvv8.framer-15pb148 > :last-child, .framer-NIfAo.framer-v-lqtvv8 .framer-ij7bty > :last-child { margin-bottom: 0px; } }\",\".framer-NIfAo.framer-v-a5rphq .framer-ij7bty { flex-direction: column; flex-wrap: wrap; gap: 16px; justify-content: center; padding: 20px 20px 28px 40px; width: 810px; }\",\".framer-NIfAo.framer-v-a5rphq .framer-1rsb8h1 { flex: none; height: 404px; padding: 0px; width: 100%; }\",\".framer-NIfAo.framer-v-a5rphq .framer-io10tk { flex-wrap: wrap; justify-content: center; width: 500px; }\",\".framer-NIfAo.framer-v-a5rphq .framer-owsn5o, .framer-NIfAo.framer-v-a5rphq .framer-r4ycfj { flex: none; width: 495px; }\",\".framer-NIfAo.framer-v-a5rphq .framer-1m422gb { width: 312px; }\",\".framer-NIfAo.framer-v-a5rphq .framer-1b2nr05 { width: 337px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-NIfAo.framer-v-a5rphq.framer-15pb148, .framer-NIfAo.framer-v-a5rphq .framer-ij7bty { gap: 0px; } .framer-NIfAo.framer-v-a5rphq.framer-15pb148 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-NIfAo.framer-v-a5rphq.framer-15pb148 > :first-child, .framer-NIfAo.framer-v-a5rphq .framer-ij7bty > :first-child { margin-top: 0px; } .framer-NIfAo.framer-v-a5rphq.framer-15pb148 > :last-child, .framer-NIfAo.framer-v-a5rphq .framer-ij7bty > :last-child { margin-bottom: 0px; } .framer-NIfAo.framer-v-a5rphq .framer-ij7bty > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } }\",\".framer-NIfAo.framer-v-8e1gsq .framer-ij7bty { flex-direction: column; gap: 0px; padding: 24px 20px 24px 20px; width: 390px; }\",\".framer-NIfAo.framer-v-8e1gsq .framer-1rsb8h1 { flex: none; height: 412px; padding: 20px 0px 0px 0px; width: min-content; }\",\".framer-NIfAo.framer-v-8e1gsq .framer-1jdjlqf { order: 0; white-space: pre; width: auto; }\",\".framer-NIfAo.framer-v-8e1gsq .framer-io10tk { flex-wrap: wrap; justify-content: center; order: 2; width: 350px; }\",\".framer-NIfAo.framer-v-8e1gsq .framer-owsn5o { flex: none; width: 355px; }\",\".framer-NIfAo.framer-v-8e1gsq .framer-1m422gb { width: 257px; }\",\".framer-NIfAo.framer-v-8e1gsq .framer-r4ycfj { height: 173px; }\",\".framer-NIfAo.framer-v-8e1gsq .framer-153nf64 { width: 248px; }\",\".framer-NIfAo.framer-v-8e1gsq .framer-1b2nr05 { width: 237px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-NIfAo.framer-v-8e1gsq.framer-15pb148, .framer-NIfAo.framer-v-8e1gsq .framer-ij7bty { gap: 0px; } .framer-NIfAo.framer-v-8e1gsq.framer-15pb148 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-NIfAo.framer-v-8e1gsq.framer-15pb148 > :first-child, .framer-NIfAo.framer-v-8e1gsq .framer-ij7bty > :first-child { margin-top: 0px; } .framer-NIfAo.framer-v-8e1gsq.framer-15pb148 > :last-child, .framer-NIfAo.framer-v-8e1gsq .framer-ij7bty > :last-child { margin-bottom: 0px; } .framer-NIfAo.framer-v-8e1gsq .framer-ij7bty > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } }\",...sharedStyle.css,'.framer-NIfAo[data-border=\"true\"]::after, .framer-NIfAo [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 321\n * @framerIntrinsicWidth 1920\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"x3wLTuZhw\":{\"layout\":[\"auto\",\"auto\"]},\"UVJuk9F3i\":{\"layout\":[\"auto\",\"auto\"]},\"m7hVIovZm\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerA83DWhho4=withCSS(Component,css,\"framer-NIfAo\");export default FramerA83DWhho4;FramerA83DWhho4.displayName=\"Dropdown About MM\";FramerA83DWhho4.defaultProps={height:321,width:1920};addPropertyControls(FramerA83DWhho4,{variant:{options:[\"oR7WfrMOM\",\"x3wLTuZhw\",\"UVJuk9F3i\",\"m7hVIovZm\"],optionTitles:[\"Desktop About\",\"Laptop\",\"Tablet\",\"Mobile\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerA83DWhho4,[{explicitInter:true,fonts:[{family:\"Geist\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/geist/v1/gyBhhwUxId8gMGYQMKR3pzfaWI_RQuQ4mJPby1QNtA.woff2\",weight:\"600\"},{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/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{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/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{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/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{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/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{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/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Geist\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/geist/v1/gyBhhwUxId8gMGYQMKR3pzfaWI_RnOI4mJPby1QNtA.woff2\",weight:\"100\"}]},...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerA83DWhho4\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"321\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"1920\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"x3wLTuZhw\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"UVJuk9F3i\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"m7hVIovZm\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./A83DWhho4.map", "// Generated by Framer (6e8cc59)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,RichText,SVG,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/3hlwzTMpMscIsbGDY0TH/2gcSf2NNpy6l2h2RlTYU/majvrcgXp.js\";const cycleOrder=[\"AytcgmOEP\",\"KJsXo_HeR\",\"jUAsQoCUZ\",\"yA5L4Jh2d\"];const serializationHash=\"framer-FXa2Q\";const variantClassNames={AytcgmOEP:\"framer-v-bzmydx\",jUAsQoCUZ:\"framer-v-1f3pto8\",KJsXo_HeR:\"framer-v-15cnb57\",yA5L4Jh2d:\"framer-v-1wokspg\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Desktop Product\":\"AytcgmOEP\",Laptop:\"KJsXo_HeR\",Mobile:\"yA5L4Jh2d\",Tablet:\"jUAsQoCUZ\"};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:\"AytcgmOEP\"};};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:\"AytcgmOEP\",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-bzmydx\",className,classNames),\"data-framer-name\":\"Desktop Product\",layoutDependency:layoutDependency,layoutId:\"AytcgmOEP\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,boxShadow:\"0px 10px 20px 0px rgba(0,0,0,0.05)\",...style},variants:{jUAsQoCUZ:{borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0,boxShadow:\"none\"},KJsXo_HeR:{borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0,boxShadow:\"none\"},yA5L4Jh2d:{borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0,boxShadow:\"none\"}},...addPropertyOverrides({jUAsQoCUZ:{\"data-framer-name\":\"Tablet\"},KJsXo_HeR:{\"data-framer-name\":\"Laptop\"},yA5L4Jh2d:{\"data-framer-name\":\"Mobile\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1p038m8\",\"data-framer-name\":\"Menu\",layoutDependency:layoutDependency,layoutId:\"EjEjtS13b\",style:{backgroundColor:\"rgb(255, 255, 255)\",boxShadow:\"0px 8px 9px -2px rgba(0, 0, 0, 0.20000000298023224)\"},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-3f6q18\",\"data-framer-name\":\"Col 1\",layoutDependency:layoutDependency,layoutId:\"y7oR41FfV\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7R2Vpc3QtNjAw\",\"--framer-font-family\":'\"Geist\", \"Geist Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.08em\",\"--framer-line-height\":\"30.6px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 36, 78))\",\"--framer-text-transform\":\"uppercase\"},children:\"Platform Features\"})}),className:\"framer-nwlnch\",\"data-framer-name\":\"Platform Features\",fonts:[\"GF;Geist-600\"],layoutDependency:layoutDependency,layoutId:\"xIK2fnkEo\",style:{\"--extracted-r6o4lv\":\"rgb(255, 36, 78)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1mn6ha5\",\"data-framer-name\":\"Links\",layoutDependency:layoutDependency,layoutId:\"kmmdg__eG\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-139uu89\",\"data-framer-name\":\"Menu Item\",layoutDependency:layoutDependency,layoutId:\"SG4OM6uuc\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"27.2px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(72, 77, 103))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"vQBMnLDPV\"},nodeId:\"NB2veqKLS\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-yhwqya\",\"data-styles-preset\":\"majvrcgXp\",children:\"How It Works\"})})})}),className:\"framer-uuhg69\",\"data-framer-name\":\"How It Works\",fonts:[\"Inter-Bold\"],layoutDependency:layoutDependency,layoutId:\"NB2veqKLS\",style:{\"--extracted-r6o4lv\":\"rgb(72, 77, 103)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(136, 146, 166))\"},children:\"Understand the capabilities of the platform\"})}),className:\"framer-11lhhxh\",\"data-framer-name\":\"Understand the capabilities of the platform\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"PJIVpzjnz\",style:{\"--extracted-r6o4lv\":\"rgb(136, 146, 166)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(Link,{nodeId:\"nmHJ5Nedi\",...addPropertyOverrides({jUAsQoCUZ:{openInNewTab:true}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-74hy7r framer-639cji\",\"data-framer-name\":\"Menu Item\",layoutDependency:layoutDependency,layoutId:\"nmHJ5Nedi\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"27.2px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(72, 77, 103))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"kYxBde7R8\"},nodeId:\"ZMDC4pJp8\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-yhwqya\",\"data-styles-preset\":\"majvrcgXp\",children:\"Automation Library\"})})})}),className:\"framer-w1y2z1\",\"data-framer-name\":\"Automation Library\",fonts:[\"Inter-Bold\"],layoutDependency:layoutDependency,layoutId:\"ZMDC4pJp8\",style:{\"--extracted-r6o4lv\":\"rgb(72, 77, 103)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(136, 146, 166))\"},children:\"Find automations tailored to your needs\"})}),className:\"framer-3lh36q\",\"data-framer-name\":\"Find automations tailored to your needs\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"vPfLWhxub\",style:{\"--extracted-r6o4lv\":\"rgb(136, 146, 166)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1c4lssd\",\"data-framer-name\":\"Menu Item\",layoutDependency:layoutDependency,layoutId:\"Z28xeAw95\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"27.2px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(72, 77, 103))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"qB5mTLZSj\"},nodeId:\"dtd2w791w\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-yhwqya\",\"data-styles-preset\":\"majvrcgXp\",children:\"Low-code Workflow Designer\"})})})}),className:\"framer-f5nw7a\",\"data-framer-name\":\"Low-Code Wrkflow Designer\",fonts:[\"Inter-Bold\"],layoutDependency:layoutDependency,layoutId:\"dtd2w791w\",style:{\"--extracted-r6o4lv\":\"rgb(72, 77, 103)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(136, 146, 166))\"},children:\"Build automations with minimal coding\"})}),className:\"framer-17nhmjn\",\"data-framer-name\":\"Build automations with minimal coding\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"z2K8W3Vut\",style:{\"--extracted-r6o4lv\":\"rgb(136, 146, 166)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-14ahvcq\",\"data-framer-name\":\"Menu Item\",layoutDependency:layoutDependency,layoutId:\"k_brFkrdu\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"27.2px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(72, 77, 103))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"XGdbT0yCA\"},nodeId:\"qpGLcl1mc\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-yhwqya\",\"data-styles-preset\":\"majvrcgXp\",children:\"Process Automation\"})})})}),className:\"framer-1rv609h\",\"data-framer-name\":\"Process Automation\",fonts:[\"Inter-Bold\"],layoutDependency:layoutDependency,layoutId:\"qpGLcl1mc\",style:{\"--extracted-r6o4lv\":\"rgb(72, 77, 103)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(136, 146, 166))\"},children:\"Core automation capabilities overview\"})}),className:\"framer-1jyq55q\",\"data-framer-name\":\"Core automation capabilities overview\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"xkV9REHT5\",style:{\"--extracted-r6o4lv\":\"rgb(136, 146, 166)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1d747z4\",\"data-framer-name\":\"Col 6\",layoutDependency:layoutDependency,layoutId:\"j_vIzmJAN\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7R2Vpc3QtMTAw\",\"--framer-font-family\":'\"Geist\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"100\",\"--framer-letter-spacing\":\"0.08em\",\"--framer-line-height\":\"30.6px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 36, 78))\",\"--framer-text-transform\":\"uppercase\"},children:\" \"})}),className:\"framer-t0locx\",\"data-framer-name\":\"Text\",fonts:[\"GF;Geist-100\"],layoutDependency:layoutDependency,layoutId:\"SjCVV1EhF\",style:{\"--extracted-r6o4lv\":\"rgb(255, 36, 78)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({jUAsQoCUZ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7R2Vpc3QtMTAw\",\"--framer-font-family\":'\"Geist\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"100\",\"--framer-letter-spacing\":\"0.08em\",\"--framer-line-height\":\"10.6px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 36, 78))\",\"--framer-text-transform\":\"uppercase\"},children:\" \"})})},yA5L4Jh2d:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7R2Vpc3QtMTAw\",\"--framer-font-family\":'\"Geist\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"100\",\"--framer-letter-spacing\":\"0.08em\",\"--framer-line-height\":\"0.1px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 36, 78))\",\"--framer-text-transform\":\"uppercase\"},children:\" \"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1yu4afw\",\"data-framer-name\":\"Links\",layoutDependency:layoutDependency,layoutId:\"OrJCIUC2U\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-11h16i6\",\"data-framer-name\":\"Menu Item\",layoutDependency:layoutDependency,layoutId:\"UQQDqrCtT\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"27.2px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(72, 77, 103))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"L3IFGsoj8\"},nodeId:\"kreAatjmb\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-yhwqya\",\"data-styles-preset\":\"majvrcgXp\",children:\"API Cloud Connectors (iPaaS)\"})})})}),className:\"framer-x4ikof\",\"data-framer-name\":\"API Cloud Connectors (iPaaS)\",fonts:[\"Inter-Bold\"],layoutDependency:layoutDependency,layoutId:\"kreAatjmb\",style:{\"--extracted-r6o4lv\":\"rgb(72, 77, 103)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(136, 146, 166))\"},children:\"Connect cloud apps and services\"})}),className:\"framer-1hdiv1c\",\"data-framer-name\":\"Connect cloud apps and services\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"c5GnvtTWl\",style:{\"--extracted-r6o4lv\":\"rgb(136, 146, 166)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1disn76\",\"data-framer-name\":\"Menu Item\",layoutDependency:layoutDependency,layoutId:\"DXO6v6c9g\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"27.2px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(72, 77, 103))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"XMkzerV7W\"},nodeId:\"korTWLZTq\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-yhwqya\",\"data-styles-preset\":\"majvrcgXp\",children:\"Generative AI\"})})})}),className:\"framer-1cghs2m\",\"data-framer-name\":\"GenerativeAI\",fonts:[\"Inter-Bold\"],layoutDependency:layoutDependency,layoutId:\"korTWLZTq\",style:{\"--extracted-r6o4lv\":\"rgb(72, 77, 103)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(136, 146, 166))\"},children:\"AI-driven content and workflow optimization\"})}),className:\"framer-1yu2uxe\",\"data-framer-name\":\"AI-driven content and workflow creation\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"QFAvDNpMj\",style:{\"--extracted-r6o4lv\":\"rgb(136, 146, 166)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-zr9dex\",\"data-framer-name\":\"Menu Item\",layoutDependency:layoutDependency,layoutId:\"xB4k0skxQ\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"27.2px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(72, 77, 103))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"Gn7BgRUfV\"},nodeId:\"iFoAON1be\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-yhwqya\",\"data-styles-preset\":\"majvrcgXp\",children:\"Robotic Process Automation (RPA)\"})})})}),className:\"framer-xy5mna\",\"data-framer-name\":\"Browser Automation & RPA\",fonts:[\"Inter-Bold\"],layoutDependency:layoutDependency,layoutId:\"iFoAON1be\",style:{\"--extracted-r6o4lv\":\"rgb(72, 77, 103)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(136, 146, 166))\"},children:\"Automate repetitive web & desktop tasks easily\"})}),className:\"framer-4v3gta\",\"data-framer-name\":\"Automate repetitive web tasks easily\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"KnF_OUags\",style:{\"--extracted-r6o4lv\":\"rgb(136, 146, 166)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1p0fa6r\",\"data-framer-name\":\"Col 5\",layoutDependency:layoutDependency,layoutId:\"HqSHEn5iQ\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7R2Vpc3QtMTAw\",\"--framer-font-family\":'\"Geist\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"100\",\"--framer-letter-spacing\":\"0.08em\",\"--framer-line-height\":\"30.6px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 36, 78))\",\"--framer-text-transform\":\"uppercase\"},children:\" \"})}),className:\"framer-1fn0e5y\",\"data-framer-name\":\"Text\",fonts:[\"GF;Geist-100\"],layoutDependency:layoutDependency,layoutId:\"W4N4tFnWU\",style:{\"--extracted-r6o4lv\":\"rgb(255, 36, 78)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({jUAsQoCUZ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7R2Vpc3QtMTAw\",\"--framer-font-family\":'\"Geist\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"100\",\"--framer-letter-spacing\":\"0.08em\",\"--framer-line-height\":\"0.1px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 36, 78))\",\"--framer-text-transform\":\"uppercase\"},children:\" \"})})},yA5L4Jh2d:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7R2Vpc3QtMTAw\",\"--framer-font-family\":'\"Geist\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"100\",\"--framer-letter-spacing\":\"0.08em\",\"--framer-line-height\":\"0.1px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 36, 78))\",\"--framer-text-transform\":\"uppercase\"},children:\" \"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-gad1mi\",\"data-framer-name\":\"Links\",layoutDependency:layoutDependency,layoutId:\"vbXcSJUoF\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-es35my\",\"data-framer-name\":\"Menu Item\",layoutDependency:layoutDependency,layoutId:\"p_CMD4nSF\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"27.2px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(72, 77, 103))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"saQAOWBbw\"},nodeId:\"btvGIdHCb\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-yhwqya\",\"data-styles-preset\":\"majvrcgXp\",children:\"Intelligent Document Processing and OCR\"})})})}),className:\"framer-3cft87\",\"data-framer-name\":\"Intelligent Document Processing\",fonts:[\"Inter-Bold\"],layoutDependency:layoutDependency,layoutId:\"btvGIdHCb\",style:{\"--extracted-r6o4lv\":\"rgb(72, 77, 103)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(136, 146, 166))\"},children:\"Extract and manage document data\"})}),className:\"framer-6fqj23\",\"data-framer-name\":\"Extract and manage document data\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"baDu3vvfP\",style:{\"--extracted-r6o4lv\":\"rgb(136, 146, 166)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-p0h57o\",\"data-framer-name\":\"Menu Item\",layoutDependency:layoutDependency,layoutId:\"SEtdWmFMC\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"27.2px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(72, 77, 103))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"NssjV1_an\"},nodeId:\"tOo4s8J7y\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-yhwqya\",\"data-styles-preset\":\"majvrcgXp\",children:\"Human & Employee in-the-loop\"})})})}),className:\"framer-1yhwmax\",\"data-framer-name\":\"Human & Employee in-the-loop\",fonts:[\"Inter-Bold\"],layoutDependency:layoutDependency,layoutId:\"tOo4s8J7y\",style:{\"--extracted-r6o4lv\":\"rgb(72, 77, 103)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(136, 146, 166))\"},children:\"Human oversight in automated workflows\"})}),className:\"framer-dqh002\",\"data-framer-name\":\"Human oversight in automated workflows\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"YpIWv23ba\",style:{\"--extracted-r6o4lv\":\"rgb(136, 146, 166)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-my5kl6\",\"data-framer-name\":\"Menu Item\",layoutDependency:layoutDependency,layoutId:\"WDYUFT98L\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"27.2px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(72, 77, 103))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"PeM4dhqJQ\"},nodeId:\"w_oMFWQVV\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-yhwqya\",\"data-styles-preset\":\"majvrcgXp\",children:\"SOC 2, HIPAA/PIPEDA, and Security\"})})})}),className:\"framer-t23pmd\",\"data-framer-name\":\"SOC2, HIPPA, and Security\",fonts:[\"Inter-Bold\"],layoutDependency:layoutDependency,layoutId:\"w_oMFWQVV\",style:{\"--extracted-r6o4lv\":\"rgb(72, 77, 103)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(136, 146, 166))\"},children:\"Compliance and data security ensured\"})}),className:\"framer-1oapaqx\",\"data-framer-name\":\"Compliance and data security ensured\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"CeVdY1klu\",style:{\"--extracted-r6o4lv\":\"rgb(136, 146, 166)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-khprev\",\"data-framer-name\":\"Col 3\",layoutDependency:layoutDependency,layoutId:\"Dd5Q3TcFi\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7R2Vpc3QtNjAw\",\"--framer-font-family\":'\"Geist\", \"Geist Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.08em\",\"--framer-line-height\":\"30.6px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 36, 78))\",\"--framer-text-transform\":\"uppercase\"},children:\"Integrations\"})}),className:\"framer-x9fgpz\",\"data-framer-name\":\"Integrations\",fonts:[\"GF;Geist-600\"],layoutDependency:layoutDependency,layoutId:\"gNmJ0MgAv\",style:{\"--extracted-r6o4lv\":\"rgb(255, 36, 78)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1rr2van\",\"data-framer-name\":\"Links\",layoutDependency:layoutDependency,layoutId:\"t5tTHJFvi\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-118sle6\",\"data-framer-name\":\"Integration Option\",layoutDependency:layoutDependency,layoutId:\"f_K4tIOJZ\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ts1frd\",\"data-framer-name\":\"Frame 93\",layoutDependency:layoutDependency,layoutId:\"fblapDPkT\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-line-height\":\"27.2px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(72, 77, 103))\"},children:\"Asana\"})}),className:\"framer-1ho43ze\",\"data-framer-name\":\"Asana\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"WUCdkDd_v\",style:{\"--extracted-r6o4lv\":\"rgb(72, 77, 103)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-rbaww0\",\"data-framer-name\":\"Icon\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:16,intrinsicWidth:19,layoutDependency:layoutDependency,layoutId:\"DmmxbnMou\",svg:'<svg width=\"19\" height=\"16\" viewBox=\"0 0 19 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M14.3029 8.94127C13.3223 8.94127 12.3819 9.31311 11.6886 9.97499C10.9953 10.6369 10.6057 11.5346 10.6057 12.4706C10.6057 13.4067 10.9953 14.3044 11.6886 14.9663C12.3819 15.6282 13.3223 16 14.3029 16C15.2834 16 16.2238 15.6282 16.9171 14.9663C17.6105 14.3044 18 13.4067 18 12.4706C18 11.5346 17.6105 10.6369 16.9171 9.97499C16.2238 9.31311 15.2834 8.94127 14.3029 8.94127ZM4.69753 8.94127C4.21202 8.94122 3.73125 9.03246 3.28267 9.20978C2.83409 9.3871 2.4265 9.64703 2.08315 9.97472C1.7398 10.3024 1.46743 10.6915 1.28158 11.1196C1.09573 11.5478 1.00005 12.0068 1 12.4703C0.999947 12.9337 1.09552 13.3927 1.28127 13.8209C1.46702 14.2491 1.73931 14.6382 2.08258 14.966C2.42586 15.2938 2.83339 15.5538 3.28193 15.7312C3.73047 15.9086 4.21122 15.9999 4.69673 16C5.67727 16 6.61765 15.6282 7.311 14.9663C8.00435 14.3044 8.39386 13.4067 8.39386 12.4706C8.39386 11.5346 8.00435 10.6369 7.311 9.97499C6.61765 9.31311 5.67727 8.94127 4.69673 8.94127H4.69753ZM13.1973 4.52937C13.1973 5.46552 12.8078 6.36332 12.1144 7.02528C11.4209 7.68723 10.4804 8.05912 9.4998 8.05912C8.51915 8.05912 7.57867 7.68723 6.88525 7.02528C6.19183 6.36332 5.80227 5.46552 5.80227 4.52937C5.80227 3.59332 6.19178 2.69561 6.88513 2.03373C7.57848 1.37184 8.51886 1 9.4994 1C10.4799 1 11.4203 1.37184 12.1137 2.03373C12.807 2.69561 13.1973 3.59332 13.1973 4.52937Z\" fill=\"#F06A6A\"/>\\n</svg>\\n',withExternalLayout:true})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-q1w80b\",\"data-framer-name\":\"Integration Option\",layoutDependency:layoutDependency,layoutId:\"mBxQqEoZa\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-i72zva\",\"data-framer-name\":\"Frame 93\",layoutDependency:layoutDependency,layoutId:\"YzvRlo199\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-line-height\":\"27.2px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(72, 77, 103))\"},children:\"Google Drive\"})}),className:\"framer-2jl1f3\",\"data-framer-name\":\"Google Drive\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"lyCOCG224\",style:{\"--extracted-r6o4lv\":\"rgb(72, 77, 103)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-f7y9be\",\"data-framer-name\":\"Icon\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:16,intrinsicWidth:19,layoutDependency:layoutDependency,layoutId:\"LlpQPNmkd\",svg:'<svg width=\"19\" height=\"16\" viewBox=\"0 0 19 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_1861_2344)\">\\n<path d=\"M3.16687 15.9982L6.3333 10.6661H19L15.8333 15.9982H3.16687Z\" fill=\"#3777E3\"/>\\n<path d=\"M12.6669 10.6661H19L12.6669 0.00177002H6.33331L12.6669 10.6661Z\" fill=\"#FFCF63\"/>\\n<path d=\"M0 10.6663L3.16686 15.9984L9.50001 5.33412L6.33329 0.00195312L0 10.6663Z\" fill=\"#11A861\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_1861_2344\">\\n<rect width=\"19\" height=\"16\" fill=\"white\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1jgjfzw\",\"data-framer-name\":\"Integration Option\",layoutDependency:layoutDependency,layoutId:\"PE98neulz\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-3h9hov\",\"data-framer-name\":\"Frame 93\",layoutDependency:layoutDependency,layoutId:\"jh1m5wxSy\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-line-height\":\"27.2px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(72, 77, 103))\"},children:\"Microsoft Excel\"})}),className:\"framer-nlx8ka\",\"data-framer-name\":\"Microsoft Excel\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"sp3qC0y3X\",style:{\"--extracted-r6o4lv\":\"rgb(72, 77, 103)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-17163r2\",\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"tW632MF_R\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||338)-0-1209)/2)+403.5+0+169+0+82+0+5+-2),src:\"https://framerusercontent.com/images/hyNzlSVfWzhJOQjGoSiKdVFFhSo.png\"},className:\"framer-1vtglac\",\"data-framer-name\":\"image 11\",layoutDependency:layoutDependency,layoutId:\"MtgtaEvNW\",...addPropertyOverrides({jUAsQoCUZ:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1049)-0-3188.5)/2+0+0)+28+2730.5+0+169+0+82+0+5+-2),src:\"https://framerusercontent.com/images/hyNzlSVfWzhJOQjGoSiKdVFFhSo.png\"}},KJsXo_HeR:{background:{alt:\"\",fit:\"fill\",src:\"https://framerusercontent.com/images/hyNzlSVfWzhJOQjGoSiKdVFFhSo.png\"}},yA5L4Jh2d:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-0-1038)/2+0+0)+1038-458+16+169+0+82+0+5+-2),src:\"https://framerusercontent.com/images/hyNzlSVfWzhJOQjGoSiKdVFFhSo.png\"}}},baseVariant,gestureVariant)})})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-chd14e\",\"data-framer-name\":\"Integration Option\",layoutDependency:layoutDependency,layoutId:\"cL5r6l8_X\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-17u8lek\",\"data-framer-name\":\"Frame 93\",layoutDependency:layoutDependency,layoutId:\"dGxzEbn1z\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-line-height\":\"27.2px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(72, 77, 103))\"},children:\"Microsoft Teams\"})}),className:\"framer-1fkx39n\",\"data-framer-name\":\"Microsoft Teams\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"hD_ZxXoj1\",style:{\"--extracted-r6o4lv\":\"rgb(72, 77, 103)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-axmsag\",\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"EtJvzaxML\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||338)-0-1209)/2)+403.5+0+169+0+123+0+5+0),positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/BfKuGckHXLGnBC53wTDm2mcuqu4.png\"},className:\"framer-1tz5lmi\",\"data-framer-name\":\"image\",layoutDependency:layoutDependency,layoutId:\"cHCkXKb5p\",...addPropertyOverrides({jUAsQoCUZ:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1049)-0-3188.5)/2+0+0)+28+2730.5+0+169+0+123+0+5+0),positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/BfKuGckHXLGnBC53wTDm2mcuqu4.png\"}},KJsXo_HeR:{background:{alt:\"\",fit:\"fit\",positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/BfKuGckHXLGnBC53wTDm2mcuqu4.png\"}},yA5L4Jh2d:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-0-1038)/2+0+0)+1038-458+16+169+0+123+0+5+0),positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/BfKuGckHXLGnBC53wTDm2mcuqu4.png\"}}},baseVariant,gestureVariant)})})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1kb2eug\",\"data-framer-name\":\"Integration Option\",layoutDependency:layoutDependency,layoutId:\"yByvBRHIJ\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1fsc3gg\",\"data-framer-name\":\"Frame 93\",layoutDependency:layoutDependency,layoutId:\"UGpsjbP8D\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-line-height\":\"27.2px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(72, 77, 103))\"},children:\"Stripe\"})}),className:\"framer-16uhy84\",\"data-framer-name\":\"Stripe\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"RUHtOMgda\",style:{\"--extracted-r6o4lv\":\"rgb(72, 77, 103)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1m9eojj\",\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"OR_CW5yyO\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||338)-0-1209)/2)+403.5+0+169+0+164+0+3+1),src:\"https://framerusercontent.com/images/C0pbL07iWIkXKqDA4oCh1lhA.png\"},className:\"framer-8khm1h\",\"data-framer-name\":\"image 15\",layoutDependency:layoutDependency,layoutId:\"TTiYqLNHf\",...addPropertyOverrides({jUAsQoCUZ:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1049)-0-3188.5)/2+0+0)+28+2730.5+0+169+0+164+0+3+1),src:\"https://framerusercontent.com/images/C0pbL07iWIkXKqDA4oCh1lhA.png\"}},KJsXo_HeR:{background:{alt:\"\",fit:\"fill\",src:\"https://framerusercontent.com/images/C0pbL07iWIkXKqDA4oCh1lhA.png\"}},yA5L4Jh2d:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-0-1038)/2+0+0)+1038-458+16+169+0+164+0+3+1),src:\"https://framerusercontent.com/images/C0pbL07iWIkXKqDA4oCh1lhA.png\"}}},baseVariant,gestureVariant)})})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-sdc9ip\",\"data-framer-name\":\"Integration Option\",layoutDependency:layoutDependency,layoutId:\"aEhgQryN3\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-y72qut\",\"data-framer-name\":\"Frame 93\",layoutDependency:layoutDependency,layoutId:\"kV29knola\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"27.2px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(38, 107, 226))\",\"--framer-text-decoration\":\"underline\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"L3IFGsoj8\"},nodeId:\"fmcNb7tLo\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-yhwqya\",\"data-styles-preset\":\"majvrcgXp\",children:\"More Integrations\"})})})}),className:\"framer-1hup37s\",\"data-framer-name\":\"More Integrations\",fonts:[\"Inter-SemiBold\"],layoutDependency:layoutDependency,layoutId:\"fmcNb7tLo\",style:{\"--extracted-r6o4lv\":\"rgb(38, 107, 226)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})})})]})]})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-FXa2Q.framer-639cji, .framer-FXa2Q .framer-639cji { display: block; }\",\".framer-FXa2Q.framer-bzmydx { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-FXa2Q .framer-1p038m8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 38px; height: min-content; justify-content: flex-start; overflow: visible; padding: 28px 348px 28px 348px; position: relative; width: 1920px; }\",\".framer-FXa2Q .framer-3f6q18, .framer-FXa2Q .framer-1d747z4 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 300px; }\",\".framer-FXa2Q .framer-nwlnch, .framer-FXa2Q .framer-uuhg69, .framer-FXa2Q .framer-11lhhxh, .framer-FXa2Q .framer-w1y2z1, .framer-FXa2Q .framer-3lh36q, .framer-FXa2Q .framer-f5nw7a, .framer-FXa2Q .framer-17nhmjn, .framer-FXa2Q .framer-1rv609h, .framer-FXa2Q .framer-1jyq55q, .framer-FXa2Q .framer-1cghs2m, .framer-FXa2Q .framer-1yu2uxe { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 285px; word-break: break-word; word-wrap: break-word; }\",\".framer-FXa2Q .framer-1mn6ha5, .framer-FXa2Q .framer-1yu4afw, .framer-FXa2Q .framer-gad1mi, .framer-FXa2Q .framer-1rr2van { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-FXa2Q .framer-139uu89, .framer-FXa2Q .framer-74hy7r, .framer-FXa2Q .framer-1c4lssd, .framer-FXa2Q .framer-14ahvcq, .framer-FXa2Q .framer-11h16i6, .framer-FXa2Q .framer-zr9dex, .framer-FXa2Q .framer-es35my, .framer-FXa2Q .framer-p0h57o, .framer-FXa2Q .framer-my5kl6 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-FXa2Q .framer-t0locx, .framer-FXa2Q .framer-x4ikof, .framer-FXa2Q .framer-1hdiv1c, .framer-FXa2Q .framer-xy5mna, .framer-FXa2Q .framer-4v3gta, .framer-FXa2Q .framer-1fn0e5y, .framer-FXa2Q .framer-3cft87, .framer-FXa2Q .framer-6fqj23, .framer-FXa2Q .framer-1yhwmax, .framer-FXa2Q .framer-dqh002, .framer-FXa2Q .framer-t23pmd, .framer-FXa2Q .framer-1oapaqx { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 342px; word-break: break-word; word-wrap: break-word; }\",\".framer-FXa2Q .framer-1disn76 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 110%; }\",\".framer-FXa2Q .framer-1p0fa6r { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 320px; }\",\".framer-FXa2Q .framer-khprev { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 184px; }\",\".framer-FXa2Q .framer-x9fgpz { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 263px; word-break: break-word; word-wrap: break-word; }\",\".framer-FXa2Q .framer-118sle6, .framer-FXa2Q .framer-q1w80b, .framer-FXa2Q .framer-1jgjfzw, .framer-FXa2Q .framer-chd14e, .framer-FXa2Q .framer-1kb2eug { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-FXa2Q .framer-1ts1frd, .framer-FXa2Q .framer-i72zva, .framer-FXa2Q .framer-3h9hov, .framer-FXa2Q .framer-17u8lek, .framer-FXa2Q .framer-1fsc3gg, .framer-FXa2Q .framer-y72qut { flex: none; height: 25px; overflow: visible; position: relative; width: 25px; }\",\".framer-FXa2Q .framer-1ho43ze, .framer-FXa2Q .framer-2jl1f3, .framer-FXa2Q .framer-nlx8ka, .framer-FXa2Q .framer-1fkx39n, .framer-FXa2Q .framer-16uhy84 { flex: none; height: auto; left: 31px; position: absolute; top: 0px; white-space: pre-wrap; width: 202px; word-break: break-word; word-wrap: break-word; }\",\".framer-FXa2Q .framer-rbaww0, .framer-FXa2Q .framer-f7y9be { flex: none; height: 16px; left: 3px; position: absolute; top: 5px; width: 19px; }\",\".framer-FXa2Q .framer-17163r2, .framer-FXa2Q .framer-axmsag { flex: none; height: 16px; left: 3px; overflow: hidden; position: absolute; top: 5px; width: 19px; }\",\".framer-FXa2Q .framer-1vtglac { aspect-ratio: 1 / 1; bottom: var(--framer-aspect-ratio-supported, -2px); flex: none; height: 20px; left: -1px; position: absolute; right: 0px; top: -2px; }\",\".framer-FXa2Q .framer-1tz5lmi { aspect-ratio: 1 / 1; bottom: var(--framer-aspect-ratio-supported, 0px); flex: none; height: 16px; left: 2px; position: absolute; right: 1px; top: 0px; }\",\".framer-FXa2Q .framer-1m9eojj { flex: none; height: 19px; left: 3px; overflow: hidden; position: absolute; top: 3px; width: 19px; }\",\".framer-FXa2Q .framer-8khm1h { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 17px); left: 1px; position: absolute; top: 1px; width: 17px; }\",\".framer-FXa2Q .framer-sdc9ip { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 28px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-FXa2Q .framer-1hup37s { flex: none; height: auto; left: 0px; position: absolute; top: 0px; white-space: pre-wrap; width: 333px; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-FXa2Q.framer-bzmydx, .framer-FXa2Q .framer-1p038m8, .framer-FXa2Q .framer-3f6q18, .framer-FXa2Q .framer-1mn6ha5, .framer-FXa2Q .framer-139uu89, .framer-FXa2Q .framer-74hy7r, .framer-FXa2Q .framer-1c4lssd, .framer-FXa2Q .framer-14ahvcq, .framer-FXa2Q .framer-1d747z4, .framer-FXa2Q .framer-1yu4afw, .framer-FXa2Q .framer-11h16i6, .framer-FXa2Q .framer-1disn76, .framer-FXa2Q .framer-zr9dex, .framer-FXa2Q .framer-1p0fa6r, .framer-FXa2Q .framer-gad1mi, .framer-FXa2Q .framer-es35my, .framer-FXa2Q .framer-p0h57o, .framer-FXa2Q .framer-my5kl6, .framer-FXa2Q .framer-khprev, .framer-FXa2Q .framer-1rr2van, .framer-FXa2Q .framer-118sle6, .framer-FXa2Q .framer-q1w80b, .framer-FXa2Q .framer-1jgjfzw, .framer-FXa2Q .framer-chd14e, .framer-FXa2Q .framer-1kb2eug, .framer-FXa2Q .framer-sdc9ip { gap: 0px; } .framer-FXa2Q.framer-bzmydx > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-FXa2Q.framer-bzmydx > :first-child, .framer-FXa2Q .framer-1p038m8 > :first-child, .framer-FXa2Q .framer-118sle6 > :first-child, .framer-FXa2Q .framer-q1w80b > :first-child, .framer-FXa2Q .framer-1jgjfzw > :first-child, .framer-FXa2Q .framer-chd14e > :first-child, .framer-FXa2Q .framer-1kb2eug > :first-child, .framer-FXa2Q .framer-sdc9ip > :first-child { margin-left: 0px; } .framer-FXa2Q.framer-bzmydx > :last-child, .framer-FXa2Q .framer-1p038m8 > :last-child, .framer-FXa2Q .framer-118sle6 > :last-child, .framer-FXa2Q .framer-q1w80b > :last-child, .framer-FXa2Q .framer-1jgjfzw > :last-child, .framer-FXa2Q .framer-chd14e > :last-child, .framer-FXa2Q .framer-1kb2eug > :last-child, .framer-FXa2Q .framer-sdc9ip > :last-child { margin-right: 0px; } .framer-FXa2Q .framer-1p038m8 > * { margin: 0px; margin-left: calc(38px / 2); margin-right: calc(38px / 2); } .framer-FXa2Q .framer-3f6q18 > *, .framer-FXa2Q .framer-1mn6ha5 > *, .framer-FXa2Q .framer-1d747z4 > *, .framer-FXa2Q .framer-1yu4afw > *, .framer-FXa2Q .framer-1p0fa6r > *, .framer-FXa2Q .framer-gad1mi > *, .framer-FXa2Q .framer-khprev > *, .framer-FXa2Q .framer-1rr2van > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-FXa2Q .framer-3f6q18 > :first-child, .framer-FXa2Q .framer-1mn6ha5 > :first-child, .framer-FXa2Q .framer-139uu89 > :first-child, .framer-FXa2Q .framer-74hy7r > :first-child, .framer-FXa2Q .framer-1c4lssd > :first-child, .framer-FXa2Q .framer-14ahvcq > :first-child, .framer-FXa2Q .framer-1d747z4 > :first-child, .framer-FXa2Q .framer-1yu4afw > :first-child, .framer-FXa2Q .framer-11h16i6 > :first-child, .framer-FXa2Q .framer-1disn76 > :first-child, .framer-FXa2Q .framer-zr9dex > :first-child, .framer-FXa2Q .framer-1p0fa6r > :first-child, .framer-FXa2Q .framer-gad1mi > :first-child, .framer-FXa2Q .framer-es35my > :first-child, .framer-FXa2Q .framer-p0h57o > :first-child, .framer-FXa2Q .framer-my5kl6 > :first-child, .framer-FXa2Q .framer-khprev > :first-child, .framer-FXa2Q .framer-1rr2van > :first-child { margin-top: 0px; } .framer-FXa2Q .framer-3f6q18 > :last-child, .framer-FXa2Q .framer-1mn6ha5 > :last-child, .framer-FXa2Q .framer-139uu89 > :last-child, .framer-FXa2Q .framer-74hy7r > :last-child, .framer-FXa2Q .framer-1c4lssd > :last-child, .framer-FXa2Q .framer-14ahvcq > :last-child, .framer-FXa2Q .framer-1d747z4 > :last-child, .framer-FXa2Q .framer-1yu4afw > :last-child, .framer-FXa2Q .framer-11h16i6 > :last-child, .framer-FXa2Q .framer-1disn76 > :last-child, .framer-FXa2Q .framer-zr9dex > :last-child, .framer-FXa2Q .framer-1p0fa6r > :last-child, .framer-FXa2Q .framer-gad1mi > :last-child, .framer-FXa2Q .framer-es35my > :last-child, .framer-FXa2Q .framer-p0h57o > :last-child, .framer-FXa2Q .framer-my5kl6 > :last-child, .framer-FXa2Q .framer-khprev > :last-child, .framer-FXa2Q .framer-1rr2van > :last-child { margin-bottom: 0px; } .framer-FXa2Q .framer-139uu89 > *, .framer-FXa2Q .framer-74hy7r > *, .framer-FXa2Q .framer-1c4lssd > *, .framer-FXa2Q .framer-14ahvcq > *, .framer-FXa2Q .framer-11h16i6 > *, .framer-FXa2Q .framer-1disn76 > *, .framer-FXa2Q .framer-zr9dex > *, .framer-FXa2Q .framer-es35my > *, .framer-FXa2Q .framer-p0h57o > *, .framer-FXa2Q .framer-my5kl6 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-FXa2Q .framer-118sle6 > *, .framer-FXa2Q .framer-q1w80b > *, .framer-FXa2Q .framer-1jgjfzw > *, .framer-FXa2Q .framer-chd14e > *, .framer-FXa2Q .framer-1kb2eug > *, .framer-FXa2Q .framer-sdc9ip > * { margin: 0px; margin-left: calc(-299px / 2); margin-right: calc(-299px / 2); } }\",\".framer-FXa2Q.framer-v-15cnb57.framer-bzmydx, .framer-FXa2Q.framer-v-1f3pto8.framer-bzmydx, .framer-FXa2Q.framer-v-1wokspg.framer-bzmydx { flex-direction: column; }\",\".framer-FXa2Q.framer-v-15cnb57 .framer-1p038m8 { flex-wrap: wrap; gap: 100px; justify-content: center; padding: 28px 20px 28px 20px; width: 992px; }\",\".framer-FXa2Q.framer-v-15cnb57 .framer-1p0fa6r { align-content: flex-start; align-items: flex-start; width: 300px; }\",\".framer-FXa2Q.framer-v-15cnb57 .framer-gad1mi { align-content: center; align-items: center; }\",\".framer-FXa2Q.framer-v-15cnb57 .framer-khprev { width: 300px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-FXa2Q.framer-v-15cnb57.framer-bzmydx, .framer-FXa2Q.framer-v-15cnb57 .framer-1p038m8 { gap: 0px; } .framer-FXa2Q.framer-v-15cnb57.framer-bzmydx > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-FXa2Q.framer-v-15cnb57.framer-bzmydx > :first-child { margin-top: 0px; } .framer-FXa2Q.framer-v-15cnb57.framer-bzmydx > :last-child { margin-bottom: 0px; } .framer-FXa2Q.framer-v-15cnb57 .framer-1p038m8 > * { margin: 0px; margin-left: calc(100px / 2); margin-right: calc(100px / 2); } .framer-FXa2Q.framer-v-15cnb57 .framer-1p038m8 > :first-child { margin-left: 0px; } .framer-FXa2Q.framer-v-15cnb57 .framer-1p038m8 > :last-child { margin-right: 0px; } }\",\".framer-FXa2Q.framer-v-1f3pto8 .framer-1p038m8 { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 0px; padding: 28px 40px 28px 40px; width: 810px; }\",\".framer-FXa2Q.framer-v-1f3pto8 .framer-74hy7r { text-decoration: none; }\",\".framer-FXa2Q.framer-v-1f3pto8 .framer-1d747z4 { gap: 0px; }\",\".framer-FXa2Q.framer-v-1f3pto8 .framer-1yu4afw { padding: 11px 0px 11px 0px; }\",\".framer-FXa2Q.framer-v-1f3pto8 .framer-1p0fa6r { padding: 9px 0px 9px 0px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-FXa2Q.framer-v-1f3pto8.framer-bzmydx, .framer-FXa2Q.framer-v-1f3pto8 .framer-1p038m8, .framer-FXa2Q.framer-v-1f3pto8 .framer-1d747z4 { gap: 0px; } .framer-FXa2Q.framer-v-1f3pto8.framer-bzmydx > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-FXa2Q.framer-v-1f3pto8.framer-bzmydx > :first-child, .framer-FXa2Q.framer-v-1f3pto8 .framer-1p038m8 > :first-child, .framer-FXa2Q.framer-v-1f3pto8 .framer-1d747z4 > :first-child { margin-top: 0px; } .framer-FXa2Q.framer-v-1f3pto8.framer-bzmydx > :last-child, .framer-FXa2Q.framer-v-1f3pto8 .framer-1p038m8 > :last-child, .framer-FXa2Q.framer-v-1f3pto8 .framer-1d747z4 > :last-child { margin-bottom: 0px; } .framer-FXa2Q.framer-v-1f3pto8 .framer-1p038m8 > *, .framer-FXa2Q.framer-v-1f3pto8 .framer-1d747z4 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } }\",\".framer-FXa2Q.framer-v-1wokspg .framer-1p038m8 { display: block; height: 1038px; padding: unset; width: 390px; }\",\".framer-FXa2Q.framer-v-1wokspg .framer-3f6q18 { left: 20px; position: absolute; top: 24px; }\",\".framer-FXa2Q.framer-v-1wokspg .framer-1d747z4 { left: 20px; position: absolute; top: 306px; }\",\".framer-FXa2Q.framer-v-1wokspg .framer-1p0fa6r { bottom: 336px; left: 20px; position: absolute; }\",\".framer-FXa2Q.framer-v-1wokspg .framer-khprev { bottom: 24px; left: 20px; padding: 16px 0px 16px 0px; position: absolute; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-FXa2Q.framer-v-1wokspg.framer-bzmydx, .framer-FXa2Q.framer-v-1wokspg .framer-1p038m8 { gap: 0px; } .framer-FXa2Q.framer-v-1wokspg.framer-bzmydx > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-FXa2Q.framer-v-1wokspg.framer-bzmydx > :first-child { margin-top: 0px; } .framer-FXa2Q.framer-v-1wokspg.framer-bzmydx > :last-child { margin-bottom: 0px; } .framer-FXa2Q.framer-v-1wokspg .framer-1p038m8 > *, .framer-FXa2Q.framer-v-1wokspg .framer-1p038m8 > :first-child, .framer-FXa2Q.framer-v-1wokspg .framer-1p038m8 > :last-child { margin: 0px; } }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 338\n * @framerIntrinsicWidth 1920\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"KJsXo_HeR\":{\"layout\":[\"auto\",\"auto\"]},\"jUAsQoCUZ\":{\"layout\":[\"auto\",\"auto\"]},\"yA5L4Jh2d\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerMEYrt1mVZ=withCSS(Component,css,\"framer-FXa2Q\");export default FramerMEYrt1mVZ;FramerMEYrt1mVZ.displayName=\"Dropdown Product Mega Menu\";FramerMEYrt1mVZ.defaultProps={height:338,width:1920};addPropertyControls(FramerMEYrt1mVZ,{variant:{options:[\"AytcgmOEP\",\"KJsXo_HeR\",\"jUAsQoCUZ\",\"yA5L4Jh2d\"],optionTitles:[\"Desktop Product\",\"Laptop\",\"Tablet\",\"Mobile\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerMEYrt1mVZ,[{explicitInter:true,fonts:[{family:\"Geist\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/geist/v1/gyBhhwUxId8gMGYQMKR3pzfaWI_RQuQ4mJPby1QNtA.woff2\",weight:\"600\"},{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/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{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/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{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/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{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/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{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/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Geist\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/geist/v1/gyBhhwUxId8gMGYQMKR3pzfaWI_RnOI4mJPby1QNtA.woff2\",weight:\"100\"},{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/hyOgCu0Xnghbimh0pE8QTvtt2AU.woff2\",weight:\"600\"},{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/NeGmSOXrPBfEFIy5YZeHq17LEDA.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/oYaAX5himiTPYuN8vLWnqBbfD2s.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/lEJLP4R0yuCaMCjSXYHtJw72M.woff2\",weight:\"600\"},{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/cRJyLNuTJR5jbyKzGi33wU9cqIQ.woff2\",weight:\"600\"},{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/1ZFS7N918ojhhd0nQWdj3jz4w.woff2\",weight:\"600\"},{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/A0Wcc7NgXMjUuFdquHDrIZpzZw0.woff2\",weight:\"600\"}]},...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerMEYrt1mVZ\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"338\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"1920\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"KJsXo_HeR\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"jUAsQoCUZ\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"yA5L4Jh2d\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./MEYrt1mVZ.map", "// Generated by Framer (b2780b5)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/3hlwzTMpMscIsbGDY0TH/2gcSf2NNpy6l2h2RlTYU/majvrcgXp.js\";const cycleOrder=[\"Sqv2kA5go\",\"TJKpGuAK4\",\"P5xGqWEVk\",\"aDdiecGPz\"];const serializationHash=\"framer-Q9Z8e\";const variantClassNames={aDdiecGPz:\"framer-v-1ohqid6\",P5xGqWEVk:\"framer-v-phzs7u\",Sqv2kA5go:\"framer-v-gii9li\",TJKpGuAK4:\"framer-v-21ga1f\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Desktop About\":\"Sqv2kA5go\",Laptop:\"TJKpGuAK4\",Mobile:\"aDdiecGPz\",Tablet:\"P5xGqWEVk\"};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:\"Sqv2kA5go\"};};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:\"Sqv2kA5go\",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-gii9li\",className,classNames),\"data-framer-name\":\"Desktop About\",layoutDependency:layoutDependency,layoutId:\"Sqv2kA5go\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,boxShadow:\"0px 10px 20px 0px rgba(0,0,0,0.05)\",...style},variants:{aDdiecGPz:{borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0,boxShadow:\"none\"},P5xGqWEVk:{borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0,boxShadow:\"none\"},TJKpGuAK4:{borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0,boxShadow:\"none\"}},...addPropertyOverrides({aDdiecGPz:{\"data-framer-name\":\"Mobile\"},P5xGqWEVk:{\"data-framer-name\":\"Tablet\"},TJKpGuAK4:{\"data-framer-name\":\"Laptop\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-vllhog\",\"data-framer-name\":\"Menu\",layoutDependency:layoutDependency,layoutId:\"YwCHZgB1x\",style:{backgroundColor:\"rgb(255, 255, 255)\",boxShadow:\"0px 8px 9px -2px rgba(0, 0, 0, 0.20000000298023224)\"},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-p2m0it\",\"data-framer-name\":\"Col 8\",layoutDependency:layoutDependency,layoutId:\"VrXPIynao\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7R2Vpc3QtNjAw\",\"--framer-font-family\":'\"Geist\", \"Geist Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.08em\",\"--framer-line-height\":\"30.6px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 36, 78))\",\"--framer-text-transform\":\"uppercase\"},children:\"AI agentS & chatbot ActionS\"})}),className:\"framer-18x3d3w\",\"data-framer-name\":\"Your Automation Experts\",fonts:[\"GF;Geist-600\"],layoutDependency:layoutDependency,layoutId:\"b29n84mRK\",style:{\"--extracted-r6o4lv\":\"rgb(255, 36, 78)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1n977pl\",\"data-framer-name\":\"Links\",layoutDependency:layoutDependency,layoutId:\"tEP2dLgrm\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1jiswjf\",\"data-framer-name\":\"Menu Item\",layoutDependency:layoutDependency,layoutId:\"DQNSuccNp\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"27.2px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(72, 77, 103))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"hkEoZvqx5\"},nodeId:\"PQ6ND0sfC\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-yhwqya\",\"data-styles-preset\":\"majvrcgXp\",children:\"Add AI Actions to your Chatbot\"})})})}),className:\"framer-96ej16\",\"data-framer-name\":\"Resell Wrk\",fonts:[\"Inter-Bold\"],layoutDependency:layoutDependency,layoutId:\"PQ6ND0sfC\",style:{\"--extracted-r6o4lv\":\"rgb(72, 77, 103)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(136, 146, 166))\"},children:\"Enable your AI agent or chatbot with +2500 actions\"})}),className:\"framer-1ht7fli\",\"data-framer-name\":\"Partner with us to offer our platform to your clients\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"EreLlY6Kr\",style:{\"--extracted-r6o4lv\":\"rgb(136, 146, 166)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1hrrzi5\",\"data-framer-name\":\"Menu Item\",layoutDependency:layoutDependency,layoutId:\"W7OLNaEui\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"27.2px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(72, 77, 103))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"LKa7HNtGx\"},nodeId:\"UPUf1Gm0d\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-yhwqya\",\"data-styles-preset\":\"majvrcgXp\",children:\"Explore our AI Actions\"})})})}),className:\"framer-sye1vy\",\"data-framer-name\":\"Resell Wrk\",fonts:[\"Inter-Bold\"],layoutDependency:layoutDependency,layoutId:\"UPUf1Gm0d\",style:{\"--extracted-r6o4lv\":\"rgb(72, 77, 103)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(136, 146, 166))\"},children:\"Explore our library of simple and complex actions for your AI agent or chatbot\"})}),className:\"framer-18g4fju\",\"data-framer-name\":\"Partner with us to offer our platform to your clients\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Qu0cy0msh\",style:{\"--extracted-r6o4lv\":\"rgb(136, 146, 166)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-mx5md1\",\"data-framer-name\":\"Menu Item\",layoutDependency:layoutDependency,layoutId:\"HBHWwA4Ff\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"27.2px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(72, 77, 103))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"mN2sCGYc7\"},nodeId:\"Payv2jxF6\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-yhwqya\",\"data-styles-preset\":\"majvrcgXp\",children:\"Request Access (SDK)\"})})})}),className:\"framer-3dqjz1\",\"data-framer-name\":\"Resell Wrk\",fonts:[\"Inter-Bold\"],layoutDependency:layoutDependency,layoutId:\"Payv2jxF6\",style:{\"--extracted-r6o4lv\":\"rgb(72, 77, 103)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(136, 146, 166))\"},children:\"Get access to our SDK & library of capabilities\"})}),className:\"framer-e3zlta\",\"data-framer-name\":\"Partner with us to offer our platform to your clients\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"qzfcOxBlA\",style:{\"--extracted-r6o4lv\":\"rgb(136, 146, 166)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-n4wzty\",\"data-framer-name\":\"Col 8\",layoutDependency:layoutDependency,layoutId:\"dX95U3yC1\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7R2Vpc3QtNjAw\",\"--framer-font-family\":'\"Geist\", \"Geist Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.08em\",\"--framer-line-height\":\"30.6px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 36, 78))\",\"--framer-text-transform\":\"uppercase\"},children:\"CHATBOT INTEGRATIONS\"})}),className:\"framer-1td54se\",\"data-framer-name\":\"Your Automation Experts\",fonts:[\"GF;Geist-600\"],layoutDependency:layoutDependency,layoutId:\"Du3A_cEo5\",style:{\"--extracted-r6o4lv\":\"rgb(255, 36, 78)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1h5m1if\",\"data-framer-name\":\"Links\",layoutDependency:layoutDependency,layoutId:\"ZsHs9dNK1\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1iqqweb\",\"data-framer-name\":\"Menu Item\",layoutDependency:layoutDependency,layoutId:\"fvdaoTdqs\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"27.2px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(72, 77, 103))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"Vli218Nwf\"},nodeId:\"ZSp1R9Xnw\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-yhwqya\",\"data-styles-preset\":\"majvrcgXp\",children:\"Sendbird\"})})})}),className:\"framer-yb4tnz\",\"data-framer-name\":\"Resell Wrk\",fonts:[\"Inter-Bold\"],layoutDependency:layoutDependency,layoutId:\"ZSp1R9Xnw\",style:{\"--extracted-r6o4lv\":\"rgb(72, 77, 103)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(136, 146, 166))\"},children:\"Upgrade your Sendbird chatbot with 2500+ Wrk Actions\"})}),className:\"framer-oq218a\",\"data-framer-name\":\"Partner with us to offer our platform to your clients\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"ymheAWGwJ\",style:{\"--extracted-r6o4lv\":\"rgb(136, 146, 166)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]})})]})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Q9Z8e.framer-72s73a, .framer-Q9Z8e .framer-72s73a { display: block; }\",\".framer-Q9Z8e.framer-gii9li { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-Q9Z8e .framer-vllhog { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 58px 300px 28px 300px; position: relative; width: 1631px; }\",\".framer-Q9Z8e .framer-p2m0it, .framer-Q9Z8e .framer-n4wzty { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 380px; }\",\".framer-Q9Z8e .framer-18x3d3w, .framer-Q9Z8e .framer-96ej16, .framer-Q9Z8e .framer-1ht7fli, .framer-Q9Z8e .framer-sye1vy, .framer-Q9Z8e .framer-18g4fju, .framer-Q9Z8e .framer-3dqjz1, .framer-Q9Z8e .framer-e3zlta, .framer-Q9Z8e .framer-1td54se, .framer-Q9Z8e .framer-yb4tnz, .framer-Q9Z8e .framer-oq218a { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 380px; word-break: break-word; word-wrap: break-word; }\",\".framer-Q9Z8e .framer-1n977pl, .framer-Q9Z8e .framer-1h5m1if { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Q9Z8e .framer-1jiswjf, .framer-Q9Z8e .framer-1hrrzi5, .framer-Q9Z8e .framer-mx5md1, .framer-Q9Z8e .framer-1iqqweb { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Q9Z8e.framer-gii9li, .framer-Q9Z8e .framer-vllhog, .framer-Q9Z8e .framer-p2m0it, .framer-Q9Z8e .framer-1n977pl, .framer-Q9Z8e .framer-1jiswjf, .framer-Q9Z8e .framer-1hrrzi5, .framer-Q9Z8e .framer-mx5md1, .framer-Q9Z8e .framer-n4wzty, .framer-Q9Z8e .framer-1h5m1if, .framer-Q9Z8e .framer-1iqqweb { gap: 0px; } .framer-Q9Z8e.framer-gii9li > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-Q9Z8e.framer-gii9li > :first-child, .framer-Q9Z8e .framer-vllhog > :first-child { margin-left: 0px; } .framer-Q9Z8e.framer-gii9li > :last-child, .framer-Q9Z8e .framer-vllhog > :last-child { margin-right: 0px; } .framer-Q9Z8e .framer-vllhog > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-Q9Z8e .framer-p2m0it > *, .framer-Q9Z8e .framer-1n977pl > *, .framer-Q9Z8e .framer-n4wzty > *, .framer-Q9Z8e .framer-1h5m1if > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-Q9Z8e .framer-p2m0it > :first-child, .framer-Q9Z8e .framer-1n977pl > :first-child, .framer-Q9Z8e .framer-1jiswjf > :first-child, .framer-Q9Z8e .framer-1hrrzi5 > :first-child, .framer-Q9Z8e .framer-mx5md1 > :first-child, .framer-Q9Z8e .framer-n4wzty > :first-child, .framer-Q9Z8e .framer-1h5m1if > :first-child, .framer-Q9Z8e .framer-1iqqweb > :first-child { margin-top: 0px; } .framer-Q9Z8e .framer-p2m0it > :last-child, .framer-Q9Z8e .framer-1n977pl > :last-child, .framer-Q9Z8e .framer-1jiswjf > :last-child, .framer-Q9Z8e .framer-1hrrzi5 > :last-child, .framer-Q9Z8e .framer-mx5md1 > :last-child, .framer-Q9Z8e .framer-n4wzty > :last-child, .framer-Q9Z8e .framer-1h5m1if > :last-child, .framer-Q9Z8e .framer-1iqqweb > :last-child { margin-bottom: 0px; } .framer-Q9Z8e .framer-1jiswjf > *, .framer-Q9Z8e .framer-1hrrzi5 > *, .framer-Q9Z8e .framer-mx5md1 > *, .framer-Q9Z8e .framer-1iqqweb > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } }\",\".framer-Q9Z8e.framer-v-21ga1f.framer-gii9li, .framer-Q9Z8e.framer-v-phzs7u.framer-gii9li, .framer-Q9Z8e.framer-v-1ohqid6.framer-gii9li { flex-direction: column; }\",\".framer-Q9Z8e.framer-v-21ga1f .framer-vllhog { flex-wrap: wrap; gap: 10px; justify-content: center; padding: 58px 20px 28px 20px; width: 477px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Q9Z8e.framer-v-21ga1f.framer-gii9li, .framer-Q9Z8e.framer-v-21ga1f .framer-vllhog { gap: 0px; } .framer-Q9Z8e.framer-v-21ga1f.framer-gii9li > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-Q9Z8e.framer-v-21ga1f.framer-gii9li > :first-child { margin-top: 0px; } .framer-Q9Z8e.framer-v-21ga1f.framer-gii9li > :last-child { margin-bottom: 0px; } .framer-Q9Z8e.framer-v-21ga1f .framer-vllhog > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-Q9Z8e.framer-v-21ga1f .framer-vllhog > :first-child { margin-left: 0px; } .framer-Q9Z8e.framer-v-21ga1f .framer-vllhog > :last-child { margin-right: 0px; } }\",\".framer-Q9Z8e.framer-v-phzs7u .framer-vllhog { flex-direction: column; flex-wrap: wrap; gap: 16px; justify-content: center; padding: 20px 20px 28px 40px; width: 810px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Q9Z8e.framer-v-phzs7u.framer-gii9li, .framer-Q9Z8e.framer-v-phzs7u .framer-vllhog { gap: 0px; } .framer-Q9Z8e.framer-v-phzs7u.framer-gii9li > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-Q9Z8e.framer-v-phzs7u.framer-gii9li > :first-child, .framer-Q9Z8e.framer-v-phzs7u .framer-vllhog > :first-child { margin-top: 0px; } .framer-Q9Z8e.framer-v-phzs7u.framer-gii9li > :last-child, .framer-Q9Z8e.framer-v-phzs7u .framer-vllhog > :last-child { margin-bottom: 0px; } .framer-Q9Z8e.framer-v-phzs7u .framer-vllhog > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } }\",\".framer-Q9Z8e.framer-v-1ohqid6 .framer-vllhog { flex-direction: column; gap: 0px; padding: 24px 20px 24px 20px; width: 390px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Q9Z8e.framer-v-1ohqid6.framer-gii9li, .framer-Q9Z8e.framer-v-1ohqid6 .framer-vllhog { gap: 0px; } .framer-Q9Z8e.framer-v-1ohqid6.framer-gii9li > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-Q9Z8e.framer-v-1ohqid6.framer-gii9li > :first-child, .framer-Q9Z8e.framer-v-1ohqid6 .framer-vllhog > :first-child { margin-top: 0px; } .framer-Q9Z8e.framer-v-1ohqid6.framer-gii9li > :last-child, .framer-Q9Z8e.framer-v-1ohqid6 .framer-vllhog > :last-child { margin-bottom: 0px; } .framer-Q9Z8e.framer-v-1ohqid6 .framer-vllhog > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 324.5\n * @framerIntrinsicWidth 1631\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"TJKpGuAK4\":{\"layout\":[\"auto\",\"auto\"]},\"P5xGqWEVk\":{\"layout\":[\"auto\",\"auto\"]},\"aDdiecGPz\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramermSQVX6Tbe=withCSS(Component,css,\"framer-Q9Z8e\");export default FramermSQVX6Tbe;FramermSQVX6Tbe.displayName=\"Dropdown AI Actions MM\";FramermSQVX6Tbe.defaultProps={height:324.5,width:1631};addPropertyControls(FramermSQVX6Tbe,{variant:{options:[\"Sqv2kA5go\",\"TJKpGuAK4\",\"P5xGqWEVk\",\"aDdiecGPz\"],optionTitles:[\"Desktop About\",\"Laptop\",\"Tablet\",\"Mobile\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramermSQVX6Tbe,[{explicitInter:true,fonts:[{family:\"Geist\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/geist/v1/gyBhhwUxId8gMGYQMKR3pzfaWI_RQuQ4mJPby1QNtA.woff2\",weight:\"600\"},{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/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{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/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{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/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{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/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{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/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramermSQVX6Tbe\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"324.5\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"1631\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"TJKpGuAK4\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"P5xGqWEVk\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"aDdiecGPz\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./mSQVX6Tbe.map", "// Generated by Framer (ed8225c)\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 Feather}from\"https://framerusercontent.com/modules/f0DboytQenYh21kfme7W/zb1zVBMZJKgPMiedOi0y/Feather.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/1WYRTuDSWBaYDctm5xu6/mjSPAHI1VKKIecazIHHV/bZjHF9vaC.js\";const FeatherFonts=getFonts(Feather);const enabledGestures={CDCpCyx7e:{hover:true},CyEkmQ_Np:{hover:true},EZe_2_uS0:{hover:true},X5mpssHFg:{hover:true}};const cycleOrder=[\"X5mpssHFg\",\"EZe_2_uS0\",\"CyEkmQ_Np\",\"CDCpCyx7e\"];const serializationHash=\"framer-Y4uM5\";const variantClassNames={CDCpCyx7e:\"framer-v-1ei1g2f\",CyEkmQ_Np:\"framer-v-ipjvf1\",EZe_2_uS0:\"framer-v-1q08tvc\",X5mpssHFg:\"framer-v-pwznol\"};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={duration:0,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.create(React.Fragment);const humanReadableVariantMap={\"Footer Navitem\":\"CyEkmQ_Np\",\"Menu Open\":\"CDCpCyx7e\",\"Primary Navitem\":\"X5mpssHFg\",\"Secondary Navitem\":\"EZe_2_uS0\"};const getProps=({height,hover,iconVisible,id,link,tap,title,width,...props})=>{var _ref,_humanReadableVariantMap_props_variant,_ref1;return{...props,cRqRWoih6:link!==null&&link!==void 0?link:props.cRqRWoih6,Oc0fzh3x0:iconVisible!==null&&iconVisible!==void 0?iconVisible:props.Oc0fzh3x0,okFfDCMAr:(_ref=title!==null&&title!==void 0?title:props.okFfDCMAr)!==null&&_ref!==void 0?_ref:\"Home\",oxH5zj9aM:tap!==null&&tap!==void 0?tap:props.oxH5zj9aM,Usq46WHfY:hover!==null&&hover!==void 0?hover:props.Usq46WHfY,variant:(_ref1=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref1!==void 0?_ref1:\"X5mpssHFg\"};};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,okFfDCMAr,cRqRWoih6,Oc0fzh3x0,oxH5zj9aM,Usq46WHfY,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"X5mpssHFg\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTaph8x81r=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(oxH5zj9aM){const res=await oxH5zj9aM(...args);if(res===false)return false;}});const onMouseEnter14zb82p=activeVariantCallback(async(...args)=>{setGestureState({isHovered:true});if(Usq46WHfY){const res=await Usq46WHfY(...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:cRqRWoih6,nodeId:\"X5mpssHFg\",openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-pwznol\",className,classNames)} framer-80ruau`,\"data-framer-name\":\"Primary Navitem\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"X5mpssHFg\",onMouseEnter:onMouseEnter14zb82p,onTap:onTaph8x81r,ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgba(0, 0, 0, 0)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",backgroundColor:\"rgba(0, 0, 0, 0)\",...style},variants:{CyEkmQ_Np:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(234, 237, 240)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",backgroundColor:\"var(--token-88303b00-e8c4-42c5-ae17-5aee596ec64e, rgb(255, 255, 255))\"},EZe_2_uS0:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(234, 237, 240)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",backgroundColor:\"var(--token-88303b00-e8c4-42c5-ae17-5aee596ec64e, rgb(255, 255, 255))\"}},...addPropertyOverrides({\"CDCpCyx7e-hover\":{\"data-framer-name\":undefined},\"CyEkmQ_Np-hover\":{\"data-framer-name\":undefined},\"EZe_2_uS0-hover\":{\"data-framer-name\":undefined},\"X5mpssHFg-hover\":{\"data-framer-name\":undefined},CDCpCyx7e:{\"data-framer-name\":\"Menu Open\"},CyEkmQ_Np:{\"data-border\":true,\"data-framer-name\":\"Footer Navitem\"},EZe_2_uS0:{\"data-border\":true,\"data-framer-name\":\"Secondary Navitem\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-yny1u5\",\"data-styles-preset\":\"bZjHF9vaC\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-3db63ba9-5376-4294-a67a-c1efb8b49a56, rgb(3, 12, 59)))\"},children:\"Home\"})}),className:\"framer-m6h9hh\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"b8_lreGCN\",style:{\"--extracted-r6o4lv\":\"var(--token-3db63ba9-5376-4294-a67a-c1efb8b49a56, rgb(3, 12, 59))\",\"--framer-paragraph-spacing\":\"0px\"},text:okFfDCMAr,variants:{\"CDCpCyx7e-hover\":{\"--extracted-r6o4lv\":\"var(--token-86476e45-a157-4a34-b4ae-582c91b4ee87, rgb(117, 139, 253))\"},\"CyEkmQ_Np-hover\":{\"--extracted-r6o4lv\":\"rgb(255, 35, 78)\"},\"EZe_2_uS0-hover\":{\"--extracted-r6o4lv\":\"rgb(255, 35, 78)\"},\"X5mpssHFg-hover\":{\"--extracted-r6o4lv\":\"rgb(255, 35, 78)\"},CyEkmQ_Np:{\"--extracted-r6o4lv\":\"var(--token-3db63ba9-5376-4294-a67a-c1efb8b49a56, rgb(9, 12, 28))\"},EZe_2_uS0:{\"--extracted-r6o4lv\":\"var(--token-3db63ba9-5376-4294-a67a-c1efb8b49a56, rgb(9, 12, 28))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"CDCpCyx7e-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-yny1u5\",\"data-styles-preset\":\"bZjHF9vaC\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-86476e45-a157-4a34-b4ae-582c91b4ee87, rgb(117, 139, 253)))\"},children:\"Home\"})})},\"CyEkmQ_Np-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-letter-spacing\":\"-0.3px\",\"--framer-line-height\":\"170%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 35, 78))\"},children:\"Home\"})})},\"EZe_2_uS0-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-letter-spacing\":\"-0.3px\",\"--framer-line-height\":\"170%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 35, 78))\"},children:\"Home\"})})},\"X5mpssHFg-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-yny1u5\",\"data-styles-preset\":\"bZjHF9vaC\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 35, 78))\"},children:\"Home\"})})},CyEkmQ_Np:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-letter-spacing\":\"-0.3px\",\"--framer-line-height\":\"170%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-3db63ba9-5376-4294-a67a-c1efb8b49a56, rgb(9, 12, 28)))\"},children:\"Home\"})}),fonts:[\"GF;Inter-regular\"]},EZe_2_uS0:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-letter-spacing\":\"-0.3px\",\"--framer-line-height\":\"170%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-3db63ba9-5376-4294-a67a-c1efb8b49a56, rgb(9, 12, 28)))\"},children:\"Home\"})}),fonts:[\"GF;Inter-regular\"]}},baseVariant,gestureVariant)}),Oc0fzh3x0&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-vju29g-container\",layoutDependency:layoutDependency,layoutId:\"bGoe4ZFw9-container\",style:{rotate:0},variants:{\"X5mpssHFg-hover\":{rotate:180}},children:/*#__PURE__*/_jsx(Feather,{color:\"var(--token-3db63ba9-5376-4294-a67a-c1efb8b49a56, rgb(9, 12, 28))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"chevron-down\",id:\"bGoe4ZFw9\",layoutId:\"bGoe4ZFw9\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\",...addPropertyOverrides({\"CDCpCyx7e-hover\":{color:\"var(--token-d2525d64-8e22-4328-8697-47da3288c7ad, rgb(235, 94, 40))\"},\"CyEkmQ_Np-hover\":{color:\"rgb(255, 35, 78)\",iconSelection:\"chevron-left\"},\"EZe_2_uS0-hover\":{color:\"rgb(255, 35, 78)\",iconSelection:\"chevron-left\"},\"X5mpssHFg-hover\":{color:\"rgb(255, 35, 78)\"},CDCpCyx7e:{color:\"var(--token-4bd7eeba-669e-49ab-85d5-91da45add9b3, rgb(21, 21, 20))\"},CyEkmQ_Np:{iconSelection:\"chevron-right\"},EZe_2_uS0:{iconSelection:\"chevron-right\"}},baseVariant,gestureVariant)})})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Y4uM5.framer-80ruau, .framer-Y4uM5 .framer-80ruau { display: block; }\",\".framer-Y4uM5.framer-pwznol { 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: 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-Y4uM5 .framer-m6h9hh { cursor: pointer; flex: none; height: auto; overflow: visible; position: relative; white-space: pre; width: auto; }\",\".framer-Y4uM5 .framer-vju29g-container { flex: none; height: 16px; position: relative; width: 16px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Y4uM5.framer-pwznol { gap: 0px; } .framer-Y4uM5.framer-pwznol > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-Y4uM5.framer-pwznol > :first-child { margin-left: 0px; } .framer-Y4uM5.framer-pwznol > :last-child { margin-right: 0px; } }\",\".framer-Y4uM5.framer-v-1q08tvc.framer-pwznol, .framer-Y4uM5.framer-v-ipjvf1.framer-pwznol { gap: unset; justify-content: space-between; padding: 40px 40px 40px 20px; }\",\".framer-Y4uM5.framer-v-1q08tvc .framer-vju29g-container, .framer-Y4uM5.framer-v-ipjvf1 .framer-vju29g-container { height: 24px; width: 24px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Y4uM5.framer-v-1q08tvc.framer-pwznol { gap: 0px; } .framer-Y4uM5.framer-v-1q08tvc.framer-pwznol > *, .framer-Y4uM5.framer-v-1q08tvc.framer-pwznol > :first-child, .framer-Y4uM5.framer-v-1q08tvc.framer-pwznol > :last-child { margin: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Y4uM5.framer-v-ipjvf1.framer-pwznol { gap: 0px; } .framer-Y4uM5.framer-v-ipjvf1.framer-pwznol > *, .framer-Y4uM5.framer-v-ipjvf1.framer-pwznol > :first-child, .framer-Y4uM5.framer-v-ipjvf1.framer-pwznol > :last-child { margin: 0px; } }\",\".framer-Y4uM5.framer-v-1q08tvc.hover.framer-pwznol, .framer-Y4uM5.framer-v-ipjvf1.hover.framer-pwznol { gap: unset; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Y4uM5.framer-v-1q08tvc.hover.framer-pwznol { gap: 0px; } .framer-Y4uM5.framer-v-1q08tvc.hover.framer-pwznol > *, .framer-Y4uM5.framer-v-1q08tvc.hover.framer-pwznol > :first-child, .framer-Y4uM5.framer-v-1q08tvc.hover.framer-pwznol > :last-child { margin: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Y4uM5.framer-v-ipjvf1.hover.framer-pwznol { gap: 0px; } .framer-Y4uM5.framer-v-ipjvf1.hover.framer-pwznol > *, .framer-Y4uM5.framer-v-ipjvf1.hover.framer-pwznol > :first-child, .framer-Y4uM5.framer-v-ipjvf1.hover.framer-pwznol > :last-child { margin: 0px; } }\",...sharedStyle.css,'.framer-Y4uM5[data-border=\"true\"]::after, .framer-Y4uM5 [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 27\n * @framerIntrinsicWidth 43.5\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"EZe_2_uS0\":{\"layout\":[\"auto\",\"auto\"]},\"CyEkmQ_Np\":{\"layout\":[\"auto\",\"auto\"]},\"CDCpCyx7e\":{\"layout\":[\"auto\",\"auto\"]},\"avz_hTexd\":{\"layout\":[\"auto\",\"auto\"]},\"nY8h9EOyx\":{\"layout\":[\"auto\",\"auto\"]},\"o2auM9DbV\":{\"layout\":[\"auto\",\"auto\"]},\"CzM5MVMxc\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"okFfDCMAr\":\"title\",\"cRqRWoih6\":\"link\",\"Oc0fzh3x0\":\"iconVisible\",\"oxH5zj9aM\":\"tap\",\"Usq46WHfY\":\"hover\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerTu4uPEe7t=withCSS(Component,css,\"framer-Y4uM5\");export default FramerTu4uPEe7t;FramerTu4uPEe7t.displayName=\"Nav-item-mega-menu\";FramerTu4uPEe7t.defaultProps={height:27,width:43.5};addPropertyControls(FramerTu4uPEe7t,{variant:{options:[\"X5mpssHFg\",\"EZe_2_uS0\",\"CyEkmQ_Np\",\"CDCpCyx7e\"],optionTitles:[\"Primary Navitem\",\"Secondary Navitem\",\"Footer Navitem\",\"Menu Open\"],title:\"Variant\",type:ControlType.Enum},okFfDCMAr:{defaultValue:\"Home\",displayTextArea:false,title:\"Title\",type:ControlType.String},cRqRWoih6:{title:\"Link\",type:ControlType.Link},Oc0fzh3x0:{defaultValue:false,title:\"Icon Visible\",type:ControlType.Boolean},oxH5zj9aM:{title:\"Tap\",type:ControlType.EventHandler},Usq46WHfY:{title:\"Hover\",type:ControlType.EventHandler}});addFonts(FramerTu4uPEe7t,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuLyfMZ1rib2Bg-4.woff2\",weight:\"400\"}]},...FeatherFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerTu4uPEe7t\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"EZe_2_uS0\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"CyEkmQ_Np\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"CDCpCyx7e\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"avz_hTexd\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"nY8h9EOyx\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"o2auM9DbV\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"CzM5MVMxc\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"43.5\",\"framerDisplayContentsDiv\":\"false\",\"framerVariables\":\"{\\\"okFfDCMAr\\\":\\\"title\\\",\\\"cRqRWoih6\\\":\\\"link\\\",\\\"Oc0fzh3x0\\\":\\\"iconVisible\\\",\\\"oxH5zj9aM\\\":\\\"tap\\\",\\\"Usq46WHfY\\\":\\\"hover\\\"}\",\"framerIntrinsicHeight\":\"27\",\"framerImmutableVariables\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Tu4uPEe7t.map", "// Generated by Framer (ddd30d5)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/3hlwzTMpMscIsbGDY0TH/2gcSf2NNpy6l2h2RlTYU/majvrcgXp.js\";const cycleOrder=[\"mGA0jyao7\",\"YJseSeNDA\",\"OeJl9CCcS\",\"fo_6tgLTP\"];const serializationHash=\"framer-81pk4\";const variantClassNames={fo_6tgLTP:\"framer-v-7apkb\",mGA0jyao7:\"framer-v-vxor37\",OeJl9CCcS:\"framer-v-yfkuh3\",YJseSeNDA:\"framer-v-11scj2f\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Desktop Resources\":\"mGA0jyao7\",Laptop:\"YJseSeNDA\",Mobile:\"fo_6tgLTP\",Tablet:\"OeJl9CCcS\"};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:\"mGA0jyao7\"};};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:\"mGA0jyao7\",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-vxor37\",className,classNames),\"data-framer-name\":\"Desktop Resources\",layoutDependency:layoutDependency,layoutId:\"mGA0jyao7\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,boxShadow:\"0px 10px 20px 0px rgba(0,0,0,0.05)\",...style},variants:{fo_6tgLTP:{borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0,boxShadow:\"none\"},OeJl9CCcS:{borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0,boxShadow:\"none\"},YJseSeNDA:{borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0,boxShadow:\"none\"}},...addPropertyOverrides({fo_6tgLTP:{\"data-framer-name\":\"Mobile\"},OeJl9CCcS:{\"data-framer-name\":\"Tablet\"},YJseSeNDA:{\"data-framer-name\":\"Laptop\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-nje7go\",\"data-framer-name\":\"Menu\",layoutDependency:layoutDependency,layoutId:\"f2hsffVOK\",style:{backgroundColor:\"rgb(255, 255, 255)\",boxShadow:\"0px 8px 9px -2px rgba(0, 0, 0, 0.20000000298023224)\"},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-syjltw\",\"data-framer-name\":\"Col 8\",layoutDependency:layoutDependency,layoutId:\"htLDNzluD\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7R2Vpc3QtNjAw\",\"--framer-font-family\":'\"Geist\", \"Geist Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.08em\",\"--framer-line-height\":\"30.6px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 36, 78))\",\"--framer-text-transform\":\"uppercase\"},children:\"Resources\"})}),className:\"framer-1rd8kum\",\"data-framer-name\":\"Resources\",fonts:[\"GF;Geist-600\"],layoutDependency:layoutDependency,layoutId:\"VqHMluRiO\",style:{\"--extracted-r6o4lv\":\"rgb(255, 36, 78)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1hor63w\",\"data-framer-name\":\"Links\",layoutDependency:layoutDependency,layoutId:\"tvSi2prNY\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-nrqlxe\",\"data-framer-name\":\"Menu Item\",layoutDependency:layoutDependency,layoutId:\"mgLSVLfVC\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"27.2px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(72, 77, 103))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"gC2FNmZhB\"},nodeId:\"i_aMoXpqr\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-yhwqya\",\"data-styles-preset\":\"majvrcgXp\",children:\"Blog\"})})})}),className:\"framer-10u2ycl\",\"data-framer-name\":\"Blog\",fonts:[\"Inter-Bold\"],layoutDependency:layoutDependency,layoutId:\"i_aMoXpqr\",style:{\"--extracted-r6o4lv\":\"rgb(72, 77, 103)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(136, 146, 166))\"},children:\"Insights from automation experts\"})}),className:\"framer-1sblst2\",\"data-framer-name\":\"Insights from automation experts\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"HC2tAs7Ox\",style:{\"--extracted-r6o4lv\":\"rgb(136, 146, 166)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1yy3hxw\",\"data-framer-name\":\"Menu Item\",layoutDependency:layoutDependency,layoutId:\"kyuzkyvvE\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"27.2px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(72, 77, 103))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"O7nIjrwCb\"},nodeId:\"NWzCoG4Lx\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-yhwqya\",\"data-styles-preset\":\"majvrcgXp\",children:\"Case Studies\"})})})}),className:\"framer-1lnlqj8\",\"data-framer-name\":\"Case Studies\",fonts:[\"Inter-Bold\"],layoutDependency:layoutDependency,layoutId:\"NWzCoG4Lx\",style:{\"--extracted-r6o4lv\":\"rgb(72, 77, 103)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(136, 146, 166))\"},children:\"Success stories and client highlights\"})}),className:\"framer-1plpayl\",\"data-framer-name\":\"Success stories and client highlights\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"zhyRPFkFm\",style:{\"--extracted-r6o4lv\":\"rgb(136, 146, 166)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-16672u\",\"data-framer-name\":\"Col 9\",layoutDependency:layoutDependency,layoutId:\"KYeSAl7eG\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7R2Vpc3QtNjAw\",\"--framer-font-family\":'\"Geist\", \"Geist Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.08em\",\"--framer-line-height\":\"30.6px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 36, 78))\",\"--framer-text-transform\":\"uppercase\"},children:\"Documentation\"})}),className:\"framer-18u7si6\",\"data-framer-name\":\"Documentation\",fonts:[\"GF;Geist-600\"],layoutDependency:layoutDependency,layoutId:\"UwqYf8a32\",style:{\"--extracted-r6o4lv\":\"rgb(255, 36, 78)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-lmuzzy\",\"data-framer-name\":\"Links\",layoutDependency:layoutDependency,layoutId:\"wfDaEKJTk\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1hymwh\",\"data-framer-name\":\"Menu Item\",layoutDependency:layoutDependency,layoutId:\"O9CxGjkMk\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"27.2px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(72, 77, 103))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://support.account.wrk.com/en/\",nodeId:\"vG51kajzH\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-yhwqya\",\"data-styles-preset\":\"majvrcgXp\",children:\"Help Documentation\"})})})}),className:\"framer-1xx2fws\",\"data-framer-name\":\"Help Documentation\",fonts:[\"Inter-Bold\"],layoutDependency:layoutDependency,layoutId:\"vG51kajzH\",style:{\"--extracted-r6o4lv\":\"rgb(72, 77, 103)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(136, 146, 166))\"},children:\"Step-by-step guides for platform usage\"})}),className:\"framer-w3me4x\",\"data-framer-name\":\"Step-by-step guides for platform usage\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"s0ZgIpDZs\",style:{\"--extracted-r6o4lv\":\"rgb(136, 146, 166)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1a1drc7\",\"data-framer-name\":\"Menu Item\",layoutDependency:layoutDependency,layoutId:\"dt8p3s6Lf\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"27.2px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(72, 77, 103))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"aMIUCVUkf\"},nodeId:\"CvE7GdQpC\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-yhwqya\",\"data-styles-preset\":\"majvrcgXp\",children:\"Get Support\"})})})}),className:\"framer-1um6wlm\",\"data-framer-name\":\"Get Support\",fonts:[\"Inter-Bold\"],layoutDependency:layoutDependency,layoutId:\"CvE7GdQpC\",style:{\"--extracted-r6o4lv\":\"rgb(72, 77, 103)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(136, 146, 166))\"},children:\"Get assistance from our expert team\"})}),className:\"framer-1fn9vpr\",\"data-framer-name\":\"Get assistance from our expert team\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"HlM9x5mxV\",style:{\"--extracted-r6o4lv\":\"rgb(136, 146, 166)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]})]})]})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-81pk4.framer-a1bt1u, .framer-81pk4 .framer-a1bt1u { display: block; }\",\".framer-81pk4.framer-vxor37 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-81pk4 .framer-nje7go { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 58px 300px 128px 350px; position: relative; width: 1631px; }\",\".framer-81pk4 .framer-syjltw { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 291px; }\",\".framer-81pk4 .framer-1rd8kum, .framer-81pk4 .framer-10u2ycl, .framer-81pk4 .framer-1sblst2, .framer-81pk4 .framer-1lnlqj8, .framer-81pk4 .framer-1plpayl, .framer-81pk4 .framer-18u7si6, .framer-81pk4 .framer-1xx2fws, .framer-81pk4 .framer-w3me4x, .framer-81pk4 .framer-1um6wlm, .framer-81pk4 .framer-1fn9vpr { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 288px; word-break: break-word; word-wrap: break-word; }\",\".framer-81pk4 .framer-1hor63w, .framer-81pk4 .framer-lmuzzy { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-81pk4 .framer-nrqlxe, .framer-81pk4 .framer-1yy3hxw, .framer-81pk4 .framer-1hymwh, .framer-81pk4 .framer-1a1drc7 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-81pk4 .framer-16672u { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 306px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-81pk4.framer-vxor37, .framer-81pk4 .framer-nje7go, .framer-81pk4 .framer-syjltw, .framer-81pk4 .framer-1hor63w, .framer-81pk4 .framer-nrqlxe, .framer-81pk4 .framer-1yy3hxw, .framer-81pk4 .framer-16672u, .framer-81pk4 .framer-lmuzzy, .framer-81pk4 .framer-1hymwh, .framer-81pk4 .framer-1a1drc7 { gap: 0px; } .framer-81pk4.framer-vxor37 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-81pk4.framer-vxor37 > :first-child, .framer-81pk4 .framer-nje7go > :first-child { margin-left: 0px; } .framer-81pk4.framer-vxor37 > :last-child, .framer-81pk4 .framer-nje7go > :last-child { margin-right: 0px; } .framer-81pk4 .framer-nje7go > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-81pk4 .framer-syjltw > *, .framer-81pk4 .framer-1hor63w > *, .framer-81pk4 .framer-16672u > *, .framer-81pk4 .framer-lmuzzy > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-81pk4 .framer-syjltw > :first-child, .framer-81pk4 .framer-1hor63w > :first-child, .framer-81pk4 .framer-nrqlxe > :first-child, .framer-81pk4 .framer-1yy3hxw > :first-child, .framer-81pk4 .framer-16672u > :first-child, .framer-81pk4 .framer-lmuzzy > :first-child, .framer-81pk4 .framer-1hymwh > :first-child, .framer-81pk4 .framer-1a1drc7 > :first-child { margin-top: 0px; } .framer-81pk4 .framer-syjltw > :last-child, .framer-81pk4 .framer-1hor63w > :last-child, .framer-81pk4 .framer-nrqlxe > :last-child, .framer-81pk4 .framer-1yy3hxw > :last-child, .framer-81pk4 .framer-16672u > :last-child, .framer-81pk4 .framer-lmuzzy > :last-child, .framer-81pk4 .framer-1hymwh > :last-child, .framer-81pk4 .framer-1a1drc7 > :last-child { margin-bottom: 0px; } .framer-81pk4 .framer-nrqlxe > *, .framer-81pk4 .framer-1yy3hxw > *, .framer-81pk4 .framer-1hymwh > *, .framer-81pk4 .framer-1a1drc7 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } }\",\".framer-81pk4.framer-v-11scj2f.framer-vxor37, .framer-81pk4.framer-v-yfkuh3.framer-vxor37, .framer-81pk4.framer-v-7apkb.framer-vxor37 { flex-direction: column; }\",\".framer-81pk4.framer-v-11scj2f .framer-nje7go { flex-wrap: wrap; gap: 62px; justify-content: center; padding: 58px 20px 128px 20px; width: 992px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-81pk4.framer-v-11scj2f.framer-vxor37, .framer-81pk4.framer-v-11scj2f .framer-nje7go { gap: 0px; } .framer-81pk4.framer-v-11scj2f.framer-vxor37 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-81pk4.framer-v-11scj2f.framer-vxor37 > :first-child { margin-top: 0px; } .framer-81pk4.framer-v-11scj2f.framer-vxor37 > :last-child { margin-bottom: 0px; } .framer-81pk4.framer-v-11scj2f .framer-nje7go > * { margin: 0px; margin-left: calc(62px / 2); margin-right: calc(62px / 2); } .framer-81pk4.framer-v-11scj2f .framer-nje7go > :first-child { margin-left: 0px; } .framer-81pk4.framer-v-11scj2f .framer-nje7go > :last-child { margin-right: 0px; } }\",\".framer-81pk4.framer-v-yfkuh3 .framer-nje7go { flex-direction: column; flex-wrap: wrap; gap: 16px; justify-content: center; padding: 20px 20px 128px 40px; width: 810px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-81pk4.framer-v-yfkuh3.framer-vxor37, .framer-81pk4.framer-v-yfkuh3 .framer-nje7go { gap: 0px; } .framer-81pk4.framer-v-yfkuh3.framer-vxor37 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-81pk4.framer-v-yfkuh3.framer-vxor37 > :first-child, .framer-81pk4.framer-v-yfkuh3 .framer-nje7go > :first-child { margin-top: 0px; } .framer-81pk4.framer-v-yfkuh3.framer-vxor37 > :last-child, .framer-81pk4.framer-v-yfkuh3 .framer-nje7go > :last-child { margin-bottom: 0px; } .framer-81pk4.framer-v-yfkuh3 .framer-nje7go > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } }\",\".framer-81pk4.framer-v-7apkb .framer-nje7go { flex-direction: column; gap: 0px; padding: 20px 20px 188px 20px; width: 390px; }\",\".framer-81pk4.framer-v-7apkb .framer-16672u { padding: 20px 0px 0px 0px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-81pk4.framer-v-7apkb.framer-vxor37, .framer-81pk4.framer-v-7apkb .framer-nje7go { gap: 0px; } .framer-81pk4.framer-v-7apkb.framer-vxor37 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-81pk4.framer-v-7apkb.framer-vxor37 > :first-child, .framer-81pk4.framer-v-7apkb .framer-nje7go > :first-child { margin-top: 0px; } .framer-81pk4.framer-v-7apkb.framer-vxor37 > :last-child, .framer-81pk4.framer-v-7apkb .framer-nje7go > :last-child { margin-bottom: 0px; } .framer-81pk4.framer-v-7apkb .framer-nje7go > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 342\n * @framerIntrinsicWidth 1631\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"YJseSeNDA\":{\"layout\":[\"auto\",\"auto\"]},\"OeJl9CCcS\":{\"layout\":[\"auto\",\"auto\"]},\"fo_6tgLTP\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerVTK_x9x__=withCSS(Component,css,\"framer-81pk4\");export default FramerVTK_x9x__;FramerVTK_x9x__.displayName=\"Dropdown Resournces MM\";FramerVTK_x9x__.defaultProps={height:342,width:1631};addPropertyControls(FramerVTK_x9x__,{variant:{options:[\"mGA0jyao7\",\"YJseSeNDA\",\"OeJl9CCcS\",\"fo_6tgLTP\"],optionTitles:[\"Desktop Resources\",\"Laptop\",\"Tablet\",\"Mobile\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerVTK_x9x__,[{explicitInter:true,fonts:[{family:\"Geist\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/geist/v1/gyBhhwUxId8gMGYQMKR3pzfaWI_RQuQ4mJPby1QNtA.woff2\",weight:\"600\"},{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/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{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/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{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/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{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/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{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/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerVTK_x9x__\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"342\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"YJseSeNDA\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"OeJl9CCcS\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"fo_6tgLTP\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"1631\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./VTK_x9x__.map", "// Generated by Framer (400c93f)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/3hlwzTMpMscIsbGDY0TH/2gcSf2NNpy6l2h2RlTYU/majvrcgXp.js\";const cycleOrder=[\"MCU8asRTl\",\"vXhyJ1je6\",\"dVGerVd9o\",\"Xvfv_5gwA\"];const serializationHash=\"framer-yMPM3\";const variantClassNames={dVGerVd9o:\"framer-v-131yg9z\",MCU8asRTl:\"framer-v-12itcpa\",vXhyJ1je6:\"framer-v-7f7g8j\",Xvfv_5gwA:\"framer-v-ec6g25\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Desktop Solution\":\"MCU8asRTl\",Laptop:\"vXhyJ1je6\",Mobile:\"Xvfv_5gwA\",Tablet:\"dVGerVd9o\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"MCU8asRTl\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"MCU8asRTl\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-12itcpa\",className,classNames),\"data-framer-name\":\"Desktop Solution\",layoutDependency:layoutDependency,layoutId:\"MCU8asRTl\",ref:refBinding,style:{borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,boxShadow:\"0px 10px 20px 0px rgba(0, 0, 0, 0.05)\",...style},variants:{dVGerVd9o:{borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0,boxShadow:\"none\"},vXhyJ1je6:{borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0,boxShadow:\"none\"},Xvfv_5gwA:{borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0,boxShadow:\"none\"}},...addPropertyOverrides({dVGerVd9o:{\"data-framer-name\":\"Tablet\"},vXhyJ1je6:{\"data-framer-name\":\"Laptop\"},Xvfv_5gwA:{\"data-framer-name\":\"Mobile\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-9l91pb\",\"data-framer-name\":\"Menu\",layoutDependency:layoutDependency,layoutId:\"KR4KkyXoe\",style:{backgroundColor:\"rgb(255, 255, 255)\",boxShadow:\"0px 8px 9px -2px rgba(0, 0, 0, 0.2)\"},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-174rxum\",\"data-framer-name\":\"Col 1\",layoutDependency:layoutDependency,layoutId:\"Xs_dUAEK1\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7R2Vpc3QtNjAw\",\"--framer-font-family\":'\"Geist\", \"Geist Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.08em\",\"--framer-line-height\":\"30.6px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 36, 78))\",\"--framer-text-transform\":\"uppercase\"},children:\"Industry\"})}),className:\"framer-gslm2y\",\"data-framer-name\":\"Industry\",fonts:[\"GF;Geist-600\"],layoutDependency:layoutDependency,layoutId:\"WHzUNaDDe\",style:{\"--extracted-r6o4lv\":\"rgb(255, 36, 78)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ko56f0\",\"data-framer-name\":\"Links\",layoutDependency:layoutDependency,layoutId:\"o_jJqbKV_\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ny2j9h\",\"data-framer-name\":\"Menu Item\",layoutDependency:layoutDependency,layoutId:\"ZRSCUKzl6\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"27.2px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(72, 77, 103))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"vTwp4z_HQ\"},motionChild:true,nodeId:\"LX5EYObse\",openInNewTab:false,scopeId:\"Z5wneH1Su\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-yhwqya\",\"data-styles-preset\":\"majvrcgXp\",children:\"Finance\"})})})}),className:\"framer-1a15xx8\",\"data-framer-name\":\"Finance\",fonts:[\"Inter-Bold\"],layoutDependency:layoutDependency,layoutId:\"LX5EYObse\",style:{\"--extracted-r6o4lv\":\"rgb(72, 77, 103)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(136, 146, 166))\"},children:\"Streamline financial workflows\"})}),className:\"framer-1ld4khn\",\"data-framer-name\":\"Streamline financial workflows\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"e8YDDZAQL\",style:{\"--extracted-r6o4lv\":\"rgb(136, 146, 166)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1d3704c\",\"data-framer-name\":\"Menu Item\",layoutDependency:layoutDependency,layoutId:\"joAlVzdIU\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"27.2px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(72, 77, 103))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"cfYjf3SiH\"},motionChild:true,nodeId:\"B48fvv08V\",openInNewTab:false,scopeId:\"Z5wneH1Su\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-yhwqya\",\"data-styles-preset\":\"majvrcgXp\",children:\"Healthcare\"})})})}),className:\"framer-1ch4gwf\",\"data-framer-name\":\"Healthcare\",fonts:[\"Inter-Bold\"],layoutDependency:layoutDependency,layoutId:\"B48fvv08V\",style:{\"--extracted-r6o4lv\":\"rgb(72, 77, 103)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(136, 146, 166))\"},children:\"Simplify healthcare processes\"})}),className:\"framer-dijm0x\",\"data-framer-name\":\"Simplify healthcare processes\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"HMkIbl5E0\",style:{\"--extracted-r6o4lv\":\"rgb(136, 146, 166)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-prmdqr\",\"data-framer-name\":\"Menu Item\",layoutDependency:layoutDependency,layoutId:\"kWxbasX9e\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"27.2px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(72, 77, 103))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"BMOSZeR19\"},motionChild:true,nodeId:\"Flynw11er\",openInNewTab:false,scopeId:\"Z5wneH1Su\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-yhwqya\",\"data-styles-preset\":\"majvrcgXp\",children:\"Retail\"})})})}),className:\"framer-1tphizi\",\"data-framer-name\":\"Retail\",fonts:[\"Inter-Bold\"],layoutDependency:layoutDependency,layoutId:\"Flynw11er\",style:{\"--extracted-r6o4lv\":\"rgb(72, 77, 103)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(136, 146, 166))\"},children:\"Optimize retail operations\"})}),className:\"framer-18ctb8f\",\"data-framer-name\":\"Optimize retail operations\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"AMks71bzi\",style:{\"--extracted-r6o4lv\":\"rgb(136, 146, 166)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-19sg0z4\",\"data-framer-name\":\"Menu Item\",layoutDependency:layoutDependency,layoutId:\"K9TnvAEyH\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"27.2px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(72, 77, 103))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"FZRR8oaMn\"},motionChild:true,nodeId:\"n1UOaWhtP\",openInNewTab:false,scopeId:\"Z5wneH1Su\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-yhwqya\",\"data-styles-preset\":\"majvrcgXp\",children:\"Charities\"})})})}),className:\"framer-c8jpq3\",\"data-framer-name\":\"Charities\",fonts:[\"Inter-Bold\"],layoutDependency:layoutDependency,layoutId:\"n1UOaWhtP\",style:{\"--extracted-r6o4lv\":\"rgb(72, 77, 103)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(136, 146, 166))\"},children:\"Focus on your mission effortlessly\"})}),className:\"framer-ecvtdu\",\"data-framer-name\":\"Focus on your mission effortlessly\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"grPq_COoH\",style:{\"--extracted-r6o4lv\":\"rgb(136, 146, 166)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-datbh\",\"data-framer-name\":\"Menu Item\",layoutDependency:layoutDependency,layoutId:\"nBmaPx8RS\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"27.2px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(72, 77, 103))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"agzWEJzRn\"},motionChild:true,nodeId:\"Vu_eGjhcM\",openInNewTab:false,scopeId:\"Z5wneH1Su\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-yhwqya\",\"data-styles-preset\":\"majvrcgXp\",children:\"Customer Experience\"})})})}),className:\"framer-1atz8gl\",\"data-framer-name\":\"Charities\",fonts:[\"Inter-Bold\"],layoutDependency:layoutDependency,layoutId:\"Vu_eGjhcM\",style:{\"--extracted-r6o4lv\":\"rgb(72, 77, 103)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(136, 146, 166))\"},children:\"Take better care of customers\"})}),className:\"framer-1amzxdx\",\"data-framer-name\":\"Focus on your mission effortlessly\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"wkviJUdU1\",style:{\"--extracted-r6o4lv\":\"rgb(136, 146, 166)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-wt8w12\",\"data-framer-name\":\"Col 6\",layoutDependency:layoutDependency,layoutId:\"xOVTYgZTK\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7R2Vpc3QtNjAw\",\"--framer-font-family\":'\"Geist\", \"Geist Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.08em\",\"--framer-line-height\":\"30.6px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 36, 78))\",\"--framer-text-transform\":\"uppercase\"},children:\"Department\"})}),className:\"framer-10qbv1w\",\"data-framer-name\":\"Department\",fonts:[\"GF;Geist-600\"],layoutDependency:layoutDependency,layoutId:\"NbbnhPIdj\",style:{\"--extracted-r6o4lv\":\"rgb(255, 36, 78)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({Xvfv_5gwA:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7R2Vpc3QtNjAw\",\"--framer-font-family\":'\"Geist\", \"Geist Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.08em\",\"--framer-line-height\":\"30px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 36, 78))\",\"--framer-text-transform\":\"uppercase\"},children:\"Department\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1491dgz\",\"data-framer-name\":\"Links\",layoutDependency:layoutDependency,layoutId:\"GiBTNLUZe\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1m9sbp2\",\"data-framer-name\":\"Menu Item\",layoutDependency:layoutDependency,layoutId:\"rBpvMV6up\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"27.2px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(72, 77, 103))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"TNH88WVND\"},motionChild:true,nodeId:\"rdqfsv7Po\",openInNewTab:false,scopeId:\"Z5wneH1Su\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-yhwqya\",\"data-styles-preset\":\"majvrcgXp\",children:\"Sales\"})})})}),className:\"framer-33m7b1\",\"data-framer-name\":\"Sales\",fonts:[\"Inter-Bold\"],layoutDependency:layoutDependency,layoutId:\"rdqfsv7Po\",style:{\"--extracted-r6o4lv\":\"rgb(72, 77, 103)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(136, 146, 166))\"},children:\"Enhance sales processes with tools\"})}),className:\"framer-1aamxjg\",\"data-framer-name\":\"Enhance sales processes with tools\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"GmYK_IKQd\",style:{\"--extracted-r6o4lv\":\"rgb(136, 146, 166)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-9jn3sx\",\"data-framer-name\":\"Menu Item\",layoutDependency:layoutDependency,layoutId:\"v0Wdk6lFn\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"27.2px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(72, 77, 103))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"hwqLCkpZc\"},motionChild:true,nodeId:\"bSH9uPAFj\",openInNewTab:false,scopeId:\"Z5wneH1Su\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-yhwqya\",\"data-styles-preset\":\"majvrcgXp\",children:\"Marketing\"})})})}),className:\"framer-74trw8\",\"data-framer-name\":\"Marketing\",fonts:[\"Inter-Bold\"],layoutDependency:layoutDependency,layoutId:\"bSH9uPAFj\",style:{\"--extracted-r6o4lv\":\"rgb(72, 77, 103)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(136, 146, 166))\"},children:\"Boost marketing efforts with workflows\"})}),className:\"framer-1xeble0\",\"data-framer-name\":\"Boost marketing efforts with workflows\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"dSys3vQyi\",style:{\"--extracted-r6o4lv\":\"rgb(136, 146, 166)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-lhkvdb\",\"data-framer-name\":\"Menu Item\",layoutDependency:layoutDependency,layoutId:\"r2bU0Jjln\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"27.2px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(72, 77, 103))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"sd2sTrP7i\"},motionChild:true,nodeId:\"wg8DV7t29\",openInNewTab:false,scopeId:\"Z5wneH1Su\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-yhwqya\",\"data-styles-preset\":\"majvrcgXp\",children:\"Finance\"})})})}),className:\"framer-159jqa3\",\"data-framer-name\":\"Finance\",fonts:[\"Inter-Bold\"],layoutDependency:layoutDependency,layoutId:\"wg8DV7t29\",style:{\"--extracted-r6o4lv\":\"rgb(72, 77, 103)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(136, 146, 166))\"},children:\"Simplify finance operations easily\"})}),className:\"framer-z0ksgs\",\"data-framer-name\":\"Simplify finance operations easily\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"X51gZpp5M\",style:{\"--extracted-r6o4lv\":\"rgb(136, 146, 166)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-buy9c7\",\"data-framer-name\":\"Col 6\",layoutDependency:layoutDependency,layoutId:\"VyRxyi6DR\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7R2Vpc3QtNjAw\",\"--framer-font-family\":'\"Geist\", \"Geist Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.08em\",\"--framer-line-height\":\"30.6px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 36, 78))\",\"--framer-text-transform\":\"uppercase\"},children:\"PACKAGED SOLUTIONS\"})}),className:\"framer-z0j4nr\",\"data-framer-name\":\"Department\",fonts:[\"GF;Geist-600\"],layoutDependency:layoutDependency,layoutId:\"cwP5tiu9x\",style:{\"--extracted-r6o4lv\":\"rgb(255, 36, 78)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({Xvfv_5gwA:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7R2Vpc3QtNjAw\",\"--framer-font-family\":'\"Geist\", \"Geist Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.08em\",\"--framer-line-height\":\"30px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 36, 78))\",\"--framer-text-transform\":\"uppercase\"},children:\"PACKAGED SOLUTIONS\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-17vof14\",\"data-framer-name\":\"Links\",layoutDependency:layoutDependency,layoutId:\"jI5eFoB5T\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-jo9mxq\",\"data-framer-name\":\"Menu Item\",layoutDependency:layoutDependency,layoutId:\"dXIug08rY\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"27.2px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(72, 77, 103))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"KBzhzRvME\"},motionChild:true,nodeId:\"v1X7NM3o0\",openInNewTab:false,scopeId:\"Z5wneH1Su\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-yhwqya\",\"data-styles-preset\":\"majvrcgXp\",children:\"Invoice Automation\"})})})}),className:\"framer-1w334yq\",\"data-framer-name\":\"Photon Commerce\",fonts:[\"Inter-Bold\"],layoutDependency:layoutDependency,layoutId:\"v1X7NM3o0\",style:{\"--extracted-r6o4lv\":\"rgb(72, 77, 103)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(136, 146, 166))\"},children:\"Upgrade your finance team\"})}),className:\"framer-teevaj\",\"data-framer-name\":\"Capture the world\u2019s payments data\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"L6jcn8MYW\",style:{\"--extracted-r6o4lv\":\"rgb(136, 146, 166)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1gthzpu\",\"data-framer-name\":\"Menu Item\",layoutDependency:layoutDependency,layoutId:\"yGaTogpdh\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"27.2px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(72, 77, 103))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"K__4Rb3c7\"},motionChild:true,nodeId:\"UCZYDXSNF\",openInNewTab:false,scopeId:\"Z5wneH1Su\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-yhwqya\",\"data-styles-preset\":\"majvrcgXp\",children:\"HubSpot Contacts Cleanup\"})})})}),className:\"framer-1nabb8m\",\"data-framer-name\":\"Photon Commerce\",fonts:[\"Inter-Bold\"],layoutDependency:layoutDependency,layoutId:\"UCZYDXSNF\",style:{\"--extracted-r6o4lv\":\"rgb(72, 77, 103)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(136, 146, 166))\"},children:\"Reduce the cost of your HubSpot\"})}),className:\"framer-35ha52\",\"data-framer-name\":\"Capture the world\u2019s payments data\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"wmB4Ezd2X\",style:{\"--extracted-r6o4lv\":\"rgb(136, 146, 166)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7R2Vpc3QtNjAw\",\"--framer-font-family\":'\"Geist\", \"Geist Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.08em\",\"--framer-line-height\":\"30.6px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 36, 78))\",\"--framer-text-transform\":\"uppercase\"},children:\"PARTNER SOLUTIONS\"})}),className:\"framer-us4qao\",\"data-framer-name\":\"Department\",fonts:[\"GF;Geist-600\"],layoutDependency:layoutDependency,layoutId:\"m2x1_BL3P\",style:{\"--extracted-r6o4lv\":\"rgb(255, 36, 78)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({Xvfv_5gwA:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7R2Vpc3QtNjAw\",\"--framer-font-family\":'\"Geist\", \"Geist Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.08em\",\"--framer-line-height\":\"30px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 36, 78))\",\"--framer-text-transform\":\"uppercase\"},children:\"PARTNER SOLUTIONS\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-mnd1i2\",\"data-framer-name\":\"Links\",layoutDependency:layoutDependency,layoutId:\"d0gyn1PZA\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-slftkp\",\"data-framer-name\":\"Menu Item\",layoutDependency:layoutDependency,layoutId:\"SzNbkAwZf\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"27.2px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(72, 77, 103))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"ez4R9VBkH\"},motionChild:true,nodeId:\"YlbwBPG2P\",openInNewTab:false,scopeId:\"Z5wneH1Su\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-yhwqya\",\"data-styles-preset\":\"majvrcgXp\",children:\"Photon Commerce\"})})})}),className:\"framer-vc6hux\",\"data-framer-name\":\"Photon Commerce\",fonts:[\"Inter-Bold\"],layoutDependency:layoutDependency,layoutId:\"YlbwBPG2P\",style:{\"--extracted-r6o4lv\":\"rgb(72, 77, 103)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(136, 146, 166))\"},children:\"Capture the world\u2019s payments data\"})}),className:\"framer-vys403\",\"data-framer-name\":\"Capture the world\u2019s payments data\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"SRjacHNMZ\",style:{\"--extracted-r6o4lv\":\"rgb(136, 146, 166)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]})})]})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-yMPM3.framer-nqstxa, .framer-yMPM3 .framer-nqstxa { display: block; }\",\".framer-yMPM3.framer-12itcpa { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-yMPM3 .framer-9l91pb { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 58px 348px 92px 348px; position: relative; width: 1920px; }\",\".framer-yMPM3 .framer-174rxum, .framer-yMPM3 .framer-wt8w12, .framer-yMPM3 .framer-buy9c7 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: 282px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 280px; }\",\".framer-yMPM3 .framer-gslm2y, .framer-yMPM3 .framer-1a15xx8, .framer-yMPM3 .framer-1ld4khn, .framer-yMPM3 .framer-1ch4gwf, .framer-yMPM3 .framer-dijm0x, .framer-yMPM3 .framer-1tphizi, .framer-yMPM3 .framer-18ctb8f, .framer-yMPM3 .framer-c8jpq3, .framer-yMPM3 .framer-ecvtdu, .framer-yMPM3 .framer-1atz8gl, .framer-yMPM3 .framer-1amzxdx, .framer-yMPM3 .framer-10qbv1w, .framer-yMPM3 .framer-33m7b1, .framer-yMPM3 .framer-1aamxjg, .framer-yMPM3 .framer-74trw8, .framer-yMPM3 .framer-1xeble0, .framer-yMPM3 .framer-159jqa3, .framer-yMPM3 .framer-z0ksgs, .framer-yMPM3 .framer-z0j4nr, .framer-yMPM3 .framer-1w334yq, .framer-yMPM3 .framer-teevaj, .framer-yMPM3 .framer-1nabb8m, .framer-yMPM3 .framer-35ha52, .framer-yMPM3 .framer-us4qao, .framer-yMPM3 .framer-vc6hux, .framer-yMPM3 .framer-vys403 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 254px; word-break: break-word; word-wrap: break-word; }\",\".framer-yMPM3 .framer-1ko56f0, .framer-yMPM3 .framer-1491dgz, .framer-yMPM3 .framer-17vof14, .framer-yMPM3 .framer-mnd1i2 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-yMPM3 .framer-1ny2j9h, .framer-yMPM3 .framer-1d3704c, .framer-yMPM3 .framer-prmdqr, .framer-yMPM3 .framer-19sg0z4, .framer-yMPM3 .framer-datbh, .framer-yMPM3 .framer-1m9sbp2, .framer-yMPM3 .framer-9jn3sx, .framer-yMPM3 .framer-lhkvdb, .framer-yMPM3 .framer-jo9mxq, .framer-yMPM3 .framer-1gthzpu, .framer-yMPM3 .framer-slftkp { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-yMPM3.framer-12itcpa, .framer-yMPM3 .framer-9l91pb, .framer-yMPM3 .framer-174rxum, .framer-yMPM3 .framer-1ko56f0, .framer-yMPM3 .framer-1ny2j9h, .framer-yMPM3 .framer-1d3704c, .framer-yMPM3 .framer-prmdqr, .framer-yMPM3 .framer-19sg0z4, .framer-yMPM3 .framer-datbh, .framer-yMPM3 .framer-wt8w12, .framer-yMPM3 .framer-1491dgz, .framer-yMPM3 .framer-1m9sbp2, .framer-yMPM3 .framer-9jn3sx, .framer-yMPM3 .framer-lhkvdb, .framer-yMPM3 .framer-buy9c7, .framer-yMPM3 .framer-17vof14, .framer-yMPM3 .framer-jo9mxq, .framer-yMPM3 .framer-1gthzpu, .framer-yMPM3 .framer-mnd1i2, .framer-yMPM3 .framer-slftkp { gap: 0px; } .framer-yMPM3.framer-12itcpa > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-yMPM3.framer-12itcpa > :first-child, .framer-yMPM3 .framer-9l91pb > :first-child { margin-left: 0px; } .framer-yMPM3.framer-12itcpa > :last-child, .framer-yMPM3 .framer-9l91pb > :last-child { margin-right: 0px; } .framer-yMPM3 .framer-9l91pb > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-yMPM3 .framer-174rxum > *, .framer-yMPM3 .framer-1ko56f0 > *, .framer-yMPM3 .framer-wt8w12 > *, .framer-yMPM3 .framer-1491dgz > *, .framer-yMPM3 .framer-buy9c7 > *, .framer-yMPM3 .framer-17vof14 > *, .framer-yMPM3 .framer-mnd1i2 > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-yMPM3 .framer-174rxum > :first-child, .framer-yMPM3 .framer-1ko56f0 > :first-child, .framer-yMPM3 .framer-1ny2j9h > :first-child, .framer-yMPM3 .framer-1d3704c > :first-child, .framer-yMPM3 .framer-prmdqr > :first-child, .framer-yMPM3 .framer-19sg0z4 > :first-child, .framer-yMPM3 .framer-datbh > :first-child, .framer-yMPM3 .framer-wt8w12 > :first-child, .framer-yMPM3 .framer-1491dgz > :first-child, .framer-yMPM3 .framer-1m9sbp2 > :first-child, .framer-yMPM3 .framer-9jn3sx > :first-child, .framer-yMPM3 .framer-lhkvdb > :first-child, .framer-yMPM3 .framer-buy9c7 > :first-child, .framer-yMPM3 .framer-17vof14 > :first-child, .framer-yMPM3 .framer-jo9mxq > :first-child, .framer-yMPM3 .framer-1gthzpu > :first-child, .framer-yMPM3 .framer-mnd1i2 > :first-child, .framer-yMPM3 .framer-slftkp > :first-child { margin-top: 0px; } .framer-yMPM3 .framer-174rxum > :last-child, .framer-yMPM3 .framer-1ko56f0 > :last-child, .framer-yMPM3 .framer-1ny2j9h > :last-child, .framer-yMPM3 .framer-1d3704c > :last-child, .framer-yMPM3 .framer-prmdqr > :last-child, .framer-yMPM3 .framer-19sg0z4 > :last-child, .framer-yMPM3 .framer-datbh > :last-child, .framer-yMPM3 .framer-wt8w12 > :last-child, .framer-yMPM3 .framer-1491dgz > :last-child, .framer-yMPM3 .framer-1m9sbp2 > :last-child, .framer-yMPM3 .framer-9jn3sx > :last-child, .framer-yMPM3 .framer-lhkvdb > :last-child, .framer-yMPM3 .framer-buy9c7 > :last-child, .framer-yMPM3 .framer-17vof14 > :last-child, .framer-yMPM3 .framer-jo9mxq > :last-child, .framer-yMPM3 .framer-1gthzpu > :last-child, .framer-yMPM3 .framer-mnd1i2 > :last-child, .framer-yMPM3 .framer-slftkp > :last-child { margin-bottom: 0px; } .framer-yMPM3 .framer-1ny2j9h > *, .framer-yMPM3 .framer-1d3704c > *, .framer-yMPM3 .framer-prmdqr > *, .framer-yMPM3 .framer-19sg0z4 > *, .framer-yMPM3 .framer-datbh > *, .framer-yMPM3 .framer-1m9sbp2 > *, .framer-yMPM3 .framer-9jn3sx > *, .framer-yMPM3 .framer-lhkvdb > *, .framer-yMPM3 .framer-jo9mxq > *, .framer-yMPM3 .framer-1gthzpu > *, .framer-yMPM3 .framer-slftkp > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } }\",\".framer-yMPM3.framer-v-7f7g8j.framer-12itcpa, .framer-yMPM3.framer-v-131yg9z.framer-12itcpa, .framer-yMPM3.framer-v-ec6g25.framer-12itcpa { flex-direction: column; will-change: unset; }\",\".framer-yMPM3.framer-v-7f7g8j .framer-9l91pb { flex-wrap: wrap; gap: 62px; justify-content: center; padding: 58px 20px 92px 20px; width: 992px; }\",\".framer-yMPM3.framer-v-7f7g8j .framer-174rxum { order: 0; }\",\".framer-yMPM3.framer-v-7f7g8j .framer-wt8w12, .framer-yMPM3.framer-v-131yg9z .framer-1491dgz { order: 1; }\",\".framer-yMPM3.framer-v-7f7g8j .framer-buy9c7 { order: 2; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-yMPM3.framer-v-7f7g8j.framer-12itcpa, .framer-yMPM3.framer-v-7f7g8j .framer-9l91pb { gap: 0px; } .framer-yMPM3.framer-v-7f7g8j.framer-12itcpa > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-yMPM3.framer-v-7f7g8j.framer-12itcpa > :first-child { margin-top: 0px; } .framer-yMPM3.framer-v-7f7g8j.framer-12itcpa > :last-child { margin-bottom: 0px; } .framer-yMPM3.framer-v-7f7g8j .framer-9l91pb > * { margin: 0px; margin-left: calc(62px / 2); margin-right: calc(62px / 2); } .framer-yMPM3.framer-v-7f7g8j .framer-9l91pb > :first-child { margin-left: 0px; } .framer-yMPM3.framer-v-7f7g8j .framer-9l91pb > :last-child { margin-right: 0px; } }\",\".framer-yMPM3.framer-v-131yg9z .framer-9l91pb { align-content: flex-start; align-items: flex-start; flex-direction: column; flex-wrap: wrap; gap: 20px; justify-content: center; padding: 20px 20px 20px 40px; width: 810px; }\",\".framer-yMPM3.framer-v-131yg9z .framer-174rxum { gap: 0px; height: 245px; order: 0; width: 261px; }\",\".framer-yMPM3.framer-v-131yg9z .framer-gslm2y { height: 12px; }\",\".framer-yMPM3.framer-v-131yg9z .framer-wt8w12 { gap: 14px; height: 301px; order: 1; padding: 40px 0px 0px 0px; width: 330px; z-index: 1; }\",\".framer-yMPM3.framer-v-131yg9z .framer-10qbv1w { height: 31px; order: 0; width: 254px; }\",\".framer-yMPM3.framer-v-131yg9z .framer-buy9c7 { height: 296px; order: 2; padding: 40px 0px 0px 0px; width: 330px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-yMPM3.framer-v-131yg9z.framer-12itcpa, .framer-yMPM3.framer-v-131yg9z .framer-9l91pb, .framer-yMPM3.framer-v-131yg9z .framer-174rxum, .framer-yMPM3.framer-v-131yg9z .framer-wt8w12 { gap: 0px; } .framer-yMPM3.framer-v-131yg9z.framer-12itcpa > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-yMPM3.framer-v-131yg9z.framer-12itcpa > :first-child, .framer-yMPM3.framer-v-131yg9z .framer-9l91pb > :first-child, .framer-yMPM3.framer-v-131yg9z .framer-174rxum > :first-child, .framer-yMPM3.framer-v-131yg9z .framer-wt8w12 > :first-child { margin-top: 0px; } .framer-yMPM3.framer-v-131yg9z.framer-12itcpa > :last-child, .framer-yMPM3.framer-v-131yg9z .framer-9l91pb > :last-child, .framer-yMPM3.framer-v-131yg9z .framer-174rxum > :last-child, .framer-yMPM3.framer-v-131yg9z .framer-wt8w12 > :last-child { margin-bottom: 0px; } .framer-yMPM3.framer-v-131yg9z .framer-9l91pb > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-yMPM3.framer-v-131yg9z .framer-174rxum > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-yMPM3.framer-v-131yg9z .framer-wt8w12 > * { margin: 0px; margin-bottom: calc(14px / 2); margin-top: calc(14px / 2); } }\",\".framer-yMPM3.framer-v-ec6g25 .framer-9l91pb { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 20px; padding: 45px 20px 45px 20px; width: 390px; }\",\".framer-yMPM3.framer-v-ec6g25 .framer-174rxum { height: 249px; width: 275px; }\",\".framer-yMPM3.framer-v-ec6g25 .framer-gslm2y { height: 1px; }\",\".framer-yMPM3.framer-v-ec6g25 .framer-wt8w12, .framer-yMPM3.framer-v-ec6g25 .framer-buy9c7 { height: 276px; padding: 40px 0px 0px 0px; width: 311px; }\",\".framer-yMPM3.framer-v-ec6g25 .framer-10qbv1w { height: 13%; }\",\".framer-yMPM3.framer-v-ec6g25 .framer-1m9sbp2 { height: 46px; }\",\".framer-yMPM3.framer-v-ec6g25 .framer-33m7b1 { height: 59%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-yMPM3.framer-v-ec6g25.framer-12itcpa, .framer-yMPM3.framer-v-ec6g25 .framer-9l91pb { gap: 0px; } .framer-yMPM3.framer-v-ec6g25.framer-12itcpa > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-yMPM3.framer-v-ec6g25.framer-12itcpa > :first-child, .framer-yMPM3.framer-v-ec6g25 .framer-9l91pb > :first-child { margin-top: 0px; } .framer-yMPM3.framer-v-ec6g25.framer-12itcpa > :last-child, .framer-yMPM3.framer-v-ec6g25 .framer-9l91pb > :last-child { margin-bottom: 0px; } .framer-yMPM3.framer-v-ec6g25 .framer-9l91pb > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 432\n * @framerIntrinsicWidth 1920\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"vXhyJ1je6\":{\"layout\":[\"auto\",\"auto\"]},\"dVGerVd9o\":{\"layout\":[\"auto\",\"auto\"]},\"Xvfv_5gwA\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerZ5wneH1Su=withCSS(Component,css,\"framer-yMPM3\");export default FramerZ5wneH1Su;FramerZ5wneH1Su.displayName=\"Dropdown Solutions Mega Menu\";FramerZ5wneH1Su.defaultProps={height:432,width:1920};addPropertyControls(FramerZ5wneH1Su,{variant:{options:[\"MCU8asRTl\",\"vXhyJ1je6\",\"dVGerVd9o\",\"Xvfv_5gwA\"],optionTitles:[\"Desktop Solution\",\"Laptop\",\"Tablet\",\"Mobile\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerZ5wneH1Su,[{explicitInter:true,fonts:[{family:\"Geist\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/geist/v1/gyBhhwUxId8gMGYQMKR3pzfaWI_RQuQ4mJPby1QNtA.woff2\",weight:\"600\"},{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/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{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/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{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/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{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/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{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/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerZ5wneH1Su\",\"slots\":[],\"annotations\":{\"framerColorSyntax\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"vXhyJ1je6\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"dVGerVd9o\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"Xvfv_5gwA\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"1920\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"432\",\"framerComponentViewportWidth\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Z5wneH1Su.map", "// Generated by Framer (bd0055f)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,Floating,getFonts,ResolveLinks,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOverlayState,useRouter,useVariantState,withCSS,withFX,withMappedReactProps}from\"framer\";import{AnimatePresence,LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{withClass}from\"https://framerusercontent.com/modules/Wytf0TRZmz1zjIIwuCgn/jXhjanqfckOoXzMbDLlW/Vwo_click_menucta.js\";import DropdownAboutMM from\"https://framerusercontent.com/modules/i3Z9hV8XcHvj6Q26AETb/BebxLsQuITwrqrt30p35/A83DWhho4.js\";import Humburger from\"https://framerusercontent.com/modules/mi2PJ6bN30R2uJCGCoEE/f69cYRyl2fDhqdyIdQYS/IguD5BjWW.js\";import DropdownProductMegaMenu from\"https://framerusercontent.com/modules/CjwzMkoCv2NXHgE4cAQF/7I8uxvltCaDeHehe0q6j/MEYrt1mVZ.js\";import DropdownAIActionsMM from\"https://framerusercontent.com/modules/sa3cRpMhSRZc0Rel9bKd/W0B5aTMZqwBmxMHe7KAf/mSQVX6Tbe.js\";import NavItemMegaMenu from\"https://framerusercontent.com/modules/XtPdp6vmwEv5EP9RoaiP/AstCiid9CaM6Xciz1TF6/Tu4uPEe7t.js\";import DropdownResourncesMM from\"https://framerusercontent.com/modules/D6ffpY8rrBbXw7ZEtVEI/xlaqKRS4ZDYjY4DXx7lv/VTK_x9x__.js\";import Button,*as ButtonInfo from\"https://framerusercontent.com/modules/kN7NsVW1aru7lxJVA9rH/DRqU6wSZG5HLyc99etHm/XWfPzvcBb.js\";import Logo from\"https://framerusercontent.com/modules/gTQR7cawpPtBTOwgdQ8i/MeURrN5rD589t5OE5o1z/XxCTRjaaq.js\";import DropdownSolutionsMegaMenu from\"https://framerusercontent.com/modules/CuuytxP7kIpdgjGwL5Tp/AQLiKMlrQwjSjeX3GDri/Z5wneH1Su.js\";const LogoFonts=getFonts(Logo);const HumburgerFonts=getFonts(Humburger);const NavItemMegaMenuFonts=getFonts(NavItemMegaMenu);const DropdownProductMegaMenuFonts=getFonts(DropdownProductMegaMenu);const MotionDivWithFX=withFX(motion.div);const DropdownAIActionsMMFonts=getFonts(DropdownAIActionsMM);const DropdownSolutionsMegaMenuFonts=getFonts(DropdownSolutionsMegaMenu);const DropdownAboutMMFonts=getFonts(DropdownAboutMM);const DropdownResourncesMMFonts=getFonts(DropdownResourncesMM);const ButtonFonts=getFonts(Button);const ButtonWithClassWithMappedReactProps1v1ipky=withMappedReactProps(withClass(Button),ButtonInfo);const cycleOrder=[\"ah5r_bzvk\",\"jfBFc_pzg\",\"RZVVGSTm4\",\"R5fcFnGQr\",\"Df_RYoJHN\",\"xXlSJByGn\"];const serializationHash=\"framer-LNO40\";const variantClassNames={ah5r_bzvk:\"framer-v-1yti6ex\",Df_RYoJHN:\"framer-v-1c7yci4\",jfBFc_pzg:\"framer-v-18on98n\",R5fcFnGQr:\"framer-v-14tulwr\",RZVVGSTm4:\"framer-v-i4iiwz\",xXlSJByGn:\"framer-v-o0781q\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={duration:0,type:\"tween\"};const transition2={bounce:.2,delay:0,duration:.4,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 Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Mobile Open\":\"xXlSJByGn\",\"Tablet Open\":\"Df_RYoJHN\",Desktop:\"ah5r_bzvk\",Laptop:\"jfBFc_pzg\",Mobile:\"R5fcFnGQr\",Tablet:\"RZVVGSTm4\"};const getProps=({height,hover,id,width,...props})=>{return{...props,mpyPFQ6T8:hover??props.mpyPFQ6T8,variant:humanReadableVariantMap[props.variant]??props.variant??\"ah5r_bzvk\"};};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,mpyPFQ6T8,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"ah5r_bzvk\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const njNJdZBy31r5lj98=activeVariantCallback(async(...args)=>{setVariant(\"Df_RYoJHN\");});const njNJdZBy3ibnmp2=activeVariantCallback(async(...args)=>{setVariant(\"xXlSJByGn\");});const njNJdZBy317l20qp=activeVariantCallback(async(...args)=>{setVariant(\"RZVVGSTm4\");});const njNJdZBy31a7ao1u=activeVariantCallback(async(...args)=>{setVariant(\"R5fcFnGQr\");});const Usq46WHfY19e2v2b=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{if(mpyPFQ6T8){const res=await mpyPFQ6T8(...args);if(res===false)return false;}overlay.show();});const oxH5zj9aM1hwrc82=activeVariantCallback(async(...args)=>{if(mpyPFQ6T8){const res=await mpyPFQ6T8(...args);if(res===false)return false;}});const Usq46WHfYtxyyif=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.show();});const ref1=React.useRef(null);const router=useRouter();const isDisplayed=()=>{if([\"RZVVGSTm4\",\"R5fcFnGQr\",\"Df_RYoJHN\",\"xXlSJByGn\"].includes(baseVariant))return true;return false;};const isDisplayed1=()=>{if([\"RZVVGSTm4\",\"R5fcFnGQr\"].includes(baseVariant))return false;return true;};const ref2=React.useRef(null);const ref3=React.useRef(null);const ref4=React.useRef(null);const ref5=React.useRef(null);const ref6=React.useRef(null);const ref7=React.useRef(null);const ref8=React.useRef(null);const ref9=React.useRef(null);const ref10=React.useRef(null);const ref11=React.useRef(null);const isDisplayed2=()=>{if([\"RZVVGSTm4\",\"R5fcFnGQr\",\"Df_RYoJHN\",\"xXlSJByGn\"].includes(baseVariant))return false;return true;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1yti6ex\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"ah5r_bzvk\",ref:ref??ref1,style:{backgroundColor:\"var(--token-e8f6014a-f0bd-4675-a3f3-da998da07fa8, rgb(255, 255, 255))\",...style},...addPropertyOverrides({Df_RYoJHN:{\"data-framer-name\":\"Tablet Open\"},jfBFc_pzg:{\"data-framer-name\":\"Laptop\"},R5fcFnGQr:{\"data-framer-name\":\"Mobile\"},RZVVGSTm4:{\"data-framer-name\":\"Tablet\"},xXlSJByGn:{\"data-framer-name\":\"Mobile Open\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-lf9n2p\",\"data-framer-name\":\"Brand Logo\",layoutDependency:layoutDependency,layoutId:\"sn8te_4RD\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"EquMgMRNI\"},implicitPathVariables:undefined},{href:{webPageId:\"EquMgMRNI\"},implicitPathVariables:undefined},{href:{webPageId:\"EquMgMRNI\"},implicitPathVariables:undefined},{href:{webPageId:\"EquMgMRNI\"},implicitPathVariables:undefined},{href:{webPageId:\"EquMgMRNI\"},implicitPathVariables:undefined},{href:{webPageId:\"EquMgMRNI\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:51,width:\"208px\",y:(componentViewport?.y||0)+(12+((componentViewport?.height||72)-18-51)/2)+0,...addPropertyOverrides({Df_RYoJHN:{y:(componentViewport?.y||0)+15+(((componentViewport?.height||930)-15-352)/2+0+0)+0},R5fcFnGQr:{y:(componentViewport?.y||0)+15+0+0},RZVVGSTm4:{y:(componentViewport?.y||0)+15+(((componentViewport?.height||81)-30-51)/2+0+0)+0},xXlSJByGn:{y:(componentViewport?.y||0)+15+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-3njdu3-container\",layoutDependency:layoutDependency,layoutId:\"CIb2xqDeD-container\",children:/*#__PURE__*/_jsx(Logo,{height:\"100%\",id:\"CIb2xqDeD\",j5O95N1Qq:resolvedLinks[0],layoutId:\"CIb2xqDeD\",style:{height:\"100%\",width:\"100%\"},variant:\"GBpbxCA0Z\",width:\"100%\",...addPropertyOverrides({Df_RYoJHN:{j5O95N1Qq:resolvedLinks[4]},jfBFc_pzg:{j5O95N1Qq:resolvedLinks[1]},R5fcFnGQr:{j5O95N1Qq:resolvedLinks[3]},RZVVGSTm4:{j5O95N1Qq:resolvedLinks[2]},xXlSJByGn:{j5O95N1Qq:resolvedLinks[5]}},baseVariant,gestureVariant)})})})}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-z9rvew\",\"data-framer-name\":\"Button & Burger\",layoutDependency:layoutDependency,layoutId:\"iWwTRT9B9\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({Df_RYoJHN:{height:30,width:\"30px\",y:(componentViewport?.y||0)+15+(((componentViewport?.height||930)-15-352)/2+0+0)+10.5+0},R5fcFnGQr:{height:30,width:\"30px\",y:(componentViewport?.y||0)+15+0+10.5+0},RZVVGSTm4:{height:30,width:\"30px\",y:(componentViewport?.y||0)+15+(((componentViewport?.height||81)-30-51)/2+0+0)+10.5+0},xXlSJByGn:{height:30,width:\"30px\",y:(componentViewport?.y||0)+15+0+10.5+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1wzng8y-container\",layoutDependency:layoutDependency,layoutId:\"lyiMvDPCb-container\",children:/*#__PURE__*/_jsx(Humburger,{height:\"100%\",id:\"lyiMvDPCb\",layoutId:\"lyiMvDPCb\",style:{height:\"100%\",width:\"100%\"},variant:\"xMN_GNAvB\",width:\"100%\",...addPropertyOverrides({Df_RYoJHN:{njNJdZBy3:njNJdZBy317l20qp,variant:\"JPYroIkZ5\"},R5fcFnGQr:{njNJdZBy3:njNJdZBy3ibnmp2},RZVVGSTm4:{njNJdZBy3:njNJdZBy31r5lj98},xXlSJByGn:{njNJdZBy3:njNJdZBy31a7ao1u,variant:\"JPYroIkZ5\"}},baseVariant,gestureVariant)})})})})]}),isDisplayed1()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-gc2p7n\",\"data-framer-name\":\"Menu\",layoutDependency:layoutDependency,layoutId:\"De1JwjRGs\",style:{backgroundColor:\"rgba(25, 23, 30, 0)\"},variants:{Df_RYoJHN:{backgroundColor:\"var(--token-88303b00-e8c4-42c5-ae17-5aee596ec64e, rgb(255, 255, 255))\"},xXlSJByGn:{backgroundColor:\"var(--token-88303b00-e8c4-42c5-ae17-5aee596ec64e, rgb(255, 255, 255))\"}},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-rgjrkp\",\"data-framer-name\":\"Stack\",layoutDependency:layoutDependency,layoutId:\"Yl4VhbbXo\",children:/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:false,children:overlay=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:27,y:(componentViewport?.y||0)+(12+((componentViewport?.height||72)-18-27)/2)+0+0+0,...addPropertyOverrides({Df_RYoJHN:{width:\"749px\",y:(componentViewport?.y||0)+15+(((componentViewport?.height||930)-15-352)/2+51+15)+32+0+0+0},xXlSJByGn:{width:\"360px\",y:(componentViewport?.y||0)+15+66+0+0+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-rw8umv-container\",id:`${layoutId}-rw8umv`,layoutDependency:layoutDependency,layoutId:\"ZtzqgPy87-container\",ref:ref2,children:[/*#__PURE__*/_jsx(NavItemMegaMenu,{height:\"100%\",id:\"ZtzqgPy87\",layoutId:\"ZtzqgPy87\",Oc0fzh3x0:true,okFfDCMAr:\"Product\",Usq46WHfY:Usq46WHfY19e2v2b({overlay}),variant:\"X5mpssHFg\",width:\"100%\",...addPropertyOverrides({Df_RYoJHN:{style:{width:\"100%\"},variant:\"CyEkmQ_Np\"},xXlSJByGn:{oxH5zj9aM:oxH5zj9aM1hwrc82,style:{width:\"100%\"},Usq46WHfY:Usq46WHfYtxyyif({overlay}),variant:\"EZe_2_uS0\"}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay.visible&&/*#__PURE__*/_jsx(Floating,{alignment:\"start\",anchorRef:ref2,className:cx(serializationHash,classNames,...sharedStyleClassNames),collisionDetection:false,\"data-framer-portal-id\":`${layoutId}-rw8umv`,offsetX:-525,offsetY:30,onDismiss:overlay.hide,placement:\"bottom\",portalSelector:\"#overlay\",safeArea:true,zIndex:11,...addPropertyOverrides({Df_RYoJHN:{offsetX:-32,offsetY:4},jfBFc_pzg:{offsetX:-195},xXlSJByGn:{offsetX:-15,offsetY:3}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:338,width:\"1920px\",y:(componentViewport?.y||0)+(12+((componentViewport?.height||72)-18-27)/2)+0+0+0+-169,...addPropertyOverrides({Df_RYoJHN:{width:\"810px\",y:(componentViewport?.y||0)+15+(((componentViewport?.height||930)-15-352)/2+51+15)+32+0+0+0+-169},jfBFc_pzg:{width:\"997px\"},xXlSJByGn:{width:\"390px\",y:(componentViewport?.y||0)+15+66+0+0+0+0+-169}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(MotionDivWithFX,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation1,className:\"framer-nud8r0-container\",exit:animation,initial:animation2,layoutDependency:layoutDependency,layoutId:\"jsrUwR9fz-container\",ref:ref3,role:\"dialog\",children:/*#__PURE__*/_jsx(DropdownProductMegaMenu,{height:\"100%\",id:\"jsrUwR9fz\",layoutId:\"jsrUwR9fz\",style:{width:\"100%\"},variant:\"AytcgmOEP\",width:\"100%\",...addPropertyOverrides({Df_RYoJHN:{variant:\"jUAsQoCUZ\"},jfBFc_pzg:{variant:\"KJsXo_HeR\"},xXlSJByGn:{variant:\"yA5L4Jh2d\"}},baseVariant,gestureVariant)})})})})})]})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-we1xme\",\"data-framer-name\":\"Stack\",layoutDependency:layoutDependency,layoutId:\"jx3GCDVx6\",children:/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:false,children:overlay1=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:27,y:(componentViewport?.y||0)+(12+((componentViewport?.height||72)-18-27)/2)+0+0+0,...addPropertyOverrides({Df_RYoJHN:{width:\"749px\",y:(componentViewport?.y||0)+15+(((componentViewport?.height||930)-15-352)/2+51+15)+32+39+0+0},xXlSJByGn:{width:\"360px\",y:(componentViewport?.y||0)+15+66+0+39+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-10os4th-container\",id:`${layoutId}-10os4th`,layoutDependency:layoutDependency,layoutId:\"K8wYFab4Y-container\",ref:ref4,children:[/*#__PURE__*/_jsx(NavItemMegaMenu,{height:\"100%\",id:\"K8wYFab4Y\",layoutId:\"K8wYFab4Y\",Oc0fzh3x0:true,okFfDCMAr:\"AI Actions\",Usq46WHfY:Usq46WHfY19e2v2b({overlay:overlay1}),variant:\"X5mpssHFg\",width:\"100%\",...addPropertyOverrides({Df_RYoJHN:{style:{width:\"100%\"},variant:\"CyEkmQ_Np\"},xXlSJByGn:{oxH5zj9aM:oxH5zj9aM1hwrc82,style:{width:\"100%\"},Usq46WHfY:Usq46WHfYtxyyif({overlay:overlay1}),variant:\"EZe_2_uS0\"}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay1.visible&&/*#__PURE__*/_jsx(Floating,{alignment:\"start\",anchorRef:ref4,className:cx(serializationHash,classNames,...sharedStyleClassNames),collisionDetection:false,\"data-framer-portal-id\":`${layoutId}-10os4th`,offsetX:-725,offsetY:30,onDismiss:overlay1.hide,placement:\"bottom\",portalSelector:\"#overlay\",safeArea:true,zIndex:11,...addPropertyOverrides({Df_RYoJHN:{offsetX:-32,offsetY:4},jfBFc_pzg:{offsetX:-195},xXlSJByGn:{offsetX:-15,offsetY:3}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:324,width:\"1920px\",y:(componentViewport?.y||0)+(12+((componentViewport?.height||72)-18-27)/2)+0+0+0+-162,...addPropertyOverrides({Df_RYoJHN:{width:\"810px\",y:(componentViewport?.y||0)+15+(((componentViewport?.height||930)-15-352)/2+51+15)+32+39+0+0+-162},jfBFc_pzg:{width:\"997px\"},xXlSJByGn:{width:\"390px\",y:(componentViewport?.y||0)+15+66+0+39+0+0+-162}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(MotionDivWithFX,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation1,className:\"framer-1jusyl0-container\",exit:animation,initial:animation2,layoutDependency:layoutDependency,layoutId:\"RayVs5TWK-container\",ref:ref5,role:\"dialog\",children:/*#__PURE__*/_jsx(DropdownAIActionsMM,{height:\"100%\",id:\"RayVs5TWK\",layoutId:\"RayVs5TWK\",style:{width:\"100%\"},variant:\"Sqv2kA5go\",width:\"100%\",...addPropertyOverrides({Df_RYoJHN:{variant:\"P5xGqWEVk\"},xXlSJByGn:{variant:\"aDdiecGPz\"}},baseVariant,gestureVariant)})})})})})]})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1t6hhg5\",\"data-framer-name\":\"Stack\",layoutDependency:layoutDependency,layoutId:\"NWvmyTNku\",children:/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:false,children:overlay2=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:27,y:(componentViewport?.y||0)+(12+((componentViewport?.height||72)-18-27)/2)+0+0+0,...addPropertyOverrides({Df_RYoJHN:{width:\"749px\",y:(componentViewport?.y||0)+15+(((componentViewport?.height||930)-15-352)/2+51+15)+32+78+0+0},xXlSJByGn:{width:\"360px\",y:(componentViewport?.y||0)+15+66+0+78+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1revxuq-container\",id:`${layoutId}-1revxuq`,layoutDependency:layoutDependency,layoutId:\"NTvC7zQAL-container\",ref:ref6,children:[/*#__PURE__*/_jsx(NavItemMegaMenu,{height:\"100%\",id:\"NTvC7zQAL\",layoutId:\"NTvC7zQAL\",Oc0fzh3x0:true,okFfDCMAr:\"Solutions\",oxH5zj9aM:oxH5zj9aM1hwrc82,Usq46WHfY:Usq46WHfYtxyyif({overlay:overlay2}),variant:\"X5mpssHFg\",width:\"100%\",...addPropertyOverrides({Df_RYoJHN:{style:{width:\"100%\"},variant:\"CyEkmQ_Np\"},xXlSJByGn:{style:{width:\"100%\"},variant:\"EZe_2_uS0\"}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay2.visible&&/*#__PURE__*/_jsx(Floating,{alignment:\"start\",anchorRef:ref6,className:cx(serializationHash,classNames,...sharedStyleClassNames),collisionDetection:false,\"data-framer-portal-id\":`${layoutId}-1revxuq`,offsetX:-705,offsetY:30,onDismiss:overlay2.hide,placement:\"bottom\",portalSelector:\"#overlay\",safeArea:true,zIndex:11,...addPropertyOverrides({Df_RYoJHN:{offsetX:-32,offsetY:4},jfBFc_pzg:{offsetX:-309},xXlSJByGn:{offsetX:-15,offsetY:3}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:432,width:\"1920px\",y:(componentViewport?.y||0)+(12+((componentViewport?.height||72)-18-27)/2)+0+0+0+-216,...addPropertyOverrides({Df_RYoJHN:{width:\"810px\",y:(componentViewport?.y||0)+15+(((componentViewport?.height||930)-15-352)/2+51+15)+32+78+0+0+-216},jfBFc_pzg:{width:\"997px\"},xXlSJByGn:{width:\"390px\",y:(componentViewport?.y||0)+15+66+0+78+0+0+-216}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(MotionDivWithFX,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation1,className:\"framer-1xho5sm-container\",exit:animation,initial:animation2,layoutDependency:layoutDependency,layoutId:\"VV3oI9aVi-container\",ref:ref7,role:\"dialog\",children:/*#__PURE__*/_jsx(DropdownSolutionsMegaMenu,{height:\"100%\",id:\"VV3oI9aVi\",layoutId:\"VV3oI9aVi\",style:{width:\"100%\"},variant:\"MCU8asRTl\",width:\"100%\",...addPropertyOverrides({Df_RYoJHN:{variant:\"dVGerVd9o\"},jfBFc_pzg:{variant:\"vXhyJ1je6\"},xXlSJByGn:{variant:\"Xvfv_5gwA\"}},baseVariant,gestureVariant)})})})})})]})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1uqikd9\",\"data-framer-name\":\"Stack\",layoutDependency:layoutDependency,layoutId:\"tbjCNnm2_\",children:/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:false,children:overlay3=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:27,y:(componentViewport?.y||0)+(12+((componentViewport?.height||72)-18-27)/2)+0+0+0,...addPropertyOverrides({Df_RYoJHN:{width:\"749px\",y:(componentViewport?.y||0)+15+(((componentViewport?.height||930)-15-352)/2+51+15)+32+117+0+0},xXlSJByGn:{width:\"360px\",y:(componentViewport?.y||0)+15+66+0+117+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-854sjv-container\",id:`${layoutId}-854sjv`,layoutDependency:layoutDependency,layoutId:\"W3u8RLcKG-container\",ref:ref8,children:[/*#__PURE__*/_jsx(NavItemMegaMenu,{height:\"100%\",id:\"W3u8RLcKG\",layoutId:\"W3u8RLcKG\",Oc0fzh3x0:true,okFfDCMAr:\"About\",oxH5zj9aM:oxH5zj9aM1hwrc82,Usq46WHfY:Usq46WHfYtxyyif({overlay:overlay3}),variant:\"X5mpssHFg\",width:\"100%\",...addPropertyOverrides({Df_RYoJHN:{style:{width:\"100%\"},variant:\"CyEkmQ_Np\"},xXlSJByGn:{style:{width:\"100%\"},variant:\"EZe_2_uS0\"}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay3.visible&&/*#__PURE__*/_jsx(Floating,{alignment:\"start\",anchorRef:ref8,className:cx(serializationHash,classNames,...sharedStyleClassNames),collisionDetection:false,\"data-framer-portal-id\":`${layoutId}-854sjv`,offsetX:-845,offsetY:30,onDismiss:overlay3.hide,placement:\"bottom\",portalSelector:\"#overlay\",safeArea:true,zIndex:11,...addPropertyOverrides({Df_RYoJHN:{offsetX:-32,offsetY:4},jfBFc_pzg:{offsetX:-428},xXlSJByGn:{offsetX:-15,offsetY:3}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:321,width:\"1920px\",y:(componentViewport?.y||0)+(12+((componentViewport?.height||72)-18-27)/2)+0+0+0+-160.5,...addPropertyOverrides({Df_RYoJHN:{width:\"810px\",y:(componentViewport?.y||0)+15+(((componentViewport?.height||930)-15-352)/2+51+15)+32+117+0+0+-160.5},jfBFc_pzg:{width:\"997px\"},xXlSJByGn:{width:\"390px\",y:(componentViewport?.y||0)+15+66+0+117+0+0+-160.5}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(MotionDivWithFX,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation1,className:\"framer-olsaae-container\",exit:animation,initial:animation2,layoutDependency:layoutDependency,layoutId:\"mp6Dl05k5-container\",ref:ref9,role:\"dialog\",children:/*#__PURE__*/_jsx(DropdownAboutMM,{height:\"100%\",id:\"mp6Dl05k5\",layoutId:\"mp6Dl05k5\",style:{width:\"100%\"},variant:\"oR7WfrMOM\",width:\"100%\",...addPropertyOverrides({Df_RYoJHN:{variant:\"UVJuk9F3i\"},jfBFc_pzg:{variant:\"x3wLTuZhw\"},xXlSJByGn:{variant:\"m7hVIovZm\"}},baseVariant,gestureVariant)})})})})})]})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"tlHx2YEcP\"},implicitPathVariables:undefined},{href:{webPageId:\"tlHx2YEcP\"},implicitPathVariables:undefined},{href:{webPageId:\"tlHx2YEcP\"},implicitPathVariables:undefined},{href:{webPageId:\"tlHx2YEcP\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:27,y:(componentViewport?.y||0)+(12+((componentViewport?.height||72)-18-27)/2)+0,...addPropertyOverrides({Df_RYoJHN:{y:(componentViewport?.y||0)+15+(((componentViewport?.height||930)-15-352)/2+51+15)+32+156},xXlSJByGn:{y:(componentViewport?.y||0)+15+66+0+156}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-smxda-container\",layoutDependency:layoutDependency,layoutId:\"CEiXbmkwE-container\",children:/*#__PURE__*/_jsx(NavItemMegaMenu,{cRqRWoih6:resolvedLinks1[0],height:\"100%\",id:\"CEiXbmkwE\",layoutId:\"CEiXbmkwE\",Oc0fzh3x0:false,okFfDCMAr:\"Pricing\",variant:\"X5mpssHFg\",width:\"100%\",...addPropertyOverrides({Df_RYoJHN:{cRqRWoih6:resolvedLinks1[2],variant:\"CyEkmQ_Np\"},jfBFc_pzg:{cRqRWoih6:resolvedLinks1[1]},xXlSJByGn:{cRqRWoih6:resolvedLinks1[3],Usq46WHfY:undefined,variant:\"EZe_2_uS0\"}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-15v5df6\",\"data-framer-name\":\"Stack\",layoutDependency:layoutDependency,layoutId:\"ad4IPEtoV\",children:/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:false,children:overlay4=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:27,y:(componentViewport?.y||0)+(12+((componentViewport?.height||72)-18-27)/2)+0+0+0,...addPropertyOverrides({Df_RYoJHN:{width:\"749px\",y:(componentViewport?.y||0)+15+(((componentViewport?.height||930)-15-352)/2+51+15)+32+195+0+0},xXlSJByGn:{width:\"360px\",y:(componentViewport?.y||0)+15+66+0+195+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-gqc8zh-container\",id:`${layoutId}-gqc8zh`,layoutDependency:layoutDependency,layoutId:\"JYTx0BfmX-container\",ref:ref10,children:[/*#__PURE__*/_jsx(NavItemMegaMenu,{height:\"100%\",id:\"JYTx0BfmX\",layoutId:\"JYTx0BfmX\",Oc0fzh3x0:true,okFfDCMAr:\"Resources\",oxH5zj9aM:oxH5zj9aM1hwrc82,Usq46WHfY:Usq46WHfYtxyyif({overlay:overlay4}),variant:\"X5mpssHFg\",width:\"100%\",...addPropertyOverrides({Df_RYoJHN:{style:{width:\"100%\"},variant:\"CyEkmQ_Np\"},xXlSJByGn:{style:{width:\"100%\"},variant:\"EZe_2_uS0\"}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay4.visible&&/*#__PURE__*/_jsx(Floating,{alignment:\"start\",anchorRef:ref10,className:cx(serializationHash,classNames,...sharedStyleClassNames),collisionDetection:false,\"data-framer-portal-id\":`${layoutId}-gqc8zh`,offsetX:-1200,offsetY:30,onDismiss:overlay4.hide,placement:\"bottom\",portalSelector:\"#overlay\",safeArea:true,zIndex:11,...addPropertyOverrides({Df_RYoJHN:{offsetX:-32,offsetY:3},jfBFc_pzg:{offsetX:-604},xXlSJByGn:{offsetX:-15,offsetY:3}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:342,width:\"1920px\",y:(componentViewport?.y||0)+(12+((componentViewport?.height||72)-18-27)/2)+0+0+0+0,...addPropertyOverrides({Df_RYoJHN:{width:\"810px\",y:(componentViewport?.y||0)+15+(((componentViewport?.height||930)-15-352)/2+51+15)+32+195+0+0+0},jfBFc_pzg:{width:\"997px\"},xXlSJByGn:{width:\"390px\",y:(componentViewport?.y||0)+15+66+0+195+0+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(MotionDivWithFX,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation1,className:\"framer-tdo1tj-container\",exit:animation,initial:animation2,layoutDependency:layoutDependency,layoutId:\"pz6Zc5Tha-container\",ref:ref11,role:\"dialog\",children:/*#__PURE__*/_jsx(DropdownResourncesMM,{height:\"100%\",id:\"pz6Zc5Tha\",layoutId:\"pz6Zc5Tha\",style:{width:\"100%\"},variant:\"mGA0jyao7\",width:\"100%\",...addPropertyOverrides({Df_RYoJHN:{variant:\"OeJl9CCcS\"},jfBFc_pzg:{variant:\"YJseSeNDA\"},xXlSJByGn:{variant:\"fo_6tgLTP\"}},baseVariant,gestureVariant)})})})})})]})})})})})]}),isDisplayed2()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1tbutom\",\"data-framer-name\":\"Button & Burger\",layoutDependency:layoutDependency,layoutId:\"K8VVVxcAk\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"aMIUCVUkf\"},implicitPathVariables:undefined},{href:{webPageId:\"aMIUCVUkf\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:54,y:(componentViewport?.y||0)+(12+((componentViewport?.height||72)-18-54)/2)+0,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1m2aka1-container\",layoutDependency:layoutDependency,layoutId:\"yhujaa7FI-container\",children:/*#__PURE__*/_jsx(ButtonWithClassWithMappedReactProps1v1ipky,{fzPQj5vxM:resolvedLinks2[0],height:\"100%\",id:\"yhujaa7FI\",layoutId:\"yhujaa7FI\",nEwdSTY82:false,qWQ35JEj6:\"Get Started\",variant:\"N0tTVqvUR\",width:\"100%\",...addPropertyOverrides({jfBFc_pzg:{fzPQj5vxM:resolvedLinks2[1]}},baseVariant,gestureVariant)})})})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-LNO40.framer-18ifclr, .framer-LNO40 .framer-18ifclr { display: block; }\",\".framer-LNO40.framer-1yti6ex { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; padding: 12px 0px 6px 0px; position: relative; width: 1296px; }\",\".framer-LNO40 .framer-lf9n2p { 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: 15%; }\",\".framer-LNO40 .framer-3njdu3-container { flex: none; height: 51px; position: relative; width: 208px; }\",\".framer-LNO40 .framer-z9rvew { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; min-height: 56px; min-width: 231px; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-LNO40 .framer-1wzng8y-container { flex: none; height: 30px; position: relative; width: 30px; }\",\".framer-LNO40 .framer-gc2p7n { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; z-index: 6; }\",\".framer-LNO40 .framer-rgjrkp, .framer-LNO40 .framer-we1xme, .framer-LNO40 .framer-1t6hhg5, .framer-LNO40 .framer-1uqikd9, .framer-LNO40 .framer-15v5df6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-LNO40 .framer-rw8umv-container, .framer-LNO40 .framer-10os4th-container, .framer-LNO40 .framer-1revxuq-container, .framer-LNO40 .framer-854sjv-container, .framer-LNO40 .framer-smxda-container, .framer-LNO40 .framer-gqc8zh-container, .framer-LNO40 .framer-1m2aka1-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-LNO40 .framer-nud8r0-container, .framer-LNO40 .framer-1jusyl0-container, .framer-LNO40 .framer-1xho5sm-container, .framer-LNO40 .framer-olsaae-container, .framer-LNO40 .framer-tdo1tj-container { height: auto; position: relative; width: 1920px; }\",\".framer-LNO40 .framer-1tbutom { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-end; overflow: visible; padding: 0px; position: relative; width: 25%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-LNO40 .framer-lf9n2p, .framer-LNO40 .framer-z9rvew, .framer-LNO40 .framer-gc2p7n, .framer-LNO40 .framer-rgjrkp, .framer-LNO40 .framer-we1xme, .framer-LNO40 .framer-1t6hhg5, .framer-LNO40 .framer-1uqikd9, .framer-LNO40 .framer-15v5df6, .framer-LNO40 .framer-1tbutom { gap: 0px; } .framer-LNO40 .framer-lf9n2p > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-LNO40 .framer-lf9n2p > :first-child, .framer-LNO40 .framer-z9rvew > :first-child, .framer-LNO40 .framer-gc2p7n > :first-child, .framer-LNO40 .framer-1tbutom > :first-child { margin-left: 0px; } .framer-LNO40 .framer-lf9n2p > :last-child, .framer-LNO40 .framer-z9rvew > :last-child, .framer-LNO40 .framer-gc2p7n > :last-child, .framer-LNO40 .framer-1tbutom > :last-child { margin-right: 0px; } .framer-LNO40 .framer-z9rvew > *, .framer-LNO40 .framer-gc2p7n > *, .framer-LNO40 .framer-1tbutom > * { margin: 0px; margin-left: calc(32px / 2); margin-right: calc(32px / 2); } .framer-LNO40 .framer-rgjrkp > *, .framer-LNO40 .framer-we1xme > *, .framer-LNO40 .framer-1t6hhg5 > *, .framer-LNO40 .framer-1uqikd9 > *, .framer-LNO40 .framer-15v5df6 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-LNO40 .framer-rgjrkp > :first-child, .framer-LNO40 .framer-we1xme > :first-child, .framer-LNO40 .framer-1t6hhg5 > :first-child, .framer-LNO40 .framer-1uqikd9 > :first-child, .framer-LNO40 .framer-15v5df6 > :first-child { margin-top: 0px; } .framer-LNO40 .framer-rgjrkp > :last-child, .framer-LNO40 .framer-we1xme > :last-child, .framer-LNO40 .framer-1t6hhg5 > :last-child, .framer-LNO40 .framer-1uqikd9 > :last-child, .framer-LNO40 .framer-15v5df6 > :last-child { margin-bottom: 0px; } }\",\".framer-LNO40.framer-v-18on98n.framer-1yti6ex { padding: 12px 30px 6px 30px; width: 1000px; }\",\".framer-LNO40.framer-v-18on98n .framer-gc2p7n { gap: 27px; }\",\".framer-LNO40.framer-v-18on98n .framer-nud8r0-container, .framer-LNO40.framer-v-18on98n .framer-1jusyl0-container, .framer-LNO40.framer-v-18on98n .framer-1xho5sm-container, .framer-LNO40.framer-v-18on98n .framer-olsaae-container, .framer-LNO40.framer-v-18on98n .framer-tdo1tj-container { width: 997px; }\",\".framer-LNO40.framer-v-18on98n .framer-1tbutom { justify-content: center; width: 20%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-LNO40.framer-v-18on98n .framer-gc2p7n { gap: 0px; } .framer-LNO40.framer-v-18on98n .framer-gc2p7n > * { margin: 0px; margin-left: calc(27px / 2); margin-right: calc(27px / 2); } .framer-LNO40.framer-v-18on98n .framer-gc2p7n > :first-child { margin-left: 0px; } .framer-LNO40.framer-v-18on98n .framer-gc2p7n > :last-child { margin-right: 0px; } }\",\".framer-LNO40.framer-v-i4iiwz.framer-1yti6ex { flex-direction: column; gap: 24px; justify-content: center; padding: 15px 30px 15px 30px; width: 810px; }\",\".framer-LNO40.framer-v-i4iiwz .framer-lf9n2p, .framer-LNO40.framer-v-14tulwr .framer-lf9n2p, .framer-LNO40.framer-v-1c7yci4 .framer-lf9n2p { gap: unset; justify-content: space-between; width: 100%; }\",\".framer-LNO40.framer-v-i4iiwz .framer-z9rvew, .framer-LNO40.framer-v-14tulwr .framer-z9rvew, .framer-LNO40.framer-v-1c7yci4 .framer-z9rvew, .framer-LNO40.framer-v-o0781q .framer-z9rvew { min-height: unset; min-width: unset; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-LNO40.framer-v-i4iiwz.framer-1yti6ex, .framer-LNO40.framer-v-i4iiwz .framer-lf9n2p { gap: 0px; } .framer-LNO40.framer-v-i4iiwz.framer-1yti6ex > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-LNO40.framer-v-i4iiwz.framer-1yti6ex > :first-child { margin-top: 0px; } .framer-LNO40.framer-v-i4iiwz.framer-1yti6ex > :last-child { margin-bottom: 0px; } .framer-LNO40.framer-v-i4iiwz .framer-lf9n2p > *, .framer-LNO40.framer-v-i4iiwz .framer-lf9n2p > :first-child, .framer-LNO40.framer-v-i4iiwz .framer-lf9n2p > :last-child { margin: 0px; } }\",\".framer-LNO40.framer-v-14tulwr.framer-1yti6ex { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 24px; height: 80px; justify-content: flex-start; padding: 15px 20px 15px 20px; width: 390px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-LNO40.framer-v-14tulwr.framer-1yti6ex, .framer-LNO40.framer-v-14tulwr .framer-lf9n2p { gap: 0px; } .framer-LNO40.framer-v-14tulwr.framer-1yti6ex > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-LNO40.framer-v-14tulwr.framer-1yti6ex > :first-child { margin-top: 0px; } .framer-LNO40.framer-v-14tulwr.framer-1yti6ex > :last-child { margin-bottom: 0px; } .framer-LNO40.framer-v-14tulwr .framer-lf9n2p > *, .framer-LNO40.framer-v-14tulwr .framer-lf9n2p > :first-child, .framer-LNO40.framer-v-14tulwr .framer-lf9n2p > :last-child { margin: 0px; } }\",\".framer-LNO40.framer-v-1c7yci4.framer-1yti6ex { flex-direction: column; gap: 15px; justify-content: center; padding: 15px 30px 0px 30px; width: 810px; }\",\".framer-LNO40.framer-v-1c7yci4 .framer-gc2p7n { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 12px; padding: 32px; width: 108%; z-index: 1; }\",\".framer-LNO40.framer-v-1c7yci4 .framer-rgjrkp, .framer-LNO40.framer-v-1c7yci4 .framer-we1xme { align-content: flex-start; align-items: flex-start; gap: 30px; width: 100%; }\",\".framer-LNO40.framer-v-1c7yci4 .framer-rw8umv-container, .framer-LNO40.framer-v-1c7yci4 .framer-10os4th-container { order: 0; width: 749px; }\",\".framer-LNO40.framer-v-1c7yci4 .framer-nud8r0-container, .framer-LNO40.framer-v-1c7yci4 .framer-1jusyl0-container, .framer-LNO40.framer-v-1c7yci4 .framer-1xho5sm-container, .framer-LNO40.framer-v-1c7yci4 .framer-olsaae-container, .framer-LNO40.framer-v-1c7yci4 .framer-tdo1tj-container { width: 810px; }\",\".framer-LNO40.framer-v-1c7yci4 .framer-1revxuq-container, .framer-LNO40.framer-v-1c7yci4 .framer-854sjv-container, .framer-LNO40.framer-v-1c7yci4 .framer-gqc8zh-container { width: 749px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-LNO40.framer-v-1c7yci4.framer-1yti6ex, .framer-LNO40.framer-v-1c7yci4 .framer-lf9n2p, .framer-LNO40.framer-v-1c7yci4 .framer-gc2p7n, .framer-LNO40.framer-v-1c7yci4 .framer-rgjrkp, .framer-LNO40.framer-v-1c7yci4 .framer-we1xme { gap: 0px; } .framer-LNO40.framer-v-1c7yci4.framer-1yti6ex > * { margin: 0px; margin-bottom: calc(15px / 2); margin-top: calc(15px / 2); } .framer-LNO40.framer-v-1c7yci4.framer-1yti6ex > :first-child, .framer-LNO40.framer-v-1c7yci4 .framer-gc2p7n > :first-child, .framer-LNO40.framer-v-1c7yci4 .framer-rgjrkp > :first-child, .framer-LNO40.framer-v-1c7yci4 .framer-we1xme > :first-child { margin-top: 0px; } .framer-LNO40.framer-v-1c7yci4.framer-1yti6ex > :last-child, .framer-LNO40.framer-v-1c7yci4 .framer-gc2p7n > :last-child, .framer-LNO40.framer-v-1c7yci4 .framer-rgjrkp > :last-child, .framer-LNO40.framer-v-1c7yci4 .framer-we1xme > :last-child { margin-bottom: 0px; } .framer-LNO40.framer-v-1c7yci4 .framer-lf9n2p > *, .framer-LNO40.framer-v-1c7yci4 .framer-lf9n2p > :first-child, .framer-LNO40.framer-v-1c7yci4 .framer-lf9n2p > :last-child { margin: 0px; } .framer-LNO40.framer-v-1c7yci4 .framer-gc2p7n > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-LNO40.framer-v-1c7yci4 .framer-rgjrkp > *, .framer-LNO40.framer-v-1c7yci4 .framer-we1xme > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } }\",\".framer-LNO40.framer-v-o0781q.framer-1yti6ex { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 15px; justify-content: flex-start; padding: 15px 0px 0px 0px; width: 390px; }\",\".framer-LNO40.framer-v-o0781q .framer-lf9n2p { gap: unset; justify-content: space-between; padding: 0px 20px 0px 20px; width: 100%; }\",\".framer-LNO40.framer-v-o0781q .framer-gc2p7n { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 12px; padding: 0px 15px 20px 15px; width: 100%; z-index: 1; }\",\".framer-LNO40.framer-v-o0781q .framer-rgjrkp, .framer-LNO40.framer-v-o0781q .framer-we1xme { align-content: flex-start; align-items: flex-start; gap: 30px; width: 360px; }\",\".framer-LNO40.framer-v-o0781q .framer-rw8umv-container, .framer-LNO40.framer-v-o0781q .framer-10os4th-container, .framer-LNO40.framer-v-o0781q .framer-1revxuq-container, .framer-LNO40.framer-v-o0781q .framer-854sjv-container, .framer-LNO40.framer-v-o0781q .framer-gqc8zh-container { width: 360px; }\",\".framer-LNO40.framer-v-o0781q .framer-nud8r0-container, .framer-LNO40.framer-v-o0781q .framer-1jusyl0-container, .framer-LNO40.framer-v-o0781q .framer-1xho5sm-container, .framer-LNO40.framer-v-o0781q .framer-olsaae-container, .framer-LNO40.framer-v-o0781q .framer-tdo1tj-container { width: 390px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-LNO40.framer-v-o0781q.framer-1yti6ex, .framer-LNO40.framer-v-o0781q .framer-lf9n2p, .framer-LNO40.framer-v-o0781q .framer-gc2p7n, .framer-LNO40.framer-v-o0781q .framer-rgjrkp, .framer-LNO40.framer-v-o0781q .framer-we1xme { gap: 0px; } .framer-LNO40.framer-v-o0781q.framer-1yti6ex > * { margin: 0px; margin-bottom: calc(15px / 2); margin-top: calc(15px / 2); } .framer-LNO40.framer-v-o0781q.framer-1yti6ex > :first-child, .framer-LNO40.framer-v-o0781q .framer-gc2p7n > :first-child, .framer-LNO40.framer-v-o0781q .framer-rgjrkp > :first-child, .framer-LNO40.framer-v-o0781q .framer-we1xme > :first-child { margin-top: 0px; } .framer-LNO40.framer-v-o0781q.framer-1yti6ex > :last-child, .framer-LNO40.framer-v-o0781q .framer-gc2p7n > :last-child, .framer-LNO40.framer-v-o0781q .framer-rgjrkp > :last-child, .framer-LNO40.framer-v-o0781q .framer-we1xme > :last-child { margin-bottom: 0px; } .framer-LNO40.framer-v-o0781q .framer-lf9n2p > *, .framer-LNO40.framer-v-o0781q .framer-lf9n2p > :first-child, .framer-LNO40.framer-v-o0781q .framer-lf9n2p > :last-child { margin: 0px; } .framer-LNO40.framer-v-o0781q .framer-gc2p7n > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-LNO40.framer-v-o0781q .framer-rgjrkp > *, .framer-LNO40.framer-v-o0781q .framer-we1xme > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 72\n * @framerIntrinsicWidth 1296\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"jfBFc_pzg\":{\"layout\":[\"fixed\",\"auto\"]},\"RZVVGSTm4\":{\"layout\":[\"fixed\",\"auto\"]},\"R5fcFnGQr\":{\"layout\":[\"fixed\",\"fixed\"]},\"Df_RYoJHN\":{\"layout\":[\"fixed\",\"auto\"]},\"xXlSJByGn\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"mpyPFQ6T8\":\"hover\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerxpY5YIhsR=withCSS(Component,css,\"framer-LNO40\");export default FramerxpY5YIhsR;FramerxpY5YIhsR.displayName=\"Navbar Mega Menu\";FramerxpY5YIhsR.defaultProps={height:72,width:1296};addPropertyControls(FramerxpY5YIhsR,{variant:{options:[\"ah5r_bzvk\",\"jfBFc_pzg\",\"RZVVGSTm4\",\"R5fcFnGQr\",\"Df_RYoJHN\",\"xXlSJByGn\"],optionTitles:[\"Desktop\",\"Laptop\",\"Tablet\",\"Mobile\",\"Tablet Open\",\"Mobile Open\"],title:\"Variant\",type:ControlType.Enum},mpyPFQ6T8:{title:\"Hover\",type:ControlType.EventHandler}});addFonts(FramerxpY5YIhsR,[{explicitInter:true,fonts:[]},...LogoFonts,...HumburgerFonts,...NavItemMegaMenuFonts,...DropdownProductMegaMenuFonts,...DropdownAIActionsMMFonts,...DropdownSolutionsMegaMenuFonts,...DropdownAboutMMFonts,...DropdownResourncesMMFonts,...ButtonFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerxpY5YIhsR\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"72\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"jfBFc_pzg\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"RZVVGSTm4\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"R5fcFnGQr\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Df_RYoJHN\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"xXlSJByGn\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"1296\",\"framerComponentViewportWidth\":\"true\",\"framerVariables\":\"{\\\"mpyPFQ6T8\\\":\\\"hover\\\"}\",\"framerImmutableVariables\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["createStore", "state1", "dataStore", "Data", "setDataStore", "newState", "storeState", "storeSetters", "setStoreState", "setter", "useStore", "state", "setState", "ye", "ue", "useObserveData", "centerContent", "defaultContainerStyles", "centerContent", "useStore", "createStore", "withClass", "Component", "props", "p", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "u", "RichText2", "Link", "Image2", "getLoadingLazyAtYPosition", "css", "FramerA83DWhho4", "withCSS", "A83DWhho4_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "u", "RichText2", "Link", "SVG", "Image2", "getLoadingLazyAtYPosition", "css", "FramerMEYrt1mVZ", "withCSS", "MEYrt1mVZ_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "u", "RichText2", "Link", "css", "FramermSQVX6Tbe", "withCSS", "mSQVX6Tbe_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "FeatherFonts", "getFonts", "Icon", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "hover", "iconVisible", "id", "link", "tap", "title", "width", "props", "_ref", "_humanReadableVariantMap_props_variant", "_ref1", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "okFfDCMAr", "cRqRWoih6", "Oc0fzh3x0", "oxH5zj9aM", "Usq46WHfY", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTaph8x81r", "args", "onMouseEnter14zb82p", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "u", "cx", "RichText2", "ComponentViewportProvider", "css", "FramerTu4uPEe7t", "withCSS", "Tu4uPEe7t_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "u", "RichText2", "Link", "css", "FramerVTK_x9x__", "withCSS", "VTK_x9x_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "LayoutGroup", "u", "RichText2", "Link", "css", "FramerZ5wneH1Su", "withCSS", "Z5wneH1Su_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "LogoFonts", "getFonts", "XxCTRjaaq_default", "HumburgerFonts", "IguD5BjWW_default", "NavItemMegaMenuFonts", "Tu4uPEe7t_default", "DropdownProductMegaMenuFonts", "MEYrt1mVZ_default", "MotionDivWithFX", "withFX", "motion", "DropdownAIActionsMMFonts", "mSQVX6Tbe_default", "DropdownSolutionsMegaMenuFonts", "Z5wneH1Su_default", "DropdownAboutMMFonts", "A83DWhho4_default", "DropdownResourncesMMFonts", "VTK_x9x_default", "ButtonFonts", "XWfPzvcBb_default", "ButtonWithClassWithMappedReactProps1v1ipky", "withMappedReactProps", "withClass", "XWfPzvcBb_exports", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "animation", "animation1", "animation2", "Overlay", "children", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "Transition", "value", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "height", "hover", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "mpyPFQ6T8", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "njNJdZBy31r5lj98", "args", "njNJdZBy3ibnmp2", "njNJdZBy317l20qp", "njNJdZBy31a7ao1u", "Usq46WHfY19e2v2b", "overlay", "loadMore", "oxH5zj9aM1hwrc82", "Usq46WHfYtxyyif", "ref1", "pe", "router", "useRouter", "isDisplayed", "isDisplayed1", "ref2", "ref3", "ref4", "ref5", "ref6", "ref7", "ref8", "ref9", "ref10", "ref11", "isDisplayed2", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "ResolveLinks", "resolvedLinks", "ComponentViewportProvider", "l", "AnimatePresence", "Floating", "overlay1", "overlay2", "overlay3", "resolvedLinks1", "overlay4", "resolvedLinks2", "css", "FramerxpY5YIhsR", "withCSS", "xpY5YIhsR_default", "addPropertyControls", "ControlType", "addFonts"]
}
