{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/HYcHVPAbe8jLEeU7c4mp/QiycTxX7vdblEOi3o00G/Time.js", "ssg:https://framerusercontent.com/modules/cyPAbGv535QBDqDSA9L0/f8FIlkPqD3HVNvImtQTY/R4R6Jx86K.js", "ssg:https://framerusercontent.com/modules/h05bdGWZhs0Z2mjlCUZz/RjUZhSseNQonJ6OvJl5P/Wt9bd8AsD.js", "ssg:https://framerusercontent.com/modules/kPZEMeH9h6T6dTcKYv6v/gvq33ig7MqYHE6y95CJu/HOeClPO6N.js", "ssg:https://framerusercontent.com/modules/zJAksBqR11ZxBrtsg6j9/GS5cEM7k9cR0wQqqUl0e/mNP7zNG8v.js", "ssg:https://framerusercontent.com/modules/6fSbmfT0ngnSg550Iwf5/ZMec29Io1y2r4Xl8XGs7/Nu0_UG9f5.js", "ssg:https://framerusercontent.com/modules/6axsHUW8sPLjAik7IaOO/OIhKs1yZ3UwM1bQD0vbD/TeGsSKjrC.js", "ssg:https://framerusercontent.com/modules/8OPjXPhgXclUgIGWcTf7/Wqy0eqb6YSkca7oKm0kv/TzGsGR32K.js", "ssg:https://framerusercontent.com/modules/7Yd1l62VYDkgMBcBsHIq/gv75Rz3HJ0WC07TRUuyu/TEJX934iE.js", "ssg:https://framerusercontent.com/modules/vGRJlBBTz5wL2CmM5dYv/pP6NkjG6FbSJviJVwyxq/VjMKeNtPD.js", "ssg:https://framerusercontent.com/modules/fJwY6DdhcGlykm4OH49A/ky2gV26B49prbwMZKubC/W3b9tRRmy.js"],
  "sourcesContent": ["import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,RenderTarget,useLocaleCode}from\"framer\";import{startTransition,useCallback,useEffect,useRef,useState}from\"react\";const fontStack=`\"Inter\", system-ui, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, Helvetica, Arial, sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\"`;function formatTimeOrDate(outputType,{showYear,showMonth,showWeekday,showMinutes,showSeconds},timeFormat,monthFormat,localCode){const date=new Date;const onlyYearIsShown=!showWeekday&&!showMonth&&showYear;switch(outputType){case\"date\":return new Intl.DateTimeFormat(localCode,{weekday:showWeekday?\"long\":undefined,day:onlyYearIsShown?undefined:\"numeric\",month:showMonth?monthFormat:undefined,year:showYear?\"numeric\":undefined}).format(date);case\"time\":return new Intl.DateTimeFormat(localCode,{hour:\"numeric\",minute:showMinutes?\"numeric\":undefined,second:showSeconds&&showMinutes?\"numeric\":undefined,hour12:timeFormat===\"12h\"}).format(date);default:return new Intl.DateTimeFormat(localCode).format(date);}}const defaultProps={height:20,width:140,outputType:\"time\",color:\"#999\",timeFormat:\"24h\",showYear:true,showMonth:true,showWeekday:true,showMinutes:true,showSeconds:true,monthFormat:\"long\",alignment:\"center\"};/**\n * TIME AND DATE\n * FORKED FROM PROTOTYPING\n *\n * @framerIntrinsicWidth 140\n * @framerIntrinsicHeight 20\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth any\n * @framerSupportedLayoutHeight any\n */export function Time(props){const mergedProps={...defaultProps,...props};const{outputType,timeFormat,showYear,showMonth,showWeekday,// showHours,\nshowMinutes,showSeconds,monthFormat,color,font,tabularFont}=mergedProps;const localCode=useLocaleCode();const getTextContent=useCallback(()=>formatTimeOrDate(outputType,{showYear,showMonth,showWeekday,// showHours,\n    showMinutes,showSeconds},timeFormat,monthFormat,localCode),[localCode,monthFormat,outputType,showMinutes,showMonth,showSeconds,showWeekday,showYear,timeFormat]);const timeoutRef=useRef()// FIXME: With React 19, we can remove this and return a cleanup from the ref callback\n;const updateCountdown=useCallback(node=>{if(node===null){// React calls w/ `null` on unmount or if the ref function changes.\nclearTimeout(timeoutRef.current);return;}let prev;const tick=()=>{const date=new Date;const next=new Date().setSeconds(date.getSeconds()+1,0)-+date;timeoutRef.current=setTimeout(tick,next);const textContent=getTextContent();if(prev!==textContent){node.textContent=textContent;prev=textContent;}};tick();},[getTextContent]);const[visible,setIsVisible]=useState(false);const isCanvas=RenderTarget.current()===RenderTarget.canvas;useEffect(()=>{startTransition(()=>setIsVisible(true));// Don\u2019t want real time on Canvas\nif(isCanvas)return;},[isCanvas]);return /*#__PURE__*/_jsx(\"p\",{suppressHydrationWarning:true,style:{margin:0,padding:0,color,fontFamily:fontStack,fontWeight:500,fontSize:16,lineHeight:1,visibility:visible?\"visible\":\"hidden\",...font,fontVariantNumeric:tabularFont?\"tabular-nums\":\"normal\",whiteSpace:\"nowrap\"},ref:isCanvas?undefined:updateCountdown,children:getTextContent()});}Time.displayName=\"Time & Date\";addPropertyControls(Time,{outputType:{title:\"Type\",type:ControlType.Enum,displaySegmentedControl:true,options:[\"date\",\"time\"],optionTitles:[\"Date\",\"Time\"],defaultValue:defaultProps.outputType},showWeekday:{title:\"Day\",type:ControlType.Boolean,enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:defaultProps.showWeekday,hidden:props=>props.outputType!==\"date\"},showMonth:{title:\"Month\",type:ControlType.Boolean,enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:defaultProps.showMonth,hidden:props=>props.outputType!==\"date\"},monthFormat:{title:\"Format\",type:ControlType.Enum,options:[\"short\",\"long\",\"numeric\"],optionTitles:[\"Short\",\"Long\",\"Numeric\"],defaultValue:defaultProps.monthFormat,hidden:props=>props.outputType!==\"date\"||!props.showMonth},showYear:{title:\"Year\",type:ControlType.Boolean,enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:defaultProps.showYear,hidden:props=>props.outputType!==\"date\"},timeFormat:{title:\"Format\",type:ControlType.Enum,options:[\"12h\",\"24h\"],optionTitles:[\"12h\",\"24h\"],displaySegmentedControl:true,defaultValue:defaultProps.timeFormat,hidden:props=>props.outputType!==\"time\"},// showHours: {\n//     title: \"Hours\",\n//     type: ControlType.Boolean,\n//     enabledTitle: \"Show\",\n//     disabledTitle: \"Hide\",\n//     defaultValue: defaultProps.showHours,\n//     hidden: (props) => props.outputType !== \"time\",\n// },\nshowMinutes:{title:\"Minutes\",type:ControlType.Boolean,enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:defaultProps.showMinutes,hidden:props=>props.outputType!==\"time\"},showSeconds:{title:\"Seconds\",type:ControlType.Boolean,enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:defaultProps.showSeconds,hidden:props=>props.outputType!==\"time\"||!props.showMinutes},font:{type:ControlType.Font,controls:\"extended\"},tabularFont:{title:\"Tabular\",type:ControlType.Boolean,defaultValue:true},color:{type:ControlType.Color,defaultValue:defaultProps.color}});\nexport const __FramerMetadata__ = {\"exports\":{\"Time\":{\"type\":\"reactComponent\",\"name\":\"Time\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"20\",\"framerSupportedLayoutHeight\":\"any\",\"framerDisableUnlink\":\"*\",\"framerSupportedLayoutWidth\":\"any\",\"framerIntrinsicWidth\":\"140\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Time.map", "// Generated by Framer (6807895)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Link,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"ZT2waXgOr\",\"SxqfamNsj\"];const serializationHash=\"framer-iWu8x\";const variantClassNames={SxqfamNsj:\"framer-v-7e7lnn\",ZT2waXgOr:\"framer-v-kiy2s\"};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={Inverse:\"SxqfamNsj\",Logo:\"ZT2waXgOr\"};const getProps=({height,id,link,width,...props})=>{return{...props,Se6E8LE0G:link??props.Se6E8LE0G,variant:humanReadableVariantMap[props.variant]??props.variant??\"ZT2waXgOr\"};};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,Se6E8LE0G,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"ZT2waXgOr\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:Se6E8LE0G,nodeId:\"ZT2waXgOr\",openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{...restProps,...gestureHandlers,className:`${cx(scopingClassNames,\"framer-kiy2s\",className,classNames)} framer-1g84ooy`,\"data-framer-name\":\"Logo\",layoutDependency:layoutDependency,layoutId:\"ZT2waXgOr\",ref:ref??ref1,style:{...style},...addPropertyOverrides({SxqfamNsj:{\"data-framer-name\":\"Inverse\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SVG,{className:\"framer-8cs3ql\",\"data-framer-name\":\"LAAMP LOGO\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"jfiWhsIRj\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 116 27\"><path d=\"M 106.084 0.53 C 112.242 0.53 115.965 4.205 115.965 9.514 L 115.965 9.591 C 115.965 15.605 111.319 18.72 105.53 18.72 L 101.216 18.72 L 101.216 26.517 L 95.538 26.517 L 95.538 0.53 Z M 105.715 13.635 C 108.553 13.635 110.213 11.927 110.213 9.7 L 110.213 9.623 C 110.213 7.061 108.446 5.688 105.603 5.688 L 101.215 5.688 L 101.215 13.635 Z M 69.657 0.53 L 76.441 11.515 L 83.225 0.53 L 89.346 0.53 L 89.346 26.517 L 83.704 26.517 L 83.704 9.551 L 76.44 20.652 L 76.293 20.652 L 69.103 9.662 L 69.103 26.517 L 63.536 26.517 L 63.536 0.53 Z M 20.647 26.551 L 31.711 0.185 L 37.059 0.185 L 48.123 26.551 L 42.222 26.551 L 34.293 7.241 L 26.548 26.551 Z M 44.988 14.482 L 42.037 7.798 L 45.541 0 L 50.634 0 L 61.953 26.551 L 55.868 26.551 L 47.939 7.241 L 44.988 14.482 Z M -0.005 0.371 L 5.895 0.371 L 5.895 21.166 L 18.619 21.166 L 18.619 26.551 L -0.005 26.551 Z\" fill=\"var(--token-13e6f3ca-15c9-4f7b-8059-531819bca5ff, rgb(28, 133, 232))\"></path></svg>',svgContentId:9268690039,withExternalLayout:true,...addPropertyOverrides({SxqfamNsj:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 116 27\"><path d=\"M 106.084 0.53 C 112.242 0.53 115.965 4.205 115.965 9.514 L 115.965 9.591 C 115.965 15.605 111.319 18.72 105.53 18.72 L 101.216 18.72 L 101.216 26.517 L 95.538 26.517 L 95.538 0.53 Z M 105.715 13.635 C 108.553 13.635 110.213 11.927 110.213 9.7 L 110.213 9.623 C 110.213 7.061 108.446 5.688 105.603 5.688 L 101.215 5.688 L 101.215 13.635 Z M 69.657 0.53 L 76.441 11.515 L 83.225 0.53 L 89.346 0.53 L 89.346 26.517 L 83.704 26.517 L 83.704 9.551 L 76.44 20.652 L 76.293 20.652 L 69.103 9.662 L 69.103 26.517 L 63.536 26.517 L 63.536 0.53 Z M 20.647 26.551 L 31.711 0.185 L 37.059 0.185 L 48.123 26.551 L 42.222 26.551 L 34.293 7.241 L 26.548 26.551 Z M 44.988 14.482 L 42.037 7.798 L 45.541 0 L 50.634 0 L 61.953 26.551 L 55.868 26.551 L 47.939 7.241 L 44.988 14.482 Z M -0.005 0.371 L 5.895 0.371 L 5.895 21.166 L 18.619 21.166 L 18.619 26.551 L -0.005 26.551 Z\" fill=\"var(--token-607f7327-5970-47f8-9cee-2886c902b73b, rgb(255, 255, 255))\"></path></svg>',svgContentId:12792757049}},baseVariant,gestureVariant)})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-iWu8x.framer-1g84ooy, .framer-iWu8x .framer-1g84ooy { display: block; }\",\".framer-iWu8x.framer-kiy2s { cursor: pointer; height: 27px; overflow: hidden; position: relative; text-decoration: none; width: 116px; }\",\".framer-iWu8x .framer-8cs3ql { flex: none; height: 27px; left: calc(50.00000000000002% - 116px / 2); position: absolute; top: calc(48.14814814814817% - 27px / 2); width: 116px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 27\n * @framerIntrinsicWidth 116\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"SxqfamNsj\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"Se6E8LE0G\":\"link\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerR4R6Jx86K=withCSS(Component,css,\"framer-iWu8x\");export default FramerR4R6Jx86K;FramerR4R6Jx86K.displayName=\"_logo LAAMP\";FramerR4R6Jx86K.defaultProps={height:27,width:116};addPropertyControls(FramerR4R6Jx86K,{variant:{options:[\"ZT2waXgOr\",\"SxqfamNsj\"],optionTitles:[\"Logo\",\"Inverse\"],title:\"Variant\",type:ControlType.Enum},Se6E8LE0G:{title:\"Link\",type:ControlType.Link}});addFonts(FramerR4R6Jx86K,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerR4R6Jx86K\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"SxqfamNsj\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"116\",\"framerVariables\":\"{\\\"Se6E8LE0G\\\":\\\"link\\\"}\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"27\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./R4R6Jx86K.map", "// Generated by Framer (f030ee3)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,Link,ResolveLinks,RichText,SmartComponentScopedContainer,SVG,useComponentViewport,useLocaleInfo,useRouter,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Time as TimeDate}from\"https://framerusercontent.com/modules/HYcHVPAbe8jLEeU7c4mp/QiycTxX7vdblEOi3o00G/Time.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/hAoDTMjxwupl09VNUgeX/xQCe9Rrq5n91pZTwumxL/e8VWapE80.js\";import _logoLAAMP from\"https://framerusercontent.com/modules/cyPAbGv535QBDqDSA9L0/f8FIlkPqD3HVNvImtQTY/R4R6Jx86K.js\";const _logoLAAMPFonts=getFonts(_logoLAAMP);const TimeDateFonts=getFonts(TimeDate);const cycleOrder=[\"YtuSrcGf7\",\"zG1JEn_a7\"];const serializationHash=\"framer-vndHW\";const variantClassNames={YtuSrcGf7:\"framer-v-1nn8ssn\",zG1JEn_a7:\"framer-v-182kayh\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"YtuSrcGf7\",Mobile:\"zG1JEn_a7\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"YtuSrcGf7\"};};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:\"YtuSrcGf7\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const router=useRouter();const isDisplayed=()=>{if(baseVariant===\"zG1JEn_a7\")return true;return false;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.footer,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1nn8ssn\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"YtuSrcGf7\",ref:refBinding,style:{backgroundColor:\"rgb(255, 255, 255)\",...style},...addPropertyOverrides({zG1JEn_a7:{\"data-framer-name\":\"Mobile\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ng8qmd\",\"data-framer-name\":\"Container\",layoutDependency:layoutDependency,layoutId:\"Bmbvc9BZA\",children:[/*#__PURE__*/_jsxs(motion.header,{className:\"framer-1vunkxq\",\"data-framer-name\":\"Logo and supporting text\",layoutDependency:layoutDependency,layoutId:\"NDegLOXTv\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{webPageId:\"augiA20Il\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:27,width:\"116px\",y:(componentViewport?.y||0)+0+0+96+0+0,...addPropertyOverrides({zG1JEn_a7:{y:undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-n6dt76-container\",layoutDependency:layoutDependency,layoutId:\"w_Tw4Up8R-container\",nodeId:\"w_Tw4Up8R\",rendersWithMotion:true,scopeId:\"Wt9bd8AsD\",children:/*#__PURE__*/_jsx(_logoLAAMP,{height:\"100%\",id:\"w_Tw4Up8R\",layoutId:\"w_Tw4Up8R\",Se6E8LE0G:resolvedLinks[0],style:{height:\"100%\",width:\"100%\"},variant:\"ZT2waXgOr\",width:\"100%\",...addPropertyOverrides({zG1JEn_a7:{Se6E8LE0G:resolvedLinks[1]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1wupbxb\",\"data-styles-preset\":\"e8VWapE80\",children:\"A modern way to train, induct and assess your people.\"})}),className:\"framer-1m2nzjc\",\"data-framer-name\":\"Supporting text\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"fFgFjz_CQ\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.nav,{className:\"framer-116old4\",\"data-framer-name\":\"Links\",layoutDependency:layoutDependency,layoutId:\"h_x8tz3qR\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1lp0sbt\",\"data-framer-name\":\"Footer links\",layoutDependency:layoutDependency,layoutId:\"nIFnJkA40\",children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"xzipo0Wqn\"},motionChild:true,nodeId:\"rhS5CMmOs\",openInNewTab:false,scopeId:\"Wt9bd8AsD\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-17xmn98 framer-1n5w1lp\",\"data-framer-name\":\"_Footer link\",layoutDependency:layoutDependency,layoutId:\"rhS5CMmOs\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1wupbxb\",\"data-styles-preset\":\"e8VWapE80\",children:/*#__PURE__*/_jsx(motion.strong,{children:\"Features\"})})}),className:\"framer-1l0amv6\",\"data-framer-name\":\"Text\",fonts:[\"Inter\",\"Inter-Bold\"],layoutDependency:layoutDependency,layoutId:\"fMhZy6f5r\",verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"dXB_3oQxh\"},motionChild:true,nodeId:\"ViOiwlWpF\",scopeId:\"Wt9bd8AsD\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1ghvr82 framer-1n5w1lp\",\"data-framer-name\":\"_Footer link\",layoutDependency:layoutDependency,layoutId:\"ViOiwlWpF\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1wupbxb\",\"data-styles-preset\":\"e8VWapE80\",children:/*#__PURE__*/_jsx(motion.strong,{children:\"Blog\"})})}),className:\"framer-11fmq92\",\"data-framer-name\":\"Text\",fonts:[\"Inter\",\"Inter-Bold\"],layoutDependency:layoutDependency,layoutId:\"CaIdyqOHp\",verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"BYCz4kmeP\"},motionChild:true,nodeId:\"HS7wqpJ3v\",scopeId:\"Wt9bd8AsD\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-n3uka6 framer-1n5w1lp\",\"data-framer-name\":\"_Footer link\",layoutDependency:layoutDependency,layoutId:\"HS7wqpJ3v\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1wupbxb\",\"data-styles-preset\":\"e8VWapE80\",children:/*#__PURE__*/_jsx(motion.strong,{children:\"Contact us\"})})}),className:\"framer-wjynet\",\"data-framer-name\":\"Text\",fonts:[\"Inter\",\"Inter-Bold\"],layoutDependency:layoutDependency,layoutId:\"Jc3TI3abq\",verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"WxDZitY0w\"},motionChild:true,nodeId:\"EVmA7Iq4k\",scopeId:\"Wt9bd8AsD\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1y3l8lw framer-1n5w1lp\",\"data-framer-name\":\"_Footer link\",layoutDependency:layoutDependency,layoutId:\"EVmA7Iq4k\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1wupbxb\",\"data-styles-preset\":\"e8VWapE80\",children:/*#__PURE__*/_jsx(motion.strong,{children:\"Pricing\"})})}),className:\"framer-1ecszx2\",\"data-framer-name\":\"Text\",fonts:[\"Inter\",\"Inter-Bold\"],layoutDependency:layoutDependency,layoutId:\"HydYolU0U\",verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(Link,{href:{pathVariables:{TjzL058Ck:\"cookies-policy\"},unresolvedPathSlugs:{TjzL058Ck:{collectionId:\"xXV4WBvso\",collectionItemId:\"QVOUC3LP4\"}},webPageId:\"VDoWs8sfH\"},motionChild:true,nodeId:\"wqmyZb3Hl\",openInNewTab:false,scopeId:\"Wt9bd8AsD\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-3lxgnn framer-1n5w1lp\",\"data-framer-name\":\"_Footer link\",layoutDependency:layoutDependency,layoutId:\"wqmyZb3Hl\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1wupbxb\",\"data-styles-preset\":\"e8VWapE80\",children:/*#__PURE__*/_jsx(motion.strong,{children:\"Cookie Preferences\"})})}),className:\"framer-136yxl3\",\"data-framer-name\":\"Text\",fonts:[\"Inter\",\"Inter-Bold\"],layoutDependency:layoutDependency,layoutId:\"K93PTcIpI\",verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(Link,{href:{pathVariables:{TjzL058Ck:\"privacy-policy\"},unresolvedPathSlugs:{TjzL058Ck:{collectionId:\"xXV4WBvso\",collectionItemId:\"tAQSttH8C\"}},webPageId:\"VDoWs8sfH\"},motionChild:true,nodeId:\"AetEO63Zp\",openInNewTab:false,scopeId:\"Wt9bd8AsD\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1rsv6r6 framer-1n5w1lp\",\"data-framer-name\":\"_Footer link\",layoutDependency:layoutDependency,layoutId:\"AetEO63Zp\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1wupbxb\",\"data-styles-preset\":\"e8VWapE80\",children:/*#__PURE__*/_jsx(motion.strong,{children:\"Our Policies\"})})}),className:\"framer-py7dfa\",\"data-framer-name\":\"Text\",fonts:[\"Inter\",\"Inter-Bold\"],layoutDependency:layoutDependency,layoutId:\"t2KSSwHxQ\",verticalAlignment:\"top\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1t2ozub\",\"data-framer-name\":\"_Footer links column\",layoutDependency:layoutDependency,layoutId:\"dcy271qfi\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-xcfbrd\",\"data-framer-name\":\"Actions\",layoutDependency:layoutDependency,layoutId:\"wAND32gsW\",children:[/*#__PURE__*/_jsx(Link,{href:\"https://apps.apple.com/us/app/laamp/id1452121176\",motionChild:true,nodeId:\"s8BhMdjbS\",scopeId:\"Wt9bd8AsD\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-1gb09dh framer-1n5w1lp\",\"data-border\":true,\"data-framer-name\":\"Mobile app store badge\",layoutDependency:layoutDependency,layoutId:\"s8BhMdjbS\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(166, 166, 166)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(0, 0, 0)\",borderBottomLeftRadius:7,borderBottomRightRadius:7,borderTopLeftRadius:7,borderTopRightRadius:7},children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-lhz5i3\",\"data-framer-name\":\"App Store\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:17,intrinsicWidth:76,layoutDependency:layoutDependency,layoutId:\"qPa4r7Pff\",svg:'<svg width=\"76\" height=\"17\" viewBox=\"0 0 76 17\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M47.5259 2.16229V4.4533H46.0899V5.95574H47.5259V11.0607C47.5259 12.8039 48.3145 13.5012 50.2984 13.5012C50.647 13.5012 50.9791 13.4596 51.2696 13.4098V11.924C51.0206 11.9489 50.8628 11.9655 50.5889 11.9655C49.7007 11.9655 49.3106 11.5505 49.3106 10.6042V5.95574H51.2696V4.4533H49.3106V2.16229H47.5259Z\" fill=\"white\"/>\\n<path d=\"M56.3234 13.6257C58.9631 13.6257 60.5817 11.8576 60.5817 8.92742C60.5817 6.01385 58.9548 4.23748 56.3234 4.23748C53.6838 4.23748 52.0568 6.01385 52.0568 8.92742C52.0568 11.8576 53.6755 13.6257 56.3234 13.6257ZM56.3234 12.0402C54.7712 12.0402 53.8996 10.903 53.8996 8.92742C53.8996 6.96844 54.7712 5.82293 56.3234 5.82293C57.8674 5.82293 58.7473 6.96844 58.7473 8.92742C58.7473 10.8947 57.8674 12.0402 56.3234 12.0402Z\" fill=\"white\"/>\\n<path d=\"M61.9666 13.4513H63.7513V8.11395C63.7513 6.84393 64.7059 5.98895 66.0589 5.98895C66.3743 5.98895 66.9056 6.04705 67.055 6.09686V4.33709C66.8641 4.28729 66.5238 4.26238 66.2581 4.26238C65.0794 4.26238 64.075 4.90984 63.8177 5.79803H63.6849V4.4118H61.9666V13.4513Z\" fill=\"white\"/>\\n<path d=\"M71.4863 5.75652C72.8061 5.75652 73.6694 6.67791 73.7109 8.09734H69.1455C69.2451 6.68621 70.1665 5.75652 71.4863 5.75652ZM73.7026 11.0109C73.3706 11.7165 72.6318 12.1066 71.5527 12.1066C70.125 12.1066 69.2036 11.1022 69.1455 9.51678V9.41717H75.5288V8.79461C75.5288 5.95574 74.0097 4.23748 71.4946 4.23748C68.9463 4.23748 67.3276 6.07195 67.3276 8.96063C67.3276 11.8493 68.9131 13.6257 71.5029 13.6257C73.5698 13.6257 75.0141 12.6296 75.4209 11.0109H73.7026Z\" fill=\"white\"/>\\n<path d=\"M35.8223 10.1132C35.96 12.3329 37.8098 13.7525 40.5629 13.7525C43.5053 13.7525 45.3464 12.2641 45.3464 9.88949C45.3464 8.02253 44.2968 6.99011 41.7502 6.39647L40.3822 6.06093C38.7647 5.68237 38.1109 5.17477 38.1109 4.2886C38.1109 3.17015 39.1261 2.43885 40.6489 2.43885C42.0943 2.43885 43.0923 3.15294 43.273 4.29721H45.1486C45.0367 2.20655 43.1956 0.735352 40.6747 0.735352C37.9646 0.735352 36.1579 2.20655 36.1579 4.41766C36.1579 6.2416 37.1817 7.32564 39.4272 7.85046L41.0275 8.23762C42.6707 8.62478 43.3934 9.19261 43.3934 10.139C43.3934 11.2402 42.2578 12.0404 40.7091 12.0404C39.0487 12.0404 37.8958 11.2919 37.7323 10.1132H35.8223Z\" fill=\"white\"/>\\n<path d=\"M17.335 4.26238C16.1065 4.26238 15.044 4.87664 14.4961 5.90594H14.3633V4.4118H12.6451V16.4562H14.4297V12.0817H14.5708C15.044 13.0363 16.065 13.6008 17.3516 13.6008C19.6343 13.6008 21.087 11.7995 21.087 8.92742C21.087 6.05535 19.6343 4.26238 17.335 4.26238ZM16.8287 11.9987C15.3345 11.9987 14.3965 10.82 14.3965 8.93572C14.3965 7.04315 15.3345 5.86443 16.837 5.86443C18.3477 5.86443 19.2525 7.01824 19.2525 8.92742C19.2525 10.8449 18.3477 11.9987 16.8287 11.9987Z\" fill=\"white\"/>\\n<path d=\"M27.3318 4.26238C26.1033 4.26238 25.0408 4.87664 24.4929 5.90594H24.3601V4.4118H22.6419V16.4562H24.4265V12.0817H24.5676C25.0408 13.0363 26.0618 13.6008 27.3484 13.6008C29.6311 13.6008 31.0838 11.7995 31.0838 8.92742C31.0838 6.05535 29.6311 4.26238 27.3318 4.26238ZM26.8255 11.9987C25.3313 11.9987 24.3933 10.82 24.3933 8.93572C24.3933 7.04315 25.3313 5.86443 26.8338 5.86443C28.3445 5.86443 29.2493 7.01824 29.2493 8.92742C29.2493 10.8449 28.3445 11.9987 26.8255 11.9987Z\" fill=\"white\"/>\\n<path d=\"M9.44307 13.4513H11.4907L7.00827 1.03647H4.93482L0.452393 13.4513H2.4312L3.57547 10.1562H8.3074L9.44307 13.4513ZM5.87261 3.2906H6.01887L7.817 8.53874H4.06587L5.87261 3.2906Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-degsv4\",\"data-framer-name\":\"Download on the\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"yJx4o38L0\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 70 7\"><path d=\"M 0.651 0.672 L 0.651 6.661 L 2.813 6.661 C 4.598 6.661 5.632 5.561 5.632 3.647 C 5.632 1.763 4.59 0.672 2.813 0.672 Z M 1.581 1.518 L 2.71 1.518 C 3.951 1.518 4.685 2.307 4.685 3.66 C 4.685 5.034 3.963 5.814 2.71 5.814 L 1.581 5.814 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 8.797 6.748 C 10.117 6.748 10.926 5.864 10.926 4.399 C 10.926 2.942 10.112 2.054 8.797 2.054 C 7.477 2.054 6.663 2.942 6.663 4.399 C 6.663 5.864 7.473 6.748 8.797 6.748 Z M 8.797 5.955 C 8.021 5.955 7.585 5.386 7.585 4.399 C 7.585 3.419 8.021 2.846 8.797 2.846 C 9.569 2.846 10.009 3.419 10.009 4.399 C 10.009 5.382 9.569 5.955 8.797 5.955 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 17.818 2.141 L 16.926 2.141 L 16.12 5.59 L 16.05 5.59 L 15.12 2.141 L 14.265 2.141 L 13.335 5.59 L 13.269 5.59 L 12.46 2.141 L 11.555 2.141 L 12.8 6.661 L 13.717 6.661 L 14.647 3.332 L 14.718 3.332 L 15.652 6.661 L 16.577 6.661 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 18.846 6.661 L 19.738 6.661 L 19.738 4.017 C 19.738 3.311 20.157 2.871 20.817 2.871 C 21.477 2.871 21.792 3.232 21.792 3.959 L 21.792 6.661 L 22.685 6.661 L 22.685 3.735 C 22.685 2.66 22.129 2.054 21.12 2.054 C 20.439 2.054 19.991 2.357 19.771 2.859 L 19.705 2.859 L 19.705 2.141 L 18.846 2.141 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 24.09 6.661 L 24.982 6.661 L 24.982 0.377 L 24.09 0.377 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 28.338 6.748 C 29.658 6.748 30.468 5.864 30.468 4.399 C 30.468 2.942 29.654 2.054 28.338 2.054 C 27.019 2.054 26.205 2.942 26.205 4.399 C 26.205 5.864 27.014 6.748 28.338 6.748 Z M 28.338 5.955 C 27.562 5.955 27.127 5.386 27.127 4.399 C 27.127 3.419 27.562 2.846 28.338 2.846 C 29.11 2.846 29.55 3.419 29.55 4.399 C 29.55 5.382 29.11 5.955 28.338 5.955 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 33.126 5.984 C 32.641 5.984 32.288 5.748 32.288 5.341 C 32.288 4.942 32.57 4.731 33.193 4.689 L 34.297 4.619 L 34.297 4.996 C 34.297 5.557 33.799 5.984 33.126 5.984 Z M 32.898 6.735 C 33.492 6.735 33.985 6.478 34.255 6.026 L 34.326 6.026 L 34.326 6.661 L 35.185 6.661 L 35.185 3.573 C 35.185 2.618 34.546 2.054 33.413 2.054 C 32.388 2.054 31.657 2.552 31.566 3.328 L 32.429 3.328 C 32.529 3.008 32.873 2.826 33.371 2.826 C 33.981 2.826 34.297 3.095 34.297 3.573 L 34.297 3.963 L 33.072 4.033 C 31.997 4.1 31.391 4.569 31.391 5.382 C 31.391 6.208 32.026 6.735 32.898 6.735 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 38.213 6.735 C 38.836 6.735 39.363 6.441 39.632 5.947 L 39.703 5.947 L 39.703 6.661 L 40.558 6.661 L 40.558 0.377 L 39.666 0.377 L 39.666 2.859 L 39.599 2.859 C 39.354 2.361 38.831 2.066 38.213 2.066 C 37.072 2.066 36.337 2.971 36.337 4.399 C 36.337 5.831 37.063 6.735 38.213 6.735 Z M 38.466 2.867 C 39.213 2.867 39.682 3.461 39.682 4.403 C 39.682 5.349 39.217 5.934 38.466 5.934 C 37.711 5.934 37.258 5.357 37.258 4.399 C 37.258 3.448 37.715 2.867 38.466 2.867 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 46.344 6.748 C 47.664 6.748 48.474 5.864 48.474 4.399 C 48.474 2.942 47.66 2.054 46.344 2.054 C 45.025 2.054 44.211 2.942 44.211 4.399 C 44.211 5.864 45.02 6.748 46.344 6.748 Z M 46.344 5.955 C 45.568 5.955 45.133 5.386 45.133 4.399 C 45.133 3.419 45.568 2.846 46.344 2.846 C 47.116 2.846 47.556 3.419 47.556 4.399 C 47.556 5.382 47.116 5.955 46.344 5.955 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 49.655 6.661 L 50.547 6.661 L 50.547 4.017 C 50.547 3.311 50.966 2.871 51.626 2.871 C 52.286 2.871 52.602 3.232 52.602 3.959 L 52.602 6.661 L 53.494 6.661 L 53.494 3.735 C 53.494 2.66 52.938 2.054 51.929 2.054 C 51.248 2.054 50.8 2.357 50.58 2.859 L 50.514 2.859 L 50.514 2.141 L 49.655 2.141 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 57.604 1.016 L 57.604 2.162 L 56.886 2.162 L 56.886 2.913 L 57.604 2.913 L 57.604 5.465 C 57.604 6.337 57.998 6.686 58.99 6.686 C 59.164 6.686 59.33 6.665 59.475 6.64 L 59.475 5.897 C 59.351 5.909 59.272 5.918 59.135 5.918 C 58.691 5.918 58.496 5.71 58.496 5.237 L 58.496 2.913 L 59.475 2.913 L 59.475 2.162 L 58.496 2.162 L 58.496 1.016 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 60.673 6.661 L 61.566 6.661 L 61.566 4.021 C 61.566 3.336 61.972 2.875 62.703 2.875 C 63.334 2.875 63.67 3.241 63.67 3.963 L 63.67 6.661 L 64.562 6.661 L 64.562 3.743 C 64.562 2.668 63.969 2.058 63.006 2.058 C 62.325 2.058 61.848 2.361 61.628 2.867 L 61.557 2.867 L 61.557 0.377 L 60.673 0.377 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 67.781 2.813 C 68.441 2.813 68.873 3.274 68.894 3.984 L 66.611 3.984 C 66.661 3.278 67.121 2.813 67.781 2.813 Z M 68.889 5.44 C 68.723 5.793 68.354 5.988 67.814 5.988 C 67.1 5.988 66.64 5.486 66.611 4.693 L 66.611 4.644 L 69.802 4.644 L 69.802 4.332 C 69.802 2.913 69.043 2.054 67.785 2.054 C 66.511 2.054 65.702 2.971 65.702 4.415 C 65.702 5.86 66.495 6.748 67.79 6.748 C 68.823 6.748 69.545 6.25 69.749 5.44 Z\" fill=\"rgb(255,255,255)\"></path></svg>',svgContentId:9312134358,withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-59sr61\",\"data-framer-name\":\"Apple logo\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"xoFvY3DRy\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 19 23\"><path d=\"M 15.769 12.262 C 15.791 10.581 16.693 8.99 18.126 8.11 C 17.222 6.82 15.709 6.002 14.134 5.952 C 12.455 5.776 10.827 6.957 9.971 6.957 C 9.099 6.957 7.782 5.97 6.363 5.999 C 4.514 6.059 2.79 7.11 1.89 8.727 C -0.044 12.075 1.399 16.996 3.251 19.703 C 4.178 21.028 5.261 22.509 6.679 22.456 C 8.066 22.399 8.584 21.572 10.258 21.572 C 11.917 21.572 12.403 22.456 13.849 22.423 C 15.338 22.399 16.275 21.092 17.17 19.754 C 17.836 18.809 18.348 17.766 18.688 16.661 C 16.939 15.921 15.771 14.161 15.769 12.262 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 13.037 4.172 C 13.849 3.198 14.249 1.946 14.152 0.682 C 12.912 0.812 11.767 1.404 10.944 2.341 C 10.14 3.257 9.721 4.487 9.801 5.703 C 11.041 5.715 12.26 5.139 13.037 4.172 Z\" fill=\"rgb(255,255,255)\"></path></svg>',svgContentId:12106231418,withExternalLayout:true})]})}),/*#__PURE__*/_jsx(Link,{href:\"https://play.google.com/store/apps/details?id=au.com.laamp.app&hl=id&gl=US\",motionChild:true,nodeId:\"T1RPrDqaO\",openInNewTab:true,scopeId:\"Wt9bd8AsD\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-165sw1y framer-1n5w1lp\",\"data-border\":true,\"data-framer-name\":\"Mobile app store badge\",layoutDependency:layoutDependency,layoutId:\"T1RPrDqaO\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(166, 166, 166)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(0, 0, 0)\",borderBottomLeftRadius:5,borderBottomRightRadius:5,borderTopLeftRadius:5,borderTopRightRadius:5},children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1qnmsbd\",\"data-framer-name\":\"Google Play\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:18,intrinsicWidth:85,layoutDependency:layoutDependency,layoutId:\"MKtXOsqQ3\",svg:'<svg width=\"85\" height=\"18\" viewBox=\"0 0 85 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M27.136 4.71181C24.784 4.71181 22.867 6.50081 22.867 8.96481C22.867 11.4138 24.784 13.2178 27.136 13.2178C29.489 13.2178 31.406 11.4138 31.406 8.96481C31.405 6.50081 29.488 4.71181 27.136 4.71181ZM27.136 11.5438C25.847 11.5438 24.736 10.4808 24.736 8.96581C24.736 7.43481 25.848 6.38781 27.136 6.38781C28.425 6.38781 29.536 7.43481 29.536 8.96581C29.536 10.4798 28.425 11.5438 27.136 11.5438ZM17.822 4.71181C15.47 4.71181 13.553 6.50081 13.553 8.96481C13.553 11.4138 15.47 13.2178 17.822 13.2178C20.175 13.2178 22.092 11.4138 22.092 8.96481C22.092 6.50081 20.175 4.71181 17.822 4.71181ZM17.822 11.5438C16.533 11.5438 15.422 10.4808 15.422 8.96581C15.422 7.43481 16.534 6.38781 17.822 6.38781C19.111 6.38781 20.222 7.43481 20.222 8.96581C20.223 10.4798 19.111 11.5438 17.822 11.5438ZM6.74399 6.01781V7.82181H11.062C10.933 8.83681 10.595 9.57781 10.079 10.0928C9.45099 10.7208 8.46799 11.4138 6.74399 11.4138C4.08599 11.4138 2.00799 9.27081 2.00799 6.61281C2.00799 3.95481 4.08599 1.81181 6.74399 1.81181C8.17799 1.81181 9.22499 2.37581 9.99799 3.10081L11.271 1.82781C10.191 0.796813 8.75799 0.00781339 6.74399 0.00781339C3.10299 0.00781339 0.041992 2.97181 0.041992 6.61281C0.041992 10.2538 3.10299 13.2178 6.74399 13.2178C8.70899 13.2178 10.192 12.5728 11.351 11.3648C12.543 10.1728 12.914 8.49681 12.914 7.14381C12.914 6.72581 12.882 6.33881 12.817 6.01681H6.74399V6.01781ZM52.052 7.41881C51.698 6.46881 50.618 4.71181 48.411 4.71181C46.22 4.71181 44.399 6.43581 44.399 8.96481C44.399 11.3488 46.204 13.2178 48.62 13.2178C50.569 13.2178 51.697 12.0258 52.165 11.3328L50.715 10.3658C50.232 11.0748 49.571 11.5418 48.62 11.5418C47.67 11.5418 46.993 11.1068 46.558 10.2528L52.245 7.90081L52.052 7.41881ZM46.252 8.83681C46.204 7.19281 47.525 6.35581 48.476 6.35581C49.217 6.35581 49.845 6.72681 50.055 7.25781L46.252 8.83681ZM41.629 12.9608H43.497V0.459813H41.629V12.9608ZM38.567 5.66281H38.503C38.084 5.16281 37.278 4.71181 36.264 4.71181C34.137 4.71181 32.188 6.58081 32.188 8.98181C32.188 11.3658 34.137 13.2188 36.264 13.2188C37.279 13.2188 38.084 12.7678 38.503 12.2528H38.567V12.8648C38.567 14.4918 37.697 15.3618 36.296 15.3618C35.152 15.3618 34.443 14.5408 34.153 13.8478L32.526 14.5248C32.993 15.6518 34.233 17.0378 36.296 17.0378C38.487 17.0378 40.34 15.7488 40.34 12.6068V4.97081H38.568V5.66281H38.567ZM36.425 11.5438C35.136 11.5438 34.057 10.4638 34.057 8.98181C34.057 7.48281 35.136 6.38781 36.425 6.38781C37.697 6.38781 38.696 7.48281 38.696 8.98181C38.696 10.4638 37.697 11.5438 36.425 11.5438ZM60.806 0.459813H56.335V12.9608H58.2V8.22481H60.805C62.873 8.22481 64.907 6.72781 64.907 4.34281C64.907 1.95781 62.874 0.459813 60.806 0.459813ZM60.854 6.48481H58.2V2.19981H60.854C62.249 2.19981 63.041 3.35481 63.041 4.34281C63.041 5.31081 62.249 6.48481 60.854 6.48481ZM72.386 4.68981C71.035 4.68981 69.636 5.28481 69.057 6.60381L70.713 7.29481C71.067 6.60381 71.727 6.37781 72.418 6.37781C73.383 6.37781 74.364 6.95681 74.38 7.98581V8.11481C74.042 7.92181 73.318 7.63281 72.434 7.63281C70.649 7.63281 68.831 8.61381 68.831 10.4468C68.831 12.1198 70.295 13.1968 71.935 13.1968C73.189 13.1968 73.881 12.6338 74.315 11.9738H74.379V12.9388H76.181V8.14581C76.182 5.92781 74.524 4.68981 72.386 4.68981ZM72.16 11.5408C71.55 11.5408 70.697 11.2348 70.697 10.4788C70.697 9.51381 71.759 9.14381 72.676 9.14381C73.495 9.14381 73.882 9.32081 74.38 9.56181C74.235 10.7208 73.238 11.5408 72.16 11.5408ZM82.743 4.96281L80.604 10.3828H80.54L78.32 4.96281H76.31L79.639 12.5378L77.741 16.7518H79.687L84.818 4.96281H82.743ZM65.937 12.9608H67.802V0.459813H65.937V12.9608Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1opcv0j\",\"data-framer-name\":\"Get it on\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:10,intrinsicWidth:42,layoutDependency:layoutDependency,layoutId:\"upr24C6DL\",svg:'<svg width=\"42\" height=\"10\" viewBox=\"-1 -1 42 10\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M6.41805 4.20413C6.41805 5.04213 6.17005 5.70913 5.67305 6.20713C5.10905 6.79913 4.37305 7.09513 3.46905 7.09513C2.60305 7.09513 1.86605 6.79512 1.26105 6.19512C0.655051 5.59412 0.352051 4.85012 0.352051 3.96212C0.352051 3.07312 0.655051 2.32912 1.26105 1.72912C1.86605 1.12812 2.60305 0.828126 3.46905 0.828126C3.89905 0.828126 4.31005 0.912125 4.70005 1.07913C5.09105 1.24713 5.40405 1.47013 5.63805 1.74913L5.11105 2.27713C4.71405 1.80213 4.16705 1.56513 3.46805 1.56513C2.83605 1.56513 2.29005 1.78713 1.82905 2.23113C1.36805 2.67513 1.13805 3.25213 1.13805 3.96113C1.13805 4.67013 1.36805 5.24712 1.82905 5.69112C2.29005 6.13512 2.83605 6.35712 3.46805 6.35712C4.13805 6.35712 4.69705 6.13412 5.14405 5.68712C5.43405 5.39612 5.60205 4.99112 5.64705 4.47212H3.46805V3.75113H6.37505C6.40505 3.90813 6.41805 4.05913 6.41805 4.20413Z\" fill=\"white\"/>\\n<path d=\"M11.0281 1.69818H8.29615V3.60018H10.7601V4.32118H8.29615V6.22318H11.0281V6.96118H7.52515V0.961182H11.0281V1.69818Z\" fill=\"white\"/>\\n<path d=\"M14.279 6.96118H13.508V1.69818H11.832V0.961182H15.955V1.69818H14.279V6.96118Z\" fill=\"white\"/>\\n<path d=\"M18.938 6.96118V0.961182H19.709V6.96118H18.938Z\" fill=\"white\"/>\\n<path d=\"M23.1281 6.96118H22.3572V1.69818H20.6812V0.961182H24.8042V1.69818H23.1281V6.96118Z\" fill=\"white\"/>\\n<path d=\"M32.6089 6.18617C32.0189 6.79217 31.2859 7.09517 30.4089 7.09517C29.5319 7.09517 28.7989 6.79217 28.2099 6.18617C27.6199 5.58017 27.3259 4.83817 27.3259 3.96117C27.3259 3.08417 27.6199 2.34217 28.2099 1.73617C28.7989 1.13017 29.5319 0.826172 30.4089 0.826172C31.2809 0.826172 32.0129 1.13117 32.6049 1.74017C33.1969 2.34917 33.4929 3.08917 33.4929 3.96117C33.4929 4.83817 33.1979 5.58017 32.6089 6.18617ZM28.7789 5.68317C29.2229 6.13317 29.7659 6.35717 30.4089 6.35717C31.0519 6.35717 31.5959 6.13217 32.0389 5.68317C32.4829 5.23317 32.7059 4.65917 32.7059 3.96117C32.7059 3.26317 32.4829 2.68917 32.0389 2.23917C31.5959 1.78917 31.0519 1.56517 30.4089 1.56517C29.7659 1.56517 29.2229 1.79017 28.7789 2.23917C28.3359 2.68917 28.1129 3.26317 28.1129 3.96117C28.1129 4.65917 28.3359 5.23317 28.7789 5.68317Z\" fill=\"white\"/>\\n<path d=\"M34.5749 6.96118V0.961182H35.513L38.429 5.62818H38.4619L38.429 4.47218V0.961182H39.1999V6.96118H38.3949L35.344 2.06718H35.3109L35.344 3.22318V6.96118H34.5749Z\" fill=\"white\"/>\\n<path d=\"M6.41805 4.20413C6.41805 5.04213 6.17005 5.70913 5.67305 6.20713C5.10905 6.79913 4.37305 7.09513 3.46905 7.09513C2.60305 7.09513 1.86605 6.79512 1.26105 6.19512C0.655051 5.59412 0.352051 4.85012 0.352051 3.96212C0.352051 3.07312 0.655051 2.32912 1.26105 1.72912C1.86605 1.12812 2.60305 0.828126 3.46905 0.828126C3.89905 0.828126 4.31005 0.912125 4.70005 1.07913C5.09105 1.24713 5.40405 1.47013 5.63805 1.74913L5.11105 2.27713C4.71405 1.80213 4.16705 1.56513 3.46805 1.56513C2.83605 1.56513 2.29005 1.78713 1.82905 2.23113C1.36805 2.67513 1.13805 3.25213 1.13805 3.96113C1.13805 4.67013 1.36805 5.24712 1.82905 5.69112C2.29005 6.13512 2.83605 6.35712 3.46805 6.35712C4.13805 6.35712 4.69705 6.13412 5.14405 5.68712C5.43405 5.39612 5.60205 4.99112 5.64705 4.47212H3.46805V3.75113H6.37505C6.40505 3.90813 6.41805 4.05913 6.41805 4.20413Z\" stroke=\"white\" stroke-width=\"0.2\" stroke-miterlimit=\"10\"/>\\n<path d=\"M11.0281 1.69818H8.29615V3.60018H10.7601V4.32118H8.29615V6.22318H11.0281V6.96118H7.52515V0.961182H11.0281V1.69818Z\" stroke=\"white\" stroke-width=\"0.2\" stroke-miterlimit=\"10\"/>\\n<path d=\"M14.279 6.96118H13.508V1.69818H11.832V0.961182H15.955V1.69818H14.279V6.96118Z\" stroke=\"white\" stroke-width=\"0.2\" stroke-miterlimit=\"10\"/>\\n<path d=\"M18.938 6.96118V0.961182H19.709V6.96118H18.938Z\" stroke=\"white\" stroke-width=\"0.2\" stroke-miterlimit=\"10\"/>\\n<path d=\"M23.1281 6.96118H22.3572V1.69818H20.6812V0.961182H24.8042V1.69818H23.1281V6.96118Z\" stroke=\"white\" stroke-width=\"0.2\" stroke-miterlimit=\"10\"/>\\n<path d=\"M32.6089 6.18617C32.0189 6.79217 31.2859 7.09517 30.4089 7.09517C29.5319 7.09517 28.7989 6.79217 28.2099 6.18617C27.6199 5.58017 27.3259 4.83817 27.3259 3.96117C27.3259 3.08417 27.6199 2.34217 28.2099 1.73617C28.7989 1.13017 29.5319 0.826172 30.4089 0.826172C31.2809 0.826172 32.0129 1.13117 32.6049 1.74017C33.1969 2.34917 33.4929 3.08917 33.4929 3.96117C33.4929 4.83817 33.1979 5.58017 32.6089 6.18617ZM28.7789 5.68317C29.2229 6.13317 29.7659 6.35717 30.4089 6.35717C31.0519 6.35717 31.5959 6.13217 32.0389 5.68317C32.4829 5.23317 32.7059 4.65917 32.7059 3.96117C32.7059 3.26317 32.4829 2.68917 32.0389 2.23917C31.5959 1.78917 31.0519 1.56517 30.4089 1.56517C29.7659 1.56517 29.2229 1.79017 28.7789 2.23917C28.3359 2.68917 28.1129 3.26317 28.1129 3.96117C28.1129 4.65917 28.3359 5.23317 28.7789 5.68317Z\" stroke=\"white\" stroke-width=\"0.2\" stroke-miterlimit=\"10\"/>\\n<path d=\"M34.5749 6.96118V0.961182H35.513L38.429 5.62818H38.4619L38.429 4.47218V0.961182H39.1999V6.96118H38.3949L35.344 2.06718H35.3109L35.344 3.22318V6.96118H34.5749Z\" stroke=\"white\" stroke-width=\"0.2\" stroke-miterlimit=\"10\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-14hpnwc\",\"data-framer-name\":\"Google Play logo\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:26,intrinsicWidth:25,layoutDependency:layoutDependency,layoutId:\"sV8KJbwWp\",svg:'<svg width=\"25\" height=\"26\" viewBox=\"0 0 25 26\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g filter=\"url(#filter0_ii_1090_139)\">\\n<path d=\"M1.4359 0.498781C1.1449 0.806781 0.9729 1.28478 0.9729 1.90378V24.0198C0.9729 24.6398 1.1449 25.1168 1.4359 25.4248L1.5099 25.4968L13.8989 13.1078V12.9618V12.8158L1.5099 0.425781L1.4359 0.498781Z\" fill=\"url(#paint0_linear_1090_139)\"/>\\n<path d=\"M18.0279 17.2385L13.8989 13.1075V12.9615V12.8155L18.0289 8.68555L18.1219 8.73855L23.0149 11.5185C24.4119 12.3125 24.4119 13.6115 23.0149 14.4065L18.1219 17.1865L18.0279 17.2385Z\" fill=\"url(#paint1_linear_1090_139)\"/>\\n<g filter=\"url(#filter1_i_1090_139)\">\\n<path d=\"M18.1218 17.1859L13.8978 12.9619L1.43579 25.4249C1.89579 25.9129 2.65679 25.9729 3.51379 25.4869L18.1218 17.1859Z\" fill=\"url(#paint2_linear_1090_139)\"/>\\n</g>\\n<path d=\"M18.1218 8.73764L3.51379 0.437638C2.65679 -0.0493623 1.89579 0.011638 1.43579 0.499638L13.8988 12.9626L18.1218 8.73764Z\" fill=\"url(#paint3_linear_1090_139)\"/>\\n</g>\\n<defs>\\n<filter id=\"filter0_ii_1090_139\" x=\"0.9729\" y=\"0.101562\" width=\"23.0898\" height=\"25.7207\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"BackgroundImageFix\" result=\"shape\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dy=\"-0.15\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"arithmetic\" k2=\"-1\" k3=\"1\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.12 0\"/>\\n<feBlend mode=\"normal\" in2=\"shape\" result=\"effect1_innerShadow_1090_139\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dy=\"0.15\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"arithmetic\" k2=\"-1\" k3=\"1\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.25 0\"/>\\n<feBlend mode=\"normal\" in2=\"effect1_innerShadow_1090_139\" result=\"effect2_innerShadow_1090_139\"/>\\n</filter>\\n<filter id=\"filter1_i_1090_139\" x=\"1.43579\" y=\"12.9619\" width=\"16.686\" height=\"12.8604\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"BackgroundImageFix\" result=\"shape\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dy=\"-0.15\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"arithmetic\" k2=\"-1\" k3=\"1\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.08 0\"/>\\n<feBlend mode=\"normal\" in2=\"shape\" result=\"effect1_innerShadow_1090_139\"/>\\n</filter>\\n<linearGradient id=\"paint0_linear_1090_139\" x1=\"12.8007\" y1=\"1.66978\" x2=\"-3.9813\" y2=\"18.4518\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#00A0FF\"/>\\n<stop offset=\"0.0066\" stop-color=\"#00A1FF\"/>\\n<stop offset=\"0.2601\" stop-color=\"#00BEFF\"/>\\n<stop offset=\"0.5122\" stop-color=\"#00D2FF\"/>\\n<stop offset=\"0.7604\" stop-color=\"#00DFFF\"/>\\n<stop offset=\"1\" stop-color=\"#00E3FF\"/>\\n</linearGradient>\\n<linearGradient id=\"paint1_linear_1090_139\" x1=\"24.8334\" y1=\"12.9615\" x2=\"0.637527\" y2=\"12.9615\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#FFE000\"/>\\n<stop offset=\"0.4087\" stop-color=\"#FFBD00\"/>\\n<stop offset=\"0.7754\" stop-color=\"#FFA500\"/>\\n<stop offset=\"1\" stop-color=\"#FF9C00\"/>\\n</linearGradient>\\n<linearGradient id=\"paint2_linear_1090_139\" x1=\"15.8279\" y1=\"15.2558\" x2=\"-6.93061\" y2=\"38.0143\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#FF3A44\"/>\\n<stop offset=\"1\" stop-color=\"#C31162\"/>\\n</linearGradient>\\n<linearGradient id=\"paint3_linear_1090_139\" x1=\"-1.70281\" y1=\"-6.86256\" x2=\"8.45949\" y2=\"3.29974\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#32A071\"/>\\n<stop offset=\"0.0685\" stop-color=\"#2DA771\"/>\\n<stop offset=\"0.4762\" stop-color=\"#15CF74\"/>\\n<stop offset=\"0.8009\" stop-color=\"#06E775\"/>\\n<stop offset=\"1\" stop-color=\"#00F076\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true})]})})]})})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-144kj7u\",\"data-border\":true,\"data-framer-name\":\"Copyright\",layoutDependency:layoutDependency,layoutId:\"MEb1A3gJF\",style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgb(234, 236, 240)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\"},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-87ozjm\",\"data-framer-name\":\"Text\",layoutDependency:layoutDependency,layoutId:\"AIaihmOri\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1emi006\",\"data-framer-name\":\"LAAMP\",layoutDependency:layoutDependency,layoutId:\"JpivjZkdM\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-xdx817\",\"data-framer-name\":\"Year\",layoutDependency:layoutDependency,layoutId:\"oDxHNPIwZ\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"15px\",\"--framer-line-height\":\"21px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-4b734c19-66c2-4a29-843d-728386405f0a, rgb(115, 133, 158)))\"},children:\"\\xa9 2017-\"})}),className:\"framer-14qk6fc\",\"data-framer-name\":\"Footer text\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"jGGeQV4vv\",style:{\"--extracted-r6o4lv\":\"var(--token-4b734c19-66c2-4a29-843d-728386405f0a, rgb(115, 133, 158))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1qqps8o-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"zxer_nhre-container\",nodeId:\"zxer_nhre\",rendersWithMotion:true,scopeId:\"Wt9bd8AsD\",children:/*#__PURE__*/_jsx(TimeDate,{color:\"var(--token-4b734c19-66c2-4a29-843d-728386405f0a, rgb(96, 113, 138))\",font:{fontFamily:'\"Inter\", sans-serif',fontSize:\"15px\",fontStyle:\"normal\",letterSpacing:\"0em\",lineHeight:\"21px\"},height:\"100%\",id:\"zxer_nhre\",layoutId:\"zxer_nhre\",monthFormat:\"long\",outputType:\"date\",showMinutes:true,showMonth:false,showSeconds:true,showWeekday:false,showYear:true,tabularFont:true,timeFormat:\"24h\",width:\"100%\"})})})]}),isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"15px\",\"--framer-line-height\":\"21px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-4b734c19-66c2-4a29-843d-728386405f0a, rgb(115, 133, 158)))\"},children:\"LAAMP.\"})}),className:\"framer-175drq8\",\"data-framer-name\":\"Footer text\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"f9Udai1PM\",style:{\"--extracted-r6o4lv\":\"var(--token-4b734c19-66c2-4a29-843d-728386405f0a, rgb(115, 133, 158))\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"15px\",\"--framer-line-height\":\"21px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-4b734c19-66c2-4a29-843d-728386405f0a, rgb(115, 133, 158)))\"},children:\"LAAMP. All rights reserved.\"})}),className:\"framer-o4kbdx\",\"data-framer-name\":\"Footer text\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"KNpusTK8Y\",style:{\"--extracted-r6o4lv\":\"var(--token-4b734c19-66c2-4a29-843d-728386405f0a, rgb(115, 133, 158))\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({zG1JEn_a7:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"15px\",\"--framer-line-height\":\"21px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-4b734c19-66c2-4a29-843d-728386405f0a, rgb(115, 133, 158)))\"},children:\"All rights reserved.\"})})}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1kfyxab\",\"data-framer-name\":\"Social icons\",layoutDependency:layoutDependency,layoutId:\"ZQEp_Du3P\",children:/*#__PURE__*/_jsx(Link,{href:\"https://www.linkedin.com/company/laamp/\",motionChild:true,nodeId:\"VlrgP4M3y\",scopeId:\"Wt9bd8AsD\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-lrivmi framer-1n5w1lp\",\"data-framer-name\":\"Social icon\",layoutDependency:layoutDependency,layoutId:\"VlrgP4M3y\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-10r7b86\",\"data-framer-name\":\"Group\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:25,intrinsicWidth:24,layoutDependency:layoutDependency,layoutId:\"ovq3psJs2\",svg:'<svg width=\"24\" height=\"25\" viewBox=\"0 0 24 25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M22.2234 0.960938H1.77187C0.792187 0.960938 0 1.73438 0 2.69063V23.2266C0 24.1828 0.792187 24.9609 1.77187 24.9609H22.2234C23.2031 24.9609 24 24.1828 24 23.2313V2.69063C24 1.73438 23.2031 0.960938 22.2234 0.960938ZM7.12031 21.4125H3.55781V9.95625H7.12031V21.4125ZM5.33906 8.39531C4.19531 8.39531 3.27188 7.47187 3.27188 6.33281C3.27188 5.19375 4.19531 4.27031 5.33906 4.27031C6.47813 4.27031 7.40156 5.19375 7.40156 6.33281C7.40156 7.46719 6.47813 8.39531 5.33906 8.39531ZM20.4516 21.4125H16.8937V15.8438C16.8937 14.5172 16.8703 12.8062 15.0422 12.8062C13.1906 12.8062 12.9094 14.2547 12.9094 15.75V21.4125H9.35625V9.95625H12.7687V11.5219H12.8156C13.2891 10.6219 14.4516 9.67031 16.1813 9.67031C19.7859 9.67031 20.4516 12.0422 20.4516 15.1266V21.4125Z\" fill=\"#98A2B3\"/>\\n</svg>\\n',withExternalLayout:true})})})})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-vndHW.framer-1n5w1lp, .framer-vndHW .framer-1n5w1lp { display: block; }\",\".framer-vndHW.framer-1nn8ssn { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 32px 0px; position: relative; width: 892px; }\",\".framer-vndHW .framer-ng8qmd { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; max-width: 1080px; overflow: visible; padding: 96px 24px 0px 24px; position: relative; width: 100%; }\",\".framer-vndHW .framer-1vunkxq { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; max-width: 320px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-vndHW .framer-n6dt76-container { flex: none; height: 27px; position: relative; width: 116px; }\",\".framer-vndHW .framer-1m2nzjc { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-vndHW .framer-116old4 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-end; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-vndHW .framer-1lp0sbt { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; max-width: 200px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-vndHW .framer-17xmn98, .framer-vndHW .framer-1ghvr82, .framer-vndHW .framer-n3uka6, .framer-vndHW .framer-1y3l8lw, .framer-vndHW .framer-3lxgnn, .framer-vndHW .framer-1rsv6r6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 8px 0px 8px 0px; position: relative; text-decoration: none; width: 100%; }\",\".framer-vndHW .framer-1l0amv6, .framer-vndHW .framer-11fmq92, .framer-vndHW .framer-wjynet, .framer-vndHW .framer-1ecszx2, .framer-vndHW .framer-136yxl3, .framer-vndHW .framer-py7dfa, .framer-vndHW .framer-14qk6fc, .framer-vndHW .framer-175drq8, .framer-vndHW .framer-o4kbdx { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-vndHW .framer-1t2ozub, .framer-vndHW .framer-xcfbrd { 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: min-content; }\",\".framer-vndHW .framer-1gb09dh { flex: none; height: 40px; overflow: visible; position: relative; text-decoration: none; width: 100%; }\",\".framer-vndHW .framer-lhz5i3 { bottom: 7px; flex: none; left: 34px; position: absolute; top: 17px; width: 76px; }\",\".framer-vndHW .framer-degsv4 { flex: none; height: 7px; left: 35px; position: absolute; top: 8px; width: 70px; }\",\".framer-vndHW .framer-59sr61 { flex: none; height: 23px; left: 9px; position: absolute; top: 8px; width: 19px; }\",\".framer-vndHW .framer-165sw1y { flex: none; height: 40px; overflow: hidden; position: relative; text-decoration: none; width: 135px; will-change: var(--framer-will-change-override, transform); }\",\".framer-vndHW .framer-1qnmsbd { bottom: 6px; flex: none; left: 41px; position: absolute; top: 17px; width: 85px; }\",\".framer-vndHW .framer-1opcv0j { flex: none; height: 8px; left: 40px; position: absolute; top: 5px; width: 41px; }\",\".framer-vndHW .framer-14hpnwc { flex: none; height: 26px; left: 9px; position: absolute; top: 7px; width: 25px; }\",\".framer-vndHW .framer-144kj7u { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; max-width: 1080px; overflow: visible; padding: 32px 24px 0px 24px; position: relative; width: 100%; }\",\".framer-vndHW .framer-87ozjm { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-vndHW .framer-1emi006, .framer-vndHW .framer-xdx817 { 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: min-content; }\",\".framer-vndHW .framer-1qqps8o-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-vndHW .framer-1kfyxab { 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: 0px; position: relative; width: min-content; }\",\".framer-vndHW .framer-lrivmi { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 24px); overflow: hidden; position: relative; text-decoration: none; width: 24px; }\",\".framer-vndHW .framer-10r7b86 { flex: none; height: 25px; left: 0px; position: absolute; top: 0px; width: 24px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-vndHW.framer-1nn8ssn, .framer-vndHW .framer-ng8qmd, .framer-vndHW .framer-1vunkxq, .framer-vndHW .framer-116old4, .framer-vndHW .framer-1lp0sbt, .framer-vndHW .framer-17xmn98, .framer-vndHW .framer-1ghvr82, .framer-vndHW .framer-n3uka6, .framer-vndHW .framer-1y3l8lw, .framer-vndHW .framer-3lxgnn, .framer-vndHW .framer-1rsv6r6, .framer-vndHW .framer-1t2ozub, .framer-vndHW .framer-xcfbrd, .framer-vndHW .framer-144kj7u, .framer-vndHW .framer-87ozjm, .framer-vndHW .framer-1emi006, .framer-vndHW .framer-xdx817, .framer-vndHW .framer-1kfyxab { gap: 0px; } .framer-vndHW.framer-1nn8ssn > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } .framer-vndHW.framer-1nn8ssn > :first-child, .framer-vndHW .framer-1vunkxq > :first-child, .framer-vndHW .framer-1lp0sbt > :first-child, .framer-vndHW .framer-1t2ozub > :first-child, .framer-vndHW .framer-xcfbrd > :first-child { margin-top: 0px; } .framer-vndHW.framer-1nn8ssn > :last-child, .framer-vndHW .framer-1vunkxq > :last-child, .framer-vndHW .framer-1lp0sbt > :last-child, .framer-vndHW .framer-1t2ozub > :last-child, .framer-vndHW .framer-xcfbrd > :last-child { margin-bottom: 0px; } .framer-vndHW .framer-ng8qmd > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } .framer-vndHW .framer-ng8qmd > :first-child, .framer-vndHW .framer-116old4 > :first-child, .framer-vndHW .framer-17xmn98 > :first-child, .framer-vndHW .framer-1ghvr82 > :first-child, .framer-vndHW .framer-n3uka6 > :first-child, .framer-vndHW .framer-1y3l8lw > :first-child, .framer-vndHW .framer-3lxgnn > :first-child, .framer-vndHW .framer-1rsv6r6 > :first-child, .framer-vndHW .framer-144kj7u > :first-child, .framer-vndHW .framer-87ozjm > :first-child, .framer-vndHW .framer-1emi006 > :first-child, .framer-vndHW .framer-xdx817 > :first-child, .framer-vndHW .framer-1kfyxab > :first-child { margin-left: 0px; } .framer-vndHW .framer-ng8qmd > :last-child, .framer-vndHW .framer-116old4 > :last-child, .framer-vndHW .framer-17xmn98 > :last-child, .framer-vndHW .framer-1ghvr82 > :last-child, .framer-vndHW .framer-n3uka6 > :last-child, .framer-vndHW .framer-1y3l8lw > :last-child, .framer-vndHW .framer-3lxgnn > :last-child, .framer-vndHW .framer-1rsv6r6 > :last-child, .framer-vndHW .framer-144kj7u > :last-child, .framer-vndHW .framer-87ozjm > :last-child, .framer-vndHW .framer-1emi006 > :last-child, .framer-vndHW .framer-xdx817 > :last-child, .framer-vndHW .framer-1kfyxab > :last-child { margin-right: 0px; } .framer-vndHW .framer-1vunkxq > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-vndHW .framer-116old4 > * { margin: 0px; margin-left: calc(32px / 2); margin-right: calc(32px / 2); } .framer-vndHW .framer-1lp0sbt > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-vndHW .framer-17xmn98 > *, .framer-vndHW .framer-1ghvr82 > *, .framer-vndHW .framer-n3uka6 > *, .framer-vndHW .framer-1y3l8lw > *, .framer-vndHW .framer-3lxgnn > *, .framer-vndHW .framer-1rsv6r6 > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-vndHW .framer-1t2ozub > *, .framer-vndHW .framer-xcfbrd > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-vndHW .framer-144kj7u > *, .framer-vndHW .framer-87ozjm > * { margin: 0px; margin-left: calc(4px / 2); margin-right: calc(4px / 2); } .framer-vndHW .framer-1emi006 > *, .framer-vndHW .framer-xdx817 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-vndHW .framer-1kfyxab > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } }\",\".framer-vndHW.framer-v-182kayh.framer-1nn8ssn { gap: 48px; width: 375px; }\",\".framer-vndHW.framer-v-182kayh .framer-ng8qmd { flex-direction: column; gap: 48px; padding: 80px 24px 0px 24px; }\",\".framer-vndHW.framer-v-182kayh .framer-1vunkxq { flex: none; max-width: unset; width: 100%; }\",\".framer-vndHW.framer-v-182kayh .framer-116old4 { flex: none; width: 100%; }\",\".framer-vndHW.framer-v-182kayh .framer-1lp0sbt { max-width: unset; }\",\".framer-vndHW.framer-v-182kayh .framer-144kj7u { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 24px; }\",\".framer-vndHW.framer-v-182kayh .framer-87ozjm { flex: none; flex-wrap: wrap; order: 1; width: 100%; }\",\".framer-vndHW.framer-v-182kayh .framer-1emi006 { gap: 4px; }\",\".framer-vndHW.framer-v-182kayh .framer-xdx817, .framer-vndHW.framer-v-182kayh .framer-1kfyxab { order: 0; }\",\".framer-vndHW.framer-v-182kayh .framer-175drq8 { order: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-vndHW.framer-v-182kayh.framer-1nn8ssn, .framer-vndHW.framer-v-182kayh .framer-ng8qmd, .framer-vndHW.framer-v-182kayh .framer-144kj7u, .framer-vndHW.framer-v-182kayh .framer-1emi006 { gap: 0px; } .framer-vndHW.framer-v-182kayh.framer-1nn8ssn > *, .framer-vndHW.framer-v-182kayh .framer-ng8qmd > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-vndHW.framer-v-182kayh.framer-1nn8ssn > :first-child, .framer-vndHW.framer-v-182kayh .framer-ng8qmd > :first-child, .framer-vndHW.framer-v-182kayh .framer-144kj7u > :first-child { margin-top: 0px; } .framer-vndHW.framer-v-182kayh.framer-1nn8ssn > :last-child, .framer-vndHW.framer-v-182kayh .framer-ng8qmd > :last-child, .framer-vndHW.framer-v-182kayh .framer-144kj7u > :last-child { margin-bottom: 0px; } .framer-vndHW.framer-v-182kayh .framer-144kj7u > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-vndHW.framer-v-182kayh .framer-1emi006 > * { margin: 0px; margin-left: calc(4px / 2); margin-right: calc(4px / 2); } .framer-vndHW.framer-v-182kayh .framer-1emi006 > :first-child { margin-left: 0px; } .framer-vndHW.framer-v-182kayh .framer-1emi006 > :last-child { margin-right: 0px; } }\",...sharedStyle.css,'.framer-vndHW[data-border=\"true\"]::after, .framer-vndHW [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 470\n * @framerIntrinsicWidth 892\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"zG1JEn_a7\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerWt9bd8AsD=withCSS(Component,css,\"framer-vndHW\");export default FramerWt9bd8AsD;FramerWt9bd8AsD.displayName=\"Footer\";FramerWt9bd8AsD.defaultProps={height:470,width:892};addPropertyControls(FramerWt9bd8AsD,{variant:{options:[\"YtuSrcGf7\",\"zG1JEn_a7\"],optionTitles:[\"Variant 1\",\"Mobile\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerWt9bd8AsD,[{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:\"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\"}]},..._logoLAAMPFonts,...TimeDateFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerWt9bd8AsD\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"470\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"zG1JEn_a7\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"892\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Wt9bd8AsD.map", "// Generated by Framer (6d82f59)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Link,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const enabledGestures={cbHqEikKT:{hover:true,pressed:true},cmmcg_a3y:{hover:true,pressed:true},d5rII5wBF:{hover:true},XOZ83LILY:{hover:true}};const cycleOrder=[\"XOZ83LILY\",\"cmmcg_a3y\",\"d5rII5wBF\",\"cbHqEikKT\",\"FFNuNFTyJ\",\"rWv7yqlAN\"];const serializationHash=\"framer-8sqPK\";const variantClassNames={cbHqEikKT:\"framer-v-1lvyoc9\",cmmcg_a3y:\"framer-v-bboz87\",d5rII5wBF:\"framer-v-1sjbzjx\",FFNuNFTyJ:\"framer-v-zkxd0i\",rWv7yqlAN:\"framer-v-147m7wn\",XOZ83LILY:\"framer-v-8xlj4j\"};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={Border:\"cbHqEikKT\",Inline:\"FFNuNFTyJ\",Primary:\"cmmcg_a3y\",Secondary:\"XOZ83LILY\",Tertiary:\"d5rII5wBF\",Yellow:\"rWv7yqlAN\"};const getProps=({click,height,id,link,newTab,title,width,...props})=>{return{...props,KKjhJUwA_:newTab??props.KKjhJUwA_,roe1XYFY0:title??props.roe1XYFY0??\"Contact Sales\",variant:humanReadableVariantMap[props.variant]??props.variant??\"XOZ83LILY\",vGIfPrBUp:link??props.vGIfPrBUp,VgO7tSNDz:click??props.VgO7tSNDz};};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,roe1XYFY0,vGIfPrBUp,KKjhJUwA_,VgO7tSNDz,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"XOZ83LILY\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTapj9mrhu=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(VgO7tSNDz){const res=await VgO7tSNDz(...args);if(res===false)return false;}});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:vGIfPrBUp,nodeId:\"XOZ83LILY\",openInNewTab:KKjhJUwA_,smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{...restProps,...gestureHandlers,className:`${cx(scopingClassNames,\"framer-8xlj4j\",className,classNames)} framer-gsflt`,\"data-framer-name\":\"Secondary\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"XOZ83LILY\",onTap:onTapj9mrhu,ref:ref??ref1,style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgba(0, 0, 0, 0)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",backgroundColor:\"rgba(238, 244, 250, 0.2)\",borderBottomLeftRadius:4,borderBottomRightRadius:4,borderTopLeftRadius:4,borderTopRightRadius:4,...style},variants:{\"cbHqEikKT-hover\":{\"--border-color\":\"var(--token-13e6f3ca-15c9-4f7b-8059-531819bca5ff, rgb(28, 133, 232))\"},\"cbHqEikKT-pressed\":{\"--border-color\":\"var(--token-13e6f3ca-15c9-4f7b-8059-531819bca5ff, rgb(28, 133, 232))\",backgroundColor:\"rgba(28, 133, 232, 0.06)\"},\"cmmcg_a3y-hover\":{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",backgroundColor:\"rgb(21, 94, 162)\"},\"cmmcg_a3y-pressed\":{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",backgroundColor:\"rgb(21, 94, 162)\"},\"d5rII5wBF-hover\":{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",backgroundColor:\"rgba(238, 244, 250, 0.1)\"},\"XOZ83LILY-hover\":{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",backgroundColor:\"rgba(238, 244, 250, 0.5)\"},cbHqEikKT:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(208, 213, 221)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgba(238, 244, 250, 0)\"},cmmcg_a3y:{backgroundColor:\"var(--token-13e6f3ca-15c9-4f7b-8059-531819bca5ff, rgb(28, 133, 232))\"},d5rII5wBF:{backgroundColor:\"rgba(0, 0, 0, 0)\"},FFNuNFTyJ:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",backgroundColor:\"rgba(0, 0, 0, 0)\"},rWv7yqlAN:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",backgroundColor:\"rgb(255, 158, 45)\"}},...addPropertyOverrides({\"cbHqEikKT-hover\":{\"data-framer-name\":undefined},\"cbHqEikKT-pressed\":{\"data-framer-name\":undefined},\"cmmcg_a3y-hover\":{\"data-framer-name\":undefined},\"cmmcg_a3y-pressed\":{\"data-framer-name\":undefined},\"d5rII5wBF-hover\":{\"data-framer-name\":undefined},\"XOZ83LILY-hover\":{\"data-framer-name\":undefined},cbHqEikKT:{\"data-border\":true,\"data-framer-name\":\"Border\"},cmmcg_a3y:{\"data-framer-name\":\"Primary\"},d5rII5wBF:{\"data-framer-name\":\"Tertiary\"},FFNuNFTyJ:{\"data-framer-name\":\"Inline\"},rWv7yqlAN:{\"data-framer-name\":\"Yellow\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter-SemiBold\", \"Inter\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Contact Sales\"})}),className:\"framer-10hn5v6\",\"data-framer-name\":\"Text\",fonts:[\"Inter-SemiBold\"],layoutDependency:layoutDependency,layoutId:\"fvaxpHX4z\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"16px\"},text:roe1XYFY0,variants:{cbHqEikKT:{\"--extracted-r6o4lv\":\"var(--token-13e6f3ca-15c9-4f7b-8059-531819bca5ff, rgb(28, 133, 232))\"},rWv7yqlAN:{\"--extracted-r6o4lv\":\"var(--token-85be70c2-b61c-4abd-9f5c-b77b90908997, rgb(16, 24, 40))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({cbHqEikKT:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter-SemiBold\", \"Inter\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-13e6f3ca-15c9-4f7b-8059-531819bca5ff, rgb(28, 133, 232)))\"},children:\"Contact Sales\"})})},rWv7yqlAN:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter-SemiBold\", \"Inter\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-85be70c2-b61c-4abd-9f5c-b77b90908997, rgb(16, 24, 40)))\"},children:\"Contact Sales\"})})}},baseVariant,gestureVariant)})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-8sqPK.framer-gsflt, .framer-8sqPK .framer-gsflt { display: block; }\",\".framer-8sqPK.framer-8xlj4j { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: hidden; padding: 12px 20px 12px 20px; position: relative; text-decoration: none; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-8sqPK .framer-10hn5v6 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-8sqPK.framer-8xlj4j { gap: 0px; } .framer-8sqPK.framer-8xlj4j > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-8sqPK.framer-8xlj4j > :first-child { margin-left: 0px; } .framer-8sqPK.framer-8xlj4j > :last-child { margin-right: 0px; } }\",\".framer-8sqPK.framer-v-zkxd0i.framer-8xlj4j { padding: 12px 0px 12px 0px; }\",'.framer-8sqPK[data-border=\"true\"]::after, .framer-8sqPK [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 48\n * @framerIntrinsicWidth 147\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"cmmcg_a3y\":{\"layout\":[\"auto\",\"auto\"]},\"d5rII5wBF\":{\"layout\":[\"auto\",\"auto\"]},\"cbHqEikKT\":{\"layout\":[\"auto\",\"auto\"]},\"FFNuNFTyJ\":{\"layout\":[\"auto\",\"auto\"]},\"rWv7yqlAN\":{\"layout\":[\"auto\",\"auto\"]},\"DlGMa7_ZC\":{\"layout\":[\"auto\",\"auto\"]},\"Nunv9SdB9\":{\"layout\":[\"auto\",\"auto\"]},\"RQIXKBqQX\":{\"layout\":[\"auto\",\"auto\"]},\"B942UO9XL\":{\"layout\":[\"auto\",\"auto\"]},\"fqKCz71kT\":{\"layout\":[\"auto\",\"auto\"]},\"QnmXcDVQk\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"roe1XYFY0\":\"title\",\"vGIfPrBUp\":\"link\",\"KKjhJUwA_\":\"newTab\",\"VgO7tSNDz\":\"click\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerHOeClPO6N=withCSS(Component,css,\"framer-8sqPK\");export default FramerHOeClPO6N;FramerHOeClPO6N.displayName=\"_btn Contact Sales\";FramerHOeClPO6N.defaultProps={height:48,width:147};addPropertyControls(FramerHOeClPO6N,{variant:{options:[\"XOZ83LILY\",\"cmmcg_a3y\",\"d5rII5wBF\",\"cbHqEikKT\",\"FFNuNFTyJ\",\"rWv7yqlAN\"],optionTitles:[\"Secondary\",\"Primary\",\"Tertiary\",\"Border\",\"Inline\",\"Yellow\"],title:\"Variant\",type:ControlType.Enum},roe1XYFY0:{defaultValue:\"Contact Sales\",displayTextArea:false,title:\"Title\",type:ControlType.String},vGIfPrBUp:{title:\"Link\",type:ControlType.Link},KKjhJUwA_:{defaultValue:false,title:\"New Tab\",type:ControlType.Boolean},VgO7tSNDz:{title:\"Click\",type:ControlType.EventHandler}});addFonts(FramerHOeClPO6N,[{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/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\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerHOeClPO6N\",\"slots\":[],\"annotations\":{\"framerVariables\":\"{\\\"roe1XYFY0\\\":\\\"title\\\",\\\"vGIfPrBUp\\\":\\\"link\\\",\\\"KKjhJUwA_\\\":\\\"newTab\\\",\\\"VgO7tSNDz\\\":\\\"click\\\"}\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"147\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"48\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"cmmcg_a3y\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"d5rII5wBF\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"cbHqEikKT\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"FFNuNFTyJ\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"rWv7yqlAN\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"DlGMa7_ZC\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"Nunv9SdB9\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"RQIXKBqQX\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"B942UO9XL\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"fqKCz71kT\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"QnmXcDVQk\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./HOeClPO6N.map", "// Generated by Framer (6807895)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"I765:6698;3474:462889\",\"OVniDpW1v\",\"wS551Uv4C\",\"sAChhxLPA\",\"WRLAkaqwn\"];const serializationHash=\"framer-D5szV\";const variantClassNames={\"I765:6698;3474:462889\":\"framer-v-uamzsp\",OVniDpW1v:\"framer-v-yqr32z\",sAChhxLPA:\"framer-v-91btff\",WRLAkaqwn:\"framer-v-cq5ikd\",wS551Uv4C:\"framer-v-1pj3fid\"};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={Blog:\"wS551Uv4C\",Features:\"sAChhxLPA\",Help:\"OVniDpW1v\",Pricing:\"WRLAkaqwn\",Star:\"I765:6698;3474:462889\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"I765:6698;3474:462889\"};};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:\"I765:6698;3474:462889\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const isDisplayed=()=>{if([\"OVniDpW1v\",\"wS551Uv4C\",\"sAChhxLPA\",\"WRLAkaqwn\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if(baseVariant===\"OVniDpW1v\")return true;return false;};const isDisplayed2=()=>{if(baseVariant===\"wS551Uv4C\")return true;return false;};const isDisplayed3=()=>{if(baseVariant===\"sAChhxLPA\")return true;return false;};const isDisplayed4=()=>{if(baseVariant===\"WRLAkaqwn\")return true;return false;};const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-uamzsp\",className,classNames),\"data-framer-name\":\"Star\",layoutDependency:layoutDependency,layoutId:\"I765:6698;3474:462889\",ref:ref??ref1,style:{...style},...addPropertyOverrides({OVniDpW1v:{\"data-framer-name\":\"Help\"},sAChhxLPA:{\"data-framer-name\":\"Features\"},WRLAkaqwn:{\"data-framer-name\":\"Pricing\"},wS551Uv4C:{\"data-framer-name\":\"Blog\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-6bie2a\",\"data-framer-name\":\"Icon\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"ntae0ZdE9\",opacity:1,style:{backgroundColor:\"rgba(0, 0, 0, 0)\"},svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 3.182 19.091 L 3.182 14.545 M 3.182 5.455 L 3.182 0.909 M 0.909 3.182 L 5.455 3.182 M 0.909 16.818 L 5.455 16.818 M 10.909 1.818 L 9.333 5.917 C 9.076 6.584 8.948 6.917 8.749 7.197 C 8.572 7.446 8.355 7.663 8.106 7.84 C 7.826 8.039 7.493 8.167 6.826 8.423 L 2.727 10 L 6.826 11.577 C 7.493 11.833 7.826 11.961 8.106 12.16 C 8.355 12.337 8.572 12.554 8.749 12.803 C 8.948 13.083 9.076 13.416 9.333 14.083 L 10.909 18.182 L 12.486 14.083 C 12.742 13.416 12.87 13.083 13.07 12.803 C 13.246 12.554 13.463 12.337 13.712 12.16 C 13.992 11.961 14.325 11.833 14.992 11.577 L 19.091 10 L 14.992 8.423 C 14.325 8.167 13.992 8.039 13.712 7.84 C 13.463 7.663 13.246 7.446 13.07 7.197 C 12.87 6.917 12.742 6.584 12.486 5.917 Z\" fill=\"transparent\" stroke-width=\"2\" stroke=\"var(--token-13e6f3ca-15c9-4f7b-8059-531819bca5ff, rgb(32, 108, 181)) /* {&quot;name&quot;:&quot;brand-primary&quot;} */\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path></svg>',svgContentId:11968283143,withExternalLayout:true}),isDisplayed1()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1i29eed\",\"data-framer-name\":\"Icon\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"C0YCsAYN7\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 7.397 7.397 L 3.572 3.572 M 3.572 16.428 L 7.425 12.575 M 12.601 12.603 L 16.426 16.428 M 16.426 3.572 L 12.572 7.426 M 19.091 10 C 19.091 15.021 15.021 19.091 10 19.091 C 4.979 19.091 0.909 15.021 0.909 10 C 0.909 4.979 4.979 0.909 10 0.909 C 15.021 0.909 19.091 4.979 19.091 10 Z M 13.636 10 C 13.636 12.008 12.008 13.636 10 13.636 C 7.992 13.636 6.364 12.008 6.364 10 C 6.364 7.992 7.992 6.364 10 6.364 C 12.008 6.364 13.636 7.992 13.636 10 Z\" fill=\"transparent\" stroke-width=\"2\" stroke=\"var(--token-13e6f3ca-15c9-4f7b-8059-531819bca5ff, rgb(32, 108, 181)) /* {&quot;name&quot;:&quot;brand-primary&quot;} */\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path></svg>',svgContentId:11434253799,withExternalLayout:true,...addPropertyOverrides({OVniDpW1v:{svgContentId:12184573342}},baseVariant,gestureVariant)}),isDisplayed2()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-w52nv2\",\"data-framer-name\":\"Icon\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"zU8s1SkiM\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 16 20\"><path d=\"M 15.111 16.364 L 15.111 13.636 L 3.556 13.636 C 2.083 13.636 0.889 14.857 0.889 16.364 M 5.156 19.091 L 12.267 19.091 C 13.262 19.091 13.76 19.091 14.14 18.893 C 14.475 18.718 14.747 18.44 14.917 18.098 C 15.111 17.709 15.111 17.2 15.111 16.182 L 15.111 3.818 C 15.111 2.8 15.111 2.291 14.917 1.902 C 14.747 1.56 14.475 1.282 14.14 1.107 C 13.76 0.909 13.262 0.909 12.267 0.909 L 5.156 0.909 C 3.662 0.909 2.915 0.909 2.345 1.206 C 1.843 1.468 1.435 1.885 1.18 2.398 C 0.889 2.982 0.889 3.745 0.889 5.273 L 0.889 14.727 C 0.889 16.255 0.889 17.018 1.18 17.602 C 1.435 18.115 1.843 18.532 2.345 18.794 C 2.915 19.091 3.662 19.091 5.156 19.091 Z\" fill=\"transparent\" stroke-width=\"1.78\" stroke=\"var(--token-13e6f3ca-15c9-4f7b-8059-531819bca5ff, rgb(32, 108, 181)) /* {&quot;name&quot;:&quot;brand-primary&quot;} */\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg>',svgContentId:9544175684,withExternalLayout:true,...addPropertyOverrides({wS551Uv4C:{svgContentId:10143663051}},baseVariant,gestureVariant)}),isDisplayed3()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-11djvbe\",\"data-framer-name\":\"Vector\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"nkU115NPM\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 17 19\"><path d=\"M 10.2 2.235 L 9.067 0 L 0 0 L 0 19 L 2.267 19 L 2.267 11.176 L 7.933 11.176 L 9.067 13.412 L 17 13.412 L 17 2.235 Z M 14.733 11.176 L 10.2 11.176 L 9.067 8.941 L 2.267 8.941 L 2.267 2.235 L 7.933 2.235 L 9.067 4.471 L 14.733 4.471 Z\" fill=\"var(--token-13e6f3ca-15c9-4f7b-8059-531819bca5ff, rgb(32, 108, 181)) /* {&quot;name&quot;:&quot;brand-primary&quot;} */\"></path></svg>',svgContentId:12093096196,withExternalLayout:true,...addPropertyOverrides({sAChhxLPA:{svgContentId:11322265592}},baseVariant,gestureVariant)}),isDisplayed4()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-worz5w\",\"data-framer-name\":\"Vector\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"Lj3Sici_Y\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 16 20\"><path d=\"M 9.17 2 L 14 6.83 L 14 18 L 2 18 L 2 2 Z M 10 0 L 2 0 C 0.9 0 0 0.9 0 2 L 0 18 C 0 19.1 0.9 20 2 20 L 14 20 C 15.1 20 16 19.1 16 18 L 16 6 Z M 11 9 L 7 9 L 7 10 L 10 10 C 10.55 10 11 10.45 11 11 L 11 14 C 11 14.55 10.55 15 10 15 L 9 15 L 9 16 L 7 16 L 7 15 L 5 15 L 5 13 L 9 13 L 9 12 L 6 12 C 5.45 12 5 11.55 5 11 L 5 8 C 5 7.45 5.45 7 6 7 L 7 7 L 7 6 L 9 6 L 9 7 L 11 7 Z\" fill=\"var(--token-13e6f3ca-15c9-4f7b-8059-531819bca5ff, rgb(32, 108, 181)) /* {&quot;name&quot;:&quot;brand-primary&quot;} */\"></path></svg>',svgContentId:10747417483,withExternalLayout:true,...addPropertyOverrides({WRLAkaqwn:{svgContentId:12623402251}},baseVariant,gestureVariant)})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-D5szV.framer-1ly2u2i, .framer-D5szV .framer-1ly2u2i { display: block; }\",\".framer-D5szV.framer-uamzsp { height: 24px; overflow: hidden; position: relative; width: 24px; }\",\".framer-D5szV .framer-6bie2a, .framer-D5szV .framer-1i29eed { flex: none; height: 20px; left: 2px; position: absolute; top: 2px; width: 20px; }\",\".framer-D5szV .framer-w52nv2, .framer-D5szV .framer-worz5w { flex: none; height: 20px; left: calc(50.00000000000002% - 16px / 2); position: absolute; top: calc(50.00000000000002% - 20px / 2); width: 16px; }\",\".framer-D5szV .framer-11djvbe { flex: none; height: 19px; left: calc(50.00000000000002% - 17px / 2); position: absolute; top: calc(50.00000000000002% - 19px / 2); width: 17px; }\",\".framer-D5szV.framer-v-yqr32z.framer-uamzsp, .framer-D5szV.framer-v-1pj3fid.framer-uamzsp, .framer-D5szV.framer-v-91btff.framer-uamzsp, .framer-D5szV.framer-v-cq5ikd.framer-uamzsp { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 24px); }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 24\n * @framerIntrinsicWidth 24\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"OVniDpW1v\":{\"layout\":[\"fixed\",\"fixed\"]},\"wS551Uv4C\":{\"layout\":[\"fixed\",\"fixed\"]},\"sAChhxLPA\":{\"layout\":[\"fixed\",\"fixed\"]},\"WRLAkaqwn\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramermNP7zNG8v=withCSS(Component,css,\"framer-D5szV\");export default FramermNP7zNG8v;FramermNP7zNG8v.displayName=\"_ic Menu\";FramermNP7zNG8v.defaultProps={height:24,width:24};addPropertyControls(FramermNP7zNG8v,{variant:{options:[\"I765:6698;3474:462889\",\"OVniDpW1v\",\"wS551Uv4C\",\"sAChhxLPA\",\"WRLAkaqwn\"],optionTitles:[\"Star\",\"Help\",\"Blog\",\"Features\",\"Pricing\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramermNP7zNG8v,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramermNP7zNG8v\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"24\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"OVniDpW1v\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"wS551Uv4C\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"sAChhxLPA\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"WRLAkaqwn\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"24\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./mNP7zNG8v.map", "// Generated by Framer (ae50a0d)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getPropertyControls,Link,RichText,SmartComponentScopedContainer,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import _icMenu from\"https://framerusercontent.com/modules/zJAksBqR11ZxBrtsg6j9/GS5cEM7k9cR0wQqqUl0e/mNP7zNG8v.js\";const _icMenuFonts=getFonts(_icMenu);const _icMenuControls=getPropertyControls(_icMenu);const enabledGestures={SYZxkgmyF:{hover:true},v3N8ZEKeV:{pressed:true}};const cycleOrder=[\"SYZxkgmyF\",\"v3N8ZEKeV\"];const serializationHash=\"framer-mRXdo\";const variantClassNames={SYZxkgmyF:\"framer-v-5zz4vj\",v3N8ZEKeV:\"framer-v-d1tnmt\"};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 humanReadableEnumMap={Blog:\"wS551Uv4C\",Features:\"sAChhxLPA\",Help:\"OVniDpW1v\",Pricing:\"WRLAkaqwn\",Star:\"I765:6698;3474:462889\"};const humanReadableVariantMap={\"For mobile\":\"v3N8ZEKeV\",Default:\"SYZxkgmyF\"};const getProps=({click,height,icon,id,link,menuDesc,menuTitle,newTab,width,...props})=>{return{...props,fsI5sSh7c:newTab??props.fsI5sSh7c,gbOzmNViD:click??props.gbOzmNViD,j7WEtHrhN:menuDesc??props.j7WEtHrhN??\"Learn how our clients are making big changes.\",LZnJEFYf4:humanReadableEnumMap[icon]??icon??props.LZnJEFYf4??\"I765:6698;3474:462889\",variant:humanReadableVariantMap[props.variant]??props.variant??\"SYZxkgmyF\",vkkAdENAK:menuTitle??props.vkkAdENAK??\"Business case\",WG_IwiLht:link??props.WG_IwiLht};};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,vkkAdENAK,j7WEtHrhN,LZnJEFYf4,WG_IwiLht,fsI5sSh7c,gbOzmNViD,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"SYZxkgmyF\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1shfkuw=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(gbOzmNViD){const res=await gbOzmNViD(...args);if(res===false)return false;}});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:WG_IwiLht,motionChild:true,nodeId:\"SYZxkgmyF\",openInNewTab:fsI5sSh7c,scopeId:\"Nu0_UG9f5\",smoothScroll:true,children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(scopingClassNames,\"framer-5zz4vj\",className,classNames)} framer-1ag1c9m`,\"data-framer-name\":\"Default\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"SYZxkgmyF\",onTap:onTap1shfkuw,ref:refBinding,style:{backgroundColor:\"rgba(249, 250, 251, 0)\",...style},variants:{\"SYZxkgmyF-hover\":{backgroundColor:\"rgba(32, 108, 181, 0.08)\"},\"v3N8ZEKeV-pressed\":{backgroundColor:\"rgba(32, 108, 181, 0.06)\"},v3N8ZEKeV:{backgroundColor:\"rgba(0, 0, 0, 0)\"}},...addPropertyOverrides({\"SYZxkgmyF-hover\":{\"data-framer-name\":undefined},\"v3N8ZEKeV-pressed\":{\"data-framer-name\":undefined},v3N8ZEKeV:{\"data-framer-name\":\"For mobile\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,width:\"24px\",y:(componentViewport?.y||0)+12,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-18gy0p1-container\",layoutDependency:layoutDependency,layoutId:\"q_QggjfO8-container\",nodeId:\"q_QggjfO8\",rendersWithMotion:true,scopeId:\"Nu0_UG9f5\",children:/*#__PURE__*/_jsx(_icMenu,{height:\"100%\",id:\"q_QggjfO8\",layoutId:\"q_QggjfO8\",style:{height:\"100%\",width:\"100%\"},variant:LZnJEFYf4,width:\"100%\"})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1iepfjt\",\"data-framer-name\":\"Text and supporting text\",layoutDependency:layoutDependency,layoutId:\"I765:6698;1282:14434\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter-SemiBold\", \"Inter\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(16, 24, 40))\"},children:\"Business case\"})}),className:\"framer-8cqm1l\",\"data-framer-name\":\"Text\",fonts:[\"Inter-SemiBold\"],layoutDependency:layoutDependency,layoutId:\"I765:6698;1282:14436\",style:{\"--extracted-r6o4lv\":\"rgb(16, 24, 40)\",\"--framer-paragraph-spacing\":\"16px\"},text:vkkAdENAK,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\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-4b734c19-66c2-4a29-843d-728386405f0a, rgb(115, 133, 158)))\"},children:\"Learn how our clients are making big changes.\"})}),className:\"framer-y553e1\",\"data-framer-name\":\"Supporting text\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"I765:6698;1282:14438\",style:{\"--extracted-r6o4lv\":\"var(--token-4b734c19-66c2-4a29-843d-728386405f0a, rgb(115, 133, 158))\",\"--framer-paragraph-spacing\":\"14px\"},text:j7WEtHrhN,verticalAlignment:\"top\",withExternalLayout:true})]})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-mRXdo.framer-1ag1c9m, .framer-mRXdo .framer-1ag1c9m { display: block; }\",\".framer-mRXdo.framer-5zz4vj { align-content: flex-start; align-items: flex-start; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 12px 16px 12px 16px; position: relative; text-decoration: none; width: 336px; }\",\".framer-mRXdo .framer-18gy0p1-container { flex: none; height: 24px; position: relative; width: 24px; }\",\".framer-mRXdo .framer-1iepfjt { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-mRXdo .framer-8cqm1l, .framer-mRXdo .framer-y553e1 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-mRXdo.framer-5zz4vj, .framer-mRXdo .framer-1iepfjt { gap: 0px; } .framer-mRXdo.framer-5zz4vj > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-mRXdo.framer-5zz4vj > :first-child { margin-left: 0px; } .framer-mRXdo.framer-5zz4vj > :last-child { margin-right: 0px; } .framer-mRXdo .framer-1iepfjt > * { margin: 0px; margin-bottom: calc(4px / 2); margin-top: calc(4px / 2); } .framer-mRXdo .framer-1iepfjt > :first-child { margin-top: 0px; } .framer-mRXdo .framer-1iepfjt > :last-child { margin-bottom: 0px; } }\",\".framer-mRXdo.framer-v-d1tnmt.framer-5zz4vj { padding: 12px 24px 12px 24px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 91\n * @framerIntrinsicWidth 336\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"v3N8ZEKeV\":{\"layout\":[\"fixed\",\"auto\"]},\"qsYohbrRN\":{\"layout\":[\"fixed\",\"auto\"]},\"w7fHBIpwa\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"vkkAdENAK\":\"menuTitle\",\"j7WEtHrhN\":\"menuDesc\",\"LZnJEFYf4\":\"icon\",\"WG_IwiLht\":\"link\",\"fsI5sSh7c\":\"newTab\",\"gbOzmNViD\":\"click\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerNu0_UG9f5=withCSS(Component,css,\"framer-mRXdo\");export default FramerNu0_UG9f5;FramerNu0_UG9f5.displayName=\"_link Menu-dropdown\";FramerNu0_UG9f5.defaultProps={height:91,width:336};addPropertyControls(FramerNu0_UG9f5,{variant:{options:[\"SYZxkgmyF\",\"v3N8ZEKeV\"],optionTitles:[\"Default\",\"For mobile\"],title:\"Variant\",type:ControlType.Enum},vkkAdENAK:{defaultValue:\"Business case\",displayTextArea:false,title:\"Menu title\",type:ControlType.String},j7WEtHrhN:{defaultValue:\"Learn how our clients are making big changes.\",displayTextArea:true,title:\"Menu desc\",type:ControlType.String},LZnJEFYf4:_icMenuControls?.[\"variant\"]&&{..._icMenuControls[\"variant\"],defaultValue:\"I765:6698;3474:462889\",description:undefined,hidden:undefined,title:\"Icon\"},WG_IwiLht:{title:\"Link\",type:ControlType.Link},fsI5sSh7c:{defaultValue:false,title:\"New Tab\",type:ControlType.Boolean},gbOzmNViD:{title:\"Click\",type:ControlType.EventHandler}});addFonts(FramerNu0_UG9f5,[{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/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\"},{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\"}]},..._icMenuFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerNu0_UG9f5\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"336\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"v3N8ZEKeV\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"qsYohbrRN\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"w7fHBIpwa\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"91\",\"framerVariables\":\"{\\\"vkkAdENAK\\\":\\\"menuTitle\\\",\\\"j7WEtHrhN\\\":\\\"menuDesc\\\",\\\"LZnJEFYf4\\\":\\\"icon\\\",\\\"WG_IwiLht\\\":\\\"link\\\",\\\"fsI5sSh7c\\\":\\\"newTab\\\",\\\"gbOzmNViD\\\":\\\"click\\\"}\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Nu0_UG9f5.map", "// Generated by Framer (ae50a0d)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,RichText,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";const enabledGestures={OdYCuH1b4:{hover:true}};const cycleOrder=[\"OdYCuH1b4\",\"Vcr4PnS2e\"];const serializationHash=\"framer-MRt76\";const variantClassNames={OdYCuH1b4:\"framer-v-6qal6p\",Vcr4PnS2e:\"framer-v-aqfion\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const transformTemplate1=(_,t)=>`translateY(-50%) ${t}`;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={Default:\"OdYCuH1b4\",Open:\"Vcr4PnS2e\"};const getProps=({click,height,id,label,width,...props})=>{return{...props,BsIDvdFJH:click??props.BsIDvdFJH,rE7Yh9YzG:label??props.rE7Yh9YzG??\"Menu\",variant:humanReadableVariantMap[props.variant]??props.variant??\"OdYCuH1b4\"};};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,rE7Yh9YzG,BsIDvdFJH,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"OdYCuH1b4\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap6g0xia=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(BsIDvdFJH){const res=await BsIDvdFJH(...args);if(res===false)return false;}});const sharedStyleClassNames=[];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__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-6qal6p\",className,classNames),\"data-framer-name\":\"Default\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"OdYCuH1b4\",onTap:onTap6g0xia,ref:refBinding,style:{opacity:1,...style},variants:{\"OdYCuH1b4-hover\":{opacity:.7},Vcr4PnS2e:{opacity:.7}},...addPropertyOverrides({\"OdYCuH1b4-hover\":{\"data-framer-name\":undefined},Vcr4PnS2e:{\"data-framer-name\":\"Open\"}},baseVariant,gestureVariant),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\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-607f7327-5970-47f8-9cee-2886c902b73b, rgb(255, 255, 255)))\"},children:\"Menu\"})}),className:\"framer-rj4d32\",fonts:[\"Inter-SemiBold\"],layoutDependency:layoutDependency,layoutId:\"PyFvOkBg8\",style:{\"--extracted-r6o4lv\":\"var(--token-607f7327-5970-47f8-9cee-2886c902b73b, rgb(255, 255, 255))\",\"--framer-paragraph-spacing\":\"16px\"},text:rE7Yh9YzG,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-qg82kf\",\"data-framer-name\":\"chevron-down\",layoutDependency:layoutDependency,layoutId:\"gYWOGlVg8\",style:{rotate:0},transformTemplate:transformTemplate1,variants:{\"OdYCuH1b4-hover\":{rotate:0},Vcr4PnS2e:{rotate:-180}},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-11y1o9n\",\"data-framer-name\":\"Icon\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:6,intrinsicWidth:8,layoutDependency:layoutDependency,layoutId:\"VQSbFtzAK\",svg:'<svg width=\"8\" height=\"6\" viewBox=\"-1 -1 8 6\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0 0.5L3 3.5L6 0.5\" stroke=\"white\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-MRt76.framer-15bnqg5, .framer-MRt76 .framer-15bnqg5 { display: block; }\",\".framer-MRt76.framer-6qal6p { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 28px; height: 68px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-MRt76 .framer-rj4d32 { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre; width: auto; }\",\".framer-MRt76 .framer-qg82kf { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 12px); overflow: hidden; position: absolute; right: -13px; top: 50%; width: 12px; z-index: 1; }\",\".framer-MRt76 .framer-11y1o9n { flex: none; height: 5px; left: calc(50.00000000000002% - 8px / 2); position: absolute; top: calc(50.00000000000002% - 5px / 2); width: 8px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-MRt76.framer-6qal6p { gap: 0px; } .framer-MRt76.framer-6qal6p > * { margin: 0px; margin-left: calc(28px / 2); margin-right: calc(28px / 2); } .framer-MRt76.framer-6qal6p > :first-child { margin-left: 0px; } .framer-MRt76.framer-6qal6p > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 68\n * @framerIntrinsicWidth 44\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"fixed\"]},\"Vcr4PnS2e\":{\"layout\":[\"auto\",\"fixed\"]},\"lbZJecxrP\":{\"layout\":[\"auto\",\"fixed\"]}}}\n * @framerVariables {\"rE7Yh9YzG\":\"label\",\"BsIDvdFJH\":\"click\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerTeGsSKjrC=withCSS(Component,css,\"framer-MRt76\");export default FramerTeGsSKjrC;FramerTeGsSKjrC.displayName=\"_menu Dropdown\";FramerTeGsSKjrC.defaultProps={height:68,width:44};addPropertyControls(FramerTeGsSKjrC,{variant:{options:[\"OdYCuH1b4\",\"Vcr4PnS2e\"],optionTitles:[\"Default\",\"Open\"],title:\"Variant\",type:ControlType.Enum},rE7Yh9YzG:{defaultValue:\"Menu\",displayTextArea:false,title:\"Label\",type:ControlType.String},BsIDvdFJH:{title:\"Click\",type:ControlType.EventHandler}});addFonts(FramerTeGsSKjrC,[{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/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\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerTeGsSKjrC\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"68\",\"framerVariables\":\"{\\\"rE7Yh9YzG\\\":\\\"label\\\",\\\"BsIDvdFJH\\\":\\\"click\\\"}\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"Vcr4PnS2e\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"lbZJecxrP\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"44\",\"framerImmutableVariables\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./TeGsSKjrC.map", "// Generated by Framer (ae50a0d)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Link,RichText,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";const enabledGestures={olgsWh97m:{hover:true},x6FRfhxqd:{hover:true}};const cycleOrder=[\"olgsWh97m\",\"x6FRfhxqd\",\"aeJplf3Pa\"];const serializationHash=\"framer-IANSU\";const variantClassNames={aeJplf3Pa:\"framer-v-12as171\",olgsWh97m:\"framer-v-ctq43f\",x6FRfhxqd:\"framer-v-11v03cr\"};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 transformTemplate1=(_,t)=>`translateY(-50%) ${t}`;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={\"Dropdown-open\":\"aeJplf3Pa\",Default:\"olgsWh97m\",Dropdown:\"x6FRfhxqd\"};const getProps=({click,height,id,link,newTab,title,width,...props})=>{return{...props,jF1d79itK:title??props.jF1d79itK??\"Menu\",n2_Dg5jRQ:newTab??props.n2_Dg5jRQ,O0IlN6JvB:click??props.O0IlN6JvB,uEdZg9fVp:link??props.uEdZg9fVp,variant:humanReadableVariantMap[props.variant]??props.variant??\"olgsWh97m\"};};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,jF1d79itK,uEdZg9fVp,n2_Dg5jRQ,O0IlN6JvB,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"olgsWh97m\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1dhc4ms=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(O0IlN6JvB){const res=await O0IlN6JvB(...args);if(res===false)return false;}});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(gestureVariant===\"x6FRfhxqd-hover\")return true;if([\"x6FRfhxqd\",\"aeJplf3Pa\"].includes(baseVariant))return true;return false;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:uEdZg9fVp,motionChild:true,nodeId:\"olgsWh97m\",openInNewTab:n2_Dg5jRQ,scopeId:\"TzGsGR32K\",smoothScroll:true,...addPropertyOverrides({\"x6FRfhxqd-hover\":{href:undefined},aeJplf3Pa:{href:undefined},x6FRfhxqd:{href:undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.a,{...restProps,...gestureHandlers,className:`${cx(scopingClassNames,\"framer-ctq43f\",className,classNames)} framer-1plh22v`,\"data-framer-name\":\"Default\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"olgsWh97m\",onTap:onTap1dhc4ms,ref:refBinding,style:{opacity:1,...style},variants:{\"olgsWh97m-hover\":{opacity:.7},\"x6FRfhxqd-hover\":{opacity:.7},aeJplf3Pa:{opacity:.7}},...addPropertyOverrides({\"olgsWh97m-hover\":{\"data-framer-name\":undefined},\"x6FRfhxqd-hover\":{\"data-framer-name\":undefined},aeJplf3Pa:{\"data-framer-name\":\"Dropdown-open\"},x6FRfhxqd:{\"data-framer-name\":\"Dropdown\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1vo204p\",layoutDependency:layoutDependency,layoutId:\"nA1tIv9B9\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter-SemiBold\", \"Inter\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-607f7327-5970-47f8-9cee-2886c902b73b, rgb(255, 255, 255)))\"},children:\"Resources\"})}),className:\"framer-zf2x0v\",\"data-framer-name\":\"Text\",fonts:[\"Inter-SemiBold\"],layoutDependency:layoutDependency,layoutId:\"P_Z3S867x\",style:{\"--extracted-r6o4lv\":\"var(--token-607f7327-5970-47f8-9cee-2886c902b73b, rgb(255, 255, 255))\",\"--framer-paragraph-spacing\":\"16px\"},text:jF1d79itK,verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-o0vfv0\",\"data-framer-name\":\"chevron-down\",layoutDependency:layoutDependency,layoutId:\"ci4iulnoI\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(SVG,{className:\"framer-z34goj\",\"data-framer-name\":\"Icon\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:6,intrinsicWidth:8,layoutDependency:layoutDependency,layoutId:\"uUFjP3a6n\",style:{rotate:0},svg:'<svg width=\"8\" height=\"6\" viewBox=\"-1 -1 8 6\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0 0.5L3 3.5L6 0.5\" stroke=\"white\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',variants:{\"x6FRfhxqd-hover\":{rotate:0},aeJplf3Pa:{rotate:-180}},withExternalLayout:true})})]})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-IANSU.framer-1plh22v, .framer-IANSU .framer-1plh22v { display: block; }\",\".framer-IANSU.framer-ctq43f { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 68px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-IANSU .framer-1vo204p { align-content: center; align-items: center; 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: min-content; }\",\".framer-IANSU .framer-zf2x0v { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-IANSU .framer-o0vfv0 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 12px); overflow: hidden; position: absolute; right: -13px; top: 50%; width: 12px; z-index: 1; }\",\".framer-IANSU .framer-z34goj { flex: none; height: 5px; left: calc(50.00000000000002% - 8px / 2); position: absolute; top: calc(50.00000000000002% - 5px / 2); width: 8px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-IANSU.framer-ctq43f, .framer-IANSU .framer-1vo204p { gap: 0px; } .framer-IANSU.framer-ctq43f > *, .framer-IANSU .framer-1vo204p > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-IANSU.framer-ctq43f > :first-child, .framer-IANSU .framer-1vo204p > :first-child { margin-left: 0px; } .framer-IANSU.framer-ctq43f > :last-child, .framer-IANSU .framer-1vo204p > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 68\n * @framerIntrinsicWidth 44\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"fixed\"]},\"x6FRfhxqd\":{\"layout\":[\"auto\",\"fixed\"]},\"aeJplf3Pa\":{\"layout\":[\"auto\",\"fixed\"]},\"HHW0OZ2c1\":{\"layout\":[\"auto\",\"fixed\"]},\"LUY3Why99\":{\"layout\":[\"auto\",\"fixed\"]}}}\n * @framerVariables {\"jF1d79itK\":\"title\",\"uEdZg9fVp\":\"link\",\"n2_Dg5jRQ\":\"newTab\",\"O0IlN6JvB\":\"click\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerTzGsGR32K=withCSS(Component,css,\"framer-IANSU\");export default FramerTzGsGR32K;FramerTzGsGR32K.displayName=\"_link Menu\";FramerTzGsGR32K.defaultProps={height:68,width:44};addPropertyControls(FramerTzGsGR32K,{variant:{options:[\"olgsWh97m\",\"x6FRfhxqd\",\"aeJplf3Pa\"],optionTitles:[\"Default\",\"Dropdown\",\"Dropdown-open\"],title:\"Variant\",type:ControlType.Enum},jF1d79itK:{defaultValue:\"Menu\",displayTextArea:false,title:\"Title\",type:ControlType.String},uEdZg9fVp:{title:\"Link\",type:ControlType.Link},n2_Dg5jRQ:{defaultValue:false,title:\"New Tab\",type:ControlType.Boolean},O0IlN6JvB:{title:\"Click\",type:ControlType.EventHandler}});addFonts(FramerTzGsGR32K,[{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/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\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerTzGsGR32K\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"68\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"x6FRfhxqd\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"aeJplf3Pa\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"HHW0OZ2c1\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"LUY3Why99\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"44\",\"framerVariables\":\"{\\\"jF1d79itK\\\":\\\"title\\\",\\\"uEdZg9fVp\\\":\\\"link\\\",\\\"n2_Dg5jRQ\\\":\\\"newTab\\\",\\\"O0IlN6JvB\\\":\\\"click\\\"}\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./TzGsGR32K.map", "// Generated by Framer (f030ee3)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,Floating,getFonts,ResolveLinks,SmartComponentScopedContainer,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOverlayState,useRouter,useVariantState,withCSS,withFX}from\"framer\";import{AnimatePresence,LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Icon as Material}from\"https://framerusercontent.com/modules/6Ldpz1V0DkD45gXvi67I/PCgBX5d6MdQT7E7nhdXn/Material.js\";import _btnContactSales from\"https://framerusercontent.com/modules/kPZEMeH9h6T6dTcKYv6v/gvq33ig7MqYHE6y95CJu/HOeClPO6N.js\";import _linkMenuDropdown from\"https://framerusercontent.com/modules/6fSbmfT0ngnSg550Iwf5/ZMec29Io1y2r4Xl8XGs7/Nu0_UG9f5.js\";import _logoLAAMP from\"https://framerusercontent.com/modules/cyPAbGv535QBDqDSA9L0/f8FIlkPqD3HVNvImtQTY/R4R6Jx86K.js\";import _menuDropdown from\"https://framerusercontent.com/modules/6axsHUW8sPLjAik7IaOO/OIhKs1yZ3UwM1bQD0vbD/TeGsSKjrC.js\";import _linkMenu from\"https://framerusercontent.com/modules/8OPjXPhgXclUgIGWcTf7/Wqy0eqb6YSkca7oKm0kv/TzGsGR32K.js\";const _logoLAAMPFonts=getFonts(_logoLAAMP);const _menuDropdownFonts=getFonts(_menuDropdown);const _linkMenuDropdownFonts=getFonts(_linkMenuDropdown);const MotionDivWithFX=withFX(motion.div);const _linkMenuFonts=getFonts(_linkMenu);const _btnContactSalesFonts=getFonts(_btnContactSales);const MaterialFonts=getFonts(Material);const MotionHeaderWithFX=withFX(motion.header);const cycleOrder=[\"dBDawIf3W\",\"x8rgASKVD\",\"irRRHoz8K\",\"zo5k6ERsU\",\"azRfVKBr6\",\"nPMG7qing\"];const serializationHash=\"framer-gnisw\";const variantClassNames={azRfVKBr6:\"framer-v-9xcw8v\",dBDawIf3W:\"framer-v-1gsj2lj\",irRRHoz8K:\"framer-v-q008mc\",nPMG7qing:\"framer-v-cpj7f3\",x8rgASKVD:\"framer-v-1ghfr82\",zo5k6ERsU:\"framer-v-142pbvj\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const transition2={damping:50,delay:.25,mass:.5,stiffness:250,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-150};const transition3={bounce:.2,delay:0,duration:.3,type:\"spring\"};const transition4={bounce:.2,delay:0,duration:.4,type:\"spring\"};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition4,x:0,y:0};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition4,x:0,y:0};const animation3={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 view\":\"zo5k6ERsU\",\"Mobile stay\":\"nPMG7qing\",Desktop:\"dBDawIf3W\",Mobile:\"irRRHoz8K\",Scroll:\"azRfVKBr6\",Tablet:\"x8rgASKVD\"};const getProps=({actionMobileMenu,click,eClose,height,id,width,...props})=>{return{...props,fH7z3syOw:eClose??props.fH7z3syOw,variant:humanReadableVariantMap[props.variant]??props.variant??\"dBDawIf3W\",Xvs9VuDMR:actionMobileMenu??props.Xvs9VuDMR,Y6n7wQxDy:click??props.Y6n7wQxDy};};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,Xvs9VuDMR,Y6n7wQxDy,fH7z3syOw,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"dBDawIf3W\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1gn32gc=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(Y6n7wQxDy){const res=await Y6n7wQxDy(...args);if(res===false)return false;}});const BsIDvdFJHtxyyif=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.show();});const gbOzmNViD1wnntms=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.hide();});const VgO7tSNDztu5bix=activeVariantCallback(async(...args)=>{if(fH7z3syOw){const res=await fH7z3syOw(...args);if(res===false)return false;}});const onTap4fbalt=activeVariantCallback(async(...args)=>{if(Xvs9VuDMR){const res=await Xvs9VuDMR(...args);if(res===false)return false;}});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const router=useRouter();const isDisplayed=()=>{if([\"irRRHoz8K\",\"zo5k6ERsU\",\"nPMG7qing\"].includes(baseVariant))return false;return true;};const ref1=React.useRef(null);const ref2=React.useRef(null);const isDisplayed1=()=>{if([\"irRRHoz8K\",\"zo5k6ERsU\",\"nPMG7qing\"].includes(baseVariant))return true;return false;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,...addPropertyOverrides({zo5k6ERsU:{value:transition3}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(MotionHeaderWithFX,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1gsj2lj\",className,classNames),\"data-framer-name\":\"Desktop\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"dBDawIf3W\",onTap:onTap1gn32gc,ref:refBinding,style:{backdropFilter:\"blur(10px)\",WebkitBackdropFilter:\"blur(10px)\",...style},...addPropertyOverrides({azRfVKBr6:{\"data-framer-name\":\"Scroll\"},irRRHoz8K:{__framer__animate:{transition:transition2},__framer__animateOnce:false,__framer__scrollDirection:{direction:\"down\",target:animation},__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,\"data-framer-name\":\"Mobile\"},nPMG7qing:{\"data-framer-name\":\"Mobile stay\"},x8rgASKVD:{\"data-framer-name\":\"Tablet\"},zo5k6ERsU:{\"data-framer-name\":\"Mobile open view\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-sukk4d\",\"data-border\":true,\"data-framer-name\":\"Header\",layoutDependency:layoutDependency,layoutId:\"zcW7LRHt3\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(255, 255, 255, 0.1)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",backgroundColor:\"var(--token-13e6f3ca-15c9-4f7b-8059-531819bca5ff, rgb(32, 108, 181))\"},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-i6oocq\",\"data-framer-name\":\"Container\",layoutDependency:layoutDependency,layoutId:\"aMepPDPOo\",style:{backgroundColor:\"rgba(0, 0, 0, 0)\"},variants:{azRfVKBr6:{backgroundColor:\"rgba(0, 0, 0, 0)\"},irRRHoz8K:{backgroundColor:\"var(--token-13e6f3ca-15c9-4f7b-8059-531819bca5ff, rgb(32, 108, 181))\"},nPMG7qing:{backgroundColor:\"var(--token-13e6f3ca-15c9-4f7b-8059-531819bca5ff, rgb(32, 108, 181))\"},zo5k6ERsU:{backgroundColor:\"var(--token-13e6f3ca-15c9-4f7b-8059-531819bca5ff, rgb(32, 108, 181))\"}},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1u0l9d3\",\"data-framer-name\":\"Menu\",\"data-hide-scrollbars\":true,layoutDependency:layoutDependency,layoutId:\"irUkwnCI9\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-xn46rz\",layoutDependency:layoutDependency,layoutId:\"vcK20y8go\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{webPageId:\"augiA20Il\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:27,width:\"116px\",y:(componentViewport?.y||0)+0+(((componentViewport?.height||68)-0-68)/2+0+0)+0+0+0+20.5+0,...addPropertyOverrides({irRRHoz8K:{y:(componentViewport?.y||0)+0+0+0+0+0+20.5+0},nPMG7qing:{y:(componentViewport?.y||0)+0+0+0+0+0+20.5+0},zo5k6ERsU:{y:(componentViewport?.y||0)+0+0+0+0+0+20.5+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-158r9p1-container\",layoutDependency:layoutDependency,layoutId:\"h5r1afItT-container\",nodeId:\"h5r1afItT\",rendersWithMotion:true,scopeId:\"TEJX934iE\",children:/*#__PURE__*/_jsx(_logoLAAMP,{height:\"100%\",id:\"h5r1afItT\",layoutId:\"h5r1afItT\",Se6E8LE0G:resolvedLinks[0],style:{height:\"100%\",width:\"100%\"},variant:\"SxqfamNsj\",width:\"100%\",...addPropertyOverrides({azRfVKBr6:{Se6E8LE0G:resolvedLinks[4]},irRRHoz8K:{Se6E8LE0G:resolvedLinks[2]},nPMG7qing:{Se6E8LE0G:resolvedLinks[5]},x8rgASKVD:{Se6E8LE0G:resolvedLinks[1]},zo5k6ERsU:{Se6E8LE0G:resolvedLinks[3]}},baseVariant,gestureVariant)})})})})}),isDisplayed()&&/*#__PURE__*/_jsxs(motion.nav,{className:\"framer-1gljfpo\",\"data-framer-name\":\"Navigation\",layoutDependency:layoutDependency,layoutId:\"C7UYig1a1\",children:[/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:false,children:overlay=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:68,y:(componentViewport?.y||0)+0+(((componentViewport?.height||68)-0-68)/2+0+0)+0+0+0+0+0,children:/*#__PURE__*/_jsxs(SmartComponentScopedContainer,{className:\"framer-1fihjhh-container\",id:`${layoutId}-1fihjhh`,layoutDependency:layoutDependency,layoutId:\"KJIEo6Baa-container\",nodeId:\"KJIEo6Baa\",ref:ref1,rendersWithMotion:true,scopeId:\"TEJX934iE\",children:[/*#__PURE__*/_jsx(_menuDropdown,{BsIDvdFJH:BsIDvdFJHtxyyif({overlay}),height:\"100%\",id:\"KJIEo6Baa\",layoutId:\"KJIEo6Baa\",rE7Yh9YzG:\"Explore\",style:{height:\"100%\"},variant:overlay.visible?\"Vcr4PnS2e\":\"OdYCuH1b4\",width:\"100%\"}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay.visible&&/*#__PURE__*/_jsx(Floating,{alignment:\"start\",anchorRef:ref1,className:cx(scopingClassNames,classNames),collisionDetection:false,\"data-framer-portal-id\":`${layoutId}-1fihjhh`,offsetX:-52.617162165297486,offsetY:1103617250919342e-20,onDismiss:overlay.hide,placement:\"bottom\",safeArea:false,zIndex:11,children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation2,className:\"framer-1i7o13b\",exit:animation1,initial:animation3,layoutDependency:layoutDependency,layoutId:\"mobzGea1x\",ref:ref2,role:\"dialog\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,boxShadow:\"0px 10px 20px 0px rgba(0,0,0,0.05)\"},children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"xzipo0Wqn\"},implicitPathVariables:undefined},{href:{webPageId:\"xzipo0Wqn\"},implicitPathVariables:undefined},{href:{webPageId:\"xzipo0Wqn\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"336px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-uw208z-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"XJudJAbuS-container\",nodeId:\"XJudJAbuS\",rendersWithMotion:true,scopeId:\"TEJX934iE\",children:/*#__PURE__*/_jsx(_linkMenuDropdown,{fsI5sSh7c:false,gbOzmNViD:gbOzmNViD1wnntms({overlay}),height:\"100%\",id:\"XJudJAbuS\",j7WEtHrhN:\"Explore the tools and capabilities that make LAAMP stand out.\",layoutId:\"XJudJAbuS\",LZnJEFYf4:\"sAChhxLPA\",style:{width:\"100%\"},variant:\"SYZxkgmyF\",vkkAdENAK:\"Features\",WG_IwiLht:resolvedLinks1[0],width:\"100%\",...addPropertyOverrides({azRfVKBr6:{WG_IwiLht:resolvedLinks1[2]},x8rgASKVD:{WG_IwiLht:resolvedLinks1[1]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"WxDZitY0w\"},implicitPathVariables:undefined},{href:{webPageId:\"WxDZitY0w\"},implicitPathVariables:undefined},{href:{webPageId:\"WxDZitY0w\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"336px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1xds6ce-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"ujTMIpcGc-container\",nodeId:\"ujTMIpcGc\",rendersWithMotion:true,scopeId:\"TEJX934iE\",children:/*#__PURE__*/_jsx(_linkMenuDropdown,{fsI5sSh7c:false,gbOzmNViD:gbOzmNViD1wnntms({overlay}),height:\"100%\",id:\"ujTMIpcGc\",j7WEtHrhN:\"Find the perfect plan for your needs and budget.\",layoutId:\"ujTMIpcGc\",LZnJEFYf4:\"WRLAkaqwn\",style:{width:\"100%\"},variant:\"SYZxkgmyF\",vkkAdENAK:\"Pricing\",WG_IwiLht:resolvedLinks2[0],width:\"100%\",...addPropertyOverrides({azRfVKBr6:{WG_IwiLht:resolvedLinks2[2]},x8rgASKVD:{WG_IwiLht:resolvedLinks2[1]}},baseVariant,gestureVariant)})})})})]})})})]})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"dXB_3oQxh\"},implicitPathVariables:undefined},{href:{webPageId:\"dXB_3oQxh\"},implicitPathVariables:undefined},{href:{webPageId:\"dXB_3oQxh\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:68,y:(componentViewport?.y||0)+0+(((componentViewport?.height||68)-0-68)/2+0+0)+0+0+0+0+0,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1v3hf4t-container\",layoutDependency:layoutDependency,layoutId:\"ht8lR_ROK-container\",nodeId:\"ht8lR_ROK\",rendersWithMotion:true,scopeId:\"TEJX934iE\",children:/*#__PURE__*/_jsx(_linkMenu,{height:\"100%\",id:\"ht8lR_ROK\",jF1d79itK:\"Blog\",layoutId:\"ht8lR_ROK\",n2_Dg5jRQ:false,style:{height:\"100%\"},uEdZg9fVp:resolvedLinks3[0],variant:\"olgsWh97m\",width:\"100%\",...addPropertyOverrides({azRfVKBr6:{uEdZg9fVp:resolvedLinks3[2]},x8rgASKVD:{uEdZg9fVp:resolvedLinks3[1]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"a5taXXq1O\"},implicitPathVariables:undefined},{href:{webPageId:\"a5taXXq1O\"},implicitPathVariables:undefined},{href:{webPageId:\"a5taXXq1O\"},implicitPathVariables:undefined}],children:resolvedLinks4=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:68,y:(componentViewport?.y||0)+0+(((componentViewport?.height||68)-0-68)/2+0+0)+0+0+0+0+0,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1mh5b93-container\",layoutDependency:layoutDependency,layoutId:\"uRsiRI1AG-container\",nodeId:\"uRsiRI1AG\",rendersWithMotion:true,scopeId:\"TEJX934iE\",children:/*#__PURE__*/_jsx(_linkMenu,{height:\"100%\",id:\"uRsiRI1AG\",jF1d79itK:\"About us\",layoutId:\"uRsiRI1AG\",n2_Dg5jRQ:false,style:{height:\"100%\"},uEdZg9fVp:resolvedLinks4[0],variant:\"olgsWh97m\",width:\"100%\",...addPropertyOverrides({azRfVKBr6:{uEdZg9fVp:resolvedLinks4[2]},x8rgASKVD:{uEdZg9fVp:resolvedLinks4[1]}},baseVariant,gestureVariant)})})})})]})]}),/*#__PURE__*/_jsxs(motion.nav,{className:\"framer-1riuueh\",\"data-framer-name\":\"CTA\",layoutDependency:layoutDependency,layoutId:\"vtw7Bxln_\",children:[isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,y:(componentViewport?.y||0)+0+(((componentViewport?.height||68)-0-68)/2+0+0)+0+0+10+0,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-cqogok-container\",layoutDependency:layoutDependency,layoutId:\"CIi1a5PLX-container\",nodeId:\"CIi1a5PLX\",rendersWithMotion:true,scopeId:\"TEJX934iE\",children:/*#__PURE__*/_jsx(_btnContactSales,{height:\"100%\",id:\"CIi1a5PLX\",KKjhJUwA_:false,layoutId:\"CIi1a5PLX\",roe1XYFY0:\"Login\",variant:\"d5rII5wBF\",vGIfPrBUp:\"https://laamp.com.au/app\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"BYCz4kmeP\"},implicitPathVariables:undefined},{href:{webPageId:\"BYCz4kmeP\"},implicitPathVariables:undefined},{href:{webPageId:\"BYCz4kmeP\"},implicitPathVariables:undefined},{href:{webPageId:\"BYCz4kmeP\"},implicitPathVariables:undefined},{href:{webPageId:\"BYCz4kmeP\"},implicitPathVariables:undefined},{href:{webPageId:\"BYCz4kmeP\"},implicitPathVariables:undefined}],children:resolvedLinks5=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,y:(componentViewport?.y||0)+0+(((componentViewport?.height||68)-0-68)/2+0+0)+0+0+10+0,...addPropertyOverrides({irRRHoz8K:{y:(componentViewport?.y||0)+0+0+0+0+10+0},nPMG7qing:{y:(componentViewport?.y||0)+0+0+0+0+10+0},zo5k6ERsU:{y:(componentViewport?.y||0)+0+0+0+0+10+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-vtf2r5-container\",layoutDependency:layoutDependency,layoutId:\"bXbeEX_Fg-container\",nodeId:\"bXbeEX_Fg\",rendersWithMotion:true,scopeId:\"TEJX934iE\",style:{opacity:1},variants:{azRfVKBr6:{opacity:1},nPMG7qing:{opacity:1},zo5k6ERsU:{opacity:0}},children:/*#__PURE__*/_jsx(_btnContactSales,{height:\"100%\",id:\"bXbeEX_Fg\",KKjhJUwA_:false,layoutId:\"bXbeEX_Fg\",roe1XYFY0:\"Contact Sales\",variant:\"XOZ83LILY\",vGIfPrBUp:resolvedLinks5[0],width:\"100%\",...addPropertyOverrides({azRfVKBr6:{variant:\"rWv7yqlAN\",vGIfPrBUp:resolvedLinks5[4]},irRRHoz8K:{variant:\"FFNuNFTyJ\",vGIfPrBUp:resolvedLinks5[2]},nPMG7qing:{variant:\"FFNuNFTyJ\",vGIfPrBUp:resolvedLinks5[5],VgO7tSNDz:VgO7tSNDztu5bix},x8rgASKVD:{vGIfPrBUp:resolvedLinks5[1]},zo5k6ERsU:{variant:\"FFNuNFTyJ\",vGIfPrBUp:resolvedLinks5[3]}},baseVariant,gestureVariant)})})})}),isDisplayed1()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-c00mav\",\"data-framer-name\":\"Header / Mobile burger\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"Aec2sYEmR\",onTap:onTap4fbalt,children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1g523re-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"Cu96QX_0a-container\",nodeId:\"Cu96QX_0a\",rendersWithMotion:true,scopeId:\"TEJX934iE\",children:/*#__PURE__*/_jsx(Material,{color:\"var(--token-607f7327-5970-47f8-9cee-2886c902b73b, rgb(255, 255, 255))\",height:\"100%\",iconSearch:\"menu\",iconSelection:\"Menu\",iconStyle15:\"Rounded\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"Cu96QX_0a\",layoutId:\"Cu96QX_0a\",mirrored:true,selectByList:false,style:{height:\"100%\",width:\"100%\"},width:\"100%\",...addPropertyOverrides({zo5k6ERsU:{iconSearch:\"close\",iconSelection:\"Close\"}},baseVariant,gestureVariant)})})})})]})]})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-gnisw.framer-rjax8q, .framer-gnisw .framer-rjax8q { display: block; }\",\".framer-gnisw.framer-1gsj2lj { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1200px; }\",\".framer-gnisw .framer-sukk4d { 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: 100%; }\",\".framer-gnisw .framer-i6oocq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: 68px; justify-content: space-between; max-width: 1080px; overflow: visible; padding: 0px 24px 0px 24px; position: relative; width: 100%; }\",\".framer-gnisw .framer-1u0l9d3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: 100%; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-gnisw .framer-xn46rz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 27px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 116px; }\",\".framer-gnisw .framer-158r9p1-container { flex: none; height: 27px; position: relative; width: 116px; }\",\".framer-gnisw .framer-1gljfpo { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: 100%; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-gnisw .framer-1fihjhh-container, .framer-gnisw .framer-1v3hf4t-container, .framer-gnisw .framer-1mh5b93-container { flex: none; height: 100%; position: relative; width: auto; }\",\".framer-gnisw .framer-1i7o13b { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 16px 0px 16px 0px; position: relative; width: 336px; will-change: var(--framer-will-change-override, transform); }\",\".framer-gnisw .framer-uw208z-container, .framer-gnisw .framer-1xds6ce-container { flex: none; height: auto; position: relative; width: 336px; }\",\".framer-gnisw .framer-1riuueh { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-gnisw .framer-cqogok-container, .framer-gnisw .framer-vtf2r5-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-gnisw .framer-c00mav { cursor: pointer; flex: none; height: 48px; overflow: visible; position: relative; width: 32px; }\",\".framer-gnisw .framer-1g523re-container { flex: none; height: 24px; position: absolute; right: 0px; top: calc(50.00000000000002% - 24px / 2); width: 24px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-gnisw.framer-1gsj2lj, .framer-gnisw .framer-sukk4d, .framer-gnisw .framer-1u0l9d3, .framer-gnisw .framer-xn46rz, .framer-gnisw .framer-1gljfpo, .framer-gnisw .framer-1i7o13b, .framer-gnisw .framer-1riuueh { gap: 0px; } .framer-gnisw.framer-1gsj2lj > *, .framer-gnisw .framer-1i7o13b > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-gnisw.framer-1gsj2lj > :first-child, .framer-gnisw .framer-sukk4d > :first-child, .framer-gnisw .framer-1i7o13b > :first-child { margin-top: 0px; } .framer-gnisw.framer-1gsj2lj > :last-child, .framer-gnisw .framer-sukk4d > :last-child, .framer-gnisw .framer-1i7o13b > :last-child { margin-bottom: 0px; } .framer-gnisw .framer-sukk4d > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-gnisw .framer-1u0l9d3 > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } .framer-gnisw .framer-1u0l9d3 > :first-child, .framer-gnisw .framer-xn46rz > :first-child, .framer-gnisw .framer-1gljfpo > :first-child, .framer-gnisw .framer-1riuueh > :first-child { margin-left: 0px; } .framer-gnisw .framer-1u0l9d3 > :last-child, .framer-gnisw .framer-xn46rz > :last-child, .framer-gnisw .framer-1gljfpo > :last-child, .framer-gnisw .framer-1riuueh > :last-child { margin-right: 0px; } .framer-gnisw .framer-xn46rz > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-gnisw .framer-1gljfpo > * { margin: 0px; margin-left: calc(32px / 2); margin-right: calc(32px / 2); } .framer-gnisw .framer-1riuueh > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } }\",\".framer-gnisw.framer-v-1ghfr82.framer-1gsj2lj { width: 824px; }\",\".framer-gnisw.framer-v-q008mc.framer-1gsj2lj, .framer-gnisw.framer-v-142pbvj.framer-1gsj2lj, .framer-gnisw.framer-v-cpj7f3.framer-1gsj2lj { justify-content: flex-start; width: 375px; }\",\".framer-gnisw.framer-v-q008mc .framer-i6oocq, .framer-gnisw.framer-v-142pbvj .framer-i6oocq, .framer-gnisw.framer-v-cpj7f3 .framer-i6oocq { max-width: unset; padding: 0px 0px 0px 24px; }\",\".framer-gnisw.framer-v-q008mc .framer-1riuueh, .framer-gnisw.framer-v-142pbvj .framer-1riuueh, .framer-gnisw.framer-v-cpj7f3 .framer-1riuueh { gap: 16px; }\",\".framer-gnisw.framer-v-q008mc .framer-c00mav, .framer-gnisw.framer-v-142pbvj .framer-c00mav, .framer-gnisw.framer-v-cpj7f3 .framer-c00mav { width: 56px; }\",\".framer-gnisw.framer-v-q008mc .framer-1g523re-container, .framer-gnisw.framer-v-142pbvj .framer-1g523re-container, .framer-gnisw.framer-v-cpj7f3 .framer-1g523re-container { right: 24px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-gnisw.framer-v-q008mc .framer-1riuueh { gap: 0px; } .framer-gnisw.framer-v-q008mc .framer-1riuueh > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-gnisw.framer-v-q008mc .framer-1riuueh > :first-child { margin-left: 0px; } .framer-gnisw.framer-v-q008mc .framer-1riuueh > :last-child { margin-right: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-gnisw.framer-v-142pbvj .framer-1riuueh { gap: 0px; } .framer-gnisw.framer-v-142pbvj .framer-1riuueh > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-gnisw.framer-v-142pbvj .framer-1riuueh > :first-child { margin-left: 0px; } .framer-gnisw.framer-v-142pbvj .framer-1riuueh > :last-child { margin-right: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-gnisw.framer-v-cpj7f3 .framer-1riuueh { gap: 0px; } .framer-gnisw.framer-v-cpj7f3 .framer-1riuueh > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-gnisw.framer-v-cpj7f3 .framer-1riuueh > :first-child { margin-left: 0px; } .framer-gnisw.framer-v-cpj7f3 .framer-1riuueh > :last-child { margin-right: 0px; } }\",'.framer-gnisw[data-border=\"true\"]::after, .framer-gnisw [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; }','.framer-gnisw[data-hide-scrollbars=\"true\"]::-webkit-scrollbar, .framer-gnisw [data-hide-scrollbars=\"true\"]::-webkit-scrollbar { width: 0px; height: 0px; }','.framer-gnisw[data-hide-scrollbars=\"true\"]::-webkit-scrollbar-thumb, .framer-gnisw [data-hide-scrollbars=\"true\"]::-webkit-scrollbar-thumb { background: transparent; }','.framer-gnisw[data-hide-scrollbars=\"true\"], .framer-gnisw [data-hide-scrollbars=\"true\"] { scrollbar-width: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 68\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"x8rgASKVD\":{\"layout\":[\"fixed\",\"auto\"]},\"irRRHoz8K\":{\"layout\":[\"fixed\",\"auto\"]},\"zo5k6ERsU\":{\"layout\":[\"fixed\",\"auto\"]},\"azRfVKBr6\":{\"layout\":[\"fixed\",\"auto\"]},\"nPMG7qing\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"Xvs9VuDMR\":\"actionMobileMenu\",\"Y6n7wQxDy\":\"click\",\"fH7z3syOw\":\"eClose\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerTEJX934iE=withCSS(Component,css,\"framer-gnisw\");export default FramerTEJX934iE;FramerTEJX934iE.displayName=\"Header\";FramerTEJX934iE.defaultProps={height:68,width:1200};addPropertyControls(FramerTEJX934iE,{variant:{options:[\"dBDawIf3W\",\"x8rgASKVD\",\"irRRHoz8K\",\"zo5k6ERsU\",\"azRfVKBr6\",\"nPMG7qing\"],optionTitles:[\"Desktop\",\"Tablet\",\"Mobile\",\"Mobile open view\",\"Scroll\",\"Mobile stay\"],title:\"Variant\",type:ControlType.Enum},Xvs9VuDMR:{title:\"Action mobile menu\",type:ControlType.EventHandler},Y6n7wQxDy:{title:\"Click\",type:ControlType.EventHandler},fH7z3syOw:{title:\"E Close\",type:ControlType.EventHandler}});addFonts(FramerTEJX934iE,[{explicitInter:true,fonts:[]},..._logoLAAMPFonts,..._menuDropdownFonts,..._linkMenuDropdownFonts,..._linkMenuFonts,..._btnContactSalesFonts,...MaterialFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerTEJX934iE\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerVariables\":\"{\\\"Xvs9VuDMR\\\":\\\"actionMobileMenu\\\",\\\"Y6n7wQxDy\\\":\\\"click\\\",\\\"fH7z3syOw\\\":\\\"eClose\\\"}\",\"framerIntrinsicHeight\":\"68\",\"framerIntrinsicWidth\":\"1200\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"x8rgASKVD\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"irRRHoz8K\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"zo5k6ERsU\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"azRfVKBr6\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"nPMG7qing\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./TEJX934iE.map", "// Generated by Framer (1f5f6d9)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,Link,ResolveLinks,RichText,SmartComponentScopedContainer,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useRouter,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import _linkMenuDropdown from\"https://framerusercontent.com/modules/6fSbmfT0ngnSg550Iwf5/ZMec29Io1y2r4Xl8XGs7/Nu0_UG9f5.js\";const _linkMenuDropdownFonts=getFonts(_linkMenuDropdown);const enabledGestures={KImW_GyAI:{hover:true},LPFTrUatV:{pressed:true},U0XTK48zY:{hover:true,pressed:true},yzIkxts5A:{pressed:true}};const cycleOrder=[\"U0XTK48zY\",\"LPFTrUatV\",\"KImW_GyAI\",\"yzIkxts5A\",\"jIAg_LnoU\",\"IiZHmiO2H\"];const serializationHash=\"framer-N9siY\";const variantClassNames={IiZHmiO2H:\"framer-v-1kcdmou\",jIAg_LnoU:\"framer-v-z1ddlq\",KImW_GyAI:\"framer-v-4mns8k\",LPFTrUatV:\"framer-v-1k9papc\",U0XTK48zY:\"framer-v-1s30qla\",yzIkxts5A:\"framer-v-vz3k5a\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const transition2={duration:0,type:\"tween\"};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const transformTemplate2=(_,t)=>`translateY(-50%) ${t}`;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) Dropdown resource\":\"jIAg_LnoU\",\"(Mobile) Dropdown resource\":\"yzIkxts5A\",\"Default For Mobile\":\"LPFTrUatV\",\"Dropmenu open-resource\":\"IiZHmiO2H\",\"Dropmenu resource\":\"KImW_GyAI\",Default:\"U0XTK48zY\"};const getProps=({color,height,id,link,linkNewTab,tap,title,width,...props})=>{return{...props,AIJKmmPR6:title??props.AIJKmmPR6??\"Menu\",g7ZRlptAW:color??props.g7ZRlptAW??\"var(--token-607f7327-5970-47f8-9cee-2886c902b73b, rgb(255, 255, 255))\",gYsugqxc0:tap??props.gYsugqxc0,MbH5N4G0H:linkNewTab??props.MbH5N4G0H,variant:humanReadableVariantMap[props.variant]??props.variant??\"U0XTK48zY\",zEtTGNx5r:link??props.zEtTGNx5r};};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,AIJKmmPR6,zEtTGNx5r,MbH5N4G0H,gYsugqxc0,g7ZRlptAW,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"U0XTK48zY\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1iogqju=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(gYsugqxc0){const res=await gYsugqxc0(...args);if(res===false)return false;}});const onTap1mu07=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"jIAg_LnoU\");});const onTap12z07ss=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(gYsugqxc0){const res=await gYsugqxc0(...args);if(res===false)return false;}setVariant(\"KImW_GyAI\");});const onTapn37i28=activeVariantCallback(async(...args)=>{setVariant(\"yzIkxts5A\");});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if([\"KImW_GyAI-hover\",\"yzIkxts5A-pressed\"].includes(gestureVariant))return true;if([\"KImW_GyAI\",\"yzIkxts5A\",\"jIAg_LnoU\",\"IiZHmiO2H\"].includes(baseVariant))return true;return false;};const isDisplayed1=()=>{if(gestureVariant===\"yzIkxts5A-pressed\")return false;if([\"yzIkxts5A\",\"jIAg_LnoU\"].includes(baseVariant))return false;return true;};const isDisplayed2=()=>{if(gestureVariant===\"KImW_GyAI-hover\")return false;if([\"KImW_GyAI\",\"IiZHmiO2H\"].includes(baseVariant))return false;return true;};const isDisplayed3=()=>{if(gestureVariant===\"yzIkxts5A-pressed\")return true;if([\"yzIkxts5A\",\"jIAg_LnoU\",\"IiZHmiO2H\"].includes(baseVariant))return true;return false;};const router=useRouter();const isDisplayed4=()=>{if(baseVariant===\"jIAg_LnoU\")return false;return true;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,...addPropertyOverrides({jIAg_LnoU:{value:transition2},yzIkxts5A:{value:transition2}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(Link,{href:zEtTGNx5r,motionChild:true,nodeId:\"U0XTK48zY\",openInNewTab:MbH5N4G0H,scopeId:\"VjMKeNtPD\",smoothScroll:true,...addPropertyOverrides({\"KImW_GyAI-hover\":{href:undefined},\"yzIkxts5A-pressed\":{href:undefined},IiZHmiO2H:{href:undefined},jIAg_LnoU:{href:undefined},KImW_GyAI:{href:undefined},yzIkxts5A:{href:undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(scopingClassNames,\"framer-1s30qla\",className,classNames)} framer-1j4a4ez`,\"data-framer-name\":\"Default\",layoutDependency:layoutDependency,layoutId:\"U0XTK48zY\",ref:refBinding,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)\",opacity:1,...style},variants:{\"KImW_GyAI-hover\":{opacity:.7},\"LPFTrUatV-pressed\":{backgroundColor:\"rgba(28, 133, 232, 0.06)\",opacity:1},\"U0XTK48zY-hover\":{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",backgroundColor:\"rgba(0, 0, 0, 0)\",opacity:.7},\"U0XTK48zY-pressed\":{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",backgroundColor:\"rgba(0, 0, 0, 0)\",opacity:1},\"yzIkxts5A-pressed\":{backgroundColor:\"rgba(28, 133, 232, 0.06)\",opacity:1},IiZHmiO2H:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",backgroundColor:\"rgba(0, 0, 0, 0)\"},jIAg_LnoU:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(0, 0, 0, 0.08)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",backgroundColor:\"rgba(0, 0, 0, 0)\"},KImW_GyAI:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",backgroundColor:\"rgba(0, 0, 0, 0)\"},LPFTrUatV:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(0, 0, 0, 0.08)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",backgroundColor:\"rgba(28, 133, 232, 0)\"},yzIkxts5A:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(0, 0, 0, 0.08)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",backgroundColor:\"rgba(0, 0, 0, 0)\"}},...addPropertyOverrides({\"KImW_GyAI-hover\":{\"data-framer-name\":undefined},\"LPFTrUatV-pressed\":{\"data-framer-name\":undefined},\"U0XTK48zY-hover\":{\"data-framer-name\":undefined},\"U0XTK48zY-pressed\":{\"data-framer-name\":undefined},\"yzIkxts5A-pressed\":{\"data-framer-name\":undefined},IiZHmiO2H:{\"data-framer-name\":\"Dropmenu open-resource\",\"data-highlight\":true,onTap:onTap12z07ss},jIAg_LnoU:{\"data-border\":true,\"data-framer-name\":\"(Mobile-open) Dropdown resource\"},KImW_GyAI:{\"data-framer-name\":\"Dropmenu resource\"},LPFTrUatV:{\"data-border\":true,\"data-framer-name\":\"Default For Mobile\",\"data-highlight\":true,onTap:onTap1iogqju},yzIkxts5A:{\"data-border\":true,\"data-framer-name\":\"(Mobile) Dropdown resource\",\"data-highlight\":true,onTap:onTap1mu07}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1d7h50u\",layoutDependency:layoutDependency,layoutId:\"D7MZESnuX\",...addPropertyOverrides({jIAg_LnoU:{\"data-highlight\":true,onTap:onTapn37i28}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter-SemiBold\", \"Inter\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-g7ZRlptAW-VjMKeNtPD))\"},children:\"Menu\"})}),className:\"framer-hzsl6s\",\"data-framer-name\":\"Text\",fonts:[\"Inter-SemiBold\"],layoutDependency:layoutDependency,layoutId:\"JujzEyOAL\",style:{\"--extracted-r6o4lv\":\"var(--variable-reference-g7ZRlptAW-VjMKeNtPD)\",\"--framer-paragraph-spacing\":\"16px\",\"--variable-reference-g7ZRlptAW-VjMKeNtPD\":g7ZRlptAW},text:AIJKmmPR6,variants:{IiZHmiO2H:{\"--extracted-r6o4lv\":\"var(--token-607f7327-5970-47f8-9cee-2886c902b73b, rgb(255, 255, 255))\"},KImW_GyAI:{\"--extracted-r6o4lv\":\"var(--token-607f7327-5970-47f8-9cee-2886c902b73b, rgb(255, 255, 255))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"KImW_GyAI-hover\":{text:undefined},\"yzIkxts5A-pressed\":{text:undefined},IiZHmiO2H:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter-SemiBold\", \"Inter\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-607f7327-5970-47f8-9cee-2886c902b73b, rgb(255, 255, 255)))\"},children:\"Resources\"})}),text:undefined},jIAg_LnoU:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter-SemiBold\", \"Inter\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-g7ZRlptAW-VjMKeNtPD))\"},children:\"Resources\"})}),text:undefined},KImW_GyAI:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter-SemiBold\", \"Inter\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-607f7327-5970-47f8-9cee-2886c902b73b, rgb(255, 255, 255)))\"},children:\"Resources\"})}),text:undefined},yzIkxts5A:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter-SemiBold\", \"Inter\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-g7ZRlptAW-VjMKeNtPD))\"},children:\"Resources\"})}),text:undefined}},baseVariant,gestureVariant)}),isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1j6ecnp\",\"data-framer-name\":\"chevron-down\",layoutDependency:layoutDependency,layoutId:\"pUl3o7iVD\",style:{rotate:0},transformTemplate:transformTemplate1,variants:{\"KImW_GyAI-hover\":{rotate:0},IiZHmiO2H:{rotate:0},jIAg_LnoU:{rotate:-180},yzIkxts5A:{rotate:-180}},...addPropertyOverrides({\"yzIkxts5A-pressed\":{transformTemplate:undefined},IiZHmiO2H:{transformTemplate:transformTemplate2},jIAg_LnoU:{transformTemplate:undefined},yzIkxts5A:{transformTemplate:undefined}},baseVariant,gestureVariant),children:[isDisplayed1()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-w5jn02\",\"data-framer-name\":\"Icon\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:6,intrinsicWidth:8,layoutDependency:layoutDependency,layoutId:\"KwTXZlIgA\",style:{rotate:0},svg:'<svg width=\"8\" height=\"6\" viewBox=\"-1 -1 8 6\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0 0.5L3 3.5L6 0.5\" stroke=\"white\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',variants:{\"KImW_GyAI-hover\":{rotate:-180},IiZHmiO2H:{rotate:180}},withExternalLayout:true}),isDisplayed2()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1ome38y\",\"data-framer-name\":\"Icon\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:8,intrinsicWidth:12,layoutDependency:layoutDependency,layoutId:\"I865:33958;865:33972;3463:404534\",style:{rotate:0},svg:'<svg width=\"12\" height=\"8\" viewBox=\"-1 -1 12 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0 0.5L5 5.5L10 0.5\" stroke=\"#667085\" stroke-width=\"1.67\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',variants:{jIAg_LnoU:{rotate:0},yzIkxts5A:{rotate:180}},withExternalLayout:true})]})]}),isDisplayed3()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1km19rv\",\"data-border\":true,\"data-framer-name\":\"Menu\",layoutDependency:layoutDependency,layoutId:\"DzQkhH8M3\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(234, 236, 240)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:2,borderBottomRightRadius:2,borderTopLeftRadius:2,borderTopRightRadius:2,boxShadow:\"0px 4px 6px -2px rgba(16, 24, 40, 0.029999999329447746), 0px 12px 16px -4px rgba(16, 24, 40, 0.07999999821186066)\",opacity:1},variants:{IiZHmiO2H:{opacity:1},jIAg_LnoU:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0,boxShadow:\"none\",opacity:1},yzIkxts5A:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0,boxShadow:\"none\",opacity:0}},children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"JwIIOV7rI\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:91,width:\"336px\",...addPropertyOverrides({IiZHmiO2H:{y:(componentViewport?.y||0)+(componentViewport?.height||68)- -1+20+0},jIAg_LnoU:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+68+0+0},yzIkxts5A:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+68+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1m36p2z-container\",layoutDependency:layoutDependency,layoutId:\"h_vs7v_HR-container\",nodeId:\"h_vs7v_HR\",rendersWithMotion:true,scopeId:\"VjMKeNtPD\",children:/*#__PURE__*/_jsx(_linkMenuDropdown,{fsI5sSh7c:false,height:\"100%\",id:\"h_vs7v_HR\",j7WEtHrhN:\"Learn how our clients are making big changes.\",layoutId:\"h_vs7v_HR\",LZnJEFYf4:\"I765:6698;3474:462889\",style:{width:\"100%\"},variant:\"SYZxkgmyF\",vkkAdENAK:\"Business case\",width:\"100%\",...addPropertyOverrides({jIAg_LnoU:{variant:\"v3N8ZEKeV\",WG_IwiLht:resolvedLinks[0]},yzIkxts5A:{variant:\"v3N8ZEKeV\"}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"dXB_3oQxh\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:91,width:\"336px\",...addPropertyOverrides({IiZHmiO2H:{y:(componentViewport?.y||0)+(componentViewport?.height||68)- -1+20+91},jIAg_LnoU:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+68+0+91},yzIkxts5A:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+68+0+91}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1lcmjqh-container\",layoutDependency:layoutDependency,layoutId:\"gSmxN7IVL-container\",nodeId:\"gSmxN7IVL\",rendersWithMotion:true,scopeId:\"VjMKeNtPD\",children:/*#__PURE__*/_jsx(_linkMenuDropdown,{fsI5sSh7c:false,height:\"100%\",id:\"gSmxN7IVL\",j7WEtHrhN:\"The latest industry news, updates and info.\",layoutId:\"gSmxN7IVL\",LZnJEFYf4:\"wS551Uv4C\",style:{width:\"100%\"},variant:\"SYZxkgmyF\",vkkAdENAK:\"Blog\",width:\"100%\",...addPropertyOverrides({jIAg_LnoU:{variant:\"v3N8ZEKeV\",WG_IwiLht:resolvedLinks1[0]},yzIkxts5A:{variant:\"v3N8ZEKeV\"}},baseVariant,gestureVariant)})})})}),isDisplayed4()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:91,width:\"336px\",...addPropertyOverrides({IiZHmiO2H:{y:(componentViewport?.y||0)+(componentViewport?.height||68)- -1+20+182},yzIkxts5A:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+68+0+182}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1wfj0nz-container\",layoutDependency:layoutDependency,layoutId:\"NP_rkNmpw-container\",nodeId:\"NP_rkNmpw\",rendersWithMotion:true,scopeId:\"VjMKeNtPD\",children:/*#__PURE__*/_jsx(_linkMenuDropdown,{fsI5sSh7c:false,height:\"100%\",id:\"NP_rkNmpw\",j7WEtHrhN:\"Learn, fix a problem, and get answers to your questions.\",layoutId:\"NP_rkNmpw\",LZnJEFYf4:\"OVniDpW1v\",style:{width:\"100%\"},variant:\"SYZxkgmyF\",vkkAdENAK:\"Help and support\",width:\"100%\",...addPropertyOverrides({yzIkxts5A:{variant:\"v3N8ZEKeV\"}},baseVariant,gestureVariant)})})})]})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-N9siY.framer-1j4a4ez, .framer-N9siY .framer-1j4a4ez { display: block; }\",\".framer-N9siY.framer-1s30qla { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 68px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-N9siY .framer-1d7h50u { align-content: center; align-items: center; 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: min-content; }\",\".framer-N9siY .framer-hzsl6s { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-N9siY .framer-1j6ecnp { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 12px); left: 91%; overflow: hidden; position: absolute; top: 85%; width: 12px; z-index: 1; }\",\".framer-N9siY .framer-w5jn02 { flex: none; height: 5px; left: calc(50.00000000000002% - 8px / 2); position: absolute; top: calc(50.00000000000002% - 5px / 2); width: 8px; }\",\".framer-N9siY .framer-1ome38y { flex: none; height: 8px; left: 0px; position: absolute; top: 0px; width: 12px; }\",\".framer-N9siY .framer-1km19rv { align-content: flex-start; align-items: flex-start; bottom: -318px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; left: 0px; overflow: hidden; padding: 20px 0px 24px 0px; position: absolute; width: 336px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-N9siY .framer-1m36p2z-container, .framer-N9siY .framer-1lcmjqh-container, .framer-N9siY .framer-1wfj0nz-container { flex: none; height: auto; position: relative; width: 336px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-N9siY.framer-1s30qla, .framer-N9siY .framer-1d7h50u, .framer-N9siY .framer-1km19rv { gap: 0px; } .framer-N9siY.framer-1s30qla > *, .framer-N9siY .framer-1d7h50u > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-N9siY.framer-1s30qla > :first-child, .framer-N9siY .framer-1d7h50u > :first-child { margin-left: 0px; } .framer-N9siY.framer-1s30qla > :last-child, .framer-N9siY .framer-1d7h50u > :last-child { margin-right: 0px; } .framer-N9siY .framer-1km19rv > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-N9siY .framer-1km19rv > :first-child { margin-top: 0px; } .framer-N9siY .framer-1km19rv > :last-child { margin-bottom: 0px; } }\",\".framer-N9siY.framer-v-1k9papc.framer-1s30qla { padding: 0px 24px 0px 24px; }\",\".framer-N9siY.framer-v-4mns8k.framer-1s30qla, .framer-N9siY.framer-v-1kcdmou.framer-1s30qla { overflow: visible; }\",\".framer-N9siY.framer-v-4mns8k .framer-1j6ecnp { left: 113%; top: 50%; }\",\".framer-N9siY.framer-v-vz3k5a.framer-1s30qla { align-content: flex-start; align-items: flex-start; flex-direction: column; width: 320px; }\",\".framer-N9siY.framer-v-vz3k5a .framer-1d7h50u { height: 68px; justify-content: center; padding: 0px 24px 0px 24px; width: 100%; }\",\".framer-N9siY.framer-v-vz3k5a .framer-hzsl6s, .framer-N9siY.framer-v-z1ddlq .framer-hzsl6s { flex: 1 0 0px; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-N9siY.framer-v-vz3k5a .framer-1j6ecnp, .framer-N9siY.framer-v-z1ddlq .framer-1j6ecnp { left: unset; position: relative; top: unset; }\",\".framer-N9siY.framer-v-vz3k5a .framer-1ome38y, .framer-N9siY.framer-v-z1ddlq .framer-1ome38y { right: 0px; top: calc(50.00000000000002% - 8px / 2); width: unset; }\",\".framer-N9siY.framer-v-vz3k5a .framer-1km19rv, .framer-N9siY.framer-v-z1ddlq .framer-1km19rv { bottom: unset; left: unset; padding: 0px; position: relative; width: 100%; will-change: unset; z-index: 0; }\",\".framer-N9siY.framer-v-vz3k5a .framer-1m36p2z-container, .framer-N9siY.framer-v-vz3k5a .framer-1lcmjqh-container, .framer-N9siY.framer-v-vz3k5a .framer-1wfj0nz-container, .framer-N9siY.framer-v-z1ddlq .framer-1m36p2z-container, .framer-N9siY.framer-v-z1ddlq .framer-1lcmjqh-container { width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-N9siY.framer-v-vz3k5a.framer-1s30qla { gap: 0px; } .framer-N9siY.framer-v-vz3k5a.framer-1s30qla > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-N9siY.framer-v-vz3k5a.framer-1s30qla > :first-child { margin-top: 0px; } .framer-N9siY.framer-v-vz3k5a.framer-1s30qla > :last-child { margin-bottom: 0px; } }\",\".framer-N9siY.framer-v-z1ddlq.framer-1s30qla { align-content: flex-start; align-items: flex-start; flex-direction: column; height: min-content; overflow: visible; padding: 0px 0px 16px 0px; width: 320px; }\",\".framer-N9siY.framer-v-z1ddlq .framer-1d7h50u { cursor: pointer; height: 68px; justify-content: center; padding: 0px 24px 0px 24px; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-N9siY.framer-v-z1ddlq.framer-1s30qla { gap: 0px; } .framer-N9siY.framer-v-z1ddlq.framer-1s30qla > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-N9siY.framer-v-z1ddlq.framer-1s30qla > :first-child { margin-top: 0px; } .framer-N9siY.framer-v-z1ddlq.framer-1s30qla > :last-child { margin-bottom: 0px; } }\",\".framer-N9siY.framer-v-1kcdmou .framer-1j6ecnp { left: unset; right: -16px; top: 50%; }\",\".framer-N9siY.framer-v-vz3k5a.pressed .framer-1j6ecnp { left: unset; top: unset; }\",\".framer-N9siY.framer-v-vz3k5a.pressed .framer-1ome38y { width: unset; }\",\".framer-N9siY.framer-v-vz3k5a.pressed .framer-1km19rv { bottom: unset; left: unset; will-change: unset; }\",'.framer-N9siY[data-border=\"true\"]::after, .framer-N9siY [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 68\n * @framerIntrinsicWidth 44\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"fixed\"]},\"LPFTrUatV\":{\"layout\":[\"auto\",\"fixed\"]},\"KImW_GyAI\":{\"layout\":[\"auto\",\"fixed\"]},\"yzIkxts5A\":{\"layout\":[\"fixed\",\"fixed\"]},\"jIAg_LnoU\":{\"layout\":[\"fixed\",\"auto\"]},\"IiZHmiO2H\":{\"layout\":[\"auto\",\"fixed\"]},\"omnEgBr16\":{\"layout\":[\"auto\",\"fixed\"]},\"UOsGE7c68\":{\"layout\":[\"auto\",\"fixed\"]},\"IvX_YzZEH\":{\"layout\":[\"auto\",\"fixed\"]},\"uAbCLYbw3\":{\"layout\":[\"auto\",\"fixed\"]},\"ETiELSm9l\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"AIJKmmPR6\":\"title\",\"zEtTGNx5r\":\"link\",\"MbH5N4G0H\":\"linkNewTab\",\"gYsugqxc0\":\"tap\",\"g7ZRlptAW\":\"color\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerVjMKeNtPD=withCSS(Component,css,\"framer-N9siY\");export default FramerVjMKeNtPD;FramerVjMKeNtPD.displayName=\"_link Menu Mobile\";FramerVjMKeNtPD.defaultProps={height:68,width:44};addPropertyControls(FramerVjMKeNtPD,{variant:{options:[\"U0XTK48zY\",\"LPFTrUatV\",\"KImW_GyAI\",\"yzIkxts5A\",\"jIAg_LnoU\",\"IiZHmiO2H\"],optionTitles:[\"Default\",\"Default For Mobile\",\"Dropmenu resource\",\"(Mobile) Dropdown resource\",\"(Mobile-open) Dropdown resource\",\"Dropmenu open-resource\"],title:\"Variant\",type:ControlType.Enum},AIJKmmPR6:{defaultValue:\"Menu\",displayTextArea:false,title:\"Title\",type:ControlType.String},zEtTGNx5r:{title:\"Link\",type:ControlType.Link},MbH5N4G0H:{defaultValue:false,title:\"Link - New Tab\",type:ControlType.Boolean},gYsugqxc0:{title:\"Tap\",type:ControlType.EventHandler},g7ZRlptAW:{defaultValue:\"var(--token-607f7327-5970-47f8-9cee-2886c902b73b, rgb(255, 255, 255))\",title:\"Color\",type:ControlType.Color}});addFonts(FramerVjMKeNtPD,[{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/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\"}]},..._linkMenuDropdownFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerVjMKeNtPD\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"68\",\"framerDisplayContentsDiv\":\"false\",\"framerVariables\":\"{\\\"AIJKmmPR6\\\":\\\"title\\\",\\\"zEtTGNx5r\\\":\\\"link\\\",\\\"MbH5N4G0H\\\":\\\"linkNewTab\\\",\\\"gYsugqxc0\\\":\\\"tap\\\",\\\"g7ZRlptAW\\\":\\\"color\\\"}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"LPFTrUatV\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"KImW_GyAI\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"yzIkxts5A\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"jIAg_LnoU\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"IiZHmiO2H\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"omnEgBr16\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"UOsGE7c68\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"IvX_YzZEH\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"uAbCLYbw3\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"ETiELSm9l\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"44\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (1f5f6d9)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,Link,ResolveLinks,RichText,SmartComponentScopedContainer,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useRouter,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import _linkMenuMobile from\"https://framerusercontent.com/modules/vGRJlBBTz5wL2CmM5dYv/pP6NkjG6FbSJviJVwyxq/VjMKeNtPD.js\";const _linkMenuMobileFonts=getFonts(_linkMenuMobile);const serializationHash=\"framer-6fv9s\";const variantClassNames={ZsK96obFr:\"framer-v-lzm2ye\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};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??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 getProps=({eCloseOverlay,height,id,width,...props})=>{return{...props,M1V3UcfJv:eCloseOverlay??props.M1V3UcfJv};};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,M1V3UcfJv,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"ZsK96obFr\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const gYsugqxc0r4cu7p=activeVariantCallback(async(...args)=>{if(M1V3UcfJv){const res=await M1V3UcfJv(...args);if(res===false)return false;}});const onTapr4cu7p=activeVariantCallback(async(...args)=>{if(M1V3UcfJv){const res=await M1V3UcfJv(...args);if(res===false)return false;}});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const router=useRouter();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-lzm2ye\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"ZsK96obFr\",ref:refBinding,style:{backgroundColor:\"rgb(255, 255, 255)\",...style},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-lxcii0\",\"data-framer-name\":\"Navigation\",\"data-hide-scrollbars\":true,layoutDependency:layoutDependency,layoutId:\"Q1g_O0fBB\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"xzipo0Wqn\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:68,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+(((componentViewport?.height||732)-0-(Math.max(0,((componentViewport?.height||732)-0-138)/1)*1+138+0))/2+0+0)+0+0,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-114e7ug-container\",layoutDependency:layoutDependency,layoutId:\"chK4cs34a-container\",nodeId:\"chK4cs34a\",rendersWithMotion:true,scopeId:\"W3b9tRRmy\",children:/*#__PURE__*/_jsx(_linkMenuMobile,{AIJKmmPR6:\"Features\",g7ZRlptAW:\"var(--token-85be70c2-b61c-4abd-9f5c-b77b90908997, rgb(16, 24, 40))\",gYsugqxc0:gYsugqxc0r4cu7p,height:\"100%\",id:\"chK4cs34a\",layoutId:\"chK4cs34a\",MbH5N4G0H:false,style:{width:\"100%\"},variant:\"LPFTrUatV\",width:\"100%\",zEtTGNx5r:resolvedLinks[0]})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"WxDZitY0w\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:68,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+(((componentViewport?.height||732)-0-(Math.max(0,((componentViewport?.height||732)-0-138)/1)*1+138+0))/2+0+0)+0+68,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-pdlac6-container\",layoutDependency:layoutDependency,layoutId:\"sY_RodNKH-container\",nodeId:\"sY_RodNKH\",rendersWithMotion:true,scopeId:\"W3b9tRRmy\",children:/*#__PURE__*/_jsx(_linkMenuMobile,{AIJKmmPR6:\"Pricing\",g7ZRlptAW:\"var(--token-85be70c2-b61c-4abd-9f5c-b77b90908997, rgb(16, 24, 40))\",gYsugqxc0:gYsugqxc0r4cu7p,height:\"100%\",id:\"sY_RodNKH\",layoutId:\"sY_RodNKH\",MbH5N4G0H:false,style:{width:\"100%\"},variant:\"LPFTrUatV\",width:\"100%\",zEtTGNx5r:resolvedLinks1[0]})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"dXB_3oQxh\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:68,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+(((componentViewport?.height||732)-0-(Math.max(0,((componentViewport?.height||732)-0-138)/1)*1+138+0))/2+0+0)+0+136,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-s5h008-container\",layoutDependency:layoutDependency,layoutId:\"Rr1TJ_Np5-container\",nodeId:\"Rr1TJ_Np5\",rendersWithMotion:true,scopeId:\"W3b9tRRmy\",children:/*#__PURE__*/_jsx(_linkMenuMobile,{AIJKmmPR6:\"Blog\",g7ZRlptAW:\"var(--token-85be70c2-b61c-4abd-9f5c-b77b90908997, rgb(16, 24, 40))\",gYsugqxc0:gYsugqxc0r4cu7p,height:\"100%\",id:\"Rr1TJ_Np5\",layoutId:\"Rr1TJ_Np5\",MbH5N4G0H:false,style:{width:\"100%\"},variant:\"LPFTrUatV\",width:\"100%\",zEtTGNx5r:resolvedLinks2[0]})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"a5taXXq1O\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:68,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+(((componentViewport?.height||732)-0-(Math.max(0,((componentViewport?.height||732)-0-138)/1)*1+138+0))/2+0+0)+0+204,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-mp1g1u-container\",layoutDependency:layoutDependency,layoutId:\"GijwdDVlI-container\",nodeId:\"GijwdDVlI\",rendersWithMotion:true,scopeId:\"W3b9tRRmy\",children:/*#__PURE__*/_jsx(_linkMenuMobile,{AIJKmmPR6:\"About us\",g7ZRlptAW:\"var(--token-85be70c2-b61c-4abd-9f5c-b77b90908997, rgb(16, 24, 40))\",gYsugqxc0:gYsugqxc0r4cu7p,height:\"100%\",id:\"GijwdDVlI\",layoutId:\"GijwdDVlI\",MbH5N4G0H:false,style:{width:\"100%\"},variant:\"LPFTrUatV\",width:\"100%\",zEtTGNx5r:resolvedLinks3[0]})})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1w234v8\",\"data-framer-name\":\"CTA\",layoutDependency:layoutDependency,layoutId:\"t0Jy7GuOe\",style:{backgroundColor:\"var(--token-a2753d45-1c38-4368-a444-044c43f7cb86, rgb(255, 255, 255))\"},children:[/*#__PURE__*/_jsx(Link,{href:\"https://laamp.com.au/app\",motionChild:true,nodeId:\"doNZXcIWk\",openInNewTab:true,scopeId:\"W3b9tRRmy\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-oqwb2m framer-21vt70\",\"data-border\":true,\"data-framer-name\":\"_btn Contact Sales\",layoutDependency:layoutDependency,layoutId:\"doNZXcIWk\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(208, 213, 221)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgba(238, 244, 250, 0)\",borderBottomLeftRadius:4,borderBottomRightRadius:4,borderTopLeftRadius:4,borderTopRightRadius:4},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\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-13e6f3ca-15c9-4f7b-8059-531819bca5ff, rgb(28, 133, 232)))\"},children:\"Login\"})}),className:\"framer-3dqfb1\",\"data-framer-name\":\"Text\",fonts:[\"Inter-SemiBold\"],layoutDependency:layoutDependency,layoutId:\"gJ3gZnRQ4\",style:{\"--extracted-r6o4lv\":\"var(--token-13e6f3ca-15c9-4f7b-8059-531819bca5ff, rgb(28, 133, 232))\",\"--framer-paragraph-spacing\":\"16px\"},verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"BYCz4kmeP\"},motionChild:true,nodeId:\"c5ee0AwfX\",openInNewTab:false,scopeId:\"W3b9tRRmy\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1xvxc76 framer-21vt70\",\"data-framer-name\":\"_btn Contact Sales\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"c5ee0AwfX\",onTap:onTapr4cu7p,style:{backgroundColor:\"var(--token-13e6f3ca-15c9-4f7b-8059-531819bca5ff, rgb(28, 133, 232))\",borderBottomLeftRadius:4,borderBottomRightRadius:4,borderTopLeftRadius:4,borderTopRightRadius:4},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\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Contact Sales\"})}),className:\"framer-1aodc3g\",\"data-framer-name\":\"Text\",fonts:[\"Inter-SemiBold\"],layoutDependency:layoutDependency,layoutId:\"Z8iK6cA12\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"16px\"},verticalAlignment:\"top\",withExternalLayout:true})})})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-6fv9s.framer-21vt70, .framer-6fv9s .framer-21vt70 { display: block; }\",\".framer-6fv9s.framer-lzm2ye { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 732px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1080px; }\",\".framer-6fv9s .framer-lxcii0 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 1px; justify-content: flex-start; overflow: hidden; overflow-y: auto; padding: 0px; position: relative; width: 100%; }\",\".framer-6fv9s .framer-114e7ug-container, .framer-6fv9s .framer-pdlac6-container, .framer-6fv9s .framer-s5h008-container, .framer-6fv9s .framer-mp1g1u-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-6fv9s .framer-1w234v8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 16px 24px 16px 24px; position: relative; width: 100%; }\",\".framer-6fv9s .framer-oqwb2m { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: hidden; padding: 12px 20px 12px 20px; position: relative; text-decoration: none; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-6fv9s .framer-3dqfb1, .framer-6fv9s .framer-1aodc3g { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-6fv9s .framer-1xvxc76 { align-content: center; align-items: center; cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: hidden; padding: 12px 20px 12px 20px; position: relative; text-decoration: none; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-6fv9s.framer-lzm2ye, .framer-6fv9s .framer-lxcii0, .framer-6fv9s .framer-1w234v8, .framer-6fv9s .framer-oqwb2m, .framer-6fv9s .framer-1xvxc76 { gap: 0px; } .framer-6fv9s.framer-lzm2ye > *, .framer-6fv9s .framer-lxcii0 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-6fv9s.framer-lzm2ye > :first-child, .framer-6fv9s .framer-lxcii0 > :first-child, .framer-6fv9s .framer-1w234v8 > :first-child { margin-top: 0px; } .framer-6fv9s.framer-lzm2ye > :last-child, .framer-6fv9s .framer-lxcii0 > :last-child, .framer-6fv9s .framer-1w234v8 > :last-child { margin-bottom: 0px; } .framer-6fv9s .framer-1w234v8 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-6fv9s .framer-oqwb2m > *, .framer-6fv9s .framer-1xvxc76 > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-6fv9s .framer-oqwb2m > :first-child, .framer-6fv9s .framer-1xvxc76 > :first-child { margin-left: 0px; } .framer-6fv9s .framer-oqwb2m > :last-child, .framer-6fv9s .framer-1xvxc76 > :last-child { margin-right: 0px; } }\",'.framer-6fv9s[data-hide-scrollbars=\"true\"]::-webkit-scrollbar, .framer-6fv9s [data-hide-scrollbars=\"true\"]::-webkit-scrollbar { width: 0px; height: 0px; }','.framer-6fv9s[data-hide-scrollbars=\"true\"]::-webkit-scrollbar-thumb, .framer-6fv9s [data-hide-scrollbars=\"true\"]::-webkit-scrollbar-thumb { background: transparent; }','.framer-6fv9s[data-hide-scrollbars=\"true\"], .framer-6fv9s [data-hide-scrollbars=\"true\"] { scrollbar-width: none; }','.framer-6fv9s[data-border=\"true\"]::after, .framer-6fv9s [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 732\n * @framerIntrinsicWidth 1080\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"M1V3UcfJv\":\"eCloseOverlay\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerW3b9tRRmy=withCSS(Component,css,\"framer-6fv9s\");export default FramerW3b9tRRmy;FramerW3b9tRRmy.displayName=\"Mobile Menu\";FramerW3b9tRRmy.defaultProps={height:732,width:1080};addPropertyControls(FramerW3b9tRRmy,{M1V3UcfJv:{title:\"_e close-overlay\",type:ControlType.EventHandler}});addFonts(FramerW3b9tRRmy,[{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/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\"}]},..._linkMenuMobileFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerW3b9tRRmy\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerVariables\":\"{\\\"M1V3UcfJv\\\":\\\"eCloseOverlay\\\"}\",\"framerIntrinsicWidth\":\"1080\",\"framerIntrinsicHeight\":\"732\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["fontStack", "formatTimeOrDate", "outputType", "showYear", "showMonth", "showWeekday", "showMinutes", "showSeconds", "timeFormat", "monthFormat", "localCode", "date", "onlyYearIsShown", "defaultProps", "Time", "props", "mergedProps", "color", "font", "tabularFont", "useLocaleCode", "getTextContent", "te", "timeoutRef", "pe", "updateCountdown", "node", "prev", "tick", "next", "textContent", "visible", "setIsVisible", "ye", "isCanvas", "RenderTarget", "ue", "Z", "p", "addPropertyControls", "ControlType", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "link", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "Se6E8LE0G", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "ref1", "pe", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "SVG", "css", "FramerR4R6Jx86K", "withCSS", "R4R6Jx86K_default", "addPropertyControls", "ControlType", "addFonts", "_logoLAAMPFonts", "getFonts", "R4R6Jx86K_default", "TimeDateFonts", "Time", "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", "router", "useRouter", "isDisplayed", "LayoutGroup", "u", "ResolveLinks", "resolvedLinks", "ComponentViewportProvider", "SmartComponentScopedContainer", "RichText", "Link", "SVG", "css", "FramerWt9bd8AsD", "withCSS", "Wt9bd8AsD_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "click", "height", "id", "link", "newTab", "title", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "roe1XYFY0", "vGIfPrBUp", "KKjhJUwA_", "VgO7tSNDz", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTapj9mrhu", "args", "scopingClassNames", "cx", "ref1", "pe", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "RichText", "css", "FramerHOeClPO6N", "withCSS", "HOeClPO6N_default", "addPropertyControls", "ControlType", "addFonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "ref1", "pe", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "isDisplayed4", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "SVG", "css", "FramermNP7zNG8v", "withCSS", "mNP7zNG8v_default", "addPropertyControls", "ControlType", "addFonts", "_icMenuFonts", "getFonts", "mNP7zNG8v_default", "_icMenuControls", "getPropertyControls", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableEnumMap", "humanReadableVariantMap", "getProps", "click", "height", "icon", "id", "link", "menuDesc", "menuTitle", "newTab", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "vkkAdENAK", "j7WEtHrhN", "LZnJEFYf4", "WG_IwiLht", "fsI5sSh7c", "gbOzmNViD", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1shfkuw", "args", "scopingClassNames", "cx", "LayoutGroup", "Link", "u", "ComponentViewportProvider", "SmartComponentScopedContainer", "RichText", "css", "FramerNu0_UG9f5", "withCSS", "Nu0_UG9f5_default", "addPropertyControls", "ControlType", "addFonts", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transformTemplate1", "_", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "click", "height", "id", "label", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "rE7Yh9YzG", "BsIDvdFJH", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap6g0xia", "args", "scopingClassNames", "cx", "LayoutGroup", "u", "RichText", "SVG", "css", "FramerTeGsSKjrC", "withCSS", "TeGsSKjrC_default", "addPropertyControls", "ControlType", "addFonts", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transformTemplate1", "_", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "click", "height", "id", "link", "newTab", "title", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "jF1d79itK", "uEdZg9fVp", "n2_Dg5jRQ", "O0IlN6JvB", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1dhc4ms", "args", "scopingClassNames", "cx", "isDisplayed", "LayoutGroup", "Link", "u", "RichText", "SVG", "css", "FramerTzGsGR32K", "withCSS", "TzGsGR32K_default", "addPropertyControls", "ControlType", "addFonts", "_logoLAAMPFonts", "getFonts", "R4R6Jx86K_default", "_menuDropdownFonts", "TeGsSKjrC_default", "_linkMenuDropdownFonts", "Nu0_UG9f5_default", "MotionDivWithFX", "withFX", "motion", "_linkMenuFonts", "TzGsGR32K_default", "_btnContactSalesFonts", "HOeClPO6N_default", "MaterialFonts", "Icon", "MotionHeaderWithFX", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "animation", "transition3", "transition4", "animation1", "animation2", "animation3", "Overlay", "children", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "Transition", "value", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "actionMobileMenu", "click", "eClose", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "Xvs9VuDMR", "Y6n7wQxDy", "fH7z3syOw", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1gn32gc", "args", "BsIDvdFJHtxyyif", "overlay", "loadMore", "gbOzmNViD1wnntms", "VgO7tSNDztu5bix", "onTap4fbalt", "scopingClassNames", "cx", "router", "useRouter", "isDisplayed", "ref1", "ref2", "isDisplayed1", "LayoutGroup", "u", "ResolveLinks", "resolvedLinks", "ComponentViewportProvider", "SmartComponentScopedContainer", "l", "AnimatePresence", "Floating", "resolvedLinks1", "resolvedLinks2", "resolvedLinks3", "resolvedLinks4", "resolvedLinks5", "css", "FramerTEJX934iE", "withCSS", "TEJX934iE_default", "addPropertyControls", "ControlType", "addFonts", "_linkMenuDropdownFonts", "getFonts", "Nu0_UG9f5_default", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "transformTemplate1", "_", "transformTemplate2", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "color", "height", "id", "link", "linkNewTab", "tap", "title", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "AIJKmmPR6", "zEtTGNx5r", "MbH5N4G0H", "gYsugqxc0", "g7ZRlptAW", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1iogqju", "args", "onTap1mu07", "onTap12z07ss", "onTapn37i28", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "router", "useRouter", "isDisplayed4", "LayoutGroup", "Link", "u", "RichText", "SVG", "ResolveLinks", "resolvedLinks", "ComponentViewportProvider", "SmartComponentScopedContainer", "resolvedLinks1", "css", "FramerVjMKeNtPD", "withCSS", "VjMKeNtPD_default", "addPropertyControls", "ControlType", "addFonts", "_linkMenuMobileFonts", "getFonts", "VjMKeNtPD_default", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "eCloseOverlay", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "M1V3UcfJv", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "gYsugqxc0r4cu7p", "args", "onTapr4cu7p", "scopingClassNames", "cx", "serializationHash", "router", "useRouter", "LayoutGroup", "u", "ResolveLinks", "resolvedLinks", "ComponentViewportProvider", "SmartComponentScopedContainer", "VjMKeNtPD_default", "resolvedLinks1", "resolvedLinks2", "resolvedLinks3", "Link", "RichText", "css", "FramerW3b9tRRmy", "withCSS", "W3b9tRRmy_default", "addPropertyControls", "ControlType", "addFonts", "_linkMenuMobileFonts"]
}
