{
  "version": 3,
  "sources": ["ssg:https://framer.com/m/framer/store.js@^1.0.0", "ssg:https://framer.com/m/framer/utils.js@^0.9.0", "ssg:https://framerusercontent.com/modules/EtVacuirxkzhpJwnIekK/HpgW3FeO2wk8PIH5D0T7/Dynamic_Link_1.js", "ssg:https://framerusercontent.com/modules/dI5iuuKHHJaat78WYvLE/flErS4xy5Zs3vDdfeIAE/pc0PgqYB2.js", "ssg:https://framerusercontent.com/modules/8xs3FhjuBJ0r9dHvUIr1/0zKzWJMn5NQ4wJTjlY4r/Uhx7LrQPg.js", "ssg:https://framerusercontent.com/modules/A21r4qEPqZcIB13QvKYc/1GBPqth1ZzzA0G5VrpOo/cHKPL8HyR.js", "ssg:https://framerusercontent.com/modules/QyvRlYmN8NED5t0ctay5/rzsbGp2vUR5N7cv5GAnW/aTsvX7q1i.js", "ssg:https://framerusercontent.com/modules/pavJ5q9XGH5nCZb18HTY/8MYB5wkhtz3LrFHWt0fG/avyNyuBqL.js", "ssg:https://framerusercontent.com/modules/elizpJ7QjmIbsBrqIlXQ/QhgQFrtRO9jy2BP0AfQt/TJtq3stel.js", "ssg:https://framerusercontent.com/modules/3HSJxXdJbNy6AwttUcbZ/LlBBPXxC8exsg1snDlNe/tNF2oesaC.js", "ssg:https://framerusercontent.com/modules/oU9ByFV2N23Gtu4eHKZT/zfZ8qZNur7TSmBQ1dj3o/vD4n8unJs.js", "ssg:https://framerusercontent.com/modules/8Z5rYdeLsCyRfwTcg9aM/n82No6T5UuvyNR9EscEn/WiTkEmtSV.js", "ssg:https://framerusercontent.com/modules/VYPvPX1qtmGcunwYOtOp/l56aCzd1PPc2QLG2lu7C/Xnm3Wu8lz.js", "ssg:https://framerusercontent.com/modules/A2ep9wLVBm1owJPlFD7m/Fu0joMqtEx0CVxqoH6Ru/ZYzf9J68F.js"],
  "sourcesContent": ["import{useState,useEffect}from\"react\";import{Data,useObserveData}from\"framer\";export function createStore(state1){// Use Data so that a Preview reload resets the state\nconst dataStore=Data({state:Object.freeze({...state1})});// Create a set function that updates the state\nconst setDataStore=newState=>{// If the state is an object, make sure we copy it\nif(typeof newState===\"function\"){newState=newState(dataStore.state);}dataStore.state=Object.freeze({...dataStore.state,...newState});};// Store the initial state, copy the object if it's an object\nlet storeState=typeof state1===\"object\"?Object.freeze({...state1}):state1;// Keep a list of all the listeners, in the form of React hook setters\nconst storeSetters=new Set();// Create a set function that updates all the listeners / setters\nconst setStoreState=newState=>{// If the state is an object, make sure we copy it\nif(typeof newState===\"function\"){newState=newState(storeState);}storeState=typeof newState===\"object\"?Object.freeze({...storeState,...newState}):newState;// Update all the listeners / setters with the new value\nstoreSetters.forEach(setter=>setter(storeState));};// Create the actual hook based on everything above\nfunction useStore(){// Create the hook we are going to use as a listener\nconst[state,setState]=useState(storeState);// If we unmount the component using this hook, we need to remove the listener\n// @ts-ignore\nuseEffect(()=>{// But right now, we need to add the listener\nstoreSetters.add(setState);return()=>storeSetters.delete(setState);},[]);// If Data context exists, use Data, otherwise use vanilla React state\nif(useObserveData()===true){useObserveData();return[dataStore.state,setDataStore];}else{// Return the state and a function to update the central store\nreturn[state,setStoreState];}}return useStore;}\nexport const __FramerMetadata__ = {\"exports\":{\"createStore\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./createStore.map", "export const centerContent = {\n    display: \"flex\",\n    justifyContent: \"center\",\n    alignItems: \"center\"\n};\nexport const autoSizingText = {\n    width: \"max-content\",\n    wordBreak: \"break-word\",\n    overflowWrap: \"break-word\",\n    overflow: \"hidden\",\n    whiteSpace: \"pre-wrap\",\n    flexShrink: 0\n};\nexport const defaultContainerStyles = {\n    ...centerContent,\n    overflow: \"hidden\"\n};\nexport const containerStyles = defaultContainerStyles;\nexport const randomColor = ()=>\"#\" + Math.floor(Math.random() * 16777215).toString(16)\n;\n\nexport const __FramerMetadata__ = {\"exports\":{\"centerContent\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"containerStyles\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"autoSizingText\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"defaultContainerStyles\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"randomColor\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}}}}\n//# sourceMappingURL=./Utils.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import{createStore}from\"https://framer.com/m/framer/store.js@^1.0.0\";import{randomColor}from\"https://framer.com/m/framer/utils.js@^0.9.0\";// Learn more: https://www.framer.com/developers/overrides/\nconst useStore=createStore({background:\"#0099FF\"});export function withRotate(Component){return props=>{return /*#__PURE__*/_jsx(Component,{...props,animate:{rotate:90},transition:{duration:2}});};}export function withHover(Component){return props=>{return /*#__PURE__*/_jsx(Component,{...props,whileHover:{scale:1.05}});};}export function withRandomColor(Component){return props=>{const[store,setStore]=useStore();return /*#__PURE__*/_jsx(Component,{...props,animate:{background:store.background},onClick:()=>{setStore({background:randomColor()});}});};}export function withDeviceDetection(Component){return props=>{// Function to redirect to the appropriate app store\nconst redirectToStore=()=>{const userAgent=navigator.userAgent||navigator.vendor||window.opera;// Check if the user is on a MacBook or Apple device\nif(/Macintosh|iPad|iPhone|iPod/.test(userAgent)&&!window.MSStream){// Redirect to Apple App Store\nwindow.location.href=\"https://apps.apple.com/us/app/taskme-client/id1573126186\";}else{// Redirect to Google Play Store\nwindow.location.href=\"https://play.google.com/store/apps/details?id=com.artisantechng.taskme.client\";}};return /*#__PURE__*/_jsx(Component,{...props,onClick:redirectToStore,style:{cursor:\"pointer\",...props.style}});};}export function withDeviceDetectionTasker(Component){return props=>{// Function to redirect to the appropriate app store\nconst redirectToStore=()=>{const userAgent=navigator.userAgent||navigator.vendor||window.opera;// Check if the user is on a MacBook or Apple device\nif(/Macintosh|iPad|iPhone|iPod/.test(userAgent)&&!window.MSStream){// Redirect to Apple App Store\nwindow.location.href=\"https://apps.apple.com/us/app/taskme-pro/id1573119168\";}else{// Redirect to Google Play Store\nwindow.location.href=\"https://play.google.com/store/apps/details?id=com.artisantechng.taskme.tasker\";}};return /*#__PURE__*/_jsx(Component,{...props,onClick:redirectToStore,style:{cursor:\"pointer\",...props.style}});};}\nexport const __FramerMetadata__ = {\"exports\":{\"withHover\":{\"type\":\"reactHoc\",\"name\":\"withHover\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withDeviceDetection\":{\"type\":\"reactHoc\",\"name\":\"withDeviceDetection\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withRotate\":{\"type\":\"reactHoc\",\"name\":\"withRotate\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withDeviceDetectionTasker\":{\"type\":\"reactHoc\",\"name\":\"withDeviceDetectionTasker\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withRandomColor\":{\"type\":\"reactHoc\",\"name\":\"withRandomColor\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Dynamic_Link_1.map", "// Generated by Framer (722666c)\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={rdhiFNhGt:{hover:true}};const serializationHash=\"framer-yUxls\";const variantClassNames={rdhiFNhGt:\"framer-v-nqdzud\"};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 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=({click2,height,id,menuTitle,navMenuLink,smoothPageScroll,width,...props})=>{return{...props,bz0BMIxpD:click2??props.bz0BMIxpD,S_7TlSvUq:navMenuLink??props.S_7TlSvUq,UZ8_3S9OX:menuTitle??props.UZ8_3S9OX??\"Why TaskMe?\",ZIeYDYmv_:smoothPageScroll??props.ZIeYDYmv_??true};};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,UZ8_3S9OX,S_7TlSvUq,ZIeYDYmv_,bz0BMIxpD,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"rdhiFNhGt\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap809i38=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(bz0BMIxpD){const res=await bz0BMIxpD(...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:S_7TlSvUq,motionChild:true,nodeId:\"rdhiFNhGt\",openInNewTab:false,smoothScroll:ZIeYDYmv_,children:/*#__PURE__*/_jsx(motion.a,{...restProps,...gestureHandlers,className:`${cx(scopingClassNames,\"framer-nqdzud\",className,classNames)} framer-1ardh5o`,\"data-framer-name\":\"Nav Menu \",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"rdhiFNhGt\",onTap:onTap809i38,ref:ref??ref1,style:{...style},...addPropertyOverrides({\"rdhiFNhGt-hover\":{\"data-framer-name\":undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SUJNIFBsZXggU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"IBM Plex Sans\", \"IBM Plex Sans Placeholder\", sans-serif',\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(5, 29, 63))\"},children:\"Why TaskMe?\"})}),className:\"framer-oqob5m\",\"data-framer-name\":\"Why TaskMe?\",fonts:[\"GF;IBM Plex Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"MyJA4tvwj\",style:{\"--extracted-r6o4lv\":\"rgb(5, 29, 63)\",\"--framer-paragraph-spacing\":\"0px\"},text:UZ8_3S9OX,variants:{\"rdhiFNhGt-hover\":{\"--extracted-r6o4lv\":\"rgb(0, 122, 255)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"rdhiFNhGt-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SUJNIFBsZXggU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"IBM Plex Sans\", \"IBM Plex Sans Placeholder\", sans-serif',\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(0, 122, 255))\"},children:\"Why TaskMe?\"})})}},baseVariant,gestureVariant)})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-yUxls.framer-1ardh5o, .framer-yUxls .framer-1ardh5o { display: block; }\",\".framer-yUxls.framer-nqdzud { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-yUxls .framer-oqob5m { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-yUxls.framer-nqdzud { gap: 0px; } .framer-yUxls.framer-nqdzud > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-yUxls.framer-nqdzud > :first-child { margin-top: 0px; } .framer-yUxls.framer-nqdzud > :last-child { margin-bottom: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 24\n * @framerIntrinsicWidth 97\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"qzRZLAbFI\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"UZ8_3S9OX\":\"menuTitle\",\"S_7TlSvUq\":\"navMenuLink\",\"ZIeYDYmv_\":\"smoothPageScroll\",\"bz0BMIxpD\":\"click2\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framerpc0PgqYB2=withCSS(Component,css,\"framer-yUxls\");export default Framerpc0PgqYB2;Framerpc0PgqYB2.displayName=\"Header - Navigation/Menu\";Framerpc0PgqYB2.defaultProps={height:24,width:97};addPropertyControls(Framerpc0PgqYB2,{UZ8_3S9OX:{defaultValue:\"Why TaskMe?\",description:\"Type in the title for a menu in the navigation bar\",displayTextArea:false,title:\"Menu Title\",type:ControlType.String},S_7TlSvUq:{description:\"This is link should lead to the page section it is connected to\",title:\"Nav Menu Link\",type:ControlType.Link},ZIeYDYmv_:{defaultValue:true,description:\"Clicking this should scroll to specific page sections ...\",title:\"Smooth Page Scroll\",type:ControlType.Boolean},bz0BMIxpD:{title:\"Click 2\",type:ControlType.EventHandler}});addFonts(Framerpc0PgqYB2,[{explicitInter:true,fonts:[{family:\"IBM Plex Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/ibmplexsans/v21/zYXGKVElMYYaJe8bpLHnCwDKr932-G7dytD-Dmu1swZSAXcomDVmadSD6llzBaI5loa26g.woff2\",weight:\"400\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerpc0PgqYB2\",\"slots\":[],\"annotations\":{\"framerVariables\":\"{\\\"UZ8_3S9OX\\\":\\\"menuTitle\\\",\\\"S_7TlSvUq\\\":\\\"navMenuLink\\\",\\\"ZIeYDYmv_\\\":\\\"smoothPageScroll\\\",\\\"bz0BMIxpD\\\":\\\"click2\\\"}\",\"framerIntrinsicHeight\":\"24\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"97\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"qzRZLAbFI\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./pc0PgqYB2.map", "// Generated by Framer (2ca17d4)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Link,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const serializationHash=\"framer-twHQv\";const variantClassNames={W_PHeDPs_:\"framer-v-1ptfijv\"};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 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=({click,height,id,width,...props})=>{return{...props,G5qlAtYZO:click??props.G5qlAtYZO};};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,G5qlAtYZO,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"W_PHeDPs_\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1xgetp9=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(G5qlAtYZO){const res=await G5qlAtYZO(...args);if(res===false)return false;}setVariant(\"W_PHeDPs_\");});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:{hash:\":UP6QfWNwu\",webPageId:\"augiA20Il\"},motionChild:true,nodeId:\"W_PHeDPs_\",openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{...restProps,...gestureHandlers,className:`${cx(scopingClassNames,\"framer-1ptfijv\",className,classNames)} framer-e9oupl`,\"data-framer-name\":\"TaskMe Logo\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"W_PHeDPs_\",onTap:onTap1xgetp9,ref:ref??ref1,style:{...style},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"augiA20Il\"},motionChild:true,nodeId:\"CdQc7eQ72\",children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-cdjyom framer-e9oupl\",\"data-framer-name\":\"Website Logo Frame\",fill:\"rgb(5, 29, 63)\",intrinsicHeight:22,intrinsicWidth:123,layoutDependency:layoutDependency,layoutId:\"CdQc7eQ72\",svg:'<svg width=\"123\" height=\"22\" viewBox=\"0 0 123 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M23.9455 4.53101V15.6262C23.9455 16.9669 22.9043 18.0664 21.5878 18.1508H18.8722C18.8361 18.1508 18.7999 18.1508 18.7637 18.1568C18.5145 18.1809 18.2793 18.2915 18.1004 18.4704L16.8904 19.6804C16.4643 20.1065 15.7728 20.1065 15.3467 19.6804L14.1367 18.4704C13.9578 18.2915 13.7226 18.1809 13.4734 18.1568C13.4372 18.1528 13.401 18.1508 13.3648 18.1508H10.38C9.06343 18.0644 8.02224 16.9669 8.02224 15.6262V14.7077C8.02224 14.1026 8.51067 13.6122 9.11368 13.6122H11.9639C12.2835 13.6122 12.5729 13.4735 12.7719 13.2544C12.9488 13.0595 13.0553 12.8022 13.0553 12.5188V12.2313C13.0553 11.8937 12.9025 11.5922 12.6613 11.3912C12.4724 11.2344 12.2292 11.1399 11.9639 11.1399H9.11167C8.51671 11.1399 8.03028 10.6615 8.02023 10.0686V10.0465C8.03229 9.45351 8.51671 8.97312 9.11167 8.97513H14.7738C15.1055 8.97513 15.403 8.82639 15.602 8.59323C15.7648 8.40228 15.8633 8.15304 15.8633 7.88169V7.60632C15.8633 7.29075 15.7286 7.00533 15.5135 6.80634C15.3186 6.62544 15.0573 6.51489 14.7698 6.51489H9.10966C8.54484 6.51489 8.07249 6.08073 8.02224 5.53401C8.01621 5.20235 7.99812 4.46669 8.04435 4.14509C8.16294 3.33104 8.70163 2.60543 9.44533 2.24966C9.79507 2.08685 10.1589 2.00042 10.5488 2.00042H21.4229C22.7837 1.97429 23.9736 3.17426 23.9455 4.53101Z\" fill=\"#007AFF\"/>\\n<path d=\"M6.7603 8.95778H1.2147C0.88305 8.94371 0.61974 8.83718 0.422759 8.67437C0.298139 8.57186 0.201659 8.44523 0.133319 8.30654C-0.0274815 7.98695 -0.0435615 7.59902 0.0890987 7.26737C0.151409 7.10858 0.247889 6.96185 0.376529 6.84125C0.57552 6.65432 0.85491 6.5297 1.2147 6.51562H6.80251C7.1422 6.51562 7.45174 6.65432 7.67284 6.87944C7.89394 7.10456 8.02861 7.4141 8.02459 7.7558C8.02057 8.04926 7.90801 8.31659 7.7251 8.52161C7.48993 8.78894 7.14019 8.95577 6.7603 8.95577V8.95778Z\" fill=\"#007AFF\"/>\\n<path d=\"M6.80306 13.5789H5.28148H3.6574C3.20113 13.5608 2.8735 13.3638 2.67451 13.0884C2.51974 12.8754 2.44336 12.6161 2.44336 12.3568C2.44336 12.0774 2.53381 11.798 2.7127 11.5769C2.9137 11.3277 3.22927 11.1528 3.65941 11.1367C3.65941 11.1367 3.95086 11.1367 4.35688 11.1367C4.80511 11.1367 5.39002 11.1367 5.87645 11.1367C6.39704 11.1367 6.80507 11.1367 6.80507 11.1367C7.193 11.1528 7.48646 11.2955 7.68947 11.5066C7.91057 11.7377 8.02112 12.0473 8.02112 12.3568C8.02112 12.5739 7.96685 12.791 7.86032 12.9799C7.67339 13.3095 7.32164 13.5568 6.80708 13.5769L6.80306 13.5789Z\" fill=\"#007AFF\"/>\\n<path d=\"M72.8455 21.2288C72.7453 21.2288 72.6451 21.2213 72.5449 21.2028C71.6804 21.0618 71.0273 20.264 71.0273 19.3438V2.31992C71.0273 1.33663 71.8288 0.535156 72.8121 0.535156C72.9086 0.535156 73.0088 0.542577 73.1052 0.557419C73.9698 0.694709 74.6228 1.49247 74.6228 2.41268V12.3606L79.7026 7.02487C79.9289 6.78739 80.4001 6.56476 80.7081 6.54992C80.7378 6.54992 80.7675 6.54992 80.7972 6.54992C81.4799 6.54992 82.0736 6.93582 82.3482 7.55547C82.6339 8.19739 82.4743 8.98403 81.9474 9.51092L77.7953 13.663L82.2814 18.2937C82.7971 18.8281 82.9493 19.6147 82.6561 20.2492C82.3778 20.8503 81.8176 21.2213 81.1571 21.2362H81.1163C80.6896 21.2362 80.2666 21.0432 79.9512 20.7093L74.6191 15.0062V19.4551C74.6191 20.4384 73.8214 21.2362 72.8381 21.2362L72.8455 21.2288Z\" fill=\"#051D3F\"/>\\n<path d=\"M63.4801 21.3534C61.6805 21.3534 60.1703 20.949 58.9977 20.1549C58.3076 19.6874 57.7659 19.0826 57.3874 18.3628C57.1054 17.8173 57.1314 17.1791 57.4616 16.6485C57.6991 16.2663 58.0961 15.9917 58.5747 15.8693L58.6341 15.8544C58.7714 15.821 58.9124 15.8025 59.0534 15.8025C59.7213 15.8025 60.3298 16.1884 60.6378 16.8118C60.7231 16.9787 60.8196 17.1309 60.9235 17.2607C61.2129 17.6169 61.5766 17.8693 62.0033 18.014C62.4522 18.1661 62.9495 18.244 63.4764 18.244C64.2519 18.244 64.8567 18.103 65.224 17.8359C65.5728 17.5835 65.7398 17.2793 65.7398 16.9045C65.7398 16.5298 65.5914 16.2552 65.276 16.0734C64.9012 15.8581 64.2852 15.6615 63.4986 15.5094L62.6637 15.3758C61.7139 15.1903 60.8382 14.9305 60.0552 14.604C59.2501 14.27 58.5896 13.7988 58.0961 13.2088C57.5877 12.6003 57.328 11.8248 57.328 10.9009C57.328 9.49459 57.8623 8.39256 58.9124 7.6282C59.9328 6.88238 61.2834 6.50391 62.9272 6.50391C64.571 6.50391 65.8066 6.86012 66.8381 7.56512C67.2017 7.81372 67.5245 8.09572 67.7991 8.4037C68.1961 8.85267 68.3668 9.43522 68.2555 9.96954C68.1256 10.6003 67.6618 11.105 67.0496 11.2905C66.8789 11.3424 66.7082 11.3684 66.5338 11.3684C65.9253 11.3684 65.3799 11.0641 65.0719 10.5521C64.9383 10.3295 64.7676 10.1476 64.5672 10.0178C64.1257 9.73206 63.5765 9.58735 62.9272 9.58735C62.2779 9.58735 61.7472 9.70238 61.4133 9.9213C61.1053 10.1217 60.9643 10.3888 60.9643 10.7599C60.9643 11.1309 61.109 11.3833 61.417 11.5651C61.7844 11.7803 62.289 11.9435 62.9235 12.0474L63.7806 12.2144C64.7936 12.3999 65.7212 12.6411 66.5413 12.938C67.3984 13.2459 68.0848 13.6986 68.5932 14.2812C69.1126 14.8823 69.3761 15.6912 69.3761 16.6893C69.3761 18.1846 68.8269 19.3535 67.7397 20.1661C66.6822 20.9564 65.2463 21.3609 63.4764 21.3609L63.4801 21.3534Z\" fill=\"#051D3F\"/>\\n<path d=\"M88.0512 21.21C87.5688 21.21 87.1235 21.0097 86.7933 20.6497C86.5113 20.338 86.3555 19.9113 86.3555 19.4475V3.20654C86.3555 1.83365 87.387 0.664829 88.7042 0.542381C88.7821 0.53496 88.8638 0.53125 88.9454 0.53125C89.9027 0.53125 90.7747 1.05443 91.2274 1.89301L96.6411 11.7445L101.962 1.92641C102.437 1.06557 103.342 0.53125 104.329 0.53125C104.485 0.53125 104.645 0.546092 104.797 0.572066C104.967 0.60175 105.138 0.649987 105.305 0.716776C106.337 1.12864 107.031 2.1713 107.031 3.31786V7.51075L106.997 19.4401C106.997 19.9484 106.786 20.4308 106.411 20.7722C106.125 21.0319 105.776 21.1803 105.398 21.2063C105.361 21.2063 105.324 21.2063 105.287 21.2063C104.819 21.2063 104.381 21.0171 104.055 20.6794C103.75 20.3603 103.583 19.9188 103.583 19.4327V7.60723C103.583 7.46623 103.487 7.34378 103.35 7.31038C103.212 7.27699 103.071 7.34378 103.005 7.46623L99.821 13.6739C99.6911 13.9188 99.539 14.1489 99.3683 14.3641C98.8859 14.9652 98.2514 15.4179 97.5316 15.6739L97.513 15.6813C97.2496 15.7518 96.9713 15.7889 96.6893 15.7889C96.4444 15.7889 96.2032 15.763 95.9694 15.7073L95.9472 15.6999C95.0938 15.4216 94.3628 14.8687 93.8433 14.1006L93.7765 14.0005C93.6986 13.878 93.6244 13.7481 93.5539 13.6146L90.3332 7.43654C90.2664 7.31038 90.1254 7.2473 89.9881 7.2807C89.8508 7.31409 89.7543 7.43654 89.7543 7.57754V19.4438C89.7543 20.3752 89.053 21.1507 88.1551 21.2063C88.118 21.2063 88.0809 21.2063 88.0438 21.2063L88.0512 21.21Z\" fill=\"#051D3F\"/>\\n<path d=\"M48.1514 21.3534C47.1681 21.3534 46.2627 21.1753 45.4649 20.8228C44.6523 20.4666 43.9993 19.9397 43.5243 19.2607C43.0457 18.5743 42.8008 17.7283 42.8008 16.7413C42.8008 15.7543 43.0457 14.9379 43.528 14.27C44.0067 13.6059 44.6709 13.1012 45.502 12.7599C46.3184 12.4296 47.2571 12.2589 48.2924 12.2589H51.3573C51.4797 12.2589 51.5984 12.2255 51.6949 12.1513C51.8248 12.0511 51.899 11.899 51.8953 11.7358C51.8953 11.0938 51.7135 10.6115 51.3239 10.2181C50.9491 9.83596 50.3294 9.6393 49.4909 9.6393C48.6523 9.6393 48.0363 9.82854 47.6319 10.2033C47.4575 10.3629 47.3054 10.5484 47.1829 10.7487C46.8564 11.2756 46.2998 11.591 45.6913 11.591C45.272 11.591 44.8713 11.4389 44.5299 11.1495C44.3703 11.0159 44.2405 10.8489 44.144 10.6634C43.8063 10.0104 43.8657 9.27938 44.3073 8.70796C44.3481 8.6523 44.3926 8.60035 44.4371 8.54841C44.9455 7.93246 45.6319 7.43154 46.4705 7.06049C47.3054 6.68943 48.3406 6.50391 49.5428 6.50391C51.3758 6.50391 52.8415 6.97514 53.9064 7.90278C54.9713 8.83412 55.5168 10.1847 55.5242 11.9213V20.975H54.9231C54.2032 20.975 53.5984 20.7894 53.1272 20.4184C52.8674 20.2143 52.6708 19.9694 52.5483 19.6874L52.3517 19.2384L52.0734 19.6429C52.014 19.7245 51.9547 19.8136 51.8879 19.8989C51.5873 20.2996 51.1309 20.6484 50.5335 20.9304C49.9398 21.2124 49.1384 21.3571 48.1514 21.3571V21.3534ZM48.4779 15.2348C47.8694 15.2348 47.3759 15.3646 47.0122 15.617C46.6746 15.8507 46.5113 16.1884 46.5113 16.6522C46.5113 17.116 46.6857 17.4611 47.0493 17.7394C47.4315 18.0325 47.9733 18.1809 48.6671 18.1809C49.6244 18.1809 50.4111 17.9101 51.0048 17.372C51.5317 16.8971 51.8174 16.2923 51.8767 15.5279L51.899 15.2348H48.4742H48.4779Z\" fill=\"#051D3F\"/>\\n<path d=\"M27.9473 0.542969C28.0883 2.58747 29.7691 4.16815 31.8396 4.16815H36.5297V19.4667C36.5297 20.4611 37.2718 21.2848 38.2217 21.3479C38.3145 21.3553 38.4035 21.3516 38.4926 21.3479C38.834 21.3182 39.1679 21.1958 39.4388 20.9843C39.8989 20.6318 40.1549 20.1049 40.1549 19.5409V4.16815H44.845C46.9118 4.16815 48.5964 2.58747 48.7374 0.542969H27.9473Z\" fill=\"#051D3F\"/>\\n<path d=\"M116.103 21.4682C114.667 21.4682 113.401 21.164 112.307 20.5517C111.212 19.9395 110.359 19.0787 109.747 17.9618C109.134 16.8449 108.83 15.5425 108.83 14.0472V13.6984C108.83 12.1845 109.131 10.8747 109.732 9.76895C110.333 8.66321 111.175 7.80608 112.262 7.19384C113.35 6.58161 114.6 6.27734 116.017 6.27734C117.435 6.27734 118.637 6.58161 119.683 7.19384C120.73 7.80608 121.546 8.66321 122.129 9.76895C122.711 10.8747 123.001 12.166 123.001 13.639V14.1103C123.001 14.511 122.678 14.8338 122.277 14.8338H113.027C112.555 14.8338 112.214 15.2754 112.325 15.7318C112.5 16.4516 112.856 17.0527 113.401 17.5388C114.158 18.2178 115.09 18.5555 116.195 18.5555C117.301 18.5555 118.088 18.318 118.611 17.8431C118.819 17.6538 119.008 17.4535 119.179 17.242C119.624 16.6891 120.407 16.537 121.041 16.8635C121.906 17.3087 122.136 18.4442 121.509 19.19C121.472 19.2345 121.431 19.2827 121.39 19.3273C120.874 19.921 120.192 20.4219 119.338 20.8412C118.485 21.2567 117.409 21.4682 116.11 21.4682H116.103ZM113.183 12.3032H118.711C119.212 12.3032 119.561 11.806 119.394 11.3311C119.212 10.819 118.915 10.3886 118.503 10.0324C117.854 9.4684 117.016 9.19011 115.988 9.19011C114.96 9.19011 114.066 9.47211 113.427 10.0324C113.03 10.3812 112.73 10.8042 112.518 11.2977C112.318 11.7726 112.67 12.2995 113.186 12.2995L113.183 12.3032Z\" fill=\"#051D3F\"/>\\n</svg>\\n',withExternalLayout:true})})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-twHQv.framer-e9oupl, .framer-twHQv .framer-e9oupl { display: block; }\",\".framer-twHQv.framer-1ptfijv { cursor: pointer; height: 22px; overflow: hidden; position: relative; text-decoration: none; width: 123px; }\",\".framer-twHQv .framer-cdjyom { aspect-ratio: 5.590909090909091 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 22px); left: 0px; position: absolute; right: 0px; text-decoration: none; top: 0px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 22\n * @framerIntrinsicWidth 123\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"G5qlAtYZO\":\"click\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerUhx7LrQPg=withCSS(Component,css,\"framer-twHQv\");export default FramerUhx7LrQPg;FramerUhx7LrQPg.displayName=\"Header - Navigation/Website Logo Frame\";FramerUhx7LrQPg.defaultProps={height:22,width:123};addPropertyControls(FramerUhx7LrQPg,{G5qlAtYZO:{title:\"Click\",type:ControlType.EventHandler}});addFonts(FramerUhx7LrQPg,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerUhx7LrQPg\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerVariables\":\"{\\\"G5qlAtYZO\\\":\\\"click\\\"}\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"22\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicWidth\":\"123\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Uhx7LrQPg.map", "// Generated by Framer (cf4c6d7)\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,withCodeBoundaryForOverrides,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{withDeviceDetection,withDeviceDetectionTasker}from\"https://framerusercontent.com/modules/EtVacuirxkzhpJwnIekK/HpgW3FeO2wk8PIH5D0T7/Dynamic_Link_1.js\";import HeaderNavigationMenu from\"https://framerusercontent.com/modules/dI5iuuKHHJaat78WYvLE/flErS4xy5Zs3vDdfeIAE/pc0PgqYB2.js\";import HeaderNavigationWebsiteLogoFrame from\"https://framerusercontent.com/modules/8xs3FhjuBJ0r9dHvUIr1/0zKzWJMn5NQ4wJTjlY4r/Uhx7LrQPg.js\";const HeaderNavigationWebsiteLogoFrameFonts=getFonts(HeaderNavigationWebsiteLogoFrame);const HeaderNavigationMenuFonts=getFonts(HeaderNavigationMenu);const MotionAWithDeviceDetectionTasker8gzqqf=withCodeBoundaryForOverrides(motion.a,{nodeId:\"gGg9bS2k8\",override:withDeviceDetectionTasker,scopeId:\"cHKPL8HyR\"});const MotionAWithDeviceDetectiona7riyd=withCodeBoundaryForOverrides(motion.a,{nodeId:\"pWsjiGsPQ\",override:withDeviceDetection,scopeId:\"cHKPL8HyR\"});const MotionDivWithDeviceDetectionlnczvb=withCodeBoundaryForOverrides(motion.div,{nodeId:\"LwI7obCoF\",override:withDeviceDetection,scopeId:\"cHKPL8HyR\"});const MotionDivWithDeviceDetectionTasker95qkky=withCodeBoundaryForOverrides(motion.div,{nodeId:\"P7CJHhjgh\",override:withDeviceDetectionTasker,scopeId:\"cHKPL8HyR\"});const cycleOrder=[\"b2GJi7Jp9\",\"gkEsoq7HX\",\"oPR9L2O0P\",\"srUsd_8ry\",\"mi8tH7cCn\",\"hORnmWx19\",\"dQ87_oQrR\"];const serializationHash=\"framer-vaVMr\";const variantClassNames={b2GJi7Jp9:\"framer-v-1pmdv3o\",dQ87_oQrR:\"framer-v-jdpza5\",gkEsoq7HX:\"framer-v-2o7put\",hORnmWx19:\"framer-v-13kzc4o\",mi8tH7cCn:\"framer-v-12qivhm\",oPR9L2O0P:\"framer-v-38zcf2\",srUsd_8ry:\"framer-v-n7yz8i\"};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 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={\"Landscacpe Phone - Collapsed\":\"mi8tH7cCn\",\"Landscacpe Phone - Expanded\":\"srUsd_8ry\",\"Phone - Collapsed\":\"dQ87_oQrR\",\"Phone - Expanded\":\"hORnmWx19\",\"Tablet - Collapsed\":\"oPR9L2O0P\",\"Tablet - Expanded\":\"gkEsoq7HX\",Desktop:\"b2GJi7Jp9\"};const getProps=({click,elevationSoftShadow,height,id,width,...props})=>{return{...props,itvirc_Bd:click??props.itvirc_Bd,rNR5WFeBm:elevationSoftShadow??props.rNR5WFeBm??\"0px 2px 16px 0px rgba(6, 5, 6, 0.04)\",variant:humanReadableVariantMap[props.variant]??props.variant??\"b2GJi7Jp9\"};};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,rNR5WFeBm,itvirc_Bd,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"b2GJi7Jp9\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap14q8101=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(itvirc_Bd){const res=await itvirc_Bd(...args);if(res===false)return false;}});const onTapdksxvi=activeVariantCallback(async(...args)=>{setVariant(\"gkEsoq7HX\");});const onTap1oqb5te=activeVariantCallback(async(...args)=>{setVariant(\"oPR9L2O0P\");});const onTap164a91r=activeVariantCallback(async(...args)=>{setVariant(\"mi8tH7cCn\");});const onTap18pb7df=activeVariantCallback(async(...args)=>{setVariant(\"dQ87_oQrR\");});const G5qlAtYZO1oqb5te=activeVariantCallback(async(...args)=>{setVariant(\"oPR9L2O0P\");});const G5qlAtYZO164a91r=activeVariantCallback(async(...args)=>{setVariant(\"mi8tH7cCn\");});const G5qlAtYZO18pb7df=activeVariantCallback(async(...args)=>{setVariant(\"dQ87_oQrR\");});const onTap1tbt068=activeVariantCallback(async(...args)=>{setVariant(\"hORnmWx19\");});const onTap9db2cy=activeVariantCallback(async(...args)=>{setVariant(\"srUsd_8ry\");});const bz0BMIxpD1oqb5te=activeVariantCallback(async(...args)=>{setVariant(\"oPR9L2O0P\");});const bz0BMIxpD164a91r=activeVariantCallback(async(...args)=>{setVariant(\"mi8tH7cCn\");});const bz0BMIxpD18pb7df=activeVariantCallback(async(...args)=>{setVariant(\"dQ87_oQrR\");});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if([\"gkEsoq7HX\",\"oPR9L2O0P\",\"srUsd_8ry\",\"hORnmWx19\"].includes(baseVariant))return true;return false;};const isDisplayed1=()=>{if([\"gkEsoq7HX\",\"oPR9L2O0P\",\"srUsd_8ry\",\"hORnmWx19\"].includes(baseVariant))return false;return true;};const isDisplayed2=()=>{if([\"gkEsoq7HX\",\"srUsd_8ry\",\"hORnmWx19\"].includes(baseVariant))return false;return true;};const isDisplayed3=()=>{if(baseVariant===\"oPR9L2O0P\")return false;return true;};const isDisplayed4=()=>{if(baseVariant===\"dQ87_oQrR\")return true;return false;};const isDisplayed5=()=>{if(baseVariant===\"dQ87_oQrR\")return false;return true;};const isDisplayed6=()=>{if(baseVariant===\"mi8tH7cCn\")return true;return false;};const isDisplayed7=()=>{if(baseVariant===\"mi8tH7cCn\")return false;return true;};const isDisplayed8=()=>{if([\"oPR9L2O0P\",\"mi8tH7cCn\",\"dQ87_oQrR\"].includes(baseVariant))return false;return true;};const router=useRouter();const isDisplayed9=()=>{if([\"gkEsoq7HX\",\"srUsd_8ry\",\"hORnmWx19\"].includes(baseVariant))return true;return false;};const isDisplayed10=()=>{if([\"gkEsoq7HX\",\"hORnmWx19\"].includes(baseVariant))return false;return true;};const isDisplayed11=()=>{if(baseVariant===\"srUsd_8ry\")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,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1pmdv3o\",className,classNames),\"data-framer-name\":\"Desktop\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"b2GJi7Jp9\",onTap:onTap14q8101,ref:refBinding,style:{\"--3lvekp\":rNR5WFeBm,backgroundColor:\"rgb(253, 253, 254)\",boxShadow:\"var(--3lvekp)\",...style},...addPropertyOverrides({dQ87_oQrR:{\"data-framer-name\":\"Phone - Collapsed\"},gkEsoq7HX:{\"data-framer-name\":\"Tablet - Expanded\"},hORnmWx19:{\"data-framer-name\":\"Phone - Expanded\"},mi8tH7cCn:{\"data-framer-name\":\"Landscacpe Phone - Collapsed\"},oPR9L2O0P:{\"data-framer-name\":\"Tablet - Collapsed\"},srUsd_8ry:{\"data-framer-name\":\"Landscacpe Phone - Expanded\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-rjx78d\",\"data-framer-name\":\"Logo and Butoon (download harmburger menu and close) stack\",layoutDependency:layoutDependency,layoutId:\"BTentdegA\",children:[isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-oh7jew\",\"data-framer-name\":\"Buttons (Download Links for respective store and Harmburger Menu and Close_\",layoutDependency:layoutDependency,layoutId:\"WR9fuZooW\",children:[isDisplayed1()&&/*#__PURE__*/_jsx(Link,{href:\"https://apps.apple.com/us/app/taskme-client/id1573126186\",motionChild:true,nodeId:\"lABv7cnkI\",openInNewTab:true,scopeId:\"cHKPL8HyR\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-50r48b framer-1rkr8uj\",\"data-border\":true,\"data-framer-name\":\"Download for apple store\",layoutDependency:layoutDependency,layoutId:\"lABv7cnkI\",style:{\"--border-bottom-width\":\"1.111111044883728px\",\"--border-color\":\"rgb(5, 29, 63)\",\"--border-left-width\":\"1.111111044883728px\",\"--border-right-width\":\"1.111111044883728px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1.111111044883728px\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1qnb4dc\",\"data-framer-name\":\"Apple logo\",layoutDependency:layoutDependency,layoutId:\"N2aQre2YB\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-ltsuh0\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:21,intrinsicWidth:18,layoutDependency:layoutDependency,layoutId:\"I91:15800;3415:190010\",svg:'<svg width=\"18\" height=\"21\" viewBox=\"0 0 18 21\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M17.0211 15.0651C17.0211 15.0651 16.5002 16.5755 15.4586 18.138C15.1982 18.6068 13.9482 20.3776 12.4377 20.3776C11.344 20.3776 10.6148 19.5964 9.20858 19.5964C7.48983 19.5964 6.81274 20.3776 5.71899 20.3776C5.14608 20.4297 4.57316 20.1172 3.94816 19.5443C-0.0622571 15.7422 -0.270591 10.1172 1.23983 7.82552C2.17733 6.3151 3.73983 5.3776 5.45858 5.32552C6.81274 5.32552 8.27108 6.21094 8.84399 6.21094C9.26066 6.21094 11.4482 5.16927 12.6982 5.27344C14.4169 5.42969 15.6148 6.05469 16.5002 7.2526C13.9482 8.5026 13.0627 13.3464 17.0211 15.0651ZM12.8023 0.585938C13.219 2.2526 11.3961 5.42969 8.68774 5.27344C8.53149 3.03385 10.4586 0.742187 12.8023 0.585938Z\" fill=\"#051D3F\"/>\\n</svg>\\n',withExternalLayout:true})})})}),isDisplayed1()&&/*#__PURE__*/_jsx(Link,{href:\"https://play.google.com/store/apps/details?id=com.artisantechng.taskme.client\",motionChild:true,nodeId:\"vWlURK45l\",scopeId:\"cHKPL8HyR\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1h4alcg framer-1rkr8uj\",\"data-border\":true,\"data-framer-name\":\"Download for playstore\",layoutDependency:layoutDependency,layoutId:\"vWlURK45l\",style:{\"--border-bottom-width\":\"1.111111044883728px\",\"--border-color\":\"rgb(5, 29, 63)\",\"--border-left-width\":\"1.111111044883728px\",\"--border-right-width\":\"1.111111044883728px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1.111111044883728px\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1dn6m9d\",\"data-framer-name\":\"mdi:google-play\",layoutDependency:layoutDependency,layoutId:\"NlrfnJTJf\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-kar7xl\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:22,intrinsicWidth:20,layoutDependency:layoutDependency,layoutId:\"I91:15802;4935:25715\",svg:'<svg width=\"20\" height=\"22\" viewBox=\"0 0 20 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0 20.4436V1.55469C0 0.899132 0.377778 0.321354 0.933333 0.0546875L11.8778 10.9991L0.933333 21.9436C0.377778 21.6658 0 21.0991 0 20.4436ZM15.3444 14.4658L3.38889 21.3769L12.8222 11.9436L15.3444 14.4658ZM19.0667 9.67691C19.4444 9.97691 19.7222 10.4436 19.7222 10.9991C19.7222 11.5547 19.4778 11.9991 19.0889 12.3102L16.5444 13.7769L13.7667 10.9991L16.5444 8.22135L19.0667 9.67691ZM3.38889 0.621354L15.3444 7.53246L12.8222 10.0547L3.38889 0.621354Z\" fill=\"#051D3F\"/>\\n</svg>\\n',withExternalLayout:true})})})}),isDisplayed2()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1o5yq2s\",\"data-framer-name\":\"Hamburger menu\",layoutDependency:layoutDependency,layoutId:\"piCZJNu76\",...addPropertyOverrides({oPR9L2O0P:{\"data-highlight\":true,onTap:onTapdksxvi}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1vbw7h5\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:20,intrinsicWidth:28,layoutDependency:layoutDependency,layoutId:\"v9sYpKhsQ\",svg:'<svg width=\"28\" height=\"20\" viewBox=\"0 0 28 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M1.66699 2.0013C1.66699 1.9129 1.70211 1.82811 1.76462 1.7656C1.82714 1.70309 1.91192 1.66797 2.00033 1.66797H26.0003C26.0887 1.66797 26.1735 1.70309 26.236 1.7656C26.2985 1.82811 26.3337 1.91289 26.3337 2.0013C26.3337 2.08971 26.2985 2.17449 26.236 2.23701C26.1735 2.29952 26.0887 2.33464 26.0003 2.33464H2.00033C1.91192 2.33464 1.82714 2.29952 1.76462 2.237L1.05752 2.94411L1.76462 2.237C1.70211 2.17449 1.66699 2.08971 1.66699 2.0013ZM1.66699 10.044C1.66699 9.95556 1.70211 9.87078 1.76462 9.80827C1.82714 9.74576 1.91192 9.71064 2.00033 9.71064H26.0003C26.0887 9.71064 26.1735 9.74576 26.236 9.80827C26.2985 9.87078 26.3337 9.95556 26.3337 10.044C26.3337 10.1324 26.2985 10.2172 26.236 10.2797C26.1735 10.3422 26.0887 10.3773 26.0003 10.3773H2.00033C1.91192 10.3773 1.82713 10.3422 1.76462 10.2797C1.70211 10.2172 1.66699 10.1324 1.66699 10.044ZM1.76462 17.8523C1.82713 17.7898 1.91192 17.7546 2.00033 17.7546H26.0003C26.0887 17.7546 26.1735 17.7898 26.236 17.8523C26.2985 17.9148 26.3337 17.9996 26.3337 18.088C26.3337 18.1764 26.2985 18.2612 26.236 18.3237C26.1735 18.3862 26.0887 18.4213 26.0003 18.4213H2.00033C1.91192 18.4213 1.82714 18.3862 1.76462 18.3237C1.70211 18.2612 1.66699 18.1764 1.66699 18.088C1.66699 17.9996 1.70211 17.9148 1.76462 17.8523Z\" stroke=\"#051D3F\" stroke-width=\"2\"/>\\n</svg>\\n',withExternalLayout:true})}),isDisplayed3()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-2wn48x\",\"data-framer-name\":\"Closed Button \",layoutDependency:layoutDependency,layoutId:\"dNPx4K2iE\",...addPropertyOverrides({gkEsoq7HX:{\"data-highlight\":true,onTap:onTap1oqb5te},srUsd_8ry:{\"data-highlight\":true,onTap:onTap164a91r}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1kftn3g\",\"data-framer-name\":\"close-cancel\",layoutDependency:layoutDependency,layoutId:\"Wf3_JNuwb\",...addPropertyOverrides({hORnmWx19:{\"data-highlight\":true,onTap:onTap18pb7df}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1h42nw4\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:18,intrinsicWidth:18,layoutDependency:layoutDependency,layoutId:\"I91:15955;107:4423\",svg:'<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M16.6925 1.32001L16.6932 1.32074C16.7449 1.37249 16.7803 1.45164 16.7803 1.54697C16.7803 1.64229 16.7449 1.72144 16.6932 1.77319L10.1732 8.29319L9.46608 9.0003L10.1732 9.70741L16.6932 16.2274C16.7238 16.258 16.748 16.2943 16.7646 16.3343C16.7811 16.3742 16.7897 16.417 16.7897 16.4603C16.7897 16.5036 16.7811 16.5464 16.7646 16.5863C16.748 16.6263 16.7238 16.6626 16.6932 16.6932C16.6626 16.7238 16.6263 16.748 16.5863 16.7646C16.5464 16.7811 16.5036 16.7897 16.4603 16.7897C16.417 16.7897 16.3742 16.7811 16.3343 16.7646C16.2943 16.748 16.258 16.7238 16.2274 16.6932L9.70741 10.1732L9.0003 9.46608L8.29319 10.1732L1.77319 16.6932C1.74261 16.7238 1.7063 16.748 1.66634 16.7646C1.62638 16.7811 1.58355 16.7897 1.5403 16.7897C1.49704 16.7897 1.45422 16.7811 1.41426 16.7646C1.3743 16.748 1.33799 16.7238 1.3074 16.6932C1.27682 16.6626 1.25256 16.6263 1.23601 16.5863C1.21946 16.5464 1.21094 16.5036 1.21094 16.4603C1.21094 16.417 1.21946 16.3742 1.23601 16.3343C1.25256 16.2943 1.27682 16.258 1.3074 16.2274L7.82741 9.70741L8.53451 9.0003L7.82741 8.29319L1.3074 1.77319C1.27682 1.74261 1.25256 1.7063 1.23601 1.66634C1.21946 1.62638 1.21094 1.58355 1.21094 1.5403C1.21094 1.49704 1.21946 1.45422 1.23601 1.41426C1.25256 1.3743 1.27682 1.33799 1.3074 1.3074C1.33799 1.27682 1.3743 1.25256 1.41426 1.23601C1.45422 1.21946 1.49704 1.21094 1.5403 1.21094C1.58355 1.21094 1.62638 1.21946 1.66634 1.23601C1.7063 1.25256 1.74261 1.27682 1.77319 1.3074L8.29319 7.82741L8.99957 8.53379L9.70668 7.82813L16.2267 1.32146L16.2281 1.32001C16.2586 1.28948 16.2948 1.26526 16.3346 1.24874C16.3745 1.23221 16.4172 1.22371 16.4603 1.22371C16.5034 1.22371 16.5461 1.23221 16.586 1.24874C16.6258 1.26526 16.662 1.28948 16.6925 1.32001Z\" stroke=\"#051D3F\" stroke-width=\"2\"/>\\n</svg>\\n',withExternalLayout:true})})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:22,width:`calc((${componentViewport?.width||\"100vw\"} - 96px) * 0.106)`,y:(componentViewport?.y||0)+(24+((componentViewport?.height||92)-48-22)/2)+0,...addPropertyOverrides({dQ87_oQrR:{height:20,width:`calc((${componentViewport?.width||\"100vw\"} - 64px) * 0.31)`,y:(componentViewport?.y||0)+16+(0+0+((componentViewport?.height||60)-32-27.999996185302734)/1*0)+3.999998092651367},gkEsoq7HX:{width:`calc((${componentViewport?.width||\"100vw\"} - 96px) * 0.16)`,y:(componentViewport?.y||0)+16+(0+0+((componentViewport?.height||872)-32-1032)/1*0)+5},hORnmWx19:{width:`calc((${componentViewport?.width||\"100vw\"} - 64px) * 0.33)`,y:(componentViewport?.y||0)+16+(0+0+((componentViewport?.height||860)-32-1028)/1*0)+3},mi8tH7cCn:{width:`calc((${componentViewport?.width||\"100vw\"} - 64px) * 0.14)`,y:(componentViewport?.y||0)+16+(0+0+((componentViewport?.height||64)-32-32.000003814697266)/1*0)+5.000001907348633},oPR9L2O0P:{width:`calc((${componentViewport?.width||\"100vw\"} - 96px) * 0.14)`,y:(componentViewport?.y||0)+16+(0+0+((componentViewport?.height||72)-32-32)/1*0)+5},srUsd_8ry:{height:20,width:`calc((${componentViewport?.width||\"100vw\"} - 64px) * 0.2688)`,y:(componentViewport?.y||0)+16+(0+0+((componentViewport?.height||864)-32-1040)/1*0)+10}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1edb0a6-container\",layoutDependency:layoutDependency,layoutId:\"gstZo6yoe-container\",nodeId:\"gstZo6yoe\",rendersWithMotion:true,scopeId:\"cHKPL8HyR\",children:/*#__PURE__*/_jsx(HeaderNavigationWebsiteLogoFrame,{height:\"100%\",id:\"gstZo6yoe\",layoutId:\"gstZo6yoe\",style:{height:\"100%\",width:\"100%\"},width:\"100%\",...addPropertyOverrides({gkEsoq7HX:{G5qlAtYZO:G5qlAtYZO1oqb5te},hORnmWx19:{G5qlAtYZO:G5qlAtYZO18pb7df},srUsd_8ry:{G5qlAtYZO:G5qlAtYZO164a91r}},baseVariant,gestureVariant)})})}),isDisplayed4()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-sronb4\",\"data-framer-name\":\"Mobile - Buttons (Download Links for respective store and Harmburger Menu and Close_\",layoutDependency:layoutDependency,layoutId:\"KvU45uWdO\",children:[isDisplayed5()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-rak5ek\",\"data-border\":true,\"data-framer-name\":\"Download for apple store\",layoutDependency:layoutDependency,layoutId:\"D1mghH3SN\",style:{\"--border-bottom-width\":\"0.7777777910232544px\",\"--border-color\":\"rgb(5, 29, 63)\",\"--border-left-width\":\"0.7777777910232544px\",\"--border-right-width\":\"0.7777777910232544px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0.7777777910232544px\",borderBottomLeftRadius:14,borderBottomRightRadius:14,borderTopLeftRadius:14,borderTopRightRadius:14},children:/*#__PURE__*/_jsx(Link,{href:\"https://apps.apple.com/us/app/taskme-client/id1573126186\",motionChild:true,nodeId:\"xFJRZZkYj\",scopeId:\"cHKPL8HyR\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-18kstnb framer-1rkr8uj\",\"data-framer-name\":\"Apple logo\",layoutDependency:layoutDependency,layoutId:\"xFJRZZkYj\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-f31519\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:15,intrinsicWidth:13,layoutDependency:layoutDependency,layoutId:\"I91:14825;3415:190010\",svg:'<svg width=\"13\" height=\"15\" viewBox=\"0 0 13 15\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M12.6149 10.8464C12.6149 10.8464 12.2503 11.9036 11.5211 12.9974C11.3388 13.3255 10.4638 14.5651 9.40652 14.5651C8.64089 14.5651 8.13048 14.0182 7.1461 14.0182C5.94298 14.0182 5.46902 14.5651 4.70339 14.5651C4.30235 14.6016 3.90131 14.3828 3.46381 13.9818C0.656518 11.3203 0.510684 7.38281 1.56798 5.77865C2.22423 4.72135 3.31798 4.0651 4.5211 4.02865C5.46902 4.02865 6.48985 4.64844 6.89089 4.64844C7.18256 4.64844 8.71381 3.91927 9.58881 3.99219C10.7919 4.10156 11.6305 4.53906 12.2503 5.3776C10.4638 6.2526 9.84402 9.64323 12.6149 10.8464ZM9.66173 0.710938C9.95339 1.8776 8.67735 4.10156 6.78152 3.99219C6.67214 2.42448 8.0211 0.820313 9.66173 0.710938Z\" fill=\"#051D3F\"/>\\n</svg>\\n',withExternalLayout:true})})})}),isDisplayed5()&&/*#__PURE__*/_jsx(Link,{href:\"https://play.google.com/store/apps/details?id=com.artisantechng.taskme.client\",motionChild:true,nodeId:\"cZ2cMojA0\",scopeId:\"cHKPL8HyR\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1xajr5v framer-1rkr8uj\",\"data-border\":true,\"data-framer-name\":\"Download for playstore\",layoutDependency:layoutDependency,layoutId:\"cZ2cMojA0\",style:{\"--border-bottom-width\":\"0.7777777910232544px\",\"--border-color\":\"rgb(5, 29, 63)\",\"--border-left-width\":\"0.7777777910232544px\",\"--border-right-width\":\"0.7777777910232544px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0.7777777910232544px\",borderBottomLeftRadius:14,borderBottomRightRadius:14,borderTopLeftRadius:14,borderTopRightRadius:14},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-rne8l0\",\"data-framer-name\":\"mdi:google-play\",layoutDependency:layoutDependency,layoutId:\"sLDhiHs1M\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-r5o92b\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:16,intrinsicWidth:14,layoutDependency:layoutDependency,layoutId:\"I91:14827;4935:25715\",svg:'<svg width=\"14\" height=\"16\" viewBox=\"0 0 14 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0 14.6121V1.38984C0 0.930955 0.264444 0.52651 0.653333 0.339844L8.31444 8.00096L0.653333 15.6621C0.264444 15.4676 0 15.071 0 14.6121ZM10.7411 10.4276L2.37222 15.2654L8.97556 8.66207L10.7411 10.4276ZM13.3467 7.0754C13.6111 7.2854 13.8056 7.61207 13.8056 8.00096C13.8056 8.38984 13.6344 8.70096 13.3622 8.91873L11.5811 9.9454L9.63667 8.00096L11.5811 6.05651L13.3467 7.0754ZM2.37222 0.73651L10.7411 5.57429L8.97556 7.33984L2.37222 0.73651Z\" fill=\"#051D3F\"/>\\n</svg>\\n',withExternalLayout:true})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-iybsu6\",\"data-framer-name\":\"Hamburger menu\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"hw1XlnM3e\",onTap:onTap1tbt068,children:/*#__PURE__*/_jsx(SVG,{className:\"framer-pekei3\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:18,intrinsicWidth:24,layoutDependency:layoutDependency,layoutId:\"I91:14828;107:4430\",svg:'<svg width=\"24\" height=\"18\" viewBox=\"0 0 24 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M1.20898 1.9987C1.20898 1.92134 1.23971 1.84716 1.29441 1.79246C1.34911 1.73776 1.4233 1.70703 1.50065 1.70703H22.5006C22.578 1.70703 22.6522 1.73776 22.7069 1.79246C22.7616 1.84716 22.7923 1.92134 22.7923 1.9987C22.7923 2.07605 22.7616 2.15024 22.7069 2.20494C22.6522 2.25963 22.578 2.29036 22.5006 2.29036H1.50065C1.4233 2.29036 1.34911 2.25964 1.29441 2.20494C1.23971 2.15024 1.20898 2.07605 1.20898 1.9987ZM1.20898 9.03603C1.20898 8.95868 1.23971 8.88449 1.29441 8.82979C1.34911 8.77509 1.4233 8.74436 1.50065 8.74436H22.5006C22.578 8.74436 22.6522 8.77509 22.7069 8.82979C22.7616 8.88449 22.7923 8.95867 22.7923 9.03603C22.7923 9.11339 22.7616 9.18757 22.7069 9.24227C22.6522 9.29697 22.578 9.3277 22.5006 9.3277H1.50065C1.42329 9.3277 1.34911 9.29697 1.29441 9.24227C1.23971 9.18757 1.20898 9.11339 1.20898 9.03603ZM1.29441 15.8683C1.34911 15.8136 1.42329 15.7829 1.50065 15.7829H22.5006C22.578 15.7829 22.6522 15.8136 22.7069 15.8683C22.7616 15.923 22.7923 15.9972 22.7923 16.0745C22.7923 16.1519 22.7616 16.2261 22.7069 16.2808C22.6522 16.3355 22.578 16.3662 22.5006 16.3662H1.50065C1.4233 16.3662 1.34911 16.3355 1.29441 16.2808C1.23971 16.2261 1.20898 16.1519 1.20898 16.0745C1.20898 15.9972 1.23971 15.923 1.29441 15.8683Z\" stroke=\"#051D3F\" stroke-width=\"1.75\"/>\\n</svg>\\n',withExternalLayout:true})})]}),isDisplayed6()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-4rcz6j\",\"data-framer-name\":\"Landscacpe Phone - Buttons (Download Links for respective store and Harmburger Menu and Close_\",layoutDependency:layoutDependency,layoutId:\"DU7gz4EL8\",children:[isDisplayed7()&&/*#__PURE__*/_jsx(Link,{href:\"https://apps.apple.com/us/app/taskme-client/id1573126186\",motionChild:true,nodeId:\"GSMshgrq3\",scopeId:\"cHKPL8HyR\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-131b5yy framer-1rkr8uj\",\"data-border\":true,\"data-framer-name\":\"Download for apple store\",layoutDependency:layoutDependency,layoutId:\"GSMshgrq3\",style:{\"--border-bottom-width\":\"0.8888888359069824px\",\"--border-color\":\"rgb(5, 29, 63)\",\"--border-left-width\":\"0.8888888359069824px\",\"--border-right-width\":\"0.8888888359069824px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0.8888888359069824px\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-st9gbs\",\"data-framer-name\":\"Apple logo\",layoutDependency:layoutDependency,layoutId:\"EXSBNGN0f\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1g4n373\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:17,intrinsicWidth:14,layoutDependency:layoutDependency,layoutId:\"I672:7068;3415:190010\",svg:'<svg width=\"14\" height=\"17\" viewBox=\"0 0 14 17\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M13.4163 12.2474C13.4163 12.2474 12.9996 13.4557 12.1663 14.7057C11.9579 15.0807 10.9579 16.4974 9.74961 16.4974C8.87461 16.4974 8.29127 15.8724 7.16627 15.8724C5.79127 15.8724 5.24961 16.4974 4.37461 16.4974C3.91627 16.5391 3.45794 16.2891 2.95794 15.8307C-0.250392 12.7891 -0.417058 8.28906 0.791275 6.45573C1.54127 5.2474 2.79127 4.4974 4.16627 4.45573C5.24961 4.45573 6.41627 5.16406 6.87461 5.16406C7.20794 5.16406 8.95794 4.33073 9.95794 4.41406C11.3329 4.53906 12.2913 5.03906 12.9996 5.9974C10.9579 6.9974 10.2496 10.8724 13.4163 12.2474ZM10.0413 0.664062C10.3746 1.9974 8.91627 4.53906 6.74961 4.41406C6.62461 2.6224 8.16627 0.789063 10.0413 0.664062Z\" fill=\"#051D3F\"/>\\n</svg>\\n',withExternalLayout:true})})})}),isDisplayed7()&&/*#__PURE__*/_jsx(Link,{href:\"https://play.google.com/store/apps/details?id=com.artisantechng.taskme.client\",motionChild:true,nodeId:\"GzfsSdA7P\",scopeId:\"cHKPL8HyR\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-zl32ua framer-1rkr8uj\",\"data-border\":true,\"data-framer-name\":\"Download for playstore\",layoutDependency:layoutDependency,layoutId:\"GzfsSdA7P\",style:{\"--border-bottom-width\":\"0.8888888359069824px\",\"--border-color\":\"rgb(5, 29, 63)\",\"--border-left-width\":\"0.8888888359069824px\",\"--border-right-width\":\"0.8888888359069824px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0.8888888359069824px\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1fgbdc4\",\"data-framer-name\":\"mdi:google-play\",layoutDependency:layoutDependency,layoutId:\"uWvmfyCsS\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-9rztzq\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:18,intrinsicWidth:16,layoutDependency:layoutDependency,layoutId:\"I672:7070;4935:25715\",svg:'<svg width=\"16\" height=\"18\" viewBox=\"0 0 16 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0 16.5533V1.44219C0 0.917743 0.302222 0.455521 0.746667 0.242188L9.50222 8.99774L0.746667 17.7533C0.302222 17.5311 0 17.0777 0 16.5533ZM12.2756 11.7711L2.71111 17.3L10.2578 9.7533L12.2756 11.7711ZM15.2533 7.93996C15.5556 8.17996 15.7778 8.5533 15.7778 8.99774C15.7778 9.44219 15.5822 9.79774 15.2711 10.0466L13.2356 11.22L11.0133 8.99774L13.2356 6.77552L15.2533 7.93996ZM2.71111 0.695521L12.2756 6.22441L10.2578 8.24219L2.71111 0.695521Z\" fill=\"#051D3F\"/>\\n</svg>\\n',withExternalLayout:true})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-15jk1eo\",\"data-framer-name\":\"Hamburger menu\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"nPD8skr0C\",onTap:onTap9db2cy,children:/*#__PURE__*/_jsx(SVG,{className:\"framer-kkq3f2\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:20,intrinsicWidth:28,layoutDependency:layoutDependency,layoutId:\"I672:7071;107:4430\",svg:'<svg width=\"28\" height=\"20\" viewBox=\"0 0 28 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M1.66699 2.0013C1.66699 1.9129 1.70211 1.82811 1.76462 1.7656C1.82714 1.70309 1.91192 1.66797 2.00033 1.66797H26.0003C26.0887 1.66797 26.1735 1.70309 26.236 1.7656C26.2985 1.82811 26.3337 1.91289 26.3337 2.0013C26.3337 2.08971 26.2985 2.17449 26.236 2.237C26.1735 2.29952 26.0887 2.33464 26.0003 2.33464H2.00033C1.91192 2.33464 1.82714 2.29952 1.76462 2.237C1.70211 2.17449 1.66699 2.08971 1.66699 2.0013ZM1.66699 10.044C1.66699 9.95556 1.70211 9.87078 1.76462 9.80827C1.82714 9.74576 1.91192 9.71064 2.00033 9.71064H26.0003C26.0887 9.71064 26.1735 9.74576 26.236 9.80827C26.2985 9.87078 26.3337 9.95556 26.3337 10.044C26.3337 10.1324 26.2985 10.2172 26.236 10.2797C26.1735 10.3422 26.0887 10.3773 26.0003 10.3773H2.00033C1.91192 10.3773 1.82713 10.3422 1.76462 10.2797C1.70211 10.2172 1.66699 10.1324 1.66699 10.044ZM1.76462 17.8523C1.82713 17.7898 1.91192 17.7546 2.00033 17.7546H26.0003C26.0887 17.7546 26.1735 17.7898 26.236 17.8523C26.2985 17.9148 26.3337 17.9996 26.3337 18.088C26.3337 18.1764 26.2985 18.2612 26.236 18.3237C26.1735 18.3862 26.0887 18.4213 26.0003 18.4213H2.00033C1.91192 18.4213 1.82714 18.3862 1.76462 18.3237C1.70211 18.2612 1.66699 18.1764 1.66699 18.088C1.66699 17.9996 1.70211 17.9148 1.76462 17.8523Z\" stroke=\"#051D3F\" stroke-width=\"2\"/>\\n</svg>\\n',withExternalLayout:true})})]})]}),isDisplayed8()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ncpnem\",\"data-framer-name\":\"Nav Menu and Download CTAs\",layoutDependency:layoutDependency,layoutId:\"ONzkim1vM\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-17a4pxf\",\"data-framer-name\":\"Nav Menus Stack\",layoutDependency:layoutDependency,layoutId:\"xeEaa8kyb\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":jabRP16hb\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":jabRP16hb\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":jabRP16hb\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":jabRP16hb\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,y:(componentViewport?.y||0)+(24+((componentViewport?.height||92)-48-124)/2)+50+0,...addPropertyOverrides({gkEsoq7HX:{y:(componentViewport?.y||0)+16+(0+32+((componentViewport?.height||872)-32-1032)/1*1)+48+0+0+0},hORnmWx19:{y:(componentViewport?.y||0)+16+(0+28+((componentViewport?.height||860)-32-1028)/1*1)+48+0+0+0},srUsd_8ry:{y:(componentViewport?.y||0)+16+(0+40+((componentViewport?.height||864)-32-1040)/1*1)+48+0+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1yrodh6-container\",layoutDependency:layoutDependency,layoutId:\"ksFxxHDkR-container\",nodeId:\"ksFxxHDkR\",rendersWithMotion:true,scopeId:\"cHKPL8HyR\",children:/*#__PURE__*/_jsx(HeaderNavigationMenu,{height:\"100%\",id:\"ksFxxHDkR\",layoutId:\"ksFxxHDkR\",S_7TlSvUq:resolvedLinks[0],UZ8_3S9OX:\"Why TaskMe?\",width:\"100%\",ZIeYDYmv_:true,...addPropertyOverrides({gkEsoq7HX:{bz0BMIxpD:bz0BMIxpD1oqb5te,S_7TlSvUq:resolvedLinks[1]},hORnmWx19:{bz0BMIxpD:bz0BMIxpD18pb7df,S_7TlSvUq:resolvedLinks[3]},srUsd_8ry:{bz0BMIxpD:bz0BMIxpD164a91r,S_7TlSvUq:resolvedLinks[2]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":H_toIlatk\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":H_toIlatk\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":H_toIlatk\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":H_toIlatk\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,y:(componentViewport?.y||0)+(24+((componentViewport?.height||92)-48-124)/2)+50+0,...addPropertyOverrides({gkEsoq7HX:{y:(componentViewport?.y||0)+16+(0+32+((componentViewport?.height||872)-32-1032)/1*1)+48+0+0+64},hORnmWx19:{y:(componentViewport?.y||0)+16+(0+28+((componentViewport?.height||860)-32-1028)/1*1)+48+0+0+64},srUsd_8ry:{y:(componentViewport?.y||0)+16+(0+40+((componentViewport?.height||864)-32-1040)/1*1)+48+0+0+64}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1x9r17o-container\",layoutDependency:layoutDependency,layoutId:\"MKHPaIueY-container\",nodeId:\"MKHPaIueY\",rendersWithMotion:true,scopeId:\"cHKPL8HyR\",children:/*#__PURE__*/_jsx(HeaderNavigationMenu,{height:\"100%\",id:\"MKHPaIueY\",layoutId:\"MKHPaIueY\",S_7TlSvUq:resolvedLinks1[0],UZ8_3S9OX:\"How TaskMe Works\",width:\"100%\",ZIeYDYmv_:true,...addPropertyOverrides({gkEsoq7HX:{bz0BMIxpD:bz0BMIxpD1oqb5te,S_7TlSvUq:resolvedLinks1[1]},hORnmWx19:{bz0BMIxpD:bz0BMIxpD18pb7df,S_7TlSvUq:resolvedLinks1[3]},srUsd_8ry:{bz0BMIxpD:bz0BMIxpD164a91r,S_7TlSvUq:resolvedLinks1[2]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":Tz4glfzFc\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":Tz4glfzFc\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":Tz4glfzFc\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":Tz4glfzFc\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,y:(componentViewport?.y||0)+(24+((componentViewport?.height||92)-48-124)/2)+50+0,...addPropertyOverrides({gkEsoq7HX:{y:(componentViewport?.y||0)+16+(0+32+((componentViewport?.height||872)-32-1032)/1*1)+48+0+0+128},hORnmWx19:{y:(componentViewport?.y||0)+16+(0+28+((componentViewport?.height||860)-32-1028)/1*1)+48+0+0+128},srUsd_8ry:{y:(componentViewport?.y||0)+16+(0+40+((componentViewport?.height||864)-32-1040)/1*1)+48+0+0+128}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1h6seqy-container\",layoutDependency:layoutDependency,layoutId:\"xN3im13uX-container\",nodeId:\"xN3im13uX\",rendersWithMotion:true,scopeId:\"cHKPL8HyR\",children:/*#__PURE__*/_jsx(HeaderNavigationMenu,{height:\"100%\",id:\"xN3im13uX\",layoutId:\"xN3im13uX\",S_7TlSvUq:resolvedLinks2[0],UZ8_3S9OX:\"Testimonials\",width:\"100%\",ZIeYDYmv_:true,...addPropertyOverrides({gkEsoq7HX:{bz0BMIxpD:bz0BMIxpD1oqb5te,S_7TlSvUq:resolvedLinks2[1]},hORnmWx19:{bz0BMIxpD:bz0BMIxpD18pb7df,S_7TlSvUq:resolvedLinks2[3]},srUsd_8ry:{bz0BMIxpD:bz0BMIxpD164a91r,S_7TlSvUq:resolvedLinks2[2]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":OSM6IqXUo\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":OSM6IqXUo\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":OSM6IqXUo\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":OSM6IqXUo\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,y:(componentViewport?.y||0)+(24+((componentViewport?.height||92)-48-124)/2)+50+0,...addPropertyOverrides({gkEsoq7HX:{y:(componentViewport?.y||0)+16+(0+32+((componentViewport?.height||872)-32-1032)/1*1)+48+0+0+192},hORnmWx19:{y:(componentViewport?.y||0)+16+(0+28+((componentViewport?.height||860)-32-1028)/1*1)+48+0+0+192},srUsd_8ry:{y:(componentViewport?.y||0)+16+(0+40+((componentViewport?.height||864)-32-1040)/1*1)+48+0+0+192}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-3znz6-container\",layoutDependency:layoutDependency,layoutId:\"byM1pEJwG-container\",nodeId:\"byM1pEJwG\",rendersWithMotion:true,scopeId:\"cHKPL8HyR\",children:/*#__PURE__*/_jsx(HeaderNavigationMenu,{height:\"100%\",id:\"byM1pEJwG\",layoutId:\"byM1pEJwG\",S_7TlSvUq:resolvedLinks3[0],UZ8_3S9OX:\"FAQs\",width:\"100%\",ZIeYDYmv_:true,...addPropertyOverrides({gkEsoq7HX:{bz0BMIxpD:bz0BMIxpD1oqb5te,S_7TlSvUq:resolvedLinks3[1]},hORnmWx19:{bz0BMIxpD:bz0BMIxpD18pb7df,S_7TlSvUq:resolvedLinks3[3]},srUsd_8ry:{bz0BMIxpD:bz0BMIxpD164a91r,S_7TlSvUq:resolvedLinks3[2]}},baseVariant,gestureVariant)})})})})]}),isDisplayed9()&&/*#__PURE__*/_jsx(Link,{motionChild:true,nodeId:\"gGg9bS2k8\",scopeId:\"cHKPL8HyR\",...addPropertyOverrides({hORnmWx19:{href:\"https://play.google.com/store/apps/details?id=com.artisantechng.taskme.client\"},srUsd_8ry:{href:\"https://play.google.com/store/apps/details?id=com.artisantechng.taskme.client\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(MotionAWithDeviceDetectionTasker8gzqqf,{className:\"framer-8gzqqf framer-1rkr8uj\",\"data-framer-name\":\"Playstore CTA Button\",layoutDependency:layoutDependency,layoutId:\"gGg9bS2k8\",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:\"rgb(5, 29, 63)\",borderBottomLeftRadius:28,borderBottomRightRadius:28,borderTopLeftRadius:28,borderTopRightRadius:28},variants:{gkEsoq7HX:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(5, 29, 63)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgba(0, 0, 0, 0)\"},hORnmWx19:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(5, 29, 63)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgba(0, 0, 0, 0)\"},srUsd_8ry:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(5, 29, 63)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgba(0, 0, 0, 0)\"}},...addPropertyOverrides({gkEsoq7HX:{\"data-border\":true},hORnmWx19:{\"data-border\":true},srUsd_8ry:{\"data-border\":true}},baseVariant,gestureVariant),children:[isDisplayed2()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-44yf0o\",\"data-framer-name\":\"mdi:google-play\",layoutDependency:layoutDependency,layoutId:\"I668:7026;107:2518\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1wo9vii\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:28,intrinsicWidth:24,layoutDependency:layoutDependency,layoutId:\"I668:7026;107:2518;4935:25715\",svg:'<svg width=\"24\" height=\"28\" viewBox=\"0 0 24 28\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0 25.3339V2.66719C0 1.88052 0.453333 1.18719 1.12 0.867188L14.2533 14.0005L1.12 27.1339C0.453333 26.8005 0 26.1205 0 25.3339ZM18.4133 18.1605L4.06667 26.4539L15.3867 15.1339L18.4133 18.1605ZM22.88 12.4139C23.3333 12.7739 23.6667 13.3339 23.6667 14.0005C23.6667 14.6672 23.3733 15.2005 22.9067 15.5739L19.8533 17.3339L16.52 14.0005L19.8533 10.6672L22.88 12.4139ZM4.06667 1.54719L18.4133 9.84052L15.3867 12.8672L4.06667 1.54719Z\" fill=\"#FCFCFC\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by03MDA=\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(252, 252, 252))\"},children:\"Download on Google Play\"})}),className:\"framer-rtn7tj\",\"data-framer-name\":\"Button\",fonts:[\"GF;Lato-700\"],layoutDependency:layoutDependency,layoutId:\"I668:7026;107:2519\",style:{\"--extracted-r6o4lv\":\"rgb(252, 252, 252)\",\"--framer-paragraph-spacing\":\"0px\"},variants:{gkEsoq7HX:{\"--extracted-r6o4lv\":\"rgb(5, 29, 63)\"},hORnmWx19:{\"--extracted-r6o4lv\":\"rgb(5, 29, 63)\"},srUsd_8ry:{\"--extracted-r6o4lv\":\"rgb(5, 29, 63)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({gkEsoq7HX:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by03MDA=\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(5, 29, 63))\"},children:\"Become a Tasker\"})})},hORnmWx19:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by03MDA=\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"20px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(5, 29, 63))\"},children:\"Become a Tasker\"})})},srUsd_8ry:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by03MDA=\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(5, 29, 63))\"},children:\"Become a Tasker\"})})}},baseVariant,gestureVariant)})]})}),isDisplayed9()&&/*#__PURE__*/_jsx(Link,{motionChild:true,nodeId:\"pWsjiGsPQ\",scopeId:\"cHKPL8HyR\",...addPropertyOverrides({gkEsoq7HX:{href:\"https://apps.apple.com/us/app/taskme-client/id1573126186\"},hORnmWx19:{href:\"https://apps.apple.com/us/app/taskme-client/id1573126186\"},srUsd_8ry:{href:\"https://apps.apple.com/us/app/taskme-client/id1573126186\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(MotionAWithDeviceDetectiona7riyd,{className:\"framer-a7riyd framer-1rkr8uj\",\"data-framer-name\":\"Appstore CTA Button\",layoutDependency:layoutDependency,layoutId:\"pWsjiGsPQ\",style:{backgroundColor:\"rgb(5, 29, 63)\",borderBottomLeftRadius:28,borderBottomRightRadius:28,borderTopLeftRadius:28,borderTopRightRadius:28},children:[isDisplayed10()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1u5znzk\",\"data-framer-name\":\"Apple logo\",layoutDependency:layoutDependency,layoutId:\"I668:7027;107:2518\",children:isDisplayed11()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-wc4plk\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:25,intrinsicWidth:21,layoutDependency:layoutDependency,layoutId:\"I668:7027;107:2518;3415:190010\",svg:'<svg width=\"21\" height=\"25\" viewBox=\"0 0 21 25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M20.6249 17.875C20.6249 17.875 19.9999 19.6875 18.7499 21.5625C18.4374 22.125 16.9374 24.25 15.1249 24.25C13.8124 24.25 12.9374 23.3125 11.2499 23.3125C9.1874 23.3125 8.3749 24.25 7.0624 24.25C6.3749 24.3125 5.6874 23.9375 4.9374 23.25C0.124901 18.6875 -0.125099 11.9375 1.6874 9.1875C2.8124 7.375 4.6874 6.25 6.7499 6.1875C8.3749 6.1875 10.1249 7.25 10.8124 7.25C11.3124 7.25 13.9374 6 15.4374 6.125C17.4999 6.3125 18.9374 7.0625 19.9999 8.5C16.9374 10 15.8749 15.8125 20.6249 17.875ZM15.5624 0.5C16.0624 2.5 13.8749 6.3125 10.6249 6.125C10.4374 3.4375 12.7499 0.6875 15.5624 0.5Z\" fill=\"#FCFCFC\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by03MDA=\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(252, 252, 252))\"},children:\"Download on App Store\"})}),className:\"framer-1bo9f1m\",\"data-framer-name\":\"Button\",fonts:[\"GF;Lato-700\"],layoutDependency:layoutDependency,layoutId:\"I668:7027;107:2519\",style:{\"--extracted-r6o4lv\":\"rgb(252, 252, 252)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({gkEsoq7HX:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by03MDA=\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(252, 252, 252))\"},children:\"Download TaskMe for Clients\"})})},hORnmWx19:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by03MDA=\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"20px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(252, 252, 252))\"},children:\"Download TaskMe for Clients\"})})},srUsd_8ry:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by03MDA=\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(252, 252, 252))\"},children:\"Download TaskMe for Clients\"})})}},baseVariant,gestureVariant)})]})}),isDisplayed2()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-7c9j3a\",\"data-framer-name\":\"Client and Tasker CTAs\",layoutDependency:layoutDependency,layoutId:\"hfs3J71Fa\",children:[/*#__PURE__*/_jsx(MotionDivWithDeviceDetectionlnczvb,{className:\"framer-lnczvb\",\"data-framer-name\":\"Appstore CTA Button\",layoutDependency:layoutDependency,layoutId:\"LwI7obCoF\",style:{backgroundColor:\"rgb(5, 29, 63)\",borderBottomLeftRadius:28,borderBottomRightRadius:28,borderTopLeftRadius:28,borderTopRightRadius:28},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by03MDA=\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"20px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(252, 252, 252))\"},children:\"TaskMe for Clients\"})}),className:\"framer-1os24hs\",\"data-framer-name\":\"Button\",fonts:[\"GF;Lato-700\"],layoutDependency:layoutDependency,layoutId:\"at3Vl3i3T\",style:{\"--extracted-r6o4lv\":\"rgb(252, 252, 252)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(MotionDivWithDeviceDetectionTasker95qkky,{className:\"framer-95qkky\",\"data-border\":true,\"data-framer-name\":\"Playstore CTA Button\",layoutDependency:layoutDependency,layoutId:\"P7CJHhjgh\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(5, 29, 63)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",borderBottomLeftRadius:28,borderBottomRightRadius:28,borderTopLeftRadius:28,borderTopRightRadius:28},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by03MDA=\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"20px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(5, 29, 63))\"},children:\"Become a Tasker\"})}),className:\"framer-8povqf\",\"data-framer-name\":\"Button\",fonts:[\"GF;Lato-700\"],layoutDependency:layoutDependency,layoutId:\"A3AQ3KdS5\",style:{\"--extracted-r6o4lv\":\"rgb(5, 29, 63)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})})]})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-vaVMr.framer-1rkr8uj, .framer-vaVMr .framer-1rkr8uj { display: block; }\",\".framer-vaVMr.framer-1pmdv3o { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 24px 48px 24px 48px; position: relative; width: 1280px; }\",\".framer-vaVMr .framer-rjx78d { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 11%; }\",\".framer-vaVMr .framer-oh7jew { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-vaVMr .framer-50r48b, .framer-vaVMr .framer-1h4alcg { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 9px; height: 40px; justify-content: flex-start; overflow: visible; padding: 6.666666030883789px; position: relative; text-decoration: none; width: 40px; }\",\".framer-vaVMr .framer-1qnb4dc, .framer-vaVMr .framer-1dn6m9d { flex: none; height: 27px; overflow: visible; position: relative; width: 27px; }\",\".framer-vaVMr .framer-ltsuh0 { bottom: 5px; flex: none; left: 4px; position: absolute; right: 6px; top: 2px; }\",\".framer-vaVMr .framer-kar7xl { bottom: 2px; flex: none; left: 3px; position: absolute; right: 4px; top: 2px; }\",\".framer-vaVMr .framer-1o5yq2s { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 32px); overflow: visible; position: relative; width: 40px; }\",\".framer-vaVMr .framer-1vbw7h5, .framer-vaVMr .framer-kkq3f2 { bottom: 7px; flex: none; left: 2px; position: absolute; right: 3px; top: 6px; }\",\".framer-vaVMr .framer-2wn48x { align-content: center; align-items: center; aspect-ratio: 1 / 1; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: var(--framer-aspect-ratio-supported, 32px); justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 40px; }\",\".framer-vaVMr .framer-1kftn3g, .framer-vaVMr .framer-44yf0o, .framer-vaVMr .framer-1u5znzk { flex: none; height: 32px; overflow: visible; position: relative; width: 32px; }\",\".framer-vaVMr .framer-1h42nw4 { bottom: 7px; flex: none; left: 7px; position: absolute; right: 7px; top: 7px; }\",\".framer-vaVMr .framer-1edb0a6-container { aspect-ratio: 5.590909090909091 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 22px); position: relative; width: 100%; }\",\".framer-vaVMr .framer-sronb4 { align-content: center; align-items: center; 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-vaVMr .framer-rak5ek { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 6px; height: 28px; justify-content: flex-start; overflow: visible; padding: 4.6666669845581055px; position: relative; width: 28px; }\",\".framer-vaVMr .framer-18kstnb { flex: none; height: 19px; overflow: visible; position: relative; text-decoration: none; width: 19px; }\",\".framer-vaVMr .framer-f31519 { bottom: 3px; flex: none; left: 3px; position: absolute; right: 4px; top: 1px; }\",\".framer-vaVMr .framer-1xajr5v { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 6px; height: 28px; justify-content: flex-start; overflow: visible; padding: 4.6666669845581055px; position: relative; text-decoration: none; width: 28px; }\",\".framer-vaVMr .framer-rne8l0 { flex: none; height: 19px; overflow: visible; position: relative; width: 19px; }\",\".framer-vaVMr .framer-r5o92b { bottom: 2px; flex: none; left: 2px; position: absolute; right: 3px; top: 1px; }\",\".framer-vaVMr .framer-iybsu6 { cursor: pointer; flex: none; height: 28px; overflow: visible; position: relative; width: 28px; }\",\".framer-vaVMr .framer-pekei3 { bottom: 7px; flex: none; left: 2px; position: absolute; right: 3px; top: 5px; }\",\".framer-vaVMr .framer-4rcz6j { 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-vaVMr .framer-131b5yy, .framer-vaVMr .framer-zl32ua { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 7px; height: 32px; justify-content: flex-start; overflow: visible; padding: 5.333333492279053px; position: relative; text-decoration: none; width: 32px; }\",\".framer-vaVMr .framer-st9gbs, .framer-vaVMr .framer-1fgbdc4 { flex: none; height: 21px; overflow: visible; position: relative; width: 21px; }\",\".framer-vaVMr .framer-1g4n373 { bottom: 4px; flex: none; left: 3px; position: absolute; right: 5px; top: 2px; }\",\".framer-vaVMr .framer-9rztzq { bottom: 2px; flex: none; left: 3px; position: absolute; right: 3px; top: 2px; }\",\".framer-vaVMr .framer-15jk1eo { cursor: pointer; flex: none; height: 32px; overflow: visible; position: relative; width: 32px; }\",\".framer-vaVMr .framer-1ncpnem { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-vaVMr .framer-17a4pxf { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-vaVMr .framer-1yrodh6-container, .framer-vaVMr .framer-1x9r17o-container, .framer-vaVMr .framer-1h6seqy-container, .framer-vaVMr .framer-3znz6-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-vaVMr .framer-8gzqqf, .framer-vaVMr .framer-a7riyd { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: hidden; padding: 12px 16px 12px 16px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-vaVMr .framer-1wo9vii { bottom: 4px; flex: none; left: 4px; position: absolute; right: 4px; top: 2px; }\",\".framer-vaVMr .framer-rtn7tj, .framer-vaVMr .framer-1bo9f1m { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-vaVMr .framer-wc4plk { bottom: 5px; flex: none; left: 5px; position: absolute; right: 7px; top: 3px; }\",\".framer-vaVMr .framer-7c9j3a { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-vaVMr .framer-lnczvb, .framer-vaVMr .framer-95qkky { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: hidden; padding: 12px 23px 12px 22px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-vaVMr .framer-1os24hs, .framer-vaVMr .framer-8povqf { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 120px; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-vaVMr .framer-rjx78d, .framer-vaVMr .framer-oh7jew, .framer-vaVMr .framer-50r48b, .framer-vaVMr .framer-1h4alcg, .framer-vaVMr .framer-2wn48x, .framer-vaVMr .framer-sronb4, .framer-vaVMr .framer-rak5ek, .framer-vaVMr .framer-1xajr5v, .framer-vaVMr .framer-4rcz6j, .framer-vaVMr .framer-131b5yy, .framer-vaVMr .framer-zl32ua, .framer-vaVMr .framer-1ncpnem, .framer-vaVMr .framer-17a4pxf, .framer-vaVMr .framer-8gzqqf, .framer-vaVMr .framer-a7riyd, .framer-vaVMr .framer-7c9j3a, .framer-vaVMr .framer-lnczvb, .framer-vaVMr .framer-95qkky { gap: 0px; } .framer-vaVMr .framer-rjx78d > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-vaVMr .framer-rjx78d > :first-child, .framer-vaVMr .framer-oh7jew > :first-child, .framer-vaVMr .framer-50r48b > :first-child, .framer-vaVMr .framer-1h4alcg > :first-child, .framer-vaVMr .framer-2wn48x > :first-child, .framer-vaVMr .framer-sronb4 > :first-child, .framer-vaVMr .framer-rak5ek > :first-child, .framer-vaVMr .framer-1xajr5v > :first-child, .framer-vaVMr .framer-4rcz6j > :first-child, .framer-vaVMr .framer-131b5yy > :first-child, .framer-vaVMr .framer-zl32ua > :first-child, .framer-vaVMr .framer-1ncpnem > :first-child, .framer-vaVMr .framer-17a4pxf > :first-child, .framer-vaVMr .framer-8gzqqf > :first-child, .framer-vaVMr .framer-a7riyd > :first-child, .framer-vaVMr .framer-7c9j3a > :first-child, .framer-vaVMr .framer-lnczvb > :first-child, .framer-vaVMr .framer-95qkky > :first-child { margin-left: 0px; } .framer-vaVMr .framer-rjx78d > :last-child, .framer-vaVMr .framer-oh7jew > :last-child, .framer-vaVMr .framer-50r48b > :last-child, .framer-vaVMr .framer-1h4alcg > :last-child, .framer-vaVMr .framer-2wn48x > :last-child, .framer-vaVMr .framer-sronb4 > :last-child, .framer-vaVMr .framer-rak5ek > :last-child, .framer-vaVMr .framer-1xajr5v > :last-child, .framer-vaVMr .framer-4rcz6j > :last-child, .framer-vaVMr .framer-131b5yy > :last-child, .framer-vaVMr .framer-zl32ua > :last-child, .framer-vaVMr .framer-1ncpnem > :last-child, .framer-vaVMr .framer-17a4pxf > :last-child, .framer-vaVMr .framer-8gzqqf > :last-child, .framer-vaVMr .framer-a7riyd > :last-child, .framer-vaVMr .framer-7c9j3a > :last-child, .framer-vaVMr .framer-lnczvb > :last-child, .framer-vaVMr .framer-95qkky > :last-child { margin-right: 0px; } .framer-vaVMr .framer-oh7jew > *, .framer-vaVMr .framer-2wn48x > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } .framer-vaVMr .framer-50r48b > *, .framer-vaVMr .framer-1h4alcg > * { margin: 0px; margin-left: calc(8.888888359069824px / 2); margin-right: calc(8.888888359069824px / 2); } .framer-vaVMr .framer-sronb4 > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-vaVMr .framer-rak5ek > *, .framer-vaVMr .framer-1xajr5v > * { margin: 0px; margin-left: calc(6.222222328186035px / 2); margin-right: calc(6.222222328186035px / 2); } .framer-vaVMr .framer-4rcz6j > *, .framer-vaVMr .framer-7c9j3a > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-vaVMr .framer-131b5yy > *, .framer-vaVMr .framer-zl32ua > * { margin: 0px; margin-left: calc(7.111110687255859px / 2); margin-right: calc(7.111110687255859px / 2); } .framer-vaVMr .framer-1ncpnem > * { margin: 0px; margin-left: calc(64px / 2); margin-right: calc(64px / 2); } .framer-vaVMr .framer-17a4pxf > * { margin: 0px; margin-left: calc(32px / 2); margin-right: calc(32px / 2); } .framer-vaVMr .framer-8gzqqf > *, .framer-vaVMr .framer-a7riyd > *, .framer-vaVMr .framer-lnczvb > *, .framer-vaVMr .framer-95qkky > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } }\",\".framer-vaVMr.framer-v-2o7put.framer-1pmdv3o, .framer-vaVMr.framer-v-38zcf2.framer-1pmdv3o { flex-direction: column; padding: 16px 48px 16px 48px; width: 768px; }\",\".framer-vaVMr.framer-v-2o7put .framer-rjx78d, .framer-vaVMr.framer-v-38zcf2 .framer-rjx78d, .framer-vaVMr.framer-v-n7yz8i .framer-rjx78d, .framer-vaVMr.framer-v-12qivhm .framer-rjx78d, .framer-vaVMr.framer-v-13kzc4o .framer-rjx78d, .framer-vaVMr.framer-v-jdpza5 .framer-rjx78d { gap: unset; justify-content: space-between; order: 0; width: 100%; }\",\".framer-vaVMr.framer-v-2o7put .framer-oh7jew, .framer-vaVMr.framer-v-38zcf2 .framer-oh7jew, .framer-vaVMr.framer-v-n7yz8i .framer-oh7jew, .framer-vaVMr.framer-v-13kzc4o .framer-oh7jew { order: 1; }\",\".framer-vaVMr.framer-v-2o7put .framer-2wn48x, .framer-vaVMr.framer-v-38zcf2 .framer-1o5yq2s { cursor: pointer; height: var(--framer-aspect-ratio-supported, 40px); }\",\".framer-vaVMr.framer-v-2o7put .framer-1kftn3g { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 40px); width: 40px; }\",\".framer-vaVMr.framer-v-2o7put .framer-1h42nw4 { aspect-ratio: 1 / 1; bottom: unset; height: var(--framer-aspect-ratio-supported, 28px); right: 5px; }\",\".framer-vaVMr.framer-v-2o7put .framer-1edb0a6-container { height: var(--framer-aspect-ratio-supported, 19px); order: 0; width: 16%; }\",\".framer-vaVMr.framer-v-2o7put .framer-1ncpnem, .framer-vaVMr.framer-v-n7yz8i .framer-1ncpnem, .framer-vaVMr.framer-v-13kzc4o .framer-1ncpnem { align-content: flex-start; align-items: flex-start; flex-direction: column; height: calc(var(--framer-viewport-height, 100vh) * 1); justify-content: flex-start; order: 1; padding: 48px 0px 80px 0px; width: 100%; }\",\".framer-vaVMr.framer-v-2o7put .framer-17a4pxf, .framer-vaVMr.framer-v-n7yz8i .framer-17a4pxf, .framer-vaVMr.framer-v-13kzc4o .framer-17a4pxf { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 40px; order: 0; }\",\".framer-vaVMr.framer-v-2o7put .framer-8gzqqf { flex: none; order: 5; width: 100%; }\",\".framer-vaVMr.framer-v-2o7put .framer-a7riyd { flex: none; order: 4; text-decoration: none; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-vaVMr.framer-v-2o7put.framer-1pmdv3o, .framer-vaVMr.framer-v-2o7put .framer-rjx78d, .framer-vaVMr.framer-v-2o7put .framer-1ncpnem, .framer-vaVMr.framer-v-2o7put .framer-17a4pxf { gap: 0px; } .framer-vaVMr.framer-v-2o7put.framer-1pmdv3o > *, .framer-vaVMr.framer-v-2o7put.framer-1pmdv3o > :first-child, .framer-vaVMr.framer-v-2o7put.framer-1pmdv3o > :last-child, .framer-vaVMr.framer-v-2o7put .framer-rjx78d > *, .framer-vaVMr.framer-v-2o7put .framer-rjx78d > :first-child, .framer-vaVMr.framer-v-2o7put .framer-rjx78d > :last-child { margin: 0px; } .framer-vaVMr.framer-v-2o7put .framer-1ncpnem > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } .framer-vaVMr.framer-v-2o7put .framer-1ncpnem > :first-child, .framer-vaVMr.framer-v-2o7put .framer-17a4pxf > :first-child { margin-top: 0px; } .framer-vaVMr.framer-v-2o7put .framer-1ncpnem > :last-child, .framer-vaVMr.framer-v-2o7put .framer-17a4pxf > :last-child { margin-bottom: 0px; } .framer-vaVMr.framer-v-2o7put .framer-17a4pxf > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } }\",\".framer-vaVMr.framer-v-38zcf2 .framer-1edb0a6-container { height: var(--framer-aspect-ratio-supported, 17px); order: 0; width: 14%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-vaVMr.framer-v-38zcf2.framer-1pmdv3o, .framer-vaVMr.framer-v-38zcf2 .framer-rjx78d { gap: 0px; } .framer-vaVMr.framer-v-38zcf2.framer-1pmdv3o > *, .framer-vaVMr.framer-v-38zcf2.framer-1pmdv3o > :first-child, .framer-vaVMr.framer-v-38zcf2.framer-1pmdv3o > :last-child, .framer-vaVMr.framer-v-38zcf2 .framer-rjx78d > *, .framer-vaVMr.framer-v-38zcf2 .framer-rjx78d > :first-child, .framer-vaVMr.framer-v-38zcf2 .framer-rjx78d > :last-child { margin: 0px; } }\",\".framer-vaVMr.framer-v-n7yz8i.framer-1pmdv3o { flex-direction: column; padding: 16px 32px 16px 32px; width: 480px; }\",\".framer-vaVMr.framer-v-n7yz8i .framer-2wn48x { cursor: pointer; width: 32px; }\",\".framer-vaVMr.framer-v-n7yz8i .framer-1edb0a6-container { height: var(--framer-aspect-ratio-supported, 20px); order: 0; width: 27%; }\",\".framer-vaVMr.framer-v-n7yz8i .framer-8gzqqf, .framer-vaVMr.framer-v-13kzc4o .framer-8gzqqf { flex: none; order: 5; padding: 8px 16px 8px 16px; text-decoration: none; width: 100%; }\",\".framer-vaVMr.framer-v-n7yz8i .framer-a7riyd { flex: none; order: 4; padding: 8px 16px 8px 16px; text-decoration: none; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-vaVMr.framer-v-n7yz8i.framer-1pmdv3o, .framer-vaVMr.framer-v-n7yz8i .framer-rjx78d, .framer-vaVMr.framer-v-n7yz8i .framer-1ncpnem, .framer-vaVMr.framer-v-n7yz8i .framer-17a4pxf { gap: 0px; } .framer-vaVMr.framer-v-n7yz8i.framer-1pmdv3o > *, .framer-vaVMr.framer-v-n7yz8i.framer-1pmdv3o > :first-child, .framer-vaVMr.framer-v-n7yz8i.framer-1pmdv3o > :last-child, .framer-vaVMr.framer-v-n7yz8i .framer-rjx78d > *, .framer-vaVMr.framer-v-n7yz8i .framer-rjx78d > :first-child, .framer-vaVMr.framer-v-n7yz8i .framer-rjx78d > :last-child { margin: 0px; } .framer-vaVMr.framer-v-n7yz8i .framer-1ncpnem > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } .framer-vaVMr.framer-v-n7yz8i .framer-1ncpnem > :first-child, .framer-vaVMr.framer-v-n7yz8i .framer-17a4pxf > :first-child { margin-top: 0px; } .framer-vaVMr.framer-v-n7yz8i .framer-1ncpnem > :last-child, .framer-vaVMr.framer-v-n7yz8i .framer-17a4pxf > :last-child { margin-bottom: 0px; } .framer-vaVMr.framer-v-n7yz8i .framer-17a4pxf > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } }\",\".framer-vaVMr.framer-v-12qivhm.framer-1pmdv3o { flex-direction: column; padding: 16px 32px 16px 32px; width: 768px; }\",\".framer-vaVMr.framer-v-12qivhm .framer-1edb0a6-container { height: var(--framer-aspect-ratio-supported, 18px); order: 0; width: 14%; }\",\".framer-vaVMr.framer-v-12qivhm .framer-4rcz6j, .framer-vaVMr.framer-v-jdpza5 .framer-sronb4 { order: 2; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-vaVMr.framer-v-12qivhm.framer-1pmdv3o, .framer-vaVMr.framer-v-12qivhm .framer-rjx78d { gap: 0px; } .framer-vaVMr.framer-v-12qivhm.framer-1pmdv3o > *, .framer-vaVMr.framer-v-12qivhm.framer-1pmdv3o > :first-child, .framer-vaVMr.framer-v-12qivhm.framer-1pmdv3o > :last-child, .framer-vaVMr.framer-v-12qivhm .framer-rjx78d > *, .framer-vaVMr.framer-v-12qivhm .framer-rjx78d > :first-child, .framer-vaVMr.framer-v-12qivhm .framer-rjx78d > :last-child { margin: 0px; } }\",\".framer-vaVMr.framer-v-13kzc4o.framer-1pmdv3o, .framer-vaVMr.framer-v-jdpza5.framer-1pmdv3o { flex-direction: column; padding: 16px 32px 16px 32px; width: 390px; }\",\".framer-vaVMr.framer-v-13kzc4o .framer-2wn48x { aspect-ratio: unset; height: 28px; width: 28px; }\",\".framer-vaVMr.framer-v-13kzc4o .framer-1kftn3g { cursor: pointer; height: 28px; width: 28px; }\",\".framer-vaVMr.framer-v-13kzc4o .framer-1h42nw4 { bottom: unset; height: 18px; left: calc(50.00000000000002% - 18px / 2); right: unset; top: calc(50.00000000000002% - 18px / 2); width: 18px; }\",\".framer-vaVMr.framer-v-13kzc4o .framer-1edb0a6-container { height: var(--framer-aspect-ratio-supported, 19px); order: 0; width: 33%; }\",\".framer-vaVMr.framer-v-13kzc4o .framer-a7riyd { flex: none; order: 4; padding: 10px 16px 10px 16px; text-decoration: none; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-vaVMr.framer-v-13kzc4o.framer-1pmdv3o, .framer-vaVMr.framer-v-13kzc4o .framer-rjx78d, .framer-vaVMr.framer-v-13kzc4o .framer-1ncpnem, .framer-vaVMr.framer-v-13kzc4o .framer-17a4pxf { gap: 0px; } .framer-vaVMr.framer-v-13kzc4o.framer-1pmdv3o > *, .framer-vaVMr.framer-v-13kzc4o.framer-1pmdv3o > :first-child, .framer-vaVMr.framer-v-13kzc4o.framer-1pmdv3o > :last-child, .framer-vaVMr.framer-v-13kzc4o .framer-rjx78d > *, .framer-vaVMr.framer-v-13kzc4o .framer-rjx78d > :first-child, .framer-vaVMr.framer-v-13kzc4o .framer-rjx78d > :last-child { margin: 0px; } .framer-vaVMr.framer-v-13kzc4o .framer-1ncpnem > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } .framer-vaVMr.framer-v-13kzc4o .framer-1ncpnem > :first-child, .framer-vaVMr.framer-v-13kzc4o .framer-17a4pxf > :first-child { margin-top: 0px; } .framer-vaVMr.framer-v-13kzc4o .framer-1ncpnem > :last-child, .framer-vaVMr.framer-v-13kzc4o .framer-17a4pxf > :last-child { margin-bottom: 0px; } .framer-vaVMr.framer-v-13kzc4o .framer-17a4pxf > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } }\",\".framer-vaVMr.framer-v-jdpza5 .framer-1edb0a6-container { height: var(--framer-aspect-ratio-supported, 17px); order: 0; width: 31%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-vaVMr.framer-v-jdpza5.framer-1pmdv3o, .framer-vaVMr.framer-v-jdpza5 .framer-rjx78d { gap: 0px; } .framer-vaVMr.framer-v-jdpza5.framer-1pmdv3o > *, .framer-vaVMr.framer-v-jdpza5.framer-1pmdv3o > :first-child, .framer-vaVMr.framer-v-jdpza5.framer-1pmdv3o > :last-child, .framer-vaVMr.framer-v-jdpza5 .framer-rjx78d > *, .framer-vaVMr.framer-v-jdpza5 .framer-rjx78d > :first-child, .framer-vaVMr.framer-v-jdpza5 .framer-rjx78d > :last-child { margin: 0px; } }\",'.framer-vaVMr[data-border=\"true\"]::after, .framer-vaVMr [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 92\n * @framerIntrinsicWidth 1280\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"gkEsoq7HX\":{\"layout\":[\"fixed\",\"auto\"]},\"oPR9L2O0P\":{\"layout\":[\"fixed\",\"auto\"]},\"srUsd_8ry\":{\"layout\":[\"fixed\",\"auto\"]},\"mi8tH7cCn\":{\"layout\":[\"fixed\",\"auto\"]},\"hORnmWx19\":{\"layout\":[\"fixed\",\"auto\"]},\"dQ87_oQrR\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"rNR5WFeBm\":\"elevationSoftShadow\",\"itvirc_Bd\":\"click\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramercHKPL8HyR=withCSS(Component,css,\"framer-vaVMr\");export default FramercHKPL8HyR;FramercHKPL8HyR.displayName=\"Header - Navigation\";FramercHKPL8HyR.defaultProps={height:92,width:1280};addPropertyControls(FramercHKPL8HyR,{variant:{options:[\"b2GJi7Jp9\",\"gkEsoq7HX\",\"oPR9L2O0P\",\"srUsd_8ry\",\"mi8tH7cCn\",\"hORnmWx19\",\"dQ87_oQrR\"],optionTitles:[\"Desktop\",\"Tablet - Expanded\",\"Tablet - Collapsed\",\"Landscacpe Phone - Expanded\",\"Landscacpe Phone - Collapsed\",\"Phone - Expanded\",\"Phone - Collapsed\"],title:\"Variant\",type:ControlType.Enum},rNR5WFeBm:{defaultValue:[{blur:16,color:\"rgba(6, 5, 6, 0.04)\",diffusion:.5,focus:.5,inset:false,spread:0,type:\"box\",x:0,y:2}],title:\"Elevation - Soft Shadow\",type:ControlType.BoxShadow},itvirc_Bd:{title:\"Click\",type:ControlType.EventHandler}});addFonts(FramercHKPL8HyR,[{explicitInter:true,fonts:[{family:\"Lato\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/lato/v24/S6u9w4BMUTPHh6UVewqFGC_p9dw.woff2\",weight:\"700\"}]},...HeaderNavigationWebsiteLogoFrameFonts,...HeaderNavigationMenuFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramercHKPL8HyR\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"92\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"gkEsoq7HX\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"oPR9L2O0P\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"srUsd_8ry\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"mi8tH7cCn\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"hORnmWx19\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"dQ87_oQrR\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"1280\",\"framerDisplayContentsDiv\":\"false\",\"framerVariables\":\"{\\\"rNR5WFeBm\\\":\\\"elevationSoftShadow\\\",\\\"itvirc_Bd\\\":\\\"click\\\"}\",\"framerComponentViewportWidth\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./cHKPL8HyR.map", "// Generated by Framer (2ca17d4)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"Inter-Bold\",\"Inter-Black\",\"Inter-BlackItalic\",\"Inter-BoldItalic\"]);export const fonts=[{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/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/mkY5Sgyq51ik0AMrSBwhm9DJg.woff2\",weight:\"900\"},{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/X5hj6qzcHUYv7h1390c8Rhm6550.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/gQhNpS3tN86g8RcVKYUUaKt2oMQ.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/cugnVhSraaRyANCaUtI5FV17wk.woff2\",weight:\"900\"},{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/5HcVoGak8k5agFJSaKa4floXVu0.woff2\",weight:\"900\"},{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/jn4BtSPLlS0NDp1KiFAtFKiiY0o.woff2\",weight:\"900\"},{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/P2Bw01CtL0b9wqygO0sSVogWbo.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/05KsVHGDmqXSBXM4yRZ65P8i0s.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/ky8ovPukK4dJ1Pxq74qGhOqCYI.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/vvNSqIj42qeQ2bvCRBIWKHscrc.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/3ZmXbBKToJifDV9gwcifVd1tEY.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/FNfhX3dt4ChuLJq2PwdlxHO7PU.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/g0c8vEViiXNlKAgI4Ymmk3Ig.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/efTfQcBJ53kM2pB1hezSZ3RDUFs.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/H89BbHkbHDzlxZzxi8uPzTsp90.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/u6gJwDuwB143kpNK1T1MDKDWkMc.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/43sJ6MfOPh1LCJt46OvyDuSbA6o.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/wccHG0r4gBDAIRhfHiOlq6oEkqw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/WZ367JPwf9bRW6LdTHN8rXgSjw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/QxmhnWTzLtyjIiZcfaLIJ8EFBXU.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/2A4Xx7CngadFGlVV4xrO06OBHY.woff2\",weight:\"700\"}]}];export const css=['.framer-dROVz .framer-styles-preset-rgdrbu:not(.rich-text-wrapper), .framer-dROVz .framer-styles-preset-rgdrbu.rich-text-wrapper h1 { --framer-font-family: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold: \"Inter\", sans-serif; --framer-font-family-bold-italic: \"Inter\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: \\'blwf\\' on, \\'cv09\\' on, \\'cv03\\' on, \\'cv04\\' on, \\'cv11\\' on; --framer-font-size: 40px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 700; --framer-font-weight-bold: 900; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 700; --framer-letter-spacing: -0.04em; --framer-line-height: 1.1em; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: #000000; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }'];export const className=\"framer-dROVz\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (6d82f59)\nimport{fontStore}from\"framer\";fontStore.loadFonts([]);export const fonts=[{explicitInter:true,fonts:[]}];export const css=[\".framer-hj5Av .framer-styles-preset-1ekn3px:not(.rich-text-wrapper), .framer-hj5Av .framer-styles-preset-1ekn3px.rich-text-wrapper a { --framer-link-current-text-color: #051d3f; --framer-link-current-text-decoration: none; --framer-link-hover-text-color: #007aff; --framer-link-hover-text-decoration: none; --framer-link-text-color: #051d3f; --framer-link-text-decoration: none; }\"];export const className=\"framer-hj5Av\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (722666c)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"FS;Plus Jakarta Sans-bold\",\"FS;Plus Jakarta Sans-extrabold\",\"FS;Plus Jakarta Sans-extrabold italic\",\"FS;Plus Jakarta Sans-bold italic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Plus Jakarta Sans\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/AJVGEOXGB2ALQKAZEK2LDOLCVBCMCOIT/LDEP4R7SNNABDEG433DCQGM2A7YCBHLU/OWABOLGBAKFVLPZ756IYS6EKYKU54K3I.woff2\",weight:\"700\"},{family:\"Plus Jakarta Sans\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/XYQDC7JAGGEKCBFTJWJFLWLJYO67C7XN/RVU7P55XKD46CPRWMPRMGQG2XS5IZ3EH/RJHIBK2KTTRF4HQSD33LZE5P3HZAYGJ2.woff2\",weight:\"800\"},{family:\"Plus Jakarta Sans\",source:\"fontshare\",style:\"italic\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/XU3SIPSTILVUEE57N33LI57RHN4LESB2/NYZOFSLOXP2NLUPPPC3HSJFYFAYFD5WF/MRD5H7VGACV27ZK3D773YPWKUWZ5UTUZ.woff2\",weight:\"800\"},{family:\"Plus Jakarta Sans\",source:\"fontshare\",style:\"italic\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/57U2OK2BISA74Z4RT4CRD5GR4O3PNVPY/K4TDAPUNBYK24HOCNW4JIOTEXSAE2BEF/GV5XODI2YD2DJA5RVTMJOSDHYESL7IYT.woff2\",weight:\"700\"}]}];export const css=['.framer-Ds1V9 .framer-styles-preset-zh0w2m:not(.rich-text-wrapper), .framer-Ds1V9 .framer-styles-preset-zh0w2m.rich-text-wrapper h2 { --framer-font-family: \"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif; --framer-font-family-bold: \"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif; --framer-font-family-italic: \"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 36px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 700; --framer-font-weight-bold: 800; --framer-font-weight-bold-italic: 800; --framer-font-weight-italic: 700; --framer-letter-spacing: 0em; --framer-line-height: 56px; --framer-paragraph-spacing: 0px; --framer-text-alignment: center; --framer-text-color: #051d3f; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }','@media (max-width: 1279px) and (min-width: 768px) { .framer-Ds1V9 .framer-styles-preset-zh0w2m:not(.rich-text-wrapper), .framer-Ds1V9 .framer-styles-preset-zh0w2m.rich-text-wrapper h2 { --framer-font-family: \"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif; --framer-font-family-bold: \"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif; --framer-font-family-italic: \"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 24px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 700; --framer-font-weight-bold: 800; --framer-font-weight-bold-italic: 800; --framer-font-weight-italic: 700; --framer-letter-spacing: 0em; --framer-line-height: 36px; --framer-paragraph-spacing: 0px; --framer-text-alignment: center; --framer-text-color: #051d3f; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 767px) and (min-width: 480px) { .framer-Ds1V9 .framer-styles-preset-zh0w2m:not(.rich-text-wrapper), .framer-Ds1V9 .framer-styles-preset-zh0w2m.rich-text-wrapper h2 { --framer-font-family: \"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif; --framer-font-family-bold: \"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif; --framer-font-family-italic: \"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 20px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 700; --framer-font-weight-bold: 800; --framer-font-weight-bold-italic: 800; --framer-font-weight-italic: 700; --framer-letter-spacing: 0em; --framer-line-height: 32px; --framer-paragraph-spacing: 0px; --framer-text-alignment: center; --framer-text-color: #051d3f; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 479px) and (min-width: 0px) { .framer-Ds1V9 .framer-styles-preset-zh0w2m:not(.rich-text-wrapper), .framer-Ds1V9 .framer-styles-preset-zh0w2m.rich-text-wrapper h2 { --framer-font-family: \"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif; --framer-font-family-bold: \"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif; --framer-font-family-italic: \"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 20px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 700; --framer-font-weight-bold: 800; --framer-font-weight-bold-italic: 800; --framer-font-weight-italic: 700; --framer-letter-spacing: 0em; --framer-line-height: 32px; --framer-paragraph-spacing: 0px; --framer-text-alignment: center; --framer-text-color: #051d3f; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }'];export const className=\"framer-Ds1V9\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (2ca17d4)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"Inter-Bold\",\"Inter-Black\",\"Inter-BlackItalic\",\"Inter-BoldItalic\"]);export const fonts=[{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/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/mkY5Sgyq51ik0AMrSBwhm9DJg.woff2\",weight:\"900\"},{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/X5hj6qzcHUYv7h1390c8Rhm6550.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/gQhNpS3tN86g8RcVKYUUaKt2oMQ.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/cugnVhSraaRyANCaUtI5FV17wk.woff2\",weight:\"900\"},{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/5HcVoGak8k5agFJSaKa4floXVu0.woff2\",weight:\"900\"},{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/jn4BtSPLlS0NDp1KiFAtFKiiY0o.woff2\",weight:\"900\"},{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/P2Bw01CtL0b9wqygO0sSVogWbo.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/05KsVHGDmqXSBXM4yRZ65P8i0s.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/ky8ovPukK4dJ1Pxq74qGhOqCYI.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/vvNSqIj42qeQ2bvCRBIWKHscrc.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/3ZmXbBKToJifDV9gwcifVd1tEY.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/FNfhX3dt4ChuLJq2PwdlxHO7PU.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/g0c8vEViiXNlKAgI4Ymmk3Ig.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/efTfQcBJ53kM2pB1hezSZ3RDUFs.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/H89BbHkbHDzlxZzxi8uPzTsp90.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/u6gJwDuwB143kpNK1T1MDKDWkMc.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/43sJ6MfOPh1LCJt46OvyDuSbA6o.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/wccHG0r4gBDAIRhfHiOlq6oEkqw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/WZ367JPwf9bRW6LdTHN8rXgSjw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/QxmhnWTzLtyjIiZcfaLIJ8EFBXU.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/2A4Xx7CngadFGlVV4xrO06OBHY.woff2\",weight:\"700\"}]}];export const css=['.framer-HhJTN .framer-styles-preset-10928am:not(.rich-text-wrapper), .framer-HhJTN .framer-styles-preset-10928am.rich-text-wrapper h4 { --framer-font-family: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold: \"Inter\", sans-serif; --framer-font-family-bold-italic: \"Inter\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: \\'blwf\\' on, \\'cv09\\' on, \\'cv03\\' on, \\'cv04\\' on, \\'cv11\\' on; --framer-font-size: 22px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 700; --framer-font-weight-bold: 900; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 700; --framer-letter-spacing: -0.04em; --framer-line-height: 1.4em; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: #000000; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }'];export const className=\"framer-HhJTN\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (2ca17d4)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"Inter-Bold\",\"Inter-Black\",\"Inter-BlackItalic\",\"Inter-BoldItalic\"]);export const fonts=[{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/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/mkY5Sgyq51ik0AMrSBwhm9DJg.woff2\",weight:\"900\"},{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/X5hj6qzcHUYv7h1390c8Rhm6550.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/gQhNpS3tN86g8RcVKYUUaKt2oMQ.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/cugnVhSraaRyANCaUtI5FV17wk.woff2\",weight:\"900\"},{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/5HcVoGak8k5agFJSaKa4floXVu0.woff2\",weight:\"900\"},{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/jn4BtSPLlS0NDp1KiFAtFKiiY0o.woff2\",weight:\"900\"},{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/P2Bw01CtL0b9wqygO0sSVogWbo.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/05KsVHGDmqXSBXM4yRZ65P8i0s.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/ky8ovPukK4dJ1Pxq74qGhOqCYI.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/vvNSqIj42qeQ2bvCRBIWKHscrc.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/3ZmXbBKToJifDV9gwcifVd1tEY.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/FNfhX3dt4ChuLJq2PwdlxHO7PU.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/g0c8vEViiXNlKAgI4Ymmk3Ig.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/efTfQcBJ53kM2pB1hezSZ3RDUFs.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/H89BbHkbHDzlxZzxi8uPzTsp90.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/u6gJwDuwB143kpNK1T1MDKDWkMc.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/43sJ6MfOPh1LCJt46OvyDuSbA6o.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/wccHG0r4gBDAIRhfHiOlq6oEkqw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/WZ367JPwf9bRW6LdTHN8rXgSjw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/QxmhnWTzLtyjIiZcfaLIJ8EFBXU.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/2A4Xx7CngadFGlVV4xrO06OBHY.woff2\",weight:\"700\"}]}];export const css=['.framer-cRvNG .framer-styles-preset-pnbmad:not(.rich-text-wrapper), .framer-cRvNG .framer-styles-preset-pnbmad.rich-text-wrapper h5 { --framer-font-family: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold: \"Inter\", sans-serif; --framer-font-family-bold-italic: \"Inter\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: \\'blwf\\' on, \\'cv09\\' on, \\'cv03\\' on, \\'cv04\\' on, \\'cv11\\' on; --framer-font-size: 18px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 700; --framer-font-weight-bold: 900; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 700; --framer-letter-spacing: -0.04em; --framer-line-height: 1.4em; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: #000000; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }'];export const className=\"framer-cRvNG\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (722666c)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"GF;IBM Plex Sans-regular\",\"GF;IBM Plex Sans-700\",\"GF;IBM Plex Sans-700italic\",\"GF;IBM Plex Sans-italic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"IBM Plex Sans\",openType:true,source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/ibmplexsans/v21/zYXGKVElMYYaJe8bpLHnCwDKr932-G7dytD-Dmu1swZSAXcomDVmadSD6llzBaI5loa26g.woff2\",weight:\"400\"},{family:\"IBM Plex Sans\",openType:true,source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/ibmplexsans/v21/zYXGKVElMYYaJe8bpLHnCwDKr932-G7dytD-Dmu1swZSAXcomDVmadSDDV5zBaI5loa26g.woff2\",weight:\"700\"},{family:\"IBM Plex Sans\",openType:true,source:\"google\",style:\"italic\",url:\"https://fonts.gstatic.com/s/ibmplexsans/v21/zYXEKVElMYYaJe8bpLHnCwDKhdTEG46kmUZQCX598fQbM4jw8V78x9OWIhp8RKg4tIOm6vje.woff2\",weight:\"700\"},{family:\"IBM Plex Sans\",openType:true,source:\"google\",style:\"italic\",url:\"https://fonts.gstatic.com/s/ibmplexsans/v21/zYXEKVElMYYaJe8bpLHnCwDKhdTEG46kmUZQCX598fQbM4jw8V78x9OWIhqbQ6g4tIOm6vje.woff2\",weight:\"400\"}]}];export const css=['.framer-M94RW .framer-styles-preset-1s4j5r0:not(.rich-text-wrapper), .framer-M94RW .framer-styles-preset-1s4j5r0.rich-text-wrapper p { --framer-font-family: \"IBM Plex Sans\", \"IBM Plex Sans Placeholder\", sans-serif; --framer-font-family-bold: \"IBM Plex Sans\", \"IBM Plex Sans Placeholder\", sans-serif; --framer-font-family-bold-italic: \"IBM Plex Sans\", \"IBM Plex Sans Placeholder\", sans-serif; --framer-font-family-italic: \"IBM Plex Sans\", \"IBM Plex Sans Placeholder\", sans-serif; --framer-font-open-type-features: \\'blwf\\' on, \\'cv09\\' on, \\'cv03\\' on, \\'cv04\\' on, \\'cv11\\' on; --framer-font-size: 16px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: 0em; --framer-line-height: 28px; --framer-paragraph-spacing: 24px; --framer-text-alignment: start; --framer-text-color: #01060d; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }','@media (max-width: 1199px) and (min-width: 810px) { .framer-M94RW .framer-styles-preset-1s4j5r0:not(.rich-text-wrapper), .framer-M94RW .framer-styles-preset-1s4j5r0.rich-text-wrapper p { --framer-font-family: \"IBM Plex Sans\", \"IBM Plex Sans Placeholder\", sans-serif; --framer-font-family-bold: \"IBM Plex Sans\", \"IBM Plex Sans Placeholder\", sans-serif; --framer-font-family-bold-italic: \"IBM Plex Sans\", \"IBM Plex Sans Placeholder\", sans-serif; --framer-font-family-italic: \"IBM Plex Sans\", \"IBM Plex Sans Placeholder\", sans-serif; --framer-font-open-type-features: \\'blwf\\' on, \\'cv09\\' on, \\'cv03\\' on, \\'cv04\\' on, \\'cv11\\' on; --framer-font-size: 14px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: 0em; --framer-line-height: 26px; --framer-paragraph-spacing: 22px; --framer-text-alignment: start; --framer-text-color: #01060d; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-M94RW .framer-styles-preset-1s4j5r0:not(.rich-text-wrapper), .framer-M94RW .framer-styles-preset-1s4j5r0.rich-text-wrapper p { --framer-font-family: \"IBM Plex Sans\", \"IBM Plex Sans Placeholder\", sans-serif; --framer-font-family-bold: \"IBM Plex Sans\", \"IBM Plex Sans Placeholder\", sans-serif; --framer-font-family-bold-italic: \"IBM Plex Sans\", \"IBM Plex Sans Placeholder\", sans-serif; --framer-font-family-italic: \"IBM Plex Sans\", \"IBM Plex Sans Placeholder\", sans-serif; --framer-font-open-type-features: \\'blwf\\' on, \\'cv09\\' on, \\'cv03\\' on, \\'cv04\\' on, \\'cv11\\' on; --framer-font-size: 14px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: 0em; --framer-line-height: 28px; --framer-paragraph-spacing: 24px; --framer-text-alignment: start; --framer-text-color: #01060d; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }'];export const className=\"framer-M94RW\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (2ca17d4)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"Inter-Bold\",\"Inter-Black\",\"Inter-BlackItalic\",\"Inter-BoldItalic\"]);export const fonts=[{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/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/mkY5Sgyq51ik0AMrSBwhm9DJg.woff2\",weight:\"900\"},{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/X5hj6qzcHUYv7h1390c8Rhm6550.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/gQhNpS3tN86g8RcVKYUUaKt2oMQ.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/cugnVhSraaRyANCaUtI5FV17wk.woff2\",weight:\"900\"},{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/5HcVoGak8k5agFJSaKa4floXVu0.woff2\",weight:\"900\"},{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/jn4BtSPLlS0NDp1KiFAtFKiiY0o.woff2\",weight:\"900\"},{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/P2Bw01CtL0b9wqygO0sSVogWbo.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/05KsVHGDmqXSBXM4yRZ65P8i0s.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/ky8ovPukK4dJ1Pxq74qGhOqCYI.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/vvNSqIj42qeQ2bvCRBIWKHscrc.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/3ZmXbBKToJifDV9gwcifVd1tEY.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/FNfhX3dt4ChuLJq2PwdlxHO7PU.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/g0c8vEViiXNlKAgI4Ymmk3Ig.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/efTfQcBJ53kM2pB1hezSZ3RDUFs.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/H89BbHkbHDzlxZzxi8uPzTsp90.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/u6gJwDuwB143kpNK1T1MDKDWkMc.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/43sJ6MfOPh1LCJt46OvyDuSbA6o.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/wccHG0r4gBDAIRhfHiOlq6oEkqw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/WZ367JPwf9bRW6LdTHN8rXgSjw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/QxmhnWTzLtyjIiZcfaLIJ8EFBXU.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/2A4Xx7CngadFGlVV4xrO06OBHY.woff2\",weight:\"700\"}]}];export const css=['.framer-Uc5Ks .framer-styles-preset-hwlnpo:not(.rich-text-wrapper), .framer-Uc5Ks .framer-styles-preset-hwlnpo.rich-text-wrapper h3 { --framer-font-family: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold: \"Inter\", sans-serif; --framer-font-family-bold-italic: \"Inter\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: \\'blwf\\' on, \\'cv09\\' on, \\'cv03\\' on, \\'cv04\\' on, \\'cv11\\' on; --framer-font-size: 26px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 700; --framer-font-weight-bold: 900; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 700; --framer-letter-spacing: -0.04em; --framer-line-height: 1.4em; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: #000000; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }'];export const className=\"framer-Uc5Ks\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (cf4c6d7)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"GF;Fragment Mono-regular\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Fragment Mono\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/fragmentmono/v4/4iCr6K5wfMRRjxp0DA6-2CLnN4FNh4UI_1U.woff2\",weight:\"400\"}]}];export const css=['.framer-WGSnH .framer-styles-preset-fpske2:not(.rich-text-wrapper), .framer-WGSnH .framer-styles-preset-fpske2.rich-text-wrapper code { --framer-code-font-family: \"Fragment Mono\", monospace; --framer-code-font-style: normal; --framer-code-font-weight: 400; --framer-code-text-color: #333; --framer-font-size-scale: 1; background-color: rgba(0, 0, 0, 0.1); border-bottom-left-radius: 6px; border-bottom-right-radius: 6px; border-top-left-radius: 6px; border-top-right-radius: 6px; padding-bottom: 0.1em; padding-left: 0.2em; padding-right: 0.2em; padding-top: 0.1em; }'];export const className=\"framer-WGSnH\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["createStore", "state1", "dataStore", "Data", "setDataStore", "newState", "storeState", "storeSetters", "setStoreState", "setter", "useStore", "state", "setState", "ye", "ue", "useObserveData", "centerContent", "defaultContainerStyles", "centerContent", "useStore", "createStore", "withDeviceDetection", "Component", "props", "p", "userAgent", "navigator", "window", "withDeviceDetectionTasker", "enabledGestures", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "click2", "height", "id", "menuTitle", "navMenuLink", "smoothPageScroll", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "UZ8_3S9OX", "S_7TlSvUq", "ZIeYDYmv_", "bz0BMIxpD", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap809i38", "args", "scopingClassNames", "cx", "ref1", "pe", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "RichText2", "css", "Framerpc0PgqYB2", "withCSS", "pc0PgqYB2_default", "addPropertyControls", "ControlType", "addFonts", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "click", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "G5qlAtYZO", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1xgetp9", "args", "scopingClassNames", "cx", "serializationHash", "ref1", "pe", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "SVG", "css", "FramerUhx7LrQPg", "withCSS", "Uhx7LrQPg_default", "addPropertyControls", "ControlType", "addFonts", "HeaderNavigationWebsiteLogoFrameFonts", "getFonts", "Uhx7LrQPg_default", "HeaderNavigationMenuFonts", "pc0PgqYB2_default", "MotionAWithDeviceDetectionTasker8gzqqf", "withCodeBoundaryForOverrides", "motion", "withDeviceDetectionTasker", "MotionAWithDeviceDetectiona7riyd", "withDeviceDetection", "MotionDivWithDeviceDetectionlnczvb", "MotionDivWithDeviceDetectionTasker95qkky", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "click", "elevationSoftShadow", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "rNR5WFeBm", "itvirc_Bd", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap14q8101", "args", "onTapdksxvi", "onTap1oqb5te", "onTap164a91r", "onTap18pb7df", "G5qlAtYZO1oqb5te", "G5qlAtYZO164a91r", "G5qlAtYZO18pb7df", "onTap1tbt068", "onTap9db2cy", "bz0BMIxpD1oqb5te", "bz0BMIxpD164a91r", "bz0BMIxpD18pb7df", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "isDisplayed4", "isDisplayed5", "isDisplayed6", "isDisplayed7", "isDisplayed8", "router", "useRouter", "isDisplayed9", "isDisplayed10", "isDisplayed11", "LayoutGroup", "u", "Link", "SVG", "ComponentViewportProvider", "SmartComponentScopedContainer", "ResolveLinks", "resolvedLinks", "resolvedLinks1", "resolvedLinks2", "resolvedLinks3", "RichText2", "css", "FramercHKPL8HyR", "withCSS", "cHKPL8HyR_default", "addPropertyControls", "ControlType", "addFonts", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className"]
}
