{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/sRYljWLGzBAPUOjdeGVM/JPzCs1c9boaX4poTUNhs/NF0QaTclx.js", "ssg:https://framer.com/m/framer/store.js@^1.0.0", "ssg:https://framer.com/m/framer/utils.js@^0.9.0", "ssg:https://framerusercontent.com/modules/5yU8gwRrZrsA6gDchL4L/RUjmTKxsqyvXqmoHReuD/Button_hover_scall.js", "ssg:https://framerusercontent.com/modules/cBSc6NQtZfhkTRnEhm13/UXORqYogOVrOsl7w4UY3/bGM9Ql5qS.js", "ssg:https://framerusercontent.com/modules/zQgKpU23IWicrWuOS3Nw/ZG895gBuAQmTVbSMsY4z/lasPNOdll.js"],
  "sourcesContent": ["import{fontStore}from\"framer\";fontStore.loadWebFontsFromSelectors([]);export const fonts=[];export const css=['.framer-wWEFz .framer-styles-preset-14bypts:not(.rich-text-wrapper), .framer-wWEFz .framer-styles-preset-14bypts.rich-text-wrapper a { --framer-link-hover-text-color: var(--token-3033e439-728d-45b7-903f-4a2ad3a553fd, #2e2e2e) /* {\"name\":\"dark-900\"} */; --framer-link-hover-text-decoration: underline; --framer-link-text-color: var(--token-d65ac95d-b58e-4758-9b13-8d278c7eba2e, #6b6b78); --framer-link-text-decoration: none; }'];export const className=\"framer-wWEFz\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{useState,useEffect}from\"react\";import{Data,useObserveData}from\"framer\";export function createStore(state1){// Use Data so that a Preview reload resets the state\nconst dataStore=Data({state:Object.freeze({...state1})});// Create a set function that updates the state\nconst setDataStore=newState=>{// If the state is an object, make sure we copy it\nif(typeof newState===\"function\"){newState=newState(dataStore.state);}dataStore.state=Object.freeze({...dataStore.state,...newState});};// Store the initial state, copy the object if it's an object\nlet storeState=typeof state1===\"object\"?Object.freeze({...state1}):state1;// Keep a list of all the listeners, in the form of React hook setters\nconst storeSetters=new Set();// Create a set function that updates all the listeners / setters\nconst setStoreState=newState=>{// If the state is an object, make sure we copy it\nif(typeof newState===\"function\"){newState=newState(storeState);}storeState=typeof newState===\"object\"?Object.freeze({...storeState,...newState}):newState;// Update all the listeners / setters with the new value\nstoreSetters.forEach(setter=>setter(storeState));};// Create the actual hook based on everything above\nfunction useStore(){// Create the hook we are going to use as a listener\nconst[state,setState]=useState(storeState);// If we unmount the component using this hook, we need to remove the listener\n// @ts-ignore\nuseEffect(()=>{// But right now, we need to add the listener\nstoreSetters.add(setState);return()=>storeSetters.delete(setState);},[]);// If Data context exists, use Data, otherwise use vanilla React state\nif(useObserveData()===true){useObserveData();return[dataStore.state,setDataStore];}else{// Return the state and a function to update the central store\nreturn[state,setStoreState];}}return useStore;}\nexport const __FramerMetadata__ = {\"exports\":{\"createStore\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./createStore.map", "export const centerContent = {\n    display: \"flex\",\n    justifyContent: \"center\",\n    alignItems: \"center\"\n};\nexport const autoSizingText = {\n    width: \"max-content\",\n    wordBreak: \"break-word\",\n    overflowWrap: \"break-word\",\n    overflow: \"hidden\",\n    whiteSpace: \"pre-wrap\",\n    flexShrink: 0\n};\nexport const defaultContainerStyles = {\n    ...centerContent,\n    overflow: \"hidden\"\n};\nexport const containerStyles = defaultContainerStyles;\nexport const randomColor = ()=>\"#\" + Math.floor(Math.random() * 16777215).toString(16)\n;\n\nexport const __FramerMetadata__ = {\"exports\":{\"centerContent\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"containerStyles\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"autoSizingText\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"defaultContainerStyles\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"randomColor\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}}}}\n//# sourceMappingURL=./Utils.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import{createStore}from\"https://framer.com/m/framer/store.js@^1.0.0\";import{randomColor}from\"https://framer.com/m/framer/utils.js@^0.9.0\";import{useEffect}from\"react\";export function withCoframe(Component){return props=>{useEffect(()=>{var // @ts-ignore\n_window_CFQ;(_window_CFQ=window.CFQ)===null||_window_CFQ===void 0?void 0:_window_CFQ.push({emit:\"pageHydrated\"});},[]);return /*#__PURE__*/_jsx(Component,{...props});};}// Learn more: https://www.framer.com/docs/guides/overrides/\nconst useStore=createStore({background:\"#0099FF\"});export function withRotate(Component){return props=>{return /*#__PURE__*/_jsx(Component,{...props,animate:{rotate:90},transition:{duration:2}});};}export function withHover(Component){return props=>{return /*#__PURE__*/_jsx(Component,{...props,whileHover:{scale:1.1}});};}export function withRandomColor(Component){return props=>{const[store,setStore]=useStore();return /*#__PURE__*/_jsx(Component,{...props,animate:{background:store.background},onClick:()=>{setStore({background:randomColor()});}});};}\nexport const __FramerMetadata__ = {\"exports\":{\"withRotate\":{\"type\":\"reactHoc\",\"name\":\"withRotate\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withRandomColor\":{\"type\":\"reactHoc\",\"name\":\"withRandomColor\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withHover\":{\"type\":\"reactHoc\",\"name\":\"withHover\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withCoframe\":{\"type\":\"reactHoc\",\"name\":\"withCoframe\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Button_hover_scall.map", "// Generated by Framer (97d1eee)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{withHover}from\"https://framerusercontent.com/modules/5yU8gwRrZrsA6gDchL4L/RUjmTKxsqyvXqmoHReuD/Button_hover_scall.js\";const MotionAWithHover=withHover(motion.a);const cycleOrder=[\"noKrBTGxQ\",\"tBtB6wtDN\",\"mDeqntfOg\"];const serializationHash=\"framer-Z6K76\";const variantClassNames={mDeqntfOg:\"framer-v-1sm2sro\",noKrBTGxQ:\"framer-v-1lnheb8\",tBtB6wtDN:\"framer-v-1eyligr\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={\"Primary large\":\"mDeqntfOg\",\"Primary small\":\"noKrBTGxQ\",\"Secondary small\":\"tBtB6wtDN\"};const getProps=({cTAColor,height,id,link,title,width,...props})=>{var _ref,_humanReadableVariantMap_props_variant,_ref1,_ref2;return{...props,hMFxJysWl:(_ref=title!==null&&title!==void 0?title:props.hMFxJysWl)!==null&&_ref!==void 0?_ref:\"Get started\",variant:(_ref1=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref1!==void 0?_ref1:\"noKrBTGxQ\",ZCXs1gg2o:link!==null&&link!==void 0?link:props.ZCXs1gg2o,zjENpdfuc:(_ref2=cTAColor!==null&&cTAColor!==void 0?cTAColor:props.zjENpdfuc)!==null&&_ref2!==void 0?_ref2:\"rgb(251, 101, 30)\"};};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,hMFxJysWl,ZCXs1gg2o,zjENpdfuc,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"noKrBTGxQ\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:ZCXs1gg2o,openInNewTab:true,smoothScroll:true,children:/*#__PURE__*/_jsx(MotionAWithHover,{...restProps,...gestureHandlers,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-1lnheb8\",className,classNames)} framer-11fnjvx`,\"data-framer-name\":\"Primary small\",layoutDependency:layoutDependency,layoutId:\"noKrBTGxQ\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:zjENpdfuc,borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12,...style},variants:{tBtB6wtDN:{backgroundColor:\"rgba(0, 0, 0, 0)\"}},...addPropertyOverrides({mDeqntfOg:{\"data-framer-name\":\"Primary large\"},tBtB6wtDN:{\"data-framer-name\":\"Secondary small\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNzAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-d27ad090-1dac-4c24-8c76-dc7c3d6efeca, rgb(254, 254, 254)))\"},children:\"Get started\"})}),className:\"framer-1dy6cox\",\"data-framer-name\":\"Get started\",fonts:[\"GF;Plus Jakarta Sans-700\"],layoutDependency:layoutDependency,layoutId:\"ZdaQMm0hl\",style:{\"--extracted-r6o4lv\":\"var(--token-d27ad090-1dac-4c24-8c76-dc7c3d6efeca, rgb(254, 254, 254))\"},text:hMFxJysWl,variants:{tBtB6wtDN:{\"--extracted-r6o4lv\":\"rgb(46, 46, 46)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({mDeqntfOg:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNzAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"140%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-d27ad090-1dac-4c24-8c76-dc7c3d6efeca, rgb(254, 254, 254)))\"},children:\"Get started\"})})},tBtB6wtDN:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNzAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(46, 46, 46))\"},children:\"Get started\"})})}},baseVariant,gestureVariant)})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Z6K76.framer-11fnjvx, .framer-Z6K76 .framer-11fnjvx { display: block; }\",\".framer-Z6K76.framer-1lnheb8 { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 8px 16px 8px 16px; position: relative; text-decoration: none; width: min-content; }\",\".framer-Z6K76 .framer-1dy6cox { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Z6K76.framer-1lnheb8 { gap: 0px; } .framer-Z6K76.framer-1lnheb8 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-Z6K76.framer-1lnheb8 > :first-child { margin-left: 0px; } .framer-Z6K76.framer-1lnheb8 > :last-child { margin-right: 0px; } }\",\".framer-Z6K76.framer-v-1sm2sro.framer-1lnheb8 { padding: 16px 32px 16px 32px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 40\n * @framerIntrinsicWidth 122\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"tBtB6wtDN\":{\"layout\":[\"auto\",\"auto\"]},\"mDeqntfOg\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"hMFxJysWl\":\"title\",\"ZCXs1gg2o\":\"link\",\"zjENpdfuc\":\"cTAColor\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerbGM9Ql5qS=withCSS(Component,css,\"framer-Z6K76\");export default FramerbGM9Ql5qS;FramerbGM9Ql5qS.displayName=\"Button primary\";FramerbGM9Ql5qS.defaultProps={height:40,width:122};addPropertyControls(FramerbGM9Ql5qS,{variant:{options:[\"noKrBTGxQ\",\"tBtB6wtDN\",\"mDeqntfOg\"],optionTitles:[\"Primary small\",\"Secondary small\",\"Primary large\"],title:\"Variant\",type:ControlType.Enum},hMFxJysWl:{defaultValue:\"Get started\",displayTextArea:false,title:\"Title\",type:ControlType.String},ZCXs1gg2o:{title:\"Link\",type:ControlType.Link},zjENpdfuc:{defaultValue:\"rgb(251, 101, 30)\",title:\"CTA color\",type:ControlType.Color}});addFonts(FramerbGM9Ql5qS,[{explicitInter:true,fonts:[{family:\"Plus Jakarta Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/plusjakartasans/v8/LDIbaomQNQcsA88c7O9yZ4KMCoOg4IA6-91aHEjcWuA_TknNTxXUEKi4Rw.woff2\",weight:\"700\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerbGM9Ql5qS\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"40\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"tBtB6wtDN\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"mDeqntfOg\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerVariables\":\"{\\\"hMFxJysWl\\\":\\\"title\\\",\\\"ZCXs1gg2o\\\":\\\"link\\\",\\\"zjENpdfuc\\\":\\\"cTAColor\\\"}\",\"framerIntrinsicWidth\":\"122\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./bGM9Ql5qS.map", "// Generated by Framer (97d1eee)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,Image,Link,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{withCoframe}from\"https://framerusercontent.com/modules/5yU8gwRrZrsA6gDchL4L/RUjmTKxsqyvXqmoHReuD/Button_hover_scall.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/sRYljWLGzBAPUOjdeGVM/JPzCs1c9boaX4poTUNhs/NF0QaTclx.js\";import ButtonPrimary from\"https://framerusercontent.com/modules/cBSc6NQtZfhkTRnEhm13/UXORqYogOVrOsl7w4UY3/bGM9Ql5qS.js\";const ButtonPrimaryFonts=getFonts(ButtonPrimary);const MotionHeaderWithCoframe=withCoframe(motion.header);const cycleOrder=[\"tyGkE75Ni\",\"cTGvLp4Cn\",\"QI9IQpUBc\",\"j2FIzx1Qq\"];const serializationHash=\"framer-ulkQw\";const variantClassNames={cTGvLp4Cn:\"framer-v-t456ju\",j2FIzx1Qq:\"framer-v-9ciexy\",QI9IQpUBc:\"framer-v-h3y38c\",tyGkE75Ni:\"framer-v-5y8byq\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={\"Mobile Open\":\"QI9IQpUBc\",Desktop:\"tyGkE75Ni\",Mobile:\"cTGvLp4Cn\",tablet:\"j2FIzx1Qq\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"tyGkE75Ni\"};};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:\"tyGkE75Ni\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTaprvwqy3=activeVariantCallback(async(...args)=>{setVariant(\"ZFffcgYcW\");});const onTap1yoeug=activeVariantCallback(async(...args)=>{setVariant(\"QI9IQpUBc\");});const onTap1sv3a1n=activeVariantCallback(async(...args)=>{setVariant(\"cTGvLp4Cn\");});const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"cTGvLp4Cn\")return false;return true;};const isDisplayed1=()=>{if(baseVariant===\"j2FIzx1Qq\")return false;return true;};const isDisplayed2=()=>{if(baseVariant===\"cTGvLp4Cn\")return true;return false;};const isDisplayed3=()=>{if([\"cTGvLp4Cn\",\"QI9IQpUBc\"].includes(baseVariant))return true;return false;};const isDisplayed4=()=>{if(baseVariant===\"QI9IQpUBc\")return false;return true;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(MotionHeaderWithCoframe,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-5y8byq\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"tyGkE75Ni\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(223, 222, 222)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",backgroundColor:\"var(--token-1964f640-1fb8-4c3c-bc80-7221236de698, rgb(254, 249, 246))\",...style},...addPropertyOverrides({cTGvLp4Cn:{\"data-framer-name\":\"Mobile\"},j2FIzx1Qq:{\"data-framer-name\":\"tablet\"},QI9IQpUBc:{\"data-framer-name\":\"Mobile Open\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1f7im9z\",layoutDependency:layoutDependency,layoutId:\"MMbpUOjKC\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ix4xt0\",layoutDependency:layoutDependency,layoutId:\"bsN49NoGu\",children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"Owida8HbZ\"},children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fit\",pixelHeight:260,pixelWidth:1516,positionX:\"center\",positionY:\"center\",sizes:\"206px\",src:\"https://framerusercontent.com/images/KDw5qhcvSvJ3XscQgkUsZRWpU.png\",srcSet:\"https://framerusercontent.com/images/KDw5qhcvSvJ3XscQgkUsZRWpU.png?scale-down-to=512 512w,https://framerusercontent.com/images/KDw5qhcvSvJ3XscQgkUsZRWpU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/KDw5qhcvSvJ3XscQgkUsZRWpU.png 1516w\"},className:\"framer-pnhxg0 framer-9ho6gq\",layoutDependency:layoutDependency,layoutId:\"Qah1t9WxO\",...addPropertyOverrides({cTGvLp4Cn:{background:{alt:\"\",fit:\"fit\",pixelHeight:260,pixelWidth:1516,positionX:\"center\",positionY:\"center\",sizes:\"122px\",src:\"https://framerusercontent.com/images/KDw5qhcvSvJ3XscQgkUsZRWpU.png\",srcSet:\"https://framerusercontent.com/images/KDw5qhcvSvJ3XscQgkUsZRWpU.png?scale-down-to=512 512w,https://framerusercontent.com/images/KDw5qhcvSvJ3XscQgkUsZRWpU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/KDw5qhcvSvJ3XscQgkUsZRWpU.png 1516w\"}},QI9IQpUBc:{background:{alt:\"\",fit:\"fit\",pixelHeight:260,pixelWidth:1516,positionX:\"center\",positionY:\"center\",sizes:\"129px\",src:\"https://framerusercontent.com/images/KDw5qhcvSvJ3XscQgkUsZRWpU.png\",srcSet:\"https://framerusercontent.com/images/KDw5qhcvSvJ3XscQgkUsZRWpU.png?scale-down-to=512 512w,https://framerusercontent.com/images/KDw5qhcvSvJ3XscQgkUsZRWpU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/KDw5qhcvSvJ3XscQgkUsZRWpU.png 1516w\"}}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-s4wwm3\",layoutDependency:layoutDependency,layoutId:\"BaqmmdU4t\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-12e3ef8\",\"data-framer-name\":\"spacer\",layoutDependency:layoutDependency,layoutId:\"xLSdy1s3E\"}),isDisplayed()&&/*#__PURE__*/_jsxs(motion.nav,{className:\"framer-1emqmir\",\"data-framer-name\":\"central nav bar\",layoutDependency:layoutDependency,layoutId:\"dJLKQO5dt\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNzAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"115%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-d65ac95d-b58e-4758-9b13-8d278c7eba2e, rgb(107, 107, 120)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"cEffNCini\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-14bypts\",\"data-styles-preset\":\"NF0QaTclx\",children:\"Interview Copilot\\xae\uFE0F\"})})})}),className:\"framer-fs0b0g\",\"data-framer-name\":\"Testimonial\",fonts:[\"GF;Plus Jakarta Sans-700\"],layoutDependency:layoutDependency,layoutId:\"KPqUk1yar\",style:{\"--extracted-r6o4lv\":\"var(--token-d65ac95d-b58e-4758-9b13-8d278c7eba2e, rgb(107, 107, 120))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNzAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"115%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-d65ac95d-b58e-4758-9b13-8d278c7eba2e, rgb(107, 107, 120)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"tP2xEDdEu\"},openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-14bypts\",\"data-styles-preset\":\"NF0QaTclx\",children:\"AI Resume Builder\"})})})}),className:\"framer-i78qr4\",\"data-framer-name\":\"Testimonial\",fonts:[\"GF;Plus Jakarta Sans-700\"],layoutDependency:layoutDependency,layoutId:\"YuN84tkZQ\",style:{\"--extracted-r6o4lv\":\"var(--token-d65ac95d-b58e-4758-9b13-8d278c7eba2e, rgb(107, 107, 120))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNzAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"115%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-d65ac95d-b58e-4758-9b13-8d278c7eba2e, rgb(107, 107, 120)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"JIKwbFMYM\"},openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-14bypts\",\"data-styles-preset\":\"NF0QaTclx\",children:\"Scholarship\"})})})}),className:\"framer-tlifsz\",\"data-framer-name\":\"Testimonial\",fonts:[\"GF;Plus Jakarta Sans-700\"],layoutDependency:layoutDependency,layoutId:\"rvfXqWMg2\",style:{\"--extracted-r6o4lv\":\"var(--token-d65ac95d-b58e-4758-9b13-8d278c7eba2e, rgb(107, 107, 120))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNzAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"115%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-d65ac95d-b58e-4758-9b13-8d278c7eba2e, rgb(107, 107, 120)))\"},children:/*#__PURE__*/_jsx(Link,{href:{hash:\":MaHIjKXDc\",webPageId:\"Owida8HbZ\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-14bypts\",\"data-styles-preset\":\"NF0QaTclx\",children:\"Testimonial\"})})})}),className:\"framer-isndjo\",\"data-framer-name\":\"Pricing\",fonts:[\"GF;Plus Jakarta Sans-700\"],layoutDependency:layoutDependency,layoutId:\"b04otWPob\",style:{\"--extracted-r6o4lv\":\"var(--token-d65ac95d-b58e-4758-9b13-8d278c7eba2e, rgb(107, 107, 120))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNzAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"115%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-d65ac95d-b58e-4758-9b13-8d278c7eba2e, rgb(107, 107, 120)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"uUIXIRiDL\"},openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-14bypts\",\"data-styles-preset\":\"NF0QaTclx\",children:\"Tutorials\"})})})}),className:\"framer-1rpyc17\",\"data-framer-name\":\"Blog\",fonts:[\"GF;Plus Jakarta Sans-700\"],layoutDependency:layoutDependency,layoutId:\"DaugTsNAQ\",style:{\"--extracted-r6o4lv\":\"var(--token-d65ac95d-b58e-4758-9b13-8d278c7eba2e, rgb(107, 107, 120))\"},verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-6d5wue\",\"data-framer-name\":\"right nav\",layoutDependency:layoutDependency,layoutId:\"eQwouuezU\",children:[isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-rjed13-container\",layoutDependency:layoutDependency,layoutId:\"WVKR_G9IS-container\",children:/*#__PURE__*/_jsx(ButtonPrimary,{height:\"100%\",hMFxJysWl:\"Log In\",id:\"WVKR_G9IS\",layoutId:\"WVKR_G9IS\",variant:\"tBtB6wtDN\",width:\"100%\",ZCXs1gg2o:\"https://app.finalroundai.com/sign-in\",zjENpdfuc:\"var(--token-ee48a686-9205-4d25-864a-e0a49fa073ce, rgb(241, 242, 244))\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-14a422u-container\",layoutDependency:layoutDependency,layoutId:\"otzpQC3hW-container\",children:/*#__PURE__*/_jsx(ButtonPrimary,{height:\"100%\",hMFxJysWl:\"Get Started\",id:\"otzpQC3hW\",layoutId:\"otzpQC3hW\",variant:\"noKrBTGxQ\",width:\"100%\",ZCXs1gg2o:\"https://app.finalroundai.com/sign-in\",zjENpdfuc:\"rgb(242, 101, 34)\",...addPropertyOverrides({QI9IQpUBc:{ZCXs1gg2o:\"https://app.finalroundai.com/\"}},baseVariant,gestureVariant)})})})]}),isDisplayed2()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ahwi1a-container\",layoutDependency:layoutDependency,layoutId:\"qpTcW3gjJ-container\",children:/*#__PURE__*/_jsx(ButtonPrimary,{height:\"100%\",hMFxJysWl:\"Get Started\",id:\"qpTcW3gjJ\",layoutId:\"qpTcW3gjJ\",variant:\"noKrBTGxQ\",width:\"100%\",ZCXs1gg2o:\"https://app.finalroundai.com/sign-in\",zjENpdfuc:\"rgb(242, 101, 34)\"})})})]})]}),isDisplayed3()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ysqcfz\",\"data-framer-name\":\"Icon\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"ryozuVap9\",onTap:onTaprvwqy3,...addPropertyOverrides({cTGvLp4Cn:{onTap:onTap1yoeug},QI9IQpUBc:{onTap:onTap1sv3a1n}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-l9nr3o\",\"data-framer-name\":\"Bottom\",layoutDependency:layoutDependency,layoutId:\"l7r6ku3Fl\",style:{backgroundColor:\"rgb(153, 153, 153)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,rotate:0},variants:{cTGvLp4Cn:{backgroundColor:\"rgb(45, 45, 45)\"},QI9IQpUBc:{backgroundColor:\"rgb(45, 45, 45)\",rotate:-45}}}),isDisplayed4()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1cn7dvt\",\"data-framer-name\":\"Mid\",layoutDependency:layoutDependency,layoutId:\"HQ9oP12w5\",style:{backgroundColor:\"rgb(45, 45, 45)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1hyabdt\",\"data-framer-name\":\"Top\",layoutDependency:layoutDependency,layoutId:\"kvcfPNlOx\",style:{backgroundColor:\"rgb(153, 153, 153)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,rotate:0},variants:{cTGvLp4Cn:{backgroundColor:\"rgb(45, 45, 45)\"},QI9IQpUBc:{backgroundColor:\"rgb(45, 45, 45)\",rotate:45}}})]})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-ulkQw.framer-9ho6gq, .framer-ulkQw .framer-9ho6gq { display: block; }\",\".framer-ulkQw.framer-5y8byq { height: 80px; overflow: hidden; position: relative; width: 1440px; }\",\".framer-ulkQw .framer-1f7im9z { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 40px; justify-content: center; left: calc(50.00000000000002% - min(1480px, 100%) / 2); max-width: 1480px; overflow: visible; padding: 0px 40px 0px 40px; position: absolute; top: calc(50.00000000000002% - 40px / 2); width: 100%; }\",\".framer-ulkQw .framer-1ix4xt0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 40px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1200px; }\",\".framer-ulkQw .framer-pnhxg0 { flex: none; height: 32px; position: relative; text-decoration: none; width: 206px; }\",\".framer-ulkQw .framer-s4wwm3 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; height: 40px; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-ulkQw .framer-12e3ef8 { flex: none; height: 1px; overflow: visible; position: relative; width: 1px; }\",\".framer-ulkQw .framer-1emqmir { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-ulkQw .framer-fs0b0g, .framer-ulkQw .framer-i78qr4, .framer-ulkQw .framer-tlifsz, .framer-ulkQw .framer-isndjo, .framer-ulkQw .framer-1rpyc17 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-ulkQw .framer-6d5wue { 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: 0px; position: relative; width: min-content; }\",\".framer-ulkQw .framer-rjed13-container, .framer-ulkQw .framer-14a422u-container, .framer-ulkQw .framer-1ahwi1a-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-ulkQw .framer-ysqcfz { aspect-ratio: 1 / 1; cursor: pointer; flex: none; height: var(--framer-aspect-ratio-supported, 32px); overflow: hidden; position: relative; width: 32px; }\",\".framer-ulkQw .framer-l9nr3o { bottom: 7px; flex: none; height: 2px; left: calc(50.00000000000002% - 24px / 2); overflow: hidden; position: absolute; width: 24px; will-change: var(--framer-will-change-override, transform); }\",\".framer-ulkQw .framer-1cn7dvt { flex: none; height: 2px; left: calc(50.00000000000002% - 24px / 2); overflow: hidden; position: absolute; top: calc(50.00000000000002% - 2px / 2); width: 24px; will-change: var(--framer-will-change-override, transform); }\",\".framer-ulkQw .framer-1hyabdt { flex: none; height: 2px; left: calc(50.00000000000002% - 24px / 2); overflow: hidden; position: absolute; top: 7px; width: 24px; will-change: var(--framer-will-change-override, transform); }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-ulkQw .framer-1f7im9z, .framer-ulkQw .framer-1ix4xt0, .framer-ulkQw .framer-1emqmir, .framer-ulkQw .framer-6d5wue { gap: 0px; } .framer-ulkQw .framer-1f7im9z > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-ulkQw .framer-1f7im9z > :first-child, .framer-ulkQw .framer-1ix4xt0 > :first-child, .framer-ulkQw .framer-1emqmir > :first-child, .framer-ulkQw .framer-6d5wue > :first-child { margin-left: 0px; } .framer-ulkQw .framer-1f7im9z > :last-child, .framer-ulkQw .framer-1ix4xt0 > :last-child, .framer-ulkQw .framer-1emqmir > :last-child, .framer-ulkQw .framer-6d5wue > :last-child { margin-right: 0px; } .framer-ulkQw .framer-1ix4xt0 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-ulkQw .framer-1emqmir > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-ulkQw .framer-6d5wue > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } }\",\".framer-ulkQw.framer-v-t456ju.framer-5y8byq { width: 900px; }\",\".framer-ulkQw.framer-v-t456ju .framer-1f7im9z { gap: unset; justify-content: space-between; padding: 0px 20px 0px 20px; }\",\".framer-ulkQw.framer-v-t456ju .framer-1ix4xt0 { flex: 1 0 0px; order: 0; width: 1px; }\",\".framer-ulkQw.framer-v-t456ju .framer-pnhxg0 { height: 19px; order: 0; width: 122px; }\",\".framer-ulkQw.framer-v-t456ju .framer-s4wwm3 { gap: 0px; justify-content: flex-end; order: 1; }\",\".framer-ulkQw.framer-v-t456ju .framer-ysqcfz, .framer-ulkQw.framer-v-h3y38c .framer-ysqcfz { order: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-ulkQw.framer-v-t456ju .framer-1f7im9z, .framer-ulkQw.framer-v-t456ju .framer-s4wwm3 { gap: 0px; } .framer-ulkQw.framer-v-t456ju .framer-1f7im9z > *, .framer-ulkQw.framer-v-t456ju .framer-1f7im9z > :first-child, .framer-ulkQw.framer-v-t456ju .framer-1f7im9z > :last-child { margin: 0px; } .framer-ulkQw.framer-v-t456ju .framer-s4wwm3 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-ulkQw.framer-v-t456ju .framer-s4wwm3 > :first-child { margin-left: 0px; } .framer-ulkQw.framer-v-t456ju .framer-s4wwm3 > :last-child { margin-right: 0px; } }\",\".framer-ulkQw.framer-v-h3y38c.framer-5y8byq { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; padding: 0px; width: 900px; }\",\".framer-ulkQw.framer-v-h3y38c .framer-1f7im9z { align-content: flex-start; align-items: flex-start; height: min-content; justify-content: flex-start; left: unset; padding: 20px 20px 0px 20px; position: relative; top: unset; }\",\".framer-ulkQw.framer-v-h3y38c .framer-1ix4xt0 { align-content: flex-start; align-items: flex-start; flex: 1 0 0px; flex-direction: column; gap: 0px; height: 404px; justify-content: flex-start; order: 0; width: 1px; }\",\".framer-ulkQw.framer-v-h3y38c .framer-pnhxg0 { height: 19px; order: 0; width: 129px; }\",\".framer-ulkQw.framer-v-h3y38c .framer-s4wwm3 { flex: none; flex-direction: column; gap: 24px; height: min-content; justify-content: center; order: 1; padding: 0px 0px 0px 26px; width: 100%; }\",\".framer-ulkQw.framer-v-h3y38c .framer-1emqmir { align-content: center; align-items: center; flex-direction: column; gap: 24px; }\",\".framer-ulkQw.framer-v-h3y38c .framer-6d5wue { flex-direction: column; gap: 16px; padding: 0px 0px 24px 0px; }\",\".framer-ulkQw.framer-v-h3y38c .framer-l9nr3o { bottom: 15px; left: calc(53.12500000000002% - 24px / 2); }\",\".framer-ulkQw.framer-v-h3y38c .framer-1hyabdt { left: calc(53.12500000000002% - 24px / 2); top: 15px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-ulkQw.framer-v-h3y38c.framer-5y8byq, .framer-ulkQw.framer-v-h3y38c .framer-1ix4xt0, .framer-ulkQw.framer-v-h3y38c .framer-s4wwm3, .framer-ulkQw.framer-v-h3y38c .framer-1emqmir, .framer-ulkQw.framer-v-h3y38c .framer-6d5wue { gap: 0px; } .framer-ulkQw.framer-v-h3y38c.framer-5y8byq > *, .framer-ulkQw.framer-v-h3y38c .framer-1ix4xt0 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-ulkQw.framer-v-h3y38c.framer-5y8byq > :first-child, .framer-ulkQw.framer-v-h3y38c .framer-1ix4xt0 > :first-child, .framer-ulkQw.framer-v-h3y38c .framer-s4wwm3 > :first-child, .framer-ulkQw.framer-v-h3y38c .framer-1emqmir > :first-child, .framer-ulkQw.framer-v-h3y38c .framer-6d5wue > :first-child { margin-top: 0px; } .framer-ulkQw.framer-v-h3y38c.framer-5y8byq > :last-child, .framer-ulkQw.framer-v-h3y38c .framer-1ix4xt0 > :last-child, .framer-ulkQw.framer-v-h3y38c .framer-s4wwm3 > :last-child, .framer-ulkQw.framer-v-h3y38c .framer-1emqmir > :last-child, .framer-ulkQw.framer-v-h3y38c .framer-6d5wue > :last-child { margin-bottom: 0px; } .framer-ulkQw.framer-v-h3y38c .framer-s4wwm3 > *, .framer-ulkQw.framer-v-h3y38c .framer-1emqmir > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-ulkQw.framer-v-h3y38c .framer-6d5wue > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } }\",\".framer-ulkQw.framer-v-9ciexy .framer-1f7im9z { bottom: 20px; height: unset; left: 134px; right: 134px; top: 20px; width: unset; }\",\".framer-ulkQw.framer-v-9ciexy .framer-1ix4xt0 { height: 33px; width: 852px; }\",\".framer-ulkQw.framer-v-9ciexy .framer-1emqmir { gap: 10px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-ulkQw.framer-v-9ciexy .framer-1emqmir { gap: 0px; } .framer-ulkQw.framer-v-9ciexy .framer-1emqmir > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-ulkQw.framer-v-9ciexy .framer-1emqmir > :first-child { margin-left: 0px; } .framer-ulkQw.framer-v-9ciexy .framer-1emqmir > :last-child { margin-right: 0px; } }\",...sharedStyle.css,'.framer-ulkQw[data-border=\"true\"]::after, .framer-ulkQw [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 80\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"cTGvLp4Cn\":{\"layout\":[\"fixed\",\"fixed\"]},\"QI9IQpUBc\":{\"layout\":[\"fixed\",\"auto\"]},\"j2FIzx1Qq\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerlasPNOdll=withCSS(Component,css,\"framer-ulkQw\");export default FramerlasPNOdll;FramerlasPNOdll.displayName=\"\uD83E\uDDED Main menu Copy\";FramerlasPNOdll.defaultProps={height:80,width:1440};addPropertyControls(FramerlasPNOdll,{variant:{options:[\"tyGkE75Ni\",\"cTGvLp4Cn\",\"QI9IQpUBc\",\"j2FIzx1Qq\"],optionTitles:[\"Desktop\",\"Mobile\",\"Mobile Open\",\"tablet\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerlasPNOdll,[{explicitInter:true,fonts:[{family:\"Plus Jakarta Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/plusjakartasans/v8/LDIbaomQNQcsA88c7O9yZ4KMCoOg4IA6-91aHEjcWuA_TknNTxXUEKi4Rw.woff2\",weight:\"700\"}]},...ButtonPrimaryFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerlasPNOdll\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"1440\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"cTGvLp4Cn\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"QI9IQpUBc\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"j2FIzx1Qq\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicHeight\":\"80\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./lasPNOdll.map"],
  "mappings": "uUAA8BA,GAAU,0BAA0B,CAAC,CAAC,EAAS,IAAMC,GAAM,CAAC,EAAeC,GAAI,CAAC,2aAA2a,EAAeC,GAAU,eCA7d,SAASC,GAAYC,EAAO,CACjH,IAAMC,EAAUC,GAAK,CAAC,MAAM,OAAO,OAAO,CAAC,GAAGF,CAAM,CAAC,CAAC,CAAC,EACjDG,EAAaC,GAAU,CAC1B,OAAOA,GAAW,aAAYA,EAASA,EAASH,EAAU,KAAK,GAAGA,EAAU,MAAM,OAAO,OAAO,CAAC,GAAGA,EAAU,MAAM,GAAGG,CAAQ,CAAC,CAAE,EACjIC,EAAW,OAAOL,GAAS,SAAS,OAAO,OAAO,CAAC,GAAGA,CAAM,CAAC,EAAEA,EAC7DM,EAAa,IAAI,IACjBC,EAAcH,GAAU,CAC3B,OAAOA,GAAW,aAAYA,EAASA,EAASC,CAAU,GAAGA,EAAW,OAAOD,GAAW,SAAS,OAAO,OAAO,CAAC,GAAGC,EAAW,GAAGD,CAAQ,CAAC,EAAEA,EACjJE,EAAa,QAAQE,GAAQA,EAAOH,CAAU,CAAC,CAAE,EACjD,SAASI,GAAU,CACnB,GAAK,CAACC,EAAMC,CAAQ,EAAEC,GAASP,CAAU,EAIzC,OAFAQ,EAAU,KACVP,EAAa,IAAIK,CAAQ,EAAQ,IAAIL,EAAa,OAAOK,CAAQ,GAAI,CAAC,CAAC,EACpEG,EAAe,IAAI,IAAMA,EAAe,EAAQ,CAACb,EAAU,MAAME,CAAY,GAC1E,CAACO,EAAMH,CAAa,CAAG,CAAC,OAAOE,CAAS,CCfvC,IAAMM,GAAgB,CACzB,QAAS,OACT,eAAgB,SAChB,WAAY,QAChB,EASO,IAAMC,GAAyB,CAClC,GAAGC,GACH,SAAU,QACd,EChByN,SAASC,GAAYC,EAAU,CAAC,OAAOC,IAAQC,EAAU,IAAI,CAAC,IACvRC,GAAaA,EAAYC,EAAO,OAAO,MAAMD,IAAc,QAAcA,EAAY,KAAK,CAAC,KAAK,cAAc,CAAC,CAAE,EAAE,CAAC,CAAC,EAAsBE,EAAKL,EAAU,CAAC,GAAGC,CAAK,CAAC,EAAI,CACxK,IAAMK,GAASC,GAAY,CAAC,WAAW,SAAS,CAAC,EAA4J,SAASC,GAAUC,EAAU,CAAC,OAAOC,GAA4BC,EAAKF,EAAU,CAAC,GAAGC,EAAM,WAAW,CAAC,MAAM,GAAG,CAAC,CAAC,CAAI,CCD6E,IAAME,GAAiBC,GAAUC,EAAO,CAAC,EAAQC,GAAW,CAAC,YAAY,YAAY,WAAW,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,mBAAmB,UAAU,mBAAmB,UAAU,kBAAkB,EAAE,SAASC,GAAqBC,KAAaC,EAAS,CAAC,IAAMC,EAAc,CAAC,EAAE,OAA0CD,GAAS,QAAQE,GAASA,GAAS,OAAO,OAAOD,EAAcF,EAAUG,CAAO,CAAC,CAAC,EAASD,CAAc,CAAC,IAAME,GAAY,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAW,CAAC,CAAC,MAAAC,EAAM,SAAAC,CAAQ,IAAI,CAAC,IAAMC,EAAaC,EAAWC,CAAmB,EAAQC,EAAWL,GAAmCE,EAAO,WAAiBI,EAAmBC,EAAQ,KAAK,CAAC,GAAGL,EAAO,WAAAG,CAAU,GAAG,CAAC,KAAK,UAAUA,CAAU,CAAC,CAAC,EAAE,OAAoBG,EAAKJ,EAAoB,SAAS,CAAC,MAAME,EAAa,SAASL,CAAQ,CAAC,CAAE,EAAQQ,GAASpB,EAAaqB,CAAQ,EAAQC,GAAwB,CAAC,gBAAgB,YAAY,gBAAgB,YAAY,kBAAkB,WAAW,EAAQC,GAAS,CAAC,CAAC,SAAAC,EAAS,OAAAC,EAAO,GAAAC,EAAG,KAAAC,EAAK,MAAAC,EAAM,MAAAC,EAAM,GAAGC,CAAK,IAAI,CAAC,IAAIC,EAAKC,EAAuCC,EAAMC,EAAM,MAAM,CAAC,GAAGJ,EAAM,WAAWC,EAAKH,GAAmCE,EAAM,aAAa,MAAMC,IAAO,OAAOA,EAAK,cAAc,SAASE,GAAOD,EAAuCV,GAAwBQ,EAAM,OAAO,KAAK,MAAME,IAAyC,OAAOA,EAAuCF,EAAM,WAAW,MAAMG,IAAQ,OAAOA,EAAM,YAAY,UAAUN,GAAgCG,EAAM,UAAU,WAAWI,EAAMV,GAA4CM,EAAM,aAAa,MAAMI,IAAQ,OAAOA,EAAM,mBAAmB,CAAE,EAAQC,GAAuB,CAACL,EAAMxB,IAAewB,EAAM,iBAAwBxB,EAAS,KAAK,GAAG,EAAEwB,EAAM,iBAAwBxB,EAAS,KAAK,GAAG,EAAU8B,GAA6BC,EAAW,SAASP,EAAMQ,EAAI,CAAC,GAAK,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,EAAc,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAApC,EAAQ,UAAAqC,EAAU,UAAAC,EAAU,UAAAC,EAAU,GAAGC,EAAS,EAAEzB,GAASO,CAAK,EAAO,CAAC,YAAAmB,EAAY,WAAAC,EAAW,oBAAAC,GAAoB,gBAAAC,GAAgB,eAAAC,EAAe,UAAAC,EAAU,gBAAAC,EAAgB,WAAAC,EAAW,SAAAlD,CAAQ,EAAEmD,EAAgB,CAAC,WAAAxD,GAAW,eAAe,YAAY,QAAAO,EAAQ,kBAAAL,EAAiB,CAAC,EAAQuD,EAAiBvB,GAAuBL,EAAMxB,CAAQ,EAAQqD,EAAWC,EAAO,IAAI,EAAQC,EAAsBC,EAAM,EAAQC,EAAsB,CAAC,EAAQC,EAAkBC,EAAqB,EAAE,OAAoB9C,EAAK+C,EAAY,CAAC,GAAGtB,GAA4CiB,EAAgB,SAAsB1C,EAAKC,GAAS,CAAC,QAAQd,EAAS,QAAQ,GAAM,SAAsBa,EAAKT,GAAW,CAAC,MAAMD,GAAY,SAAsBU,EAAKgD,EAAK,CAAC,KAAKrB,EAAU,aAAa,GAAK,aAAa,GAAK,SAAsB3B,EAAKrB,GAAiB,CAAC,GAAGkD,GAAU,GAAGI,GAAgB,UAAU,GAAGgB,EAAGlE,GAAkB,GAAG6D,EAAsB,iBAAiBpB,EAAUO,CAAU,mBAAmB,mBAAmB,gBAAgB,iBAAiBQ,EAAiB,SAAS,YAAY,IAAIpB,GAA6BqB,EAAK,MAAM,CAAC,gBAAgBZ,EAAU,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,GAAG,GAAGL,CAAK,EAAE,SAAS,CAAC,UAAU,CAAC,gBAAgB,kBAAkB,CAAC,EAAE,GAAGtC,GAAqB,CAAC,UAAU,CAAC,mBAAmB,eAAe,EAAE,UAAU,CAAC,mBAAmB,iBAAiB,CAAC,EAAE6C,EAAYI,CAAc,EAAE,SAAsBlC,EAAKkD,EAAS,CAAC,sBAAsB,GAAK,SAAsBlD,EAAWE,EAAS,CAAC,SAAsBF,EAAKnB,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mCAAmC,uBAAuB,mEAAmE,uBAAuB,MAAM,uBAAuB,OAAO,0BAA0B,SAAS,sBAAsB,gGAAgG,EAAE,SAAS,aAAa,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,cAAc,MAAM,CAAC,0BAA0B,EAAE,iBAAiB0D,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,uEAAuE,EAAE,KAAKb,EAAU,SAAS,CAAC,UAAU,CAAC,qBAAqB,iBAAiB,CAAC,EAAE,kBAAkB,MAAM,mBAAmB,GAAK,GAAGzC,GAAqB,CAAC,UAAU,CAAC,SAAsBe,EAAWE,EAAS,CAAC,SAAsBF,EAAKnB,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mCAAmC,uBAAuB,mEAAmE,uBAAuB,MAAM,uBAAuB,OAAO,0BAA0B,SAAS,sBAAsB,gGAAgG,EAAE,SAAS,aAAa,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBmB,EAAWE,EAAS,CAAC,SAAsBF,EAAKnB,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mCAAmC,uBAAuB,mEAAmE,uBAAuB,MAAM,uBAAuB,OAAO,0BAA0B,SAAS,sBAAsB,0CAA0C,EAAE,SAAS,aAAa,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEiD,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQiB,GAAI,CAAC,kFAAkF,kFAAkF,yTAAyT,iHAAiH,+WAA+W,iFAAiF,EAS1qNC,EAAgBC,EAAQpC,GAAUkC,GAAI,cAAc,EAASG,EAAQF,EAAgBA,EAAgB,YAAY,iBAAiBA,EAAgB,aAAa,CAAC,OAAO,GAAG,MAAM,GAAG,EAAEG,EAAoBH,EAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,YAAY,WAAW,EAAE,aAAa,CAAC,gBAAgB,kBAAkB,eAAe,EAAE,MAAM,UAAU,KAAKI,EAAY,IAAI,EAAE,UAAU,CAAC,aAAa,cAAc,gBAAgB,GAAM,MAAM,QAAQ,KAAKA,EAAY,MAAM,EAAE,UAAU,CAAC,MAAM,OAAO,KAAKA,EAAY,IAAI,EAAE,UAAU,CAAC,aAAa,oBAAoB,MAAM,YAAY,KAAKA,EAAY,KAAK,CAAC,CAAC,EAAEC,EAASL,EAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,OAAO,oBAAoB,OAAO,SAAS,MAAM,SAAS,IAAI,kHAAkH,OAAO,KAAK,CAAC,CAAC,CAAC,EAAE,CAAC,6BAA6B,EAAI,CAAC,ECT5J,IAAMM,GAAmBC,GAASC,CAAa,EAAQC,GAAwBC,GAAYC,EAAO,MAAM,EAAQC,GAAW,CAAC,YAAY,YAAY,YAAY,WAAW,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,kBAAkB,UAAU,kBAAkB,UAAU,kBAAkB,UAAU,iBAAiB,EAAE,SAASC,EAAqBC,KAAaC,EAAS,CAAC,IAAMC,EAAc,CAAC,EAAE,OAA0CD,GAAS,QAAQE,GAASA,GAAS,OAAO,OAAOD,EAAcF,EAAUG,CAAO,CAAC,CAAC,EAASD,CAAc,CAAC,IAAME,GAAY,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAW,CAAC,CAAC,MAAAC,EAAM,SAAAC,CAAQ,IAAI,CAAC,IAAMC,EAAaC,EAAWC,CAAmB,EAAQC,EAAWL,GAAmCE,EAAO,WAAiBI,EAAmBC,EAAQ,KAAK,CAAC,GAAGL,EAAO,WAAAG,CAAU,GAAG,CAAC,KAAK,UAAUA,CAAU,CAAC,CAAC,EAAE,OAAoBG,EAAKJ,EAAoB,SAAS,CAAC,MAAME,EAAa,SAASL,CAAQ,CAAC,CAAE,EAAQQ,GAASpB,EAAaqB,CAAQ,EAAQC,GAAwB,CAAC,cAAc,YAAY,QAAQ,YAAY,OAAO,YAAY,OAAO,WAAW,EAAQC,GAAS,CAAC,CAAC,OAAAC,EAAO,GAAAC,EAAG,MAAAC,EAAM,GAAGC,CAAK,IAAI,CAAC,IAAIC,EAAuCC,EAAK,MAAM,CAAC,GAAGF,EAAM,SAASE,GAAMD,EAAuCN,GAAwBK,EAAM,OAAO,KAAK,MAAMC,IAAyC,OAAOA,EAAuCD,EAAM,WAAW,MAAME,IAAO,OAAOA,EAAK,WAAW,CAAE,EAAQC,GAAuB,CAACH,EAAMrB,IAAeqB,EAAM,iBAAwBrB,EAAS,KAAK,GAAG,EAAEqB,EAAM,iBAAwBrB,EAAS,KAAK,GAAG,EAAUyB,GAA6BC,EAAW,SAASL,EAAMM,EAAI,CAAC,GAAK,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,EAAc,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAA/B,EAAQ,GAAGgC,CAAS,EAAEjB,GAASI,CAAK,EAAO,CAAC,YAAAc,EAAY,WAAAC,EAAW,oBAAAC,GAAoB,gBAAAC,EAAgB,eAAAC,EAAe,UAAAC,GAAU,gBAAAC,GAAgB,WAAAC,EAAW,SAAA1C,CAAQ,EAAE2C,EAAgB,CAAC,WAAAhD,GAAW,eAAe,YAAY,QAAAO,EAAQ,kBAAAL,EAAiB,CAAC,EAAQ+C,EAAiBpB,GAAuBH,EAAMrB,CAAQ,EAAO,CAAC,sBAAA6C,EAAsB,MAAAC,CAAK,EAAEC,GAAyBZ,CAAW,EAAQa,EAAYH,EAAsB,SAASI,KAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAQQ,EAAYL,EAAsB,SAASI,KAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAQS,EAAaN,EAAsB,SAASI,KAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAQU,EAAWC,EAAO,IAAI,EAAQC,EAAY,IAAQnB,IAAc,YAA6CoB,GAAa,IAAQpB,IAAc,YAA6CqB,GAAa,IAAQrB,IAAc,YAA6CsB,GAAa,IAAQ,GAAC,YAAY,WAAW,EAAE,SAAStB,CAAW,EAAmCuB,GAAa,IAAQvB,IAAc,YAA6CwB,GAAsBC,EAAM,EAAQC,GAAsB,CAAa7B,EAAS,EAAQ8B,GAAkBC,EAAqB,EAAE,OAAoBlD,EAAKmD,EAAY,CAAC,GAAG/B,GAA4C0B,GAAgB,SAAsB9C,EAAKC,GAAS,CAAC,QAAQd,EAAS,QAAQ,GAAM,SAAsBa,EAAKT,GAAW,CAAC,MAAMD,GAAY,SAAsBU,EAAKrB,GAAwB,CAAC,GAAG0C,EAAU,GAAGI,EAAgB,UAAU2B,EAAGrE,GAAkB,GAAGiE,GAAsB,gBAAgB7B,EAAUI,CAAU,EAAE,cAAc,GAAK,mBAAmB,UAAU,iBAAiBQ,EAAiB,SAAS,YAAY,IAAIjB,GAA6ByB,EAAK,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,qBAAqB,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,gBAAgB,wEAAwE,GAAGrB,CAAK,EAAE,GAAGjC,EAAqB,CAAC,UAAU,CAAC,mBAAmB,QAAQ,EAAE,UAAU,CAAC,mBAAmB,QAAQ,EAAE,UAAU,CAAC,mBAAmB,aAAa,CAAC,EAAEqC,EAAYI,CAAc,EAAE,SAAsB2B,EAAMxE,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiBkD,EAAiB,SAAS,YAAY,SAAS,CAAcsB,EAAMxE,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiBkD,EAAiB,SAAS,YAAY,SAAS,CAAc/B,EAAKsD,EAAK,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,SAAsBtD,EAAKuD,GAAM,CAAC,GAAG,IAAI,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,YAAY,IAAI,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,QAAQ,IAAI,qEAAqE,OAAO,gQAAgQ,EAAE,UAAU,8BAA8B,iBAAiBxB,EAAiB,SAAS,YAAY,GAAG9C,EAAqB,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,YAAY,IAAI,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,QAAQ,IAAI,qEAAqE,OAAO,gQAAgQ,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,YAAY,IAAI,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,QAAQ,IAAI,qEAAqE,OAAO,gQAAgQ,CAAC,CAAC,EAAEqC,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,EAAe2B,EAAMxE,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiBkD,EAAiB,SAAS,YAAY,SAAS,CAAc/B,EAAKnB,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,SAAS,iBAAiBkD,EAAiB,SAAS,WAAW,CAAC,EAAEU,EAAY,GAAgBY,EAAMxE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,kBAAkB,iBAAiBkD,EAAiB,SAAS,YAAY,SAAS,CAAc/B,EAAKwD,EAAS,CAAC,sBAAsB,GAAK,SAAsBxD,EAAWE,EAAS,CAAC,SAAsBF,EAAKnB,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mCAAmC,uBAAuB,mEAAmE,uBAAuB,MAAM,uBAAuB,OAAO,0BAA0B,SAAS,sBAAsB,gGAAgG,EAAE,SAAsBmB,EAAKsD,EAAK,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,aAAa,GAAM,aAAa,GAAM,SAAsBtD,EAAKnB,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,6BAAwB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,cAAc,MAAM,CAAC,0BAA0B,EAAE,iBAAiBkD,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,uEAAuE,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAe/B,EAAKwD,EAAS,CAAC,sBAAsB,GAAK,SAAsBxD,EAAWE,EAAS,CAAC,SAAsBF,EAAKnB,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mCAAmC,uBAAuB,mEAAmE,uBAAuB,MAAM,uBAAuB,OAAO,0BAA0B,SAAS,sBAAsB,gGAAgG,EAAE,SAAsBmB,EAAKsD,EAAK,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,aAAa,GAAK,aAAa,GAAM,SAAsBtD,EAAKnB,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,mBAAmB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,cAAc,MAAM,CAAC,0BAA0B,EAAE,iBAAiBkD,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,uEAAuE,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAe/B,EAAKwD,EAAS,CAAC,sBAAsB,GAAK,SAAsBxD,EAAWE,EAAS,CAAC,SAAsBF,EAAKnB,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mCAAmC,uBAAuB,mEAAmE,uBAAuB,MAAM,uBAAuB,OAAO,0BAA0B,SAAS,sBAAsB,gGAAgG,EAAE,SAAsBmB,EAAKsD,EAAK,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,aAAa,GAAK,aAAa,GAAM,SAAsBtD,EAAKnB,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,aAAa,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,cAAc,MAAM,CAAC,0BAA0B,EAAE,iBAAiBkD,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,uEAAuE,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAe/B,EAAKwD,EAAS,CAAC,sBAAsB,GAAK,SAAsBxD,EAAWE,EAAS,CAAC,SAAsBF,EAAKnB,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mCAAmC,uBAAuB,mEAAmE,uBAAuB,MAAM,uBAAuB,OAAO,0BAA0B,SAAS,sBAAsB,gGAAgG,EAAE,SAAsBmB,EAAKsD,EAAK,CAAC,KAAK,CAAC,KAAK,aAAa,UAAU,WAAW,EAAE,aAAa,GAAM,aAAa,GAAM,SAAsBtD,EAAKnB,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,aAAa,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,UAAU,MAAM,CAAC,0BAA0B,EAAE,iBAAiBkD,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,uEAAuE,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAe/B,EAAKwD,EAAS,CAAC,sBAAsB,GAAK,SAAsBxD,EAAWE,EAAS,CAAC,SAAsBF,EAAKnB,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mCAAmC,uBAAuB,mEAAmE,uBAAuB,MAAM,uBAAuB,OAAO,0BAA0B,SAAS,sBAAsB,gGAAgG,EAAE,SAAsBmB,EAAKsD,EAAK,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,aAAa,GAAK,aAAa,GAAM,SAAsBtD,EAAKnB,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,WAAW,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,OAAO,MAAM,CAAC,0BAA0B,EAAE,iBAAiBkD,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,uEAAuE,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAEU,EAAY,GAAgBY,EAAMxE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,iBAAiBkD,EAAiB,SAAS,YAAY,SAAS,CAACW,GAAa,GAAgB1C,EAAKyD,EAA0B,CAAC,SAAsBzD,EAAKnB,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiBkD,EAAiB,SAAS,sBAAsB,SAAsB/B,EAAKtB,EAAc,CAAC,OAAO,OAAO,UAAU,SAAS,GAAG,YAAY,SAAS,YAAY,QAAQ,YAAY,MAAM,OAAO,UAAU,uCAAuC,UAAU,uEAAuE,CAAC,CAAC,CAAC,CAAC,CAAC,EAAesB,EAAKyD,EAA0B,CAAC,SAAsBzD,EAAKnB,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiBkD,EAAiB,SAAS,sBAAsB,SAAsB/B,EAAKtB,EAAc,CAAC,OAAO,OAAO,UAAU,cAAc,GAAG,YAAY,SAAS,YAAY,QAAQ,YAAY,MAAM,OAAO,UAAU,uCAAuC,UAAU,oBAAoB,GAAGO,EAAqB,CAAC,UAAU,CAAC,UAAU,+BAA+B,CAAC,EAAEqC,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEiB,GAAa,GAAgB3C,EAAKyD,EAA0B,CAAC,SAAsBzD,EAAKnB,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiBkD,EAAiB,SAAS,sBAAsB,SAAsB/B,EAAKtB,EAAc,CAAC,OAAO,OAAO,UAAU,cAAc,GAAG,YAAY,SAAS,YAAY,QAAQ,YAAY,MAAM,OAAO,UAAU,uCAAuC,UAAU,mBAAmB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEkE,GAAa,GAAgBS,EAAMxE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,OAAO,iBAAiB,GAAK,iBAAiBkD,EAAiB,SAAS,YAAY,MAAMI,EAAY,GAAGlD,EAAqB,CAAC,UAAU,CAAC,MAAMoD,CAAW,EAAE,UAAU,CAAC,MAAMC,CAAY,CAAC,EAAEhB,EAAYI,CAAc,EAAE,SAAS,CAAc1B,EAAKnB,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,SAAS,iBAAiBkD,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,qBAAqB,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,GAAG,OAAO,CAAC,EAAE,SAAS,CAAC,UAAU,CAAC,gBAAgB,iBAAiB,EAAE,UAAU,CAAC,gBAAgB,kBAAkB,OAAO,GAAG,CAAC,CAAC,CAAC,EAAEc,GAAa,GAAgB7C,EAAKnB,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,MAAM,iBAAiBkD,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,kBAAkB,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,EAAE,CAAC,CAAC,EAAe/B,EAAKnB,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,MAAM,iBAAiBkD,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,qBAAqB,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,GAAG,OAAO,CAAC,EAAE,SAAS,CAAC,UAAU,CAAC,gBAAgB,iBAAiB,EAAE,UAAU,CAAC,gBAAgB,kBAAkB,OAAO,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQ2B,GAAI,CAAC,kFAAkF,gFAAgF,qGAAqG,yYAAyY,yQAAyQ,sHAAsH,oQAAoQ,gHAAgH,iSAAiS,yOAAyO,uRAAuR,0LAA0L,4LAA4L,mOAAmO,gQAAgQ,iOAAiO,miCAAmiC,gEAAgE,4HAA4H,yFAAyF,yFAAyF,kGAAkG,2GAA2G,0pBAA0pB,4OAA4O,oOAAoO,2NAA2N,yFAAyF,kMAAkM,mIAAmI,iHAAiH,4GAA4G,0GAA0G,26CAA26C,qIAAqI,gFAAgF,+DAA+D,mbAAmb,GAAeA,GAAI,+bAA+b,EAQ18wBC,EAAgBC,EAAQhD,GAAU8C,GAAI,cAAc,EAASG,GAAQF,EAAgBA,EAAgB,YAAY,2BAAoBA,EAAgB,aAAa,CAAC,OAAO,GAAG,MAAM,IAAI,EAAEG,EAAoBH,EAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,YAAY,YAAY,WAAW,EAAE,aAAa,CAAC,UAAU,SAAS,cAAc,QAAQ,EAAE,MAAM,UAAU,KAAKI,EAAY,IAAI,CAAC,CAAC,EAAEC,EAASL,EAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,OAAO,oBAAoB,OAAO,SAAS,MAAM,SAAS,IAAI,kHAAkH,OAAO,KAAK,CAAC,CAAC,EAAE,GAAGnF,GAAmB,GAAGyF,GAAoCC,EAAK,CAAC,EAAE,CAAC,6BAA6B,EAAI,CAAC",
  "names": ["fontStore", "fonts", "css", "className", "createStore", "state1", "dataStore", "Data", "setDataStore", "newState", "storeState", "storeSetters", "setStoreState", "setter", "useStore", "state", "setState", "ye", "ue", "useObserveData", "centerContent", "defaultContainerStyles", "centerContent", "withCoframe", "Component", "props", "ue", "_window_CFQ", "window", "p", "useStore", "createStore", "withHover", "Component", "props", "p", "MotionAWithHover", "withHover", "motion", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "cTAColor", "height", "id", "link", "title", "width", "props", "_ref", "_humanReadableVariantMap_props_variant", "_ref1", "_ref2", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "hMFxJysWl", "ZCXs1gg2o", "zjENpdfuc", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "cx", "RichText2", "css", "FramerbGM9Ql5qS", "withCSS", "bGM9Ql5qS_default", "addPropertyControls", "ControlType", "addFonts", "ButtonPrimaryFonts", "getFonts", "bGM9Ql5qS_default", "MotionHeaderWithCoframe", "withCoframe", "motion", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTaprvwqy3", "args", "onTap1yoeug", "onTap1sv3a1n", "ref1", "pe", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "isDisplayed4", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "u", "Link", "Image2", "RichText2", "ComponentViewportProvider", "css", "FramerlasPNOdll", "withCSS", "lasPNOdll_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts"]
}
