{
  "version": 3,
  "sources": ["ssg:https://framer.com/m/framer/store.js@^1.0.0", "ssg:https://framerusercontent.com/modules/jsO8IX0vJO6suHOw3jzb/6Sgx5VHGuxmlYJUZ8VAY/store.js", "ssg:https://framerusercontent.com/modules/DYMWYiACVhIVVJQ9DosO/8VBdHbEZUn1kJlsDJgOm/Overrides.js", "ssg:https://framerusercontent.com/modules/YFside0GeZSdHk9rUdxD/DwOyHljkSYVUsy0EOzwm/cyUsdSIvK-0.js", "ssg:https://framerusercontent.com/modules/YFside0GeZSdHk9rUdxD/DwOyHljkSYVUsy0EOzwm/cyUsdSIvK-1.js", "ssg:https://framerusercontent.com/modules/YFside0GeZSdHk9rUdxD/DwOyHljkSYVUsy0EOzwm/cyUsdSIvK.js", "ssg:https://framerusercontent.com/modules/PZy3yudPPofbNZCN03TO/jOKrdXGn2qpthZsvDZ3o/cyUsdSIvK.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", "import{createStore}from\"https://framer.com/m/framer/store.js@^1.0.0\";export const useValueStore=createStore({currentValue:{lite:19+4*0,essentials:39+14*0,max:49+24*0},currency:\"$\",currentUnits:0,maxUnits:20,isContactUs:false});\nexport const __FramerMetadata__ = {\"exports\":{\"useValueStore\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./store.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import{createStore}from\"https://framer.com/m/framer/store.js@^1.0.0\";import{useValueStore}from\"https://framerusercontent.com/modules/jsO8IX0vJO6suHOw3jzb/6Sgx5VHGuxmlYJUZ8VAY/store.js\";// Adjust the path as necessary\nconst useStore=createStore({background:\"#0099FF\"});export function LogoIconBreathingAnimation(Component){return props=>{return /*#__PURE__*/_jsx(Component,{...props,whileInView:{scale:1.15},transition:{repeat:Infinity,duration:2,repeatType:\"mirror\"}});};}export function SpanishVideoWistiaPopover(Component){return props=>{return /*#__PURE__*/_jsx(Component,{...props,className:\"wistia_embed wistia_async_bakwgfcp1k popover=true popoverContent=link videoFoam=false\",style:{display:\"flex\",\"justify-content\":\"center\",height:\"100%\",position:\"relative\",width:\"100%\"}});};}export function UseCurrentLiteValue(){const[store]=useValueStore();return{text:store.isContactUs?\"\":`${store.currency}${store.currentValue.lite}`};}export function UseCurrentEssentialsValue(){const[store]=useValueStore();return{text:store.isContactUs?\"\":`${store.currency}${store.currentValue.essentials}`};}export function UseCurrentMaxValue(){const[store]=useValueStore();return{text:store.isContactUs?\"\":`${store.currency}${store.currentValue.max}`};}export function UseCurrentUnits(){const[store]=useValueStore();return{text:store.currentUnits===\"20+\"?\"20+\":`${store.currentUnits}`};}export function UseDisplayMessage(){const[store]=useValueStore();return{text:store.currentUnits===\"20+\"?undefined:\"\",visible:store.currentUnits===\"20+\"};}export function UseHideMessage(){const[store]=useValueStore();return{text:store.currentUnits===\"20+\"?\"\":undefined,visible:store.currentUnits!==\"20+\"};}export function UseEditMessage(){const[store]=useValueStore();return{text:store.currentUnits===\"20+\"?\"$49 + $14 per cleaner per month\":undefined,visible:store.currentUnits===\"20+\"};}export function UseDisplayFrame(){const[store]=useValueStore();return{visible:store.currentUnits===\"20+\",height:store.currentUnits===\"20+\"?undefined:0,opacity:store.currentUnits===\"20+\"?1:0,style:store.currentUnits!==\"20+\"?{// Reversed the condition\nposition:\"absolute\",overflow:\"hidden\",margin:0,padding:0}:undefined,transition:{duration:.3}};}export function UseHideFrame(){const[store]=useValueStore();return{visible:store.currentUnits!==\"20+\",height:store.currentUnits!==\"20+\"?undefined:0,opacity:store.currentUnits!==\"20+\"?1:0,style:store.currentUnits===\"20+\"?{position:\"absolute\",overflow:\"hidden\",margin:0,padding:0}:undefined,transition:{duration:.3}};}export function UseHideFrame12(){const[store]=useValueStore();const threshold=parseInt(store.currentUnits)>=12// Check if units are 12 or more\n;return{visible:!threshold,height:!threshold?undefined:0,opacity:!threshold?1:0,style:threshold?{position:\"absolute\",overflow:\"hidden\",margin:0,padding:0}:undefined,transition:{duration:.3}};}export function UseShowFrame12(){const[store]=useValueStore();const threshold=parseInt(store.currentUnits)>=12// Check if units are 12 or more\n;return{visible:threshold,height:threshold?undefined:0,width:threshold?\"100%\":0,opacity:threshold?1:0,style:!threshold?{position:\"absolute\",overflow:\"hidden\",margin:0,padding:0,stroke:\"transparent\"}:{stroke:\"transparent\",width:\"100%\"},transition:{duration:.3}};}import{useContext as __legacyOverrideHOC_useContext}from\"react\";import{DataObserverContext as __legacyOverrideHOC_DataObserverContext}from\"framer\";export function withUseCurrentLiteValue(C){return props=>{__legacyOverrideHOC_useContext(__legacyOverrideHOC_DataObserverContext);return _jsx(C,{...props,...UseCurrentLiteValue(props)});};}withUseCurrentLiteValue.displayName=\"UseCurrentLiteValue\";export function withUseCurrentEssentialsValue(C){return props=>{__legacyOverrideHOC_useContext(__legacyOverrideHOC_DataObserverContext);return _jsx(C,{...props,...UseCurrentEssentialsValue(props)});};}withUseCurrentEssentialsValue.displayName=\"UseCurrentEssentialsValue\";export function withUseCurrentMaxValue(C){return props=>{__legacyOverrideHOC_useContext(__legacyOverrideHOC_DataObserverContext);return _jsx(C,{...props,...UseCurrentMaxValue(props)});};}withUseCurrentMaxValue.displayName=\"UseCurrentMaxValue\";export function withUseCurrentUnits(C){return props=>{__legacyOverrideHOC_useContext(__legacyOverrideHOC_DataObserverContext);return _jsx(C,{...props,...UseCurrentUnits(props)});};}withUseCurrentUnits.displayName=\"UseCurrentUnits\";export function withUseDisplayMessage(C){return props=>{__legacyOverrideHOC_useContext(__legacyOverrideHOC_DataObserverContext);return _jsx(C,{...props,...UseDisplayMessage(props)});};}withUseDisplayMessage.displayName=\"UseDisplayMessage\";export function withUseHideMessage(C){return props=>{__legacyOverrideHOC_useContext(__legacyOverrideHOC_DataObserverContext);return _jsx(C,{...props,...UseHideMessage(props)});};}withUseHideMessage.displayName=\"UseHideMessage\";export function withUseEditMessage(C){return props=>{__legacyOverrideHOC_useContext(__legacyOverrideHOC_DataObserverContext);return _jsx(C,{...props,...UseEditMessage(props)});};}withUseEditMessage.displayName=\"UseEditMessage\";export function withUseDisplayFrame(C){return props=>{__legacyOverrideHOC_useContext(__legacyOverrideHOC_DataObserverContext);return _jsx(C,{...props,...UseDisplayFrame(props)});};}withUseDisplayFrame.displayName=\"UseDisplayFrame\";export function withUseHideFrame(C){return props=>{__legacyOverrideHOC_useContext(__legacyOverrideHOC_DataObserverContext);return _jsx(C,{...props,...UseHideFrame(props)});};}withUseHideFrame.displayName=\"UseHideFrame\";export function withUseHideFrame12(C){return props=>{__legacyOverrideHOC_useContext(__legacyOverrideHOC_DataObserverContext);return _jsx(C,{...props,...UseHideFrame12(props)});};}withUseHideFrame12.displayName=\"UseHideFrame12\";export function withUseShowFrame12(C){return props=>{__legacyOverrideHOC_useContext(__legacyOverrideHOC_DataObserverContext);return _jsx(C,{...props,...UseShowFrame12(props)});};}withUseShowFrame12.displayName=\"UseShowFrame12\";\nexport const __FramerMetadata__ = {\"exports\":{\"UseEditMessage\":{\"type\":\"override\",\"name\":\"UseEditMessage\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withUseCurrentLiteValue\":{\"type\":\"reactHoc\",\"name\":\"withUseCurrentLiteValue\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"LogoIconBreathingAnimation\":{\"type\":\"reactHoc\",\"name\":\"LogoIconBreathingAnimation\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"UseHideFrame12\":{\"type\":\"override\",\"name\":\"UseHideFrame12\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"SpanishVideoWistiaPopover\":{\"type\":\"reactHoc\",\"name\":\"SpanishVideoWistiaPopover\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"UseCurrentUnits\":{\"type\":\"override\",\"name\":\"UseCurrentUnits\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"UseHideMessage\":{\"type\":\"override\",\"name\":\"UseHideMessage\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withUseCurrentEssentialsValue\":{\"type\":\"reactHoc\",\"name\":\"withUseCurrentEssentialsValue\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withUseCurrentUnits\":{\"type\":\"reactHoc\",\"name\":\"withUseCurrentUnits\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withUseHideFrame12\":{\"type\":\"reactHoc\",\"name\":\"withUseHideFrame12\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"UseDisplayFrame\":{\"type\":\"override\",\"name\":\"UseDisplayFrame\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withUseHideMessage\":{\"type\":\"reactHoc\",\"name\":\"withUseHideMessage\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withUseDisplayFrame\":{\"type\":\"reactHoc\",\"name\":\"withUseDisplayFrame\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withUseEditMessage\":{\"type\":\"reactHoc\",\"name\":\"withUseEditMessage\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withUseShowFrame12\":{\"type\":\"reactHoc\",\"name\":\"withUseShowFrame12\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"UseCurrentMaxValue\":{\"type\":\"override\",\"name\":\"UseCurrentMaxValue\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"UseDisplayMessage\":{\"type\":\"override\",\"name\":\"UseDisplayMessage\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"UseCurrentLiteValue\":{\"type\":\"override\",\"name\":\"UseCurrentLiteValue\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withUseDisplayMessage\":{\"type\":\"reactHoc\",\"name\":\"withUseDisplayMessage\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"UseCurrentEssentialsValue\":{\"type\":\"override\",\"name\":\"UseCurrentEssentialsValue\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withUseHideFrame\":{\"type\":\"reactHoc\",\"name\":\"withUseHideFrame\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"UseHideFrame\":{\"type\":\"override\",\"name\":\"UseHideFrame\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withUseCurrentMaxValue\":{\"type\":\"reactHoc\",\"name\":\"withUseCurrentMaxValue\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"UseShowFrame12\":{\"type\":\"override\",\"name\":\"UseShowFrame12\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Overrides.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import{motion}from\"framer-motion\";import*as React from\"react\";export const v0=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-1wml6uu\",\"data-styles-preset\":\"fVxnimdqP\",style:{\"--framer-text-alignment\":\"center\"},children:\"Est\\xe1s a 3 peque\\xf1os pasos de recuperar tu tiempo y cordura\"})});export const v1=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1m0hzxb\",\"data-styles-preset\":\"QwMZLq2EQ\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-44cf505e-1737-4ea7-a517-90c5b7dccdbf, rgb(84, 120, 119)))\"},children:\"1\"})});export const v2=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1jinxlv\",\"data-styles-preset\":\"IueUZ8GaA\",children:\"Comienza tu prueba gratuita hoy\"})});export const v3=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1jinxlv\",\"data-styles-preset\":\"IueUZ8GaA\",style:{\"--framer-text-alignment\":\"center\"},children:\"Comienza tu prueba gratuita hoy\"})});export const v4=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1m0hzxb\",\"data-styles-preset\":\"QwMZLq2EQ\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-44cf505e-1737-4ea7-a517-90c5b7dccdbf, rgb(84, 120, 119)))\"},children:\"2\"})});export const v5=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1jinxlv\",\"data-styles-preset\":\"IueUZ8GaA\",children:\"Asegura tu llamada de optimizaci\\xf3n gratuita con nuestros expertos en la industria\"})});export const v6=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1jinxlv\",\"data-styles-preset\":\"IueUZ8GaA\",style:{\"--framer-text-alignment\":\"center\"},children:\"Asegura tu llamada de optimizaci\\xf3n gratuita con nuestros expertos en la industria\"})});export const v7=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1m0hzxb\",\"data-styles-preset\":\"QwMZLq2EQ\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-44cf505e-1737-4ea7-a517-90c5b7dccdbf, rgb(84, 120, 119)))\"},children:\"3\"})});export const v8=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1jinxlv\",\"data-styles-preset\":\"IueUZ8GaA\",children:\"El equipo de ZenMaid importar\\xe1 tus contactos y calendario para usted\"})});export const v9=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1jinxlv\",\"data-styles-preset\":\"IueUZ8GaA\",style:{\"--framer-text-alignment\":\"center\"},children:\"El equipo de ZenMaid importar\\xe1 tus contactos y calendario para usted\"})});export const v10=\"Comienza gratis\";export const v11=\"Ver una demostraci\\xf3n\";export const v12=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7S2FsYW0tcmVndWxhcg==\",\"--framer-font-family\":'\"Kalam\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-44cf505e-1737-4ea7-a517-90c5b7dccdbf, rgb(84, 120, 119)))\"},children:\"Creado por propietarios de servicios de limpieza\"})});export const v13=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7S2FsYW0tcmVndWxhcg==\",\"--framer-font-family\":'\"Kalam\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-44cf505e-1737-4ea7-a517-90c5b7dccdbf, rgb(84, 120, 119)))\"},children:\"Dise\\xf1ado para facilitar el uso\"})});export const v14=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7S2FsYW0tcmVndWxhcg==\",\"--framer-font-family\":'\"Kalam\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-44cf505e-1737-4ea7-a517-90c5b7dccdbf, rgb(84, 120, 119)))\"},children:\"Preferido por m\\xe1s de 3,000 propietarios de servicios de limpieza\"})});export const v15=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7S2FsYW0tcmVndWxhcg==\",\"--framer-font-family\":'\"Kalam\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-44cf505e-1737-4ea7-a517-90c5b7dccdbf, rgb(84, 120, 119)))\"},children:\"Toma menos de 5 minutos para comenzar\"})});\nexport const __FramerMetadata__ = {\"exports\":{\"v14\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v3\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v1\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v4\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v12\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v8\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v7\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v10\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v11\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v13\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v6\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v15\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v9\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v0\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v5\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v2\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{jsx as _jsx}from\"react/jsx-runtime\";import{motion}from\"framer-motion\";import*as React from\"react\";export const v0=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-1wml6uu\",\"data-styles-preset\":\"fVxnimdqP\",style:{\"--framer-text-alignment\":\"center\"},children:\"Voc\\xea est\\xe1 a 3 pequenos passos de resgatar seu tempo e sanidade\"})});export const v1=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1m0hzxb\",\"data-styles-preset\":\"QwMZLq2EQ\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-44cf505e-1737-4ea7-a517-90c5b7dccdbf, rgb(84, 120, 119)))\"},children:\"1\"})});export const v2=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1jinxlv\",\"data-styles-preset\":\"IueUZ8GaA\",children:\"Comece sua avalia\\xe7\\xe3o gratuita hoje\"})});export const v3=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1jinxlv\",\"data-styles-preset\":\"IueUZ8GaA\",style:{\"--framer-text-alignment\":\"center\"},children:\"Comece sua avalia\\xe7\\xe3o gratuita hoje\"})});export const v4=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1m0hzxb\",\"data-styles-preset\":\"QwMZLq2EQ\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-44cf505e-1737-4ea7-a517-90c5b7dccdbf, rgb(84, 120, 119)))\"},children:\"2\"})});export const v5=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1jinxlv\",\"data-styles-preset\":\"IueUZ8GaA\",children:\"Agende sua chamada de otimiza\\xe7\\xe3o gratuita com nossos especialistas do setor\"})});export const v6=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1jinxlv\",\"data-styles-preset\":\"IueUZ8GaA\",style:{\"--framer-text-alignment\":\"center\"},children:\"Agende sua chamada de otimiza\\xe7\\xe3o gratuita com nossos especialistas do setor\"})});export const v7=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1m0hzxb\",\"data-styles-preset\":\"QwMZLq2EQ\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-44cf505e-1737-4ea7-a517-90c5b7dccdbf, rgb(84, 120, 119)))\"},children:\"3\"})});export const v8=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1jinxlv\",\"data-styles-preset\":\"IueUZ8GaA\",children:\"A equipe ZenMaid importar\\xe1 seus contatos e calend\\xe1rio para voc\\xea\"})});export const v9=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1jinxlv\",\"data-styles-preset\":\"IueUZ8GaA\",style:{\"--framer-text-alignment\":\"center\"},children:\"A equipe ZenMaid importar\\xe1 seus contatos e calend\\xe1rio para voc\\xea\"})});export const v10=\"Comece gr\\xe1tis\";export const v11=\"Assista a uma demonstra\\xe7\\xe3o\";export const v12=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7S2FsYW0tcmVndWxhcg==\",\"--framer-font-family\":'\"Kalam\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-44cf505e-1737-4ea7-a517-90c5b7dccdbf, rgb(84, 120, 119)))\"},children:\"Constru\\xeddo por propriet\\xe1rios de servi\\xe7os de limpeza\"})});export const v13=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7S2FsYW0tcmVndWxhcg==\",\"--framer-font-family\":'\"Kalam\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-44cf505e-1737-4ea7-a517-90c5b7dccdbf, rgb(84, 120, 119)))\"},children:\"Projetado para facilidade de uso\"})});export const v14=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7S2FsYW0tcmVndWxhcg==\",\"--framer-font-family\":'\"Kalam\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-44cf505e-1737-4ea7-a517-90c5b7dccdbf, rgb(84, 120, 119)))\"},children:\"Mais de 3.000 propriet\\xe1rios de empresas de limpeza como voc\\xea mudaram para o ZenMaid!\"})});export const v15=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7S2FsYW0tcmVndWxhcg==\",\"--framer-font-family\":'\"Kalam\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-44cf505e-1737-4ea7-a517-90c5b7dccdbf, rgb(84, 120, 119)))\"},children:\"Leva menos de 5 minutos para come\\xe7ar\"})});\nexport const __FramerMetadata__ = {\"exports\":{\"v6\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v5\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v11\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v0\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v9\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v12\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v14\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v4\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v10\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v13\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v2\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v8\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v15\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v1\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v7\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v3\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (ba156f5)\nimport*as localizedValues from\"./cyUsdSIvK-0.js\";import*as localizedValues1 from\"./cyUsdSIvK-1.js\";const valuesByLocaleId={hQhOczzza:localizedValues1,IXXFFfedV:localizedValues};export default function getLocalizedValue(key,locale){while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values[key];if(value)return value;}locale=locale.fallback;}}\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (ba156f5)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,ResolveLinks,RichText,SmartComponentScopedContainer,SVG,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 Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/sK9q20UrvRztdebA5J7g/Ticker.js\";import{LogoIconBreathingAnimation}from\"https://framerusercontent.com/modules/DYMWYiACVhIVVJQ9DosO/8VBdHbEZUn1kJlsDJgOm/Overrides.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/p3oqrozCFxG49Td7mQf0/E5mtWhMI1J1HNNsJ3fxW/fVxnimdqP.js\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/JsEkrwzo7TnSFPR6x4px/bsWnWpDD4nhQIrj53mnF/IueUZ8GaA.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/nYj1vRRt48mZNxnfwM9B/IMmEa6PiyNgciodws3Q2/QwMZLq2EQ.js\";import getLocalizedValue from\"https://framerusercontent.com/modules/YFside0GeZSdHk9rUdxD/DwOyHljkSYVUsy0EOzwm/cyUsdSIvK.js\";import Button from\"https://framerusercontent.com/modules/ni1LMNlU8rdtYAVZ4LHS/z56JUz0HyJNadKiXgj3d/liTuWb7p2.js\";const MotionDivLogoIconBreathingAnimation13ciibd=withCodeBoundaryForOverrides(motion.div,{nodeId:\"wWYu33_3l\",override:LogoIconBreathingAnimation,scopeId:\"cyUsdSIvK\"});const ButtonFonts=getFonts(Button);const TickerFonts=getFonts(Ticker);const cycleOrder=[\"K2bUgYYE_\",\"yQd9rJ9K6\",\"ZbhlMeFm9\"];const serializationHash=\"framer-qJnOI\";const variantClassNames={K2bUgYYE_:\"framer-v-1khgh7g\",yQd9rJ9K6:\"framer-v-1fxiotn\",ZbhlMeFm9:\"framer-v-mrrr3l\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Desktop:\"K2bUgYYE_\",Phone:\"yQd9rJ9K6\",Tablet:\"ZbhlMeFm9\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"K2bUgYYE_\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"K2bUgYYE_\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const router=useRouter();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1khgh7g\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"K2bUgYYE_\",ref:refBinding,style:{background:\"linear-gradient(180deg, rgb(255, 255, 255) 0%, var(--token-ab87c096-f478-483b-afc8-d546e773a746, rgb(239, 249, 249)) 100%)\",...style},...addPropertyOverrides({yQd9rJ9K6:{\"data-framer-name\":\"Phone\"},ZbhlMeFm9:{\"data-framer-name\":\"Tablet\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-td2cjt\",layoutDependency:layoutDependency,layoutId:\"f9k_6AmZy\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-uwm7nq\",layoutDependency:layoutDependency,layoutId:\"SS5H8mQes\",children:[/*#__PURE__*/_jsx(MotionDivLogoIconBreathingAnimation13ciibd,{className:\"framer-13ciibd\",\"data-framer-name\":\"Logo/Animation icon\",layoutDependency:layoutDependency,layoutId:\"wWYu33_3l\",style:{background:\"linear-gradient(180deg, rgb(92, 201, 202) 0%, rgb(66, 192, 194) 100%)\",borderBottomLeftRadius:150,borderBottomRightRadius:150,borderTopLeftRadius:150,borderTopRightRadius:150,boxShadow:\"0px 1px 19px 0px rgba(92, 201, 202, 0.52)\"},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-14kgzp4\",layoutDependency:layoutDependency,layoutId:\"OQupnEHkm\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:111111,borderBottomRightRadius:111111,borderTopLeftRadius:111111,borderTopRightRadius:111111},children:/*#__PURE__*/_jsxs(SVG,{className:\"framer-b1qvzt\",layoutDependency:layoutDependency,layoutId:\"pYdJbz0pZ\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 48 48\" overflow=\"visible\"><g><path d=\"M 0 0 L 48 0 L 48 48 L 0 48 Z\" fill=\"transparent\"></path><path d=\"M 12.163 36.662 C 13.657 36.01 15.106 35.261 16.501 34.419 C 17.466 33.891 18.284 33.044 18.928 32.16 C 18.965 32.184 19.006 32.194 19.051 32.216 C 19.972 32.732 20.969 33.12 22.01 33.314 C 22.6 33.427 23.221 33.481 24.079 33.481 C 24.774 33.481 25.393 33.43 25.98 33.314 C 27.048 33.118 28.068 32.712 29.011 32.177 L 29.043 32.162 C 29.681 33.039 30.502 33.891 31.467 34.422 C 32.83 35.223 34.08 35.913 35.805 36.662 C 37.876 37.622 39.628 39.156 40.855 41.081 C 45.431 36.577 48.004 30.423 47.995 24.002 C 48 10.746 37.256 0.002 23.998 0.002 C 10.741 0 0 10.746 0 23.998 C -0.007 30.415 2.564 36.565 7.135 41.068 L 7.135 41.044 C 8.364 39.153 10.088 37.605 12.163 36.662 Z M 20.279 6.627 C 20.792 6.31 21.357 6.02 21.809 5.792 C 22.706 5.345 24.002 4.539 24.002 4.539 C 24.002 4.539 25.297 5.35 26.196 5.792 C 26.638 6.013 27.188 6.3 27.694 6.612 C 29.063 7.263 29.674 8.878 29.08 10.272 C 27.835 8.745 25.972 7.857 24.002 7.853 C 21.949 7.853 20.139 8.806 18.928 10.272 C 18.345 8.89 18.941 7.293 20.286 6.629 L 20.279 6.629 Z M 28.488 13.283 C 28.488 16.258 26.476 18.667 23.998 18.667 C 21.517 18.667 19.508 16.26 19.508 13.283 C 19.508 13.121 19.535 12.971 19.547 12.809 C 19.675 12.718 20.198 12.389 21.487 12.19 C 22.629 12.018 23.831 11.675 24.678 10.842 C 24.867 10.655 25.036 10.449 25.184 10.228 C 25.292 10.061 25.545 9.687 25.56 9.466 C 25.669 11.016 26.86 12.272 28.402 12.463 C 28.451 12.733 28.483 13.003 28.483 13.283 Z M 6.403 25.294 C 6.158 25.162 5.907 25.189 5.627 25.167 L 4.905 25.118 C 4.358 25.076 3.842 24.851 3.439 24.479 L 1.886 23.032 C 1.832 22.978 1.802 22.905 1.8 22.828 C 1.8 22.755 1.837 22.681 1.899 22.632 L 2.076 22.494 C 2.397 22.241 2.847 22.23 3.181 22.467 C 3.461 22.666 3.729 22.897 4.031 23.059 C 4.812 23.465 5.742 23.469 6.526 23.069 C 7.018 22.816 7.592 22.848 7.998 23.221 L 11.564 26.503 C 11.711 26.638 11.937 26.626 12.065 26.481 L 14.146 24.219 C 13.912 23.12 14.253 21.979 15.051 21.189 C 15.849 20.399 16.994 20.069 18.09 20.313 C 18.311 20.338 18.586 20.355 18.785 20.355 C 19.845 20.363 20.862 19.937 21.6 19.176 C 22.327 19.574 23.13 19.81 23.983 19.81 C 24.833 19.81 25.641 19.566 26.365 19.173 C 27.097 19.901 28.006 20.352 29.178 20.352 C 29.374 20.352 29.652 20.338 29.873 20.311 C 30.969 20.066 32.114 20.396 32.912 21.186 C 33.71 21.976 34.051 23.118 33.818 24.216 C 33.886 24.295 35.898 26.481 35.898 26.481 C 36.031 26.628 36.252 26.638 36.399 26.505 L 39.966 23.221 C 40.374 22.862 40.966 22.801 41.439 23.069 C 42.223 23.471 43.152 23.468 43.932 23.059 C 44.235 22.902 44.51 22.671 44.785 22.467 C 45.118 22.229 45.568 22.239 45.89 22.492 L 46.067 22.634 C 46.126 22.683 46.165 22.752 46.165 22.828 C 46.165 22.902 46.136 22.978 46.077 23.032 L 44.524 24.477 C 44.122 24.848 43.607 25.074 43.06 25.118 L 42.338 25.167 C 42.051 25.189 41.798 25.167 41.562 25.297 L 36.996 30.177 C 36.661 30.538 36.19 30.742 35.698 30.74 C 35.206 30.738 34.737 30.53 34.405 30.168 L 31.064 26.864 L 30.313 26.972 C 29.292 28.827 27.499 30.132 25.42 30.534 C 24.953 30.627 24.467 30.654 23.961 30.654 C 23.452 30.654 22.973 30.627 22.499 30.534 C 20.422 30.128 18.631 28.824 17.606 26.972 L 16.857 26.864 L 13.517 30.168 C 13.185 30.532 12.715 30.74 12.223 30.742 C 11.73 30.745 11.259 30.541 10.923 30.18 L 6.362 25.294 L 6.406 25.294 Z\" fill=\"rgb(79, 198, 199)\"></path></g></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-12tqbku\",layoutDependency:layoutDependency,layoutId:\"VWTOyzwh1\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 48 48\" overflow=\"visible\"><path d=\"M 0 0 L 48 0 L 48 48 L 0 48 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsxs(SVG,{className:\"framer-16uzw1n\",layoutDependency:layoutDependency,layoutId:\"JMlRWvYsA\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 47.995 41.078\" overflow=\"visible\"><path d=\"M 12.163 36.66 C 13.657 36.008 15.106 35.259 16.501 34.417 C 17.466 33.889 18.284 33.041 18.928 32.157 C 18.965 32.182 19.006 32.192 19.051 32.214 C 19.972 32.73 20.969 33.118 22.01 33.312 C 22.6 33.425 23.221 33.479 24.079 33.479 C 24.774 33.479 25.393 33.427 25.98 33.312 C 27.048 33.115 28.068 32.71 29.011 32.174 L 29.043 32.16 C 29.681 33.037 30.502 33.889 31.467 34.419 C 32.83 35.22 34.08 35.91 35.805 36.66 C 37.876 37.62 39.628 39.153 40.855 41.078 C 45.431 36.575 48.004 30.42 47.995 24 C 48 10.744 37.256 0 23.998 0 C 10.741 -0.002 0 10.744 0 23.995 C -0.007 30.412 2.564 36.563 7.135 41.066 L 7.135 41.041 C 8.364 39.15 10.088 37.603 12.163 36.66 Z M 20.279 6.625 C 20.792 6.308 21.357 6.018 21.809 5.789 C 22.706 5.342 24.002 4.537 24.002 4.537 C 24.002 4.537 25.297 5.347 26.196 5.789 C 26.638 6.01 27.188 6.298 27.694 6.61 C 29.063 7.26 29.674 8.876 29.08 10.27 C 27.835 8.743 25.972 7.855 24.002 7.85 C 21.949 7.85 20.139 8.803 18.928 10.27 C 18.345 8.887 18.941 7.29 20.286 6.627 L 20.279 6.627 Z M 28.488 13.281 C 28.488 16.255 26.476 18.665 23.998 18.665 C 21.517 18.665 19.508 16.258 19.508 13.281 C 19.508 13.119 19.535 12.969 19.547 12.807 C 19.675 12.716 20.198 12.387 21.487 12.188 C 22.629 12.016 23.831 11.672 24.678 10.839 C 24.867 10.652 25.036 10.447 25.184 10.225 C 25.292 10.058 25.545 9.685 25.56 9.464 C 25.669 11.014 26.86 12.269 28.402 12.461 C 28.451 12.731 28.483 13.001 28.483 13.281 Z M 6.403 25.292 C 6.158 25.159 5.907 25.186 5.627 25.164 L 4.905 25.115 C 4.358 25.073 3.842 24.848 3.439 24.477 L 1.886 23.03 C 1.832 22.976 1.802 22.902 1.8 22.826 C 1.8 22.752 1.837 22.679 1.899 22.629 L 2.076 22.492 C 2.397 22.238 2.847 22.227 3.181 22.465 C 3.461 22.664 3.729 22.895 4.031 23.057 C 4.812 23.463 5.742 23.466 6.526 23.067 C 7.018 22.814 7.592 22.846 7.998 23.219 L 11.564 26.5 C 11.711 26.636 11.937 26.623 12.065 26.478 L 14.146 24.216 C 13.912 23.118 14.253 21.976 15.051 21.186 C 15.849 20.396 16.994 20.066 18.09 20.311 C 18.311 20.335 18.586 20.352 18.785 20.352 C 19.845 20.36 20.862 19.934 21.6 19.173 C 22.327 19.571 23.13 19.807 23.983 19.807 C 24.833 19.807 25.641 19.564 26.365 19.171 C 27.097 19.898 28.006 20.35 29.178 20.35 C 29.374 20.35 29.652 20.335 29.873 20.308 C 30.969 20.064 32.114 20.394 32.912 21.184 C 33.71 21.974 34.051 23.115 33.818 24.214 C 33.886 24.292 35.898 26.478 35.898 26.478 C 36.031 26.626 36.252 26.636 36.399 26.503 L 39.966 23.219 C 40.374 22.859 40.966 22.798 41.439 23.067 C 42.223 23.469 43.152 23.465 43.932 23.057 C 44.235 22.9 44.51 22.669 44.785 22.465 C 45.118 22.226 45.568 22.236 45.89 22.489 L 46.067 22.632 C 46.126 22.681 46.165 22.75 46.165 22.826 C 46.165 22.9 46.136 22.976 46.077 23.03 L 44.524 24.474 C 44.122 24.846 43.607 25.072 43.06 25.115 L 42.338 25.164 C 42.051 25.186 41.798 25.164 41.562 25.294 L 36.996 30.175 C 36.661 30.535 36.19 30.739 35.698 30.737 C 35.206 30.735 34.737 30.528 34.405 30.165 L 31.064 26.862 L 30.313 26.97 C 29.292 28.825 27.499 30.13 25.42 30.531 C 24.953 30.624 24.467 30.652 23.961 30.652 C 23.452 30.652 22.973 30.624 22.499 30.531 C 20.422 30.125 18.631 28.822 17.606 26.97 L 16.857 26.862 L 13.517 30.165 C 13.185 30.529 12.715 30.737 12.223 30.74 C 11.73 30.742 11.259 30.538 10.923 30.177 L 6.362 25.292 L 6.406 25.292 Z\" fill=\"rgb(79, 198, 199)\"></path></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1gti2j\",layoutDependency:layoutDependency,layoutId:\"oz4w6wCM8\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 47.995 41.078\" overflow=\"visible\"><path d=\"M 12.163 36.66 C 13.657 36.008 15.106 35.259 16.501 34.417 C 17.466 33.889 18.284 33.041 18.928 32.157 C 18.965 32.182 19.006 32.192 19.051 32.214 C 19.972 32.73 20.969 33.118 22.01 33.312 C 22.6 33.425 23.221 33.479 24.079 33.479 C 24.774 33.479 25.393 33.427 25.98 33.312 C 27.048 33.115 28.068 32.71 29.011 32.174 L 29.043 32.16 C 29.681 33.037 30.502 33.889 31.467 34.419 C 32.83 35.22 34.08 35.91 35.805 36.66 C 37.876 37.62 39.628 39.153 40.855 41.078 C 45.431 36.575 48.004 30.42 47.995 24 C 48 10.744 37.256 0 23.998 0 C 10.741 -0.002 0 10.744 0 23.995 C -0.007 30.412 2.564 36.563 7.135 41.066 L 7.135 41.041 C 8.364 39.15 10.088 37.603 12.163 36.66 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-j0vv78\",layoutDependency:layoutDependency,layoutId:\"RMrbLJDuM\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 10.602 5.733\" overflow=\"visible\"><path d=\"M 1.574 2.088 C 2.087 1.771 2.652 1.481 3.104 1.253 C 4.001 0.806 5.298 0 5.298 0 C 5.298 0 6.592 0.811 7.491 1.253 C 7.933 1.474 8.483 1.761 8.989 2.073 C 10.358 2.724 10.969 4.339 10.375 5.733 C 9.13 4.206 7.267 3.318 5.298 3.313 C 3.244 3.313 1.434 4.267 0.223 5.733 C -0.359 4.351 0.236 2.754 1.581 2.09 L 1.574 2.09 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1il1ppu\",layoutDependency:layoutDependency,layoutId:\"slnfdYKxX\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 8.98 9.201\" overflow=\"visible\"><path d=\"M 8.98 3.817 C 8.98 6.792 6.968 9.201 4.49 9.201 C 2.009 9.201 0 6.794 0 3.817 C 0 3.655 0.027 3.505 0.039 3.343 C 0.167 3.252 0.69 2.923 1.98 2.724 C 3.122 2.552 4.323 2.208 5.17 1.375 C 5.359 1.188 5.529 0.983 5.676 0.761 C 5.784 0.594 6.037 0.221 6.052 0 C 6.161 1.55 7.352 2.806 8.894 2.997 C 8.943 3.267 8.975 3.537 8.975 3.817 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-z6a7sk\",layoutDependency:layoutDependency,layoutId:\"d8cP07V_N\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 44.365 11.569\" overflow=\"visible\"><path d=\"M 4.603 6.121 C 4.357 5.988 4.107 6.015 3.827 5.993 L 3.105 5.944 C 2.558 5.902 2.041 5.677 1.638 5.305 L 0.086 3.859 C 0.032 3.805 0.001 3.731 0 3.655 C 0 3.581 0.037 3.508 0.098 3.458 L 0.275 3.321 C 0.597 3.067 1.047 3.056 1.38 3.294 C 1.66 3.493 1.928 3.724 2.23 3.886 C 3.012 4.292 3.941 4.295 4.726 3.896 C 5.217 3.643 5.792 3.675 6.197 4.048 L 9.764 7.329 C 9.911 7.465 10.137 7.452 10.265 7.307 L 12.345 5.045 C 12.112 3.947 12.453 2.805 13.251 2.015 C 14.049 1.225 15.194 0.895 16.29 1.14 C 16.511 1.164 16.786 1.181 16.985 1.181 C 18.045 1.189 19.062 0.763 19.8 0.002 C 20.527 0.4 21.33 0.636 22.182 0.636 C 23.032 0.636 23.84 0.393 24.565 0 C 25.297 0.727 26.206 1.179 27.377 1.179 C 27.574 1.179 27.851 1.164 28.072 1.137 C 29.168 0.893 30.313 1.223 31.111 2.013 C 31.909 2.803 32.251 3.944 32.017 5.043 C 32.086 5.121 34.098 7.307 34.098 7.307 C 34.23 7.455 34.451 7.465 34.599 7.332 L 38.165 4.048 C 38.574 3.688 39.165 3.627 39.639 3.896 C 40.422 4.298 41.352 4.294 42.132 3.886 C 42.434 3.729 42.709 3.498 42.984 3.294 C 43.317 3.055 43.768 3.065 44.09 3.318 L 44.266 3.461 C 44.325 3.51 44.365 3.579 44.365 3.655 C 44.365 3.729 44.335 3.805 44.276 3.859 L 42.724 5.303 C 42.322 5.675 41.806 5.901 41.26 5.944 L 40.538 5.993 C 40.251 6.015 39.998 5.993 39.762 6.123 L 35.196 11.004 C 34.86 11.364 34.39 11.568 33.898 11.566 C 33.406 11.564 32.937 11.357 32.604 10.994 L 29.264 7.691 L 28.512 7.799 C 27.491 9.654 25.698 10.959 23.619 11.36 C 23.153 11.453 22.666 11.481 22.16 11.481 C 21.652 11.481 21.173 11.453 20.699 11.36 C 18.622 10.954 16.83 9.651 15.806 7.799 L 15.057 7.691 L 11.716 10.994 C 11.384 11.358 10.915 11.566 10.422 11.569 C 9.929 11.571 9.458 11.367 9.123 11.006 L 4.561 6.121 L 4.605 6.121 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true})]})]})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v0\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-1wml6uu\",\"data-styles-preset\":\"fVxnimdqP\",style:{\"--framer-text-alignment\":\"center\"},children:\"You\u2019re 3 tiny steps away from rescuing your time and sanity\"})}),className:\"framer-10fk4n1\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"MVMdxSFl2\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1lkdcjl\",layoutDependency:layoutDependency,layoutId:\"Tjp3F4iaP\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ddy128\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"ac2H_J9WA\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-15dae6ec-3b4b-4127-a41e-f7f9f9e70dc3, rgb(206, 224, 224))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1f3rzqb\",layoutDependency:layoutDependency,layoutId:\"hMvBv8pzj\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1y3e8sk\",layoutDependency:layoutDependency,layoutId:\"tpUC69Zon\",style:{backgroundColor:\"rgb(208, 230, 230)\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v1\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1m0hzxb\",\"data-styles-preset\":\"QwMZLq2EQ\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-44cf505e-1737-4ea7-a517-90c5b7dccdbf, rgb(84, 120, 119)))\"},children:\"1\"})}),className:\"framer-1pju87y\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"oV1vkq9rV\",style:{\"--extracted-r6o4lv\":\"var(--token-44cf505e-1737-4ea7-a517-90c5b7dccdbf, rgb(84, 120, 119))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v2\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1jinxlv\",\"data-styles-preset\":\"IueUZ8GaA\",children:\"Start your free trial today\"})}),className:\"framer-1hkse1f\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"w3AsKA5v0\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({yQd9rJ9K6:{children:getLocalizedValue(\"v3\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1jinxlv\",\"data-styles-preset\":\"IueUZ8GaA\",style:{\"--framer-text-alignment\":\"center\"},children:\"Start your free trial today\"})})},ZbhlMeFm9:{children:getLocalizedValue(\"v3\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1jinxlv\",\"data-styles-preset\":\"IueUZ8GaA\",style:{\"--framer-text-alignment\":\"center\"},children:\"Start your free trial today\"})})}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:261,intrinsicWidth:368,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+72+0+0+0+0+177.4+0+24+200),pixelHeight:522,pixelWidth:736,sizes:\"326px\",src:\"https://framerusercontent.com/images/JYRjMQJuq9Ylku4HRrOuv90dPM.svg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/JYRjMQJuq9Ylku4HRrOuv90dPM.svg?scale-down-to=512 512w,https://framerusercontent.com/images/JYRjMQJuq9Ylku4HRrOuv90dPM.svg 736w\"},className:\"framer-pv6kiy\",\"data-border\":true,\"data-framer-name\":\"Frame_237\",layoutDependency:layoutDependency,layoutId:\"vpgqawtpO\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-15dae6ec-3b4b-4127-a41e-f7f9f9e70dc3, rgb(206, 224, 224))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",borderBottomLeftRadius:4,borderBottomRightRadius:4,borderTopLeftRadius:4,borderTopRightRadius:4},...addPropertyOverrides({yQd9rJ9K6:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:261,intrinsicWidth:368,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+72+0+0+0+0+177.4+0+0+24+173),pixelHeight:522,pixelWidth:736,sizes:\"326px\",src:\"https://framerusercontent.com/images/JYRjMQJuq9Ylku4HRrOuv90dPM.svg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/JYRjMQJuq9Ylku4HRrOuv90dPM.svg?scale-down-to=512 512w,https://framerusercontent.com/images/JYRjMQJuq9Ylku4HRrOuv90dPM.svg 736w\"}},ZbhlMeFm9:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:261,intrinsicWidth:368,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+72+0+0+0+0+177.4+0+0+24+200),pixelHeight:522,pixelWidth:736,sizes:\"326px\",src:\"https://framerusercontent.com/images/JYRjMQJuq9Ylku4HRrOuv90dPM.svg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/JYRjMQJuq9Ylku4HRrOuv90dPM.svg?scale-down-to=512 512w,https://framerusercontent.com/images/JYRjMQJuq9Ylku4HRrOuv90dPM.svg 736w\"}}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1ejqkzn\",\"data-framer-name\":\"Arrow 19\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"poob09wmN\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 28 13\"><path d=\"M 22.003 5.028 C 21.767 4.957 20.941 4.674 20.402 4.537 C 19.15 4.215 17.905 3.861 16.746 3.216 C 16.563 3.114 16.237 3.015 16.5 2.081 C 16.775 1.109 17.151 0.605 17.476 0.735 C 18.272 1.054 19.033 1.511 19.896 1.572 C 21.155 1.662 22.309 2.13 23.516 2.413 C 23.989 2.524 24.454 2.655 24.919 2.787 L 25.199 2.869 C 25.305 2.903 25.407 2.935 25.511 2.973 C 25.717 3.049 25.914 3.139 26.093 3.248 C 26.459 3.46 26.764 3.751 26.986 4.107 C 27.106 4.321 27.219 4.545 27.271 4.789 C 27.382 5.229 27.373 5.692 27.267 6.153 C 27.165 6.608 26.93 7.087 26.689 7.488 C 26.609 7.63 26.507 7.783 26.44 7.893 L 26.224 8.228 C 26.079 8.449 25.925 8.66 25.758 8.866 C 25.191 9.574 24.438 10.132 23.808 10.789 C 23.657 10.943 23.639 11.257 23.482 11.435 C 23.354 11.579 23.146 11.83 22.964 11.925 C 22.887 11.969 22.798 12.005 22.773 12.092 C 22.671 12.488 22.338 12.347 21.559 11.555 C 21.388 11.383 21.122 11.206 21.048 11.031 C 21.044 11.023 21.038 11.008 21.034 11 C 20.684 10.366 21.099 10.339 21.262 10.109 C 22.059 8.971 22.91 7.877 23.738 6.762 L 24.126 6.257 C 24.259 6.083 24.385 5.927 24.447 5.824 C 24.484 5.756 24.505 5.66 24.434 5.614 C 24.395 5.58 24.244 5.624 24.304 5.583 L 24.313 5.579 C 24.264 5.581 24.205 5.628 24.205 5.628 L 24.202 5.625 L 24.196 5.626 C 24.183 5.622 24.225 5.637 24.142 5.614 L 23.461 5.442 C 23.008 5.324 22.562 5.196 22.15 5.034 C 22.11 5.01 22.051 5.042 22.003 5.028 Z\" fill=\"var(--token-15dae6ec-3b4b-4127-a41e-f7f9f9e70dc3, rgb(206, 224, 224))\"></path><path d=\"M 8.935 10.211 C 8.565 10.181 7.278 9.887 6.458 9.714 C 4.556 9.295 2.685 8.587 1.096 7.429 C 0.848 7.249 0.393 7.009 0.865 6.163 C 1.355 5.283 1.91 4.904 2.308 5.151 C 2.554 5.297 2.788 5.467 3.039 5.613 L 3.8 6.033 C 4.306 6.32 4.86 6.495 5.424 6.603 C 7.088 6.865 8.678 7.327 10.349 7.446 C 11.839 7.534 13.337 7.575 14.82 7.4 C 16.209 7.188 17.546 6.747 18.872 6.374 C 19.453 6.23 20.028 6.071 20.624 5.965 C 21.198 5.801 21.803 5.675 22.365 5.454 C 22.629 5.345 22.86 5.032 23.144 4.91 C 23.387 4.817 23.751 4.596 24.016 4.545 C 24.128 4.52 24.249 4.503 24.326 4.416 C 24.669 4.026 24.971 4.255 25.4 5.285 C 25.495 5.512 25.7 5.761 25.673 5.969 C 25.672 5.978 25.671 5.994 25.67 6.003 C 25.667 6.782 25.142 6.729 24.792 6.951 C 23.024 8.002 21.098 8.77 19.122 9.311 C 18.819 9.393 18.515 9.484 18.207 9.545 L 17.28 9.728 C 16.667 9.875 16.044 9.946 15.425 10.099 C 15.087 10.187 14.755 10.347 14.396 10.281 L 14.401 10.28 C 14.04 10.335 13.673 10.427 13.308 10.443 C 11.921 10.445 10.456 10.491 9.143 10.204 C 9.088 10.186 9.012 10.22 8.935 10.211 Z\" fill=\"var(--token-15dae6ec-3b4b-4127-a41e-f7f9f9e70dc3, rgb(206, 224, 224))\"></path></svg>',svgContentId:10720024662,withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-sg2zbq\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"K12uyNXeO\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-15dae6ec-3b4b-4127-a41e-f7f9f9e70dc3, rgb(206, 224, 224))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-e0ee6\",layoutDependency:layoutDependency,layoutId:\"Hj_2ueRJA\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1xdt0yf\",layoutDependency:layoutDependency,layoutId:\"MS_ggQxdG\",style:{backgroundColor:\"rgb(208, 230, 230)\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v4\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1m0hzxb\",\"data-styles-preset\":\"QwMZLq2EQ\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-44cf505e-1737-4ea7-a517-90c5b7dccdbf, rgb(84, 120, 119)))\"},children:\"2\"})}),className:\"framer-a76490\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"bEtFBjrMC\",style:{\"--extracted-r6o4lv\":\"var(--token-44cf505e-1737-4ea7-a517-90c5b7dccdbf, rgb(84, 120, 119))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v5\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1jinxlv\",\"data-styles-preset\":\"IueUZ8GaA\",children:\"Lock in your free optimization call with our industry experts\"})}),className:\"framer-19a2kmm\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"aqiJr7G_q\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({yQd9rJ9K6:{children:getLocalizedValue(\"v6\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1jinxlv\",\"data-styles-preset\":\"IueUZ8GaA\",style:{\"--framer-text-alignment\":\"center\"},children:\"Lock in your free optimization call with our industry experts\"})})},ZbhlMeFm9:{children:getLocalizedValue(\"v6\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1jinxlv\",\"data-styles-preset\":\"IueUZ8GaA\",style:{\"--framer-text-alignment\":\"center\"},children:\"Lock in your free optimization call with our industry experts\"})})}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:579,intrinsicWidth:794,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+72+0+0+0+0+177.4+0+24+176),pixelHeight:1158,pixelWidth:1588,sizes:\"414px\",src:\"https://framerusercontent.com/images/uht93L9AIqifrtc3NJCzdl2FPVE.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/uht93L9AIqifrtc3NJCzdl2FPVE.png?scale-down-to=512 512w,https://framerusercontent.com/images/uht93L9AIqifrtc3NJCzdl2FPVE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/uht93L9AIqifrtc3NJCzdl2FPVE.png 1588w\"},className:\"framer-17xznl6\",\"data-border\":true,\"data-framer-name\":\"CleanShot_2023_08_15_at_17_54_04_2x\",layoutDependency:layoutDependency,layoutId:\"AQPDxHIaB\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-15dae6ec-3b4b-4127-a41e-f7f9f9e70dc3, rgb(206, 224, 224))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",borderBottomLeftRadius:4,borderBottomRightRadius:4,borderTopLeftRadius:4,borderTopRightRadius:4},...addPropertyOverrides({yQd9rJ9K6:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:579,intrinsicWidth:794,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+72+0+0+0+0+177.4+0+348+24+176),pixelHeight:1158,pixelWidth:1588,sizes:\"414px\",src:\"https://framerusercontent.com/images/uht93L9AIqifrtc3NJCzdl2FPVE.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/uht93L9AIqifrtc3NJCzdl2FPVE.png?scale-down-to=512 512w,https://framerusercontent.com/images/uht93L9AIqifrtc3NJCzdl2FPVE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/uht93L9AIqifrtc3NJCzdl2FPVE.png 1588w\"}},ZbhlMeFm9:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:579,intrinsicWidth:794,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+72+0+0+0+0+177.4+0+348+24+176),pixelHeight:1158,pixelWidth:1588,sizes:\"414px\",src:\"https://framerusercontent.com/images/uht93L9AIqifrtc3NJCzdl2FPVE.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/uht93L9AIqifrtc3NJCzdl2FPVE.png?scale-down-to=512 512w,https://framerusercontent.com/images/uht93L9AIqifrtc3NJCzdl2FPVE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/uht93L9AIqifrtc3NJCzdl2FPVE.png 1588w\"}}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1lyucvm\",\"data-framer-name\":\"Arrow 3\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"OBMuwDK1u\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 27 13\"><path d=\"M 20.722 7.894 C 20.48 7.964 19.634 8.247 19.083 8.384 C 17.801 8.705 16.527 9.058 15.341 9.702 C 15.153 9.804 14.819 9.903 15.088 10.834 C 15.37 11.805 15.755 12.308 16.088 12.178 C 16.902 11.86 17.681 11.404 18.565 11.343 C 19.854 11.253 21.036 10.786 22.27 10.503 C 22.755 10.392 23.231 10.262 23.706 10.131 L 23.994 10.049 C 24.102 10.014 24.207 9.982 24.313 9.944 C 24.524 9.868 24.726 9.779 24.909 9.67 C 25.283 9.458 25.596 9.169 25.823 8.813 C 25.946 8.599 26.061 8.376 26.115 8.132 C 26.229 7.693 26.219 7.231 26.11 6.771 C 26.006 6.318 25.766 5.839 25.519 5.439 C 25.437 5.297 25.332 5.144 25.264 5.035 L 25.043 4.701 C 24.894 4.48 24.736 4.269 24.566 4.063 C 23.985 3.357 23.215 2.8 22.569 2.145 C 22.415 1.99 22.396 1.677 22.236 1.5 C 22.105 1.356 21.892 1.106 21.706 1.011 C 21.626 0.967 21.536 0.931 21.51 0.844 C 21.406 0.449 21.065 0.59 20.267 1.38 C 20.093 1.551 19.82 1.728 19.745 1.903 C 19.74 1.911 19.734 1.926 19.73 1.934 C 19.372 2.567 19.797 2.593 19.963 2.823 C 20.78 3.959 21.65 5.051 22.498 6.163 L 22.895 6.668 C 23.031 6.84 23.16 6.997 23.224 7.099 C 23.262 7.167 23.283 7.263 23.21 7.309 C 23.17 7.343 23.016 7.299 23.078 7.34 L 23.086 7.344 C 23.037 7.342 22.976 7.295 22.976 7.295 L 22.973 7.298 L 22.967 7.297 C 22.954 7.301 22.996 7.286 22.912 7.309 L 22.215 7.481 C 21.751 7.598 21.294 7.726 20.872 7.887 C 20.831 7.911 20.771 7.88 20.722 7.894 Z\" fill=\"var(--token-15dae6ec-3b4b-4127-a41e-f7f9f9e70dc3, rgb(206, 224, 224))\"></path><path d=\"M 8.673 2.721 C 8.295 2.751 6.978 3.045 6.138 3.218 C 4.191 3.636 2.276 4.342 0.649 5.497 C 0.395 5.677 -0.071 5.917 0.412 6.761 C 0.915 7.639 1.482 8.018 1.89 7.771 C 2.142 7.625 2.381 7.455 2.639 7.31 L 3.418 6.891 C 3.935 6.604 4.502 6.43 5.08 6.322 C 6.783 6.06 8.411 5.599 10.122 5.48 C 11.647 5.392 13.18 5.352 14.698 5.527 C 16.12 5.739 17.488 6.178 18.846 6.551 C 19.441 6.695 20.029 6.852 20.639 6.959 C 21.227 7.123 21.846 7.249 22.422 7.469 C 22.692 7.578 22.929 7.89 23.219 8.011 C 23.468 8.104 23.841 8.325 24.112 8.376 C 24.226 8.401 24.351 8.418 24.43 8.505 C 24.781 8.894 25.089 8.665 25.529 7.637 C 25.626 7.41 25.836 7.162 25.808 6.955 C 25.807 6.946 25.806 6.93 25.805 6.921 C 25.802 6.143 25.264 6.196 24.907 5.975 C 23.097 4.926 21.125 4.16 19.102 3.619 C 18.792 3.538 18.481 3.447 18.165 3.386 L 17.217 3.203 C 16.589 3.057 15.951 2.986 15.318 2.833 C 14.972 2.746 14.632 2.586 14.264 2.651 L 14.27 2.652 C 13.9 2.598 13.524 2.505 13.15 2.49 C 11.73 2.488 10.231 2.442 8.887 2.728 C 8.831 2.747 8.753 2.712 8.673 2.721 Z\" fill=\"var(--token-15dae6ec-3b4b-4127-a41e-f7f9f9e70dc3, rgb(206, 224, 224))\"></path></svg>',svgContentId:12356612593,withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-h2z0o5\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"DxBJW_x0x\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-15dae6ec-3b4b-4127-a41e-f7f9f9e70dc3, rgb(206, 224, 224))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-rrw6xi\",layoutDependency:layoutDependency,layoutId:\"W6vXHEw5e\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1rmaaa2\",layoutDependency:layoutDependency,layoutId:\"w6xeTiLEn\",style:{backgroundColor:\"rgb(208, 230, 230)\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v7\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1m0hzxb\",\"data-styles-preset\":\"QwMZLq2EQ\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-44cf505e-1737-4ea7-a517-90c5b7dccdbf, rgb(84, 120, 119)))\"},children:\"3\"})}),className:\"framer-gwj5t8\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"TyzJS7wrD\",style:{\"--extracted-r6o4lv\":\"var(--token-44cf505e-1737-4ea7-a517-90c5b7dccdbf, rgb(84, 120, 119))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v8\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1jinxlv\",\"data-styles-preset\":\"IueUZ8GaA\",children:\"ZenMaid team will import your contacts and calendar over for you\"})}),className:\"framer-1gkzd8l\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"CTopF1yAG\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({yQd9rJ9K6:{children:getLocalizedValue(\"v9\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1jinxlv\",\"data-styles-preset\":\"IueUZ8GaA\",style:{\"--framer-text-alignment\":\"center\"},children:\"ZenMaid team will import your contacts and calendar over for you\"})})},ZbhlMeFm9:{children:getLocalizedValue(\"v9\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1jinxlv\",\"data-styles-preset\":\"IueUZ8GaA\",style:{\"--framer-text-alignment\":\"center\"},children:\"ZenMaid team will import your contacts and calendar over for you\"})})}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1057,intrinsicWidth:1703,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+72+0+0+0+0+177.4+0+24+176),pixelHeight:2114,pixelWidth:3406,sizes:\"382px\",src:\"https://framerusercontent.com/images/8vSalsxAV5FViH3Do7BM8xKRq8.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/8vSalsxAV5FViH3Do7BM8xKRq8.png?scale-down-to=512 512w,https://framerusercontent.com/images/8vSalsxAV5FViH3Do7BM8xKRq8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/8vSalsxAV5FViH3Do7BM8xKRq8.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/8vSalsxAV5FViH3Do7BM8xKRq8.png 3406w\"},className:\"framer-1k2tpmk\",\"data-framer-name\":\"CleanShot_2023_08_15_at_21_00_27_2x\",layoutDependency:layoutDependency,layoutId:\"y2JfqwcNA\",style:{borderBottomLeftRadius:4,borderBottomRightRadius:4,borderTopLeftRadius:4,borderTopRightRadius:4},...addPropertyOverrides({yQd9rJ9K6:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1057,intrinsicWidth:1703,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+72+0+0+0+0+177.4+0+696+24+176),pixelHeight:2114,pixelWidth:3406,sizes:\"382px\",src:\"https://framerusercontent.com/images/8vSalsxAV5FViH3Do7BM8xKRq8.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/8vSalsxAV5FViH3Do7BM8xKRq8.png?scale-down-to=512 512w,https://framerusercontent.com/images/8vSalsxAV5FViH3Do7BM8xKRq8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/8vSalsxAV5FViH3Do7BM8xKRq8.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/8vSalsxAV5FViH3Do7BM8xKRq8.png 3406w\"}},ZbhlMeFm9:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1057,intrinsicWidth:1703,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+72+0+0+0+0+177.4+0+696+24+176),pixelHeight:2114,pixelWidth:3406,sizes:\"382px\",src:\"https://framerusercontent.com/images/8vSalsxAV5FViH3Do7BM8xKRq8.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/8vSalsxAV5FViH3Do7BM8xKRq8.png?scale-down-to=512 512w,https://framerusercontent.com/images/8vSalsxAV5FViH3Do7BM8xKRq8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/8vSalsxAV5FViH3Do7BM8xKRq8.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/8vSalsxAV5FViH3Do7BM8xKRq8.png 3406w\"}}},baseVariant,gestureVariant)})]})]})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-196fdt\",layoutDependency:layoutDependency,layoutId:\"oRZO50Hnj\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-13vtjsf\",layoutDependency:layoutDependency,layoutId:\"kZdbNCVIu\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-etlsyr\",layoutDependency:layoutDependency,layoutId:\"F4GXKeNCx\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,y:(componentViewport?.y||0)+72+0+0+528.4+0+0+0+0+0,...addPropertyOverrides({yQd9rJ9K6:{y:(componentViewport?.y||0)+72+0+0+1224.4+0+0+0+0+0+0},ZbhlMeFm9:{y:(componentViewport?.y||0)+72+0+0+1224.4+0+0+0+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-94l5g8-container\",layoutDependency:layoutDependency,layoutId:\"xkSAgjGdJ-container\",nodeId:\"xkSAgjGdJ\",rendersWithMotion:true,scopeId:\"cyUsdSIvK\",children:/*#__PURE__*/_jsx(Button,{AArnR4dVH:getLocalizedValue(\"v10\",activeLocale)??\"Get started for free\",height:\"100%\",id:\"xkSAgjGdJ\",layoutId:\"xkSAgjGdJ\",m4DnAjIqC:\"https://app.zenmaid.com/sign-up?_ga=2.158016243.896912842.1692112110-199103099.1675685650\",variant:\"MjkBGlTgy\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"oxfMGywwP\"},implicitPathVariables:undefined},{href:{webPageId:\"oxfMGywwP\"},implicitPathVariables:undefined},{href:{webPageId:\"oxfMGywwP\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,y:(componentViewport?.y||0)+72+0+0+528.4+0+0+0+0+0,...addPropertyOverrides({yQd9rJ9K6:{y:(componentViewport?.y||0)+72+0+0+1224.4+0+0+0+0+0+64},ZbhlMeFm9:{y:(componentViewport?.y||0)+72+0+0+1224.4+0+0+0+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1gpd0v3-container\",layoutDependency:layoutDependency,layoutId:\"uVtwMVQaD-container\",nodeId:\"uVtwMVQaD\",rendersWithMotion:true,scopeId:\"cyUsdSIvK\",children:/*#__PURE__*/_jsx(Button,{AArnR4dVH:getLocalizedValue(\"v11\",activeLocale)??\"Watch a demo\",height:\"100%\",id:\"uVtwMVQaD\",layoutId:\"uVtwMVQaD\",m4DnAjIqC:resolvedLinks[0],variant:\"wqgmX78DN\",width:\"100%\",...addPropertyOverrides({yQd9rJ9K6:{m4DnAjIqC:resolvedLinks[1]},ZbhlMeFm9:{m4DnAjIqC:resolvedLinks[2]}},baseVariant,gestureVariant)})})})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-eknvsj-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"qJzdQxjb4-container\",nodeId:\"qJzdQxjb4\",rendersWithMotion:true,scopeId:\"cyUsdSIvK\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:16,height:\"100%\",hoverFactor:.4,id:\"qJzdQxjb4\",layoutId:\"qJzdQxjb4\",padding:10,paddingBottom:96,paddingLeft:10,paddingPerSide:true,paddingRight:10,paddingTop:32,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-fxw2z2\",\"data-framer-name\":\"sponge\",layoutDependency:layoutDependency,layoutId:\"MCvV9zfZ4\",style:{borderBottomLeftRadius:160,borderBottomRightRadius:160,borderTopLeftRadius:160,borderTopRightRadius:160},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1aqcxjt\",\"data-framer-name\":\"Group\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:14,intrinsicWidth:16,layoutDependency:layoutDependency,layoutId:\"rJ7DfyQP4\",svg:'<svg width=\"16\" height=\"14\" viewBox=\"0 0 16 14\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path opacity=\"0.7\" d=\"M6.66385 0.795166C7.87879 0.795166 9.11122 1.62012 9.11122 2.83506C9.11122 4.05 7.87754 5.19244 6.66385 5.19244C6.01014 5.19244 5.19893 4.9937 4.7952 4.53997C4.7952 4.53997 4.43147 4.06 4.46397 2.9938C4.50272 1.78011 5.45017 0.795166 6.66385 0.795166Z\" fill=\"url(#paint0_radial_2_152172)\"/>\\n<path opacity=\"0.7\" d=\"M4.28639 5.74416C5.09958 5.74416 5.75881 5.08494 5.75881 4.27174C5.75881 3.45854 5.09958 2.79932 4.28639 2.79932C3.47319 2.79932 2.81396 3.45854 2.81396 4.27174C2.81396 5.08494 3.47319 5.74416 4.28639 5.74416Z\" fill=\"url(#paint1_radial_2_152172)\"/>\\n<path d=\"M1.48992 5.78966C3.23388 4.08195 13.834 3.22184 14.5878 4.1182C15.0204 4.63202 15.4779 5.49213 15.4992 6.12471C15.5342 7.19109 15.1179 8.01994 14.5228 8.55876C14.2003 8.85005 13.5977 9.31261 13.2351 9.55139C11.6449 10.6003 9.97098 11.7267 8.54705 12.5205C7.20438 13.2694 6.05174 13.4669 4.9266 12.8005C4.5803 12.5955 2.82008 11.5679 1.75745 10.6828C0.946097 10.0089 0.474789 8.69878 0.501042 7.83117C0.518544 7.22234 0.906092 6.36098 1.48992 5.78966Z\" fill=\"#F47FAC\"/>\\n<path d=\"M1.93115 5.43076C3.9739 4.09559 7.9869 1.82656 8.71949 1.49027C9.32707 1.21148 10.0922 1.10272 11.4273 1.7628C11.4273 1.7628 12.665 2.36538 13.5839 3.09297C14.4665 3.79181 15.2591 4.59691 14.4552 5.60578C14.1852 5.94583 13.5301 6.35963 13.1676 6.59841C11.5774 7.64729 9.90339 8.77368 8.47946 9.56753C7.1368 10.3164 5.98415 10.5139 4.85901 9.84757C4.51272 9.64254 2.81001 8.5399 1.68987 7.7298C0.432209 6.82094 1.25856 5.87082 1.93115 5.43076Z\" fill=\"#F47FAC\"/>\\n<path d=\"M2.27863 5.44312C4.19012 4.19421 7.98184 2.07895 8.66817 1.76516C9.237 1.50512 9.95334 1.40261 11.2022 2.02019C11.2022 2.02019 12.3599 2.58401 13.22 3.26409C14.0463 3.91793 14.7877 4.67052 14.0351 5.61564C13.7826 5.93443 13.1687 6.32073 12.8299 6.54451C11.3423 7.52588 9.77581 8.57976 8.44315 9.32236C7.18674 10.0224 6.10785 10.2075 5.05522 9.58489C4.73143 9.39236 3.13748 8.36099 2.08985 7.60339C0.912205 6.75328 1.6498 5.85317 2.27863 5.44312Z\" fill=\"#FFB6C1\"/>\\n<path d=\"M1.00587 7.8947C0.90836 8.03844 0.879606 8.23718 0.875856 8.41967C0.845852 9.89584 2.65983 10.9458 3.73621 11.6983C4.27128 12.0732 4.81635 12.387 5.49268 12.3745C5.74771 12.3695 6.01275 12.287 6.18527 12.0982C6.4228 11.837 6.4328 11.4458 6.41655 11.092C6.40905 10.937 6.39405 10.7683 6.28653 10.6571C6.21652 10.5858 6.11776 10.5496 6.024 10.5146C5.10763 10.1721 3.14614 8.82965 2.22477 8.15844C1.89723 7.92095 1.38342 7.33723 1.00587 7.8947Z\" fill=\"#FF97AB\"/>\\n<path d=\"M6.9017 11.9305C7.02544 11.9555 7.14294 12.0542 7.14919 12.1804C7.15419 12.2754 7.09669 12.3667 7.02044 12.4229C6.9442 12.4804 6.58922 12.7292 6.23174 12.4917C6.17549 12.4542 6.14549 12.3867 6.10174 12.3342C6.058 12.2817 5.998 12.2354 5.9305 12.2367C5.61802 12.2404 5.78926 11.8517 6.05925 11.9705C6.16299 12.0167 6.24299 12.0592 6.36048 12.0355C6.54547 11.9992 6.70421 11.8905 6.9017 11.9305Z\" fill=\"#FF97AB\"/>\\n<path d=\"M8.05477 10.6878C7.93853 10.7878 7.84978 10.9202 7.80229 11.0652C7.78104 11.1302 7.76979 11.209 7.81479 11.2602C7.85228 11.304 7.91728 11.3127 7.97478 11.309C8.14352 11.3002 8.30351 11.219 8.4335 11.1115C8.55725 11.009 8.76974 10.724 8.56975 10.5878C8.4235 10.489 8.16977 10.589 8.05477 10.6878Z\" fill=\"#FF97AB\"/>\\n<path d=\"M9.54744 10.9065C9.85618 10.0215 10.7461 10.194 10.7461 10.194C11.5698 10.2727 11.9286 11.6089 11.9286 11.6089C11.9286 11.6089 11.2136 12.5901 10.0899 12.2151C9.52494 12.0251 9.33745 11.5089 9.54744 10.9065Z\" fill=\"url(#paint2_radial_2_152172)\"/>\\n<path d=\"M2.67859 9.65499C2.62359 9.52125 2.50735 9.42 2.3836 9.34626C2.3536 9.32876 2.32236 9.31126 2.30111 9.28376C2.24861 9.21751 2.26986 9.12377 2.26736 9.04002C2.26111 8.86003 2.11862 8.69504 1.94113 8.66254C1.85613 8.64754 1.75739 8.66254 1.70239 8.73004C1.5624 8.90503 1.68739 9.14502 1.77988 9.22626C1.83613 9.27501 1.98612 9.30376 1.95863 9.43625C1.95363 9.46 1.94238 9.48125 1.93238 9.5025C1.88738 9.59749 1.87863 9.70999 1.90863 9.81123C1.96488 9.99997 2.14112 10.105 2.32986 10.1225C2.4236 10.1312 2.52485 10.1137 2.59734 10.055C2.71234 9.96122 2.73358 9.78873 2.67859 9.65499Z\" fill=\"#FFB6C1\"/>\\n<path d=\"M10.7559 10.1935C10.9796 8.89237 11.9683 8.19115 13.1545 8.32115C13.777 8.38989 14.4507 9.39984 14.0832 10.531C13.7682 11.4997 12.6308 11.7685 11.9296 11.6072C10.6946 11.326 10.7559 10.1935 10.7559 10.1935Z\" fill=\"url(#paint3_radial_2_152172)\"/>\\n<path opacity=\"0.43\" d=\"M10.7558 10.1938C10.7558 10.1938 11.2108 10.2176 11.5358 10.7538C11.8207 11.2225 11.9282 11.6088 11.9282 11.6088C11.9282 11.6088 11.342 11.505 11.017 11.0401C10.7333 10.6326 10.7558 10.1938 10.7558 10.1938Z\" fill=\"#80DEEA\"/>\\n<path opacity=\"0.8\" d=\"M10.6155 10.4314C11.1479 10.4314 11.2254 10.7439 11.2067 10.8089C11.1479 11.0139 10.9129 10.9376 10.8417 10.9314C10.7305 10.9226 10.618 10.9314 10.5092 10.9576C10.428 10.9776 10.348 11.0076 10.2642 11.0126C10.0842 11.0251 9.9255 10.8639 10.0267 10.6901C10.1192 10.5314 10.4517 10.4314 10.6155 10.4314Z\" fill=\"white\"/>\\n<path opacity=\"0.8\" d=\"M12.7112 8.68112C13.0699 8.83236 12.9286 9.1461 12.8074 9.17985C12.3924 9.29734 12.3237 9.48483 12.2187 9.56608C12.1137 9.64857 11.9962 9.72232 11.865 9.74357C11.7337 9.76482 11.5837 9.72107 11.5112 9.60982C11.3525 9.36609 11.6125 9.0461 11.79 8.88611C12.0362 8.66362 12.3974 8.54863 12.7112 8.68112Z\" fill=\"white\"/>\\n<path d=\"M12.657 7.64818C13.2176 7.64818 13.672 7.19377 13.672 6.63323C13.672 6.07269 13.2176 5.61829 12.657 5.61829C12.0965 5.61829 11.6421 6.07269 11.6421 6.63323C11.6421 7.19377 12.0965 7.64818 12.657 7.64818Z\" fill=\"url(#paint4_radial_2_152172)\"/>\\n<path opacity=\"0.9\" d=\"M12.6586 5.9283C12.7299 5.9633 12.7824 6.04329 12.7661 6.12204C12.7474 6.21578 12.6474 6.26578 12.5686 6.32078C12.4936 6.37202 12.4286 6.43577 12.3774 6.51077C12.3436 6.55951 12.3149 6.61326 12.2749 6.65826C12.2349 6.70326 12.1799 6.73951 12.1199 6.73826C12.0636 6.73701 12.0111 6.70326 11.9799 6.65826C11.7399 6.30578 12.3061 5.75456 12.6586 5.9283Z\" fill=\"white\"/>\\n<path d=\"M14.3577 5.70197C14.254 5.85196 14.1165 5.98821 14.0752 6.1657C14.019 6.41068 14.164 6.65192 14.2252 6.89566C14.304 7.21314 14.2427 7.55937 14.3627 7.86311C14.3839 7.91686 14.4164 7.9731 14.4702 7.99435C14.5564 8.02685 14.6452 7.9556 14.7039 7.88436C14.9927 7.53687 15.2289 6.93816 15.2364 6.48693C15.2414 6.15195 15.1202 5.52448 14.9027 5.25074C14.6389 4.91951 14.4889 5.51073 14.3577 5.70197Z\" fill=\"#FF97AB\"/>\\n<path opacity=\"0.9\" d=\"M3.23875 4.08792C3.2925 4.12042 3.36374 4.10292 3.41749 4.06917C3.53998 3.99418 3.49874 3.78794 3.74372 3.56295C3.78872 3.5217 3.95496 3.35921 3.84747 3.25047C3.70623 3.10797 3.44374 3.21422 3.2775 3.43546C3.09126 3.68544 3.06751 3.98543 3.23875 4.08792Z\" fill=\"white\"/>\\n<path d=\"M6.66385 0.795166C7.87879 0.795166 9.11122 1.62012 9.11122 2.83506C9.11122 4.05 7.87754 5.19244 6.66385 5.19244C6.01014 5.19244 5.19893 4.9937 4.7952 4.53997C4.7952 4.53997 4.43147 4.06 4.46397 2.9938C4.50272 1.78011 5.45017 0.795166 6.66385 0.795166Z\" fill=\"url(#paint5_radial_2_152172)\"/>\\n<path d=\"M6.7749 5.07683C6.85115 5.48931 6.58991 6.04678 6.10743 6.32551C5.52872 6.65925 4.48127 6.48551 4.21254 5.98678C3.9988 5.5893 3.9288 4.37812 4.95 3.99814C6.32867 3.48191 6.75865 4.99433 6.7749 5.07683Z\" fill=\"url(#paint6_radial_2_152172)\"/>\\n<path opacity=\"0.9\" d=\"M5.33524 4.58684C5.33149 4.66684 5.28399 4.73683 5.23899 4.80183C5.139 4.94432 5.04025 5.08557 4.94026 5.22806C4.89401 5.29431 4.75527 5.52554 4.55403 5.4468C4.48778 5.42055 4.44528 5.35555 4.42154 5.28806C4.33029 5.03182 4.45528 4.61309 4.69277 4.40935C4.92651 4.20811 5.34899 4.27811 5.33524 4.58684Z\" fill=\"white\"/>\\n<path d=\"M7.90534 5.90941C7.32162 6.53688 6.43792 6.05565 6.43792 6.05565C5.92419 5.25444 6.41542 4.36324 6.41542 4.36324C6.41542 4.36324 7.66285 4.02451 8.09033 4.68197C8.09158 4.68322 8.51031 5.26069 7.90534 5.90941Z\" fill=\"url(#paint7_radial_2_152172)\"/>\\n<path opacity=\"0.5\" d=\"M4.52994 3.83534C4.52994 3.83534 4.42119 3.31537 4.47869 2.81165C4.47869 2.81165 4.77367 2.84039 5.01991 2.99414C5.30865 3.17538 5.41114 3.32037 5.41114 3.32037L4.52994 3.83534Z\" fill=\"#80DEEA\"/>\\n<path d=\"M8.62836 4.13509C8.62836 4.13509 8.26463 3.74511 8.33463 2.79891C8.38588 2.10895 8.79086 1.79521 8.79086 1.79521C8.79086 1.79521 9.9333 1.61647 10.4983 2.23019C10.9507 2.72141 10.8507 3.35888 10.3008 3.76636C9.46082 4.38758 8.62836 4.13509 8.62836 4.13509Z\" fill=\"url(#paint8_radial_2_152172)\"/>\\n<path opacity=\"0.8\" d=\"M8.87732 2.16662C8.69608 2.30036 8.56358 2.4591 8.54983 2.68409C8.54483 2.75909 8.55733 2.84283 8.61358 2.89158C8.82232 3.06782 9.01231 2.70284 9.34854 2.65534C9.93976 2.57285 9.84601 2.21661 9.55353 2.09412C9.35854 2.01162 9.11355 1.99288 8.87732 2.16662Z\" fill=\"white\"/>\\n<path opacity=\"0.9\" d=\"M7.20517 1.2752C7.5314 1.39894 7.81638 1.65268 7.93513 1.98141C8.00388 2.17265 7.99763 2.42264 7.83013 2.53763C7.72514 2.60888 7.52015 2.65513 7.10767 2.35014C6.45896 1.87017 6.27772 2.28765 5.699 2.1464C5.25027 2.03766 5.45401 1.67018 5.53401 1.57768C5.92523 1.12396 6.68019 1.07521 7.20517 1.2752Z\" fill=\"white\"/>\\n<defs>\\n<radialGradient id=\"paint0_radial_2_152172\" cx=\"0\" cy=\"0\" r=\"1\" gradientUnits=\"userSpaceOnUse\" gradientTransform=\"translate(6.90208 3.38641) scale(2.7977 2.8226)\">\\n<stop offset=\"0.5219\" stop-color=\"#80DEEA\" stop-opacity=\"0\"/>\\n<stop offset=\"1\" stop-color=\"#80DEEA\"/>\\n</radialGradient>\\n<radialGradient id=\"paint1_radial_2_152172\" cx=\"0\" cy=\"0\" r=\"1\" gradientUnits=\"userSpaceOnUse\" gradientTransform=\"translate(4.47626 4.47017) scale(1.44555 1.45842)\">\\n<stop offset=\"0.545\" stop-color=\"#80DEEA\" stop-opacity=\"0\"/>\\n<stop offset=\"1\" stop-color=\"#80DEEA\"/>\\n</radialGradient>\\n<radialGradient id=\"paint2_radial_2_152172\" cx=\"0\" cy=\"0\" r=\"1\" gradientUnits=\"userSpaceOnUse\" gradientTransform=\"translate(10.6966 11.2399) scale(1.14933 1.14933)\">\\n<stop offset=\"0.3759\" stop-color=\"#80DEEA\" stop-opacity=\"0\"/>\\n<stop offset=\"1\" stop-color=\"#80DEEA\" stop-opacity=\"0.8\"/>\\n</radialGradient>\\n<radialGradient id=\"paint3_radial_2_152172\" cx=\"0\" cy=\"0\" r=\"1\" gradientUnits=\"userSpaceOnUse\" gradientTransform=\"translate(12.3903 9.88006) scale(1.86628 1.86628)\">\\n<stop offset=\"0.3759\" stop-color=\"#80DEEA\" stop-opacity=\"0\"/>\\n<stop offset=\"1\" stop-color=\"#80DEEA\" stop-opacity=\"0.8\"/>\\n</radialGradient>\\n<radialGradient id=\"paint4_radial_2_152172\" cx=\"0\" cy=\"0\" r=\"1\" gradientUnits=\"userSpaceOnUse\" gradientTransform=\"translate(12.674 6.63665) scale(0.973074)\">\\n<stop offset=\"0.5573\" stop-color=\"white\" stop-opacity=\"0\"/>\\n<stop offset=\"1\" stop-color=\"white\" stop-opacity=\"0.8\"/>\\n</radialGradient>\\n<radialGradient id=\"paint5_radial_2_152172\" cx=\"0\" cy=\"0\" r=\"1\" gradientUnits=\"userSpaceOnUse\" gradientTransform=\"translate(6.2961 2.28053) scale(2.6708 2.69457)\">\\n<stop offset=\"0.6007\" stop-color=\"white\" stop-opacity=\"0\"/>\\n<stop offset=\"1\" stop-color=\"white\" stop-opacity=\"0.8\"/>\\n</radialGradient>\\n<radialGradient id=\"paint6_radial_2_152172\" cx=\"0\" cy=\"0\" r=\"1\" gradientUnits=\"userSpaceOnUse\" gradientTransform=\"translate(5.40749 5.19964) rotate(-30.0017) scale(1.47664 1.19899)\">\\n<stop offset=\"0.5573\" stop-color=\"white\" stop-opacity=\"0\"/>\\n<stop offset=\"1\" stop-color=\"white\" stop-opacity=\"0.8\"/>\\n</radialGradient>\\n<radialGradient id=\"paint7_radial_2_152172\" cx=\"0\" cy=\"0\" r=\"1\" gradientUnits=\"userSpaceOnUse\" gradientTransform=\"translate(7.19293 5.24917) scale(0.978036 0.986741)\">\\n<stop offset=\"0.5573\" stop-color=\"white\" stop-opacity=\"0\"/>\\n<stop offset=\"1\" stop-color=\"white\" stop-opacity=\"0.8\"/>\\n</radialGradient>\\n<radialGradient id=\"paint8_radial_2_152172\" cx=\"0\" cy=\"0\" r=\"1\" gradientUnits=\"userSpaceOnUse\" gradientTransform=\"translate(9.48128 2.85474) scale(1.19441 1.20504)\">\\n<stop offset=\"0.5573\" stop-color=\"white\" stop-opacity=\"0\"/>\\n<stop offset=\"1\" stop-color=\"white\" stop-opacity=\"0.8\"/>\\n</radialGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1af4lcx\",\"data-framer-name\":\"maid owners\",layoutDependency:layoutDependency,layoutId:\"buC06Ytkn\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v12\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7S2FsYW0tcmVndWxhcg==\",\"--framer-font-family\":'\"Kalam\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-44cf505e-1737-4ea7-a517-90c5b7dccdbf, rgb(84, 120, 119)))\"},children:\"Built by maid service owners\"})}),className:\"framer-18j8wva\",fonts:[\"GF;Kalam-regular\"],layoutDependency:layoutDependency,layoutId:\"D7sTfp0Nh\",style:{\"--extracted-r6o4lv\":\"var(--token-44cf505e-1737-4ea7-a517-90c5b7dccdbf, rgb(84, 120, 119))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1kkv2qg\",\"data-framer-name\":\"baloon\",layoutDependency:layoutDependency,layoutId:\"LmGjktZpn\",style:{borderBottomLeftRadius:160,borderBottomRightRadius:160,borderTopLeftRadius:160,borderTopRightRadius:160},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-m7asub\",\"data-framer-name\":\"facial_expressions\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:16,intrinsicWidth:11,layoutDependency:layoutDependency,layoutId:\"qIblR1K15\",svg:'<svg width=\"11\" height=\"16\" viewBox=\"0 0 11 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M6.36429 13.6179C6.42016 13.3164 6.46262 13.0872 6.32462 12.8618L6.64442 12.666C6.86028 13.0186 6.79046 13.385 6.73814 13.6595C6.73424 13.68 6.73044 13.6999 6.72686 13.7193C6.699 13.8703 6.68222 13.9889 6.69535 14.0939C6.70721 14.1889 6.74416 14.2762 6.84075 14.3628C7.02602 14.5282 7.21539 14.5452 7.4519 14.4917C7.57514 14.4637 7.70513 14.4176 7.85012 14.3636C7.86846 14.3568 7.88704 14.3498 7.90585 14.3428C8.03211 14.2955 8.16858 14.2444 8.30828 14.2031C8.63291 14.1071 9.00222 14.0551 9.39703 14.2107C9.78852 14.3651 10.1733 14.711 10.5614 15.3404L10.2422 15.5372C9.87724 14.9453 9.54722 14.673 9.25949 14.5596C8.97508 14.4474 8.70075 14.4781 8.41462 14.5627C8.28862 14.5999 8.16561 14.646 8.0384 14.6936C8.01937 14.7007 8.00024 14.7078 7.98099 14.715C7.83672 14.7687 7.68532 14.8233 7.53474 14.8574C7.22362 14.9278 6.89555 14.9145 6.59089 14.6424L6.59065 14.6422C6.42297 14.492 6.34573 14.3202 6.32326 14.1404C6.30206 13.9708 6.33083 13.7991 6.35811 13.6513C6.36018 13.64 6.36224 13.6289 6.36429 13.6179Z\" fill=\"#64B5F6\"/>\\n<path d=\"M6.3132 13.3611L7.01691 13.2362C7.2119 13.2024 7.3419 13.0174 7.30815 12.8224C7.3019 12.7874 7.29065 12.7549 7.27565 12.7237C7.04816 12.2737 6.74318 11.8662 6.3757 11.5212C6.3207 11.8825 6.10571 12.4437 5.92322 12.8712C5.84573 13.0524 5.93072 13.2611 6.11196 13.3386C6.17571 13.3649 6.24571 13.3736 6.3132 13.3611Z\" fill=\"#F44336\"/>\\n<path d=\"M0.194928 6.44306C1.14255 10.4136 5.02803 12.22 6.46071 11.8762C7.89339 11.5324 10.4737 7.87574 9.5961 4.19652C8.97478 1.59995 6.36695 -0.000252664 3.77037 0.621075C1.1738 1.2424 -0.4264 3.85023 0.194928 6.44681V6.44306Z\" fill=\"#F44336\"/>\\n<path d=\"M6.17942 12.2649L6.82439 12.1112C7.02813 12.0625 7.15437 11.8587 7.10563 11.655C7.05688 11.4512 6.85314 11.325 6.6494 11.3737L6.00068 11.5275C5.79695 11.5762 5.6707 11.78 5.71945 11.9837C5.7682 12.1875 5.97194 12.3137 6.17568 12.2649H6.17942Z\" fill=\"#C62828\"/>\\n<path d=\"M6.78556 1.68001C6.27683 1.37002 5.54812 1.16379 5.13564 1.74875C4.91565 2.05999 5.12314 2.64246 5.57687 2.7737C6.34433 2.99744 6.47807 3.27368 6.63431 3.49741C6.82305 3.7599 7.00179 4.08863 7.32053 4.13988C7.63926 4.19113 7.8205 3.95114 7.80675 3.48866C7.80425 2.7487 7.41802 2.06374 6.78556 1.68001Z\" fill=\"#FF847A\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-do0jiq\",\"data-framer-name\":\"ease of use\",layoutDependency:layoutDependency,layoutId:\"SuzI0DaSx\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v13\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7S2FsYW0tcmVndWxhcg==\",\"--framer-font-family\":'\"Kalam\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-44cf505e-1737-4ea7-a517-90c5b7dccdbf, rgb(84, 120, 119)))\"},children:\"Designed for ease of use\"})}),className:\"framer-15lcqf5\",fonts:[\"GF;Kalam-regular\"],layoutDependency:layoutDependency,layoutId:\"M9FCrrGkW\",style:{\"--extracted-r6o4lv\":\"var(--token-44cf505e-1737-4ea7-a517-90c5b7dccdbf, rgb(84, 120, 119))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-h6xep\",\"data-framer-name\":\"heart\",layoutDependency:layoutDependency,layoutId:\"Vz0Ml_FIR\",style:{borderBottomLeftRadius:160,borderBottomRightRadius:160,borderTopLeftRadius:160,borderTopRightRadius:160},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-2sy0tj\",\"data-framer-name\":\"heart with sparkles - emoji_u1f496\",layoutDependency:layoutDependency,layoutId:\"PRcX94kzW\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-oo8w0q\",\"data-framer-name\":\"Group\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:14,intrinsicWidth:16,layoutDependency:layoutDependency,layoutId:\"ozIny2f5c\",svg:'<svg width=\"16\" height=\"14\" viewBox=\"0 0 16 14\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M11.7444 0.119873C9.00581 0.119873 7.99961 2.91723 7.99961 2.91723C7.99961 2.91723 7.00716 0.119873 4.24856 0.119873C2.17617 0.119873 -0.186208 1.76229 0.686246 5.49584C1.5587 9.22939 8.00586 13.8804 8.00586 13.8804C8.00586 13.8804 14.4293 9.22939 15.303 5.49584C16.1754 1.76229 13.983 0.119873 11.7444 0.119873Z\" fill=\"#EF5592\"/>\\n<path d=\"M3.82649 0.39873C5.97638 0.39873 7.04382 2.70986 7.3888 3.64606C7.43755 3.7798 7.62379 3.78355 7.68004 3.65356L7.99502 2.9186C7.5513 1.49992 6.33136 0.119995 4.24897 0.119995C3.38652 0.119995 2.47531 0.40498 1.7666 1.0062C2.39282 0.59497 3.12653 0.39873 3.82649 0.39873Z\" fill=\"#DA2E75\"/>\\n<path d=\"M11.7449 0.119995C11.0837 0.119995 10.5237 0.312485 10.0537 0.60122C10.3837 0.473727 10.7487 0.39873 11.1537 0.39873C13.1798 0.39873 14.9935 1.9349 14.1748 5.48596C13.4723 8.53455 9.36753 12.2331 8.11384 13.6443C8.03385 13.7343 8.00635 13.8793 8.00635 13.8793C8.00635 13.8793 14.4298 9.22826 15.3035 5.49471C16.1759 1.76241 13.816 0.119995 11.7449 0.119995Z\" fill=\"#DA2E75\"/>\\n<path d=\"M2.12492 2.10223C2.59365 1.51726 3.4311 1.03353 4.14107 1.591C4.5248 1.89224 4.35731 2.50971 4.01357 2.76969C3.5136 3.14967 3.07862 3.37841 2.77364 3.97338C2.59115 4.33086 2.48115 4.72209 2.42491 5.12082C2.40241 5.27831 2.19617 5.31706 2.11867 5.17832C1.5912 4.24212 1.44121 2.95468 2.12492 2.10223Z\" fill=\"#F386AB\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1ib9gaa\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:2,intrinsicWidth:2,layoutDependency:layoutDependency,layoutId:\"TBjyHuc_M\",svg:'<svg width=\"2\" height=\"2\" viewBox=\"0 0 2 2\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M1.2532 1.51055C1.50171 1.51055 1.70317 1.30909 1.70317 1.06057C1.70317 0.812057 1.50171 0.610596 1.2532 0.610596C1.00468 0.610596 0.803223 0.812057 0.803223 1.06057C0.803223 1.30909 1.00468 1.51055 1.2532 1.51055Z\" fill=\"#FDD835\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1n1232\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:2,intrinsicWidth:2,layoutDependency:layoutDependency,layoutId:\"O_PgReH_X\",svg:'<svg width=\"2\" height=\"2\" viewBox=\"0 0 2 2\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0.70294 1.06836C0.998397 1.06836 1.23791 0.828842 1.23791 0.533385C1.23791 0.237928 0.998397 -0.00158691 0.70294 -0.00158691C0.407484 -0.00158691 0.167969 0.237928 0.167969 0.533385C0.167969 0.828842 0.407484 1.06836 0.70294 1.06836Z\" fill=\"#FFF891\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-g5bxea\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:3,intrinsicWidth:3,layoutDependency:layoutDependency,layoutId:\"wLEb1SC_W\",svg:'<svg width=\"3\" height=\"3\" viewBox=\"0 0 3 3\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M1.25278 0.414581L0.385742 1.28162L1.25278 2.14865L2.11981 1.28162L1.25278 0.414581Z\" fill=\"#FFF891\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1bcuw0w\",\"data-framer-name\":\"Group\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:9,intrinsicWidth:7,layoutDependency:layoutDependency,layoutId:\"obJ26PNYZ\",svg:'<svg width=\"7\" height=\"9\" viewBox=\"0 0 7 9\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M6.17835 4.36063L5.20215 4.04565C4.57718 3.83941 4.2122 3.33443 4.04096 2.69947L3.61223 0.608326C3.60098 0.567078 3.56099 0.53833 3.48974 0.53833C3.41849 0.53833 3.3785 0.567078 3.36725 0.608326L2.93852 2.70072C2.76603 3.33568 2.40105 3.84066 1.77733 4.04689L0.801132 4.36188C0.662389 4.40688 0.661139 4.60187 0.798632 4.64811L1.78108 4.98685C2.40355 5.19308 2.76603 5.69806 2.93852 6.33052L3.3685 8.39916C3.37975 8.44041 3.41849 8.46791 3.49099 8.46791C3.56349 8.46791 3.60223 8.43916 3.61348 8.39916L4.04346 6.33052C4.21595 5.69806 4.57843 5.19433 5.2009 4.98685L6.18335 4.64811C6.31959 4.60062 6.31709 4.40563 6.17835 4.36063Z\" fill=\"#FDD835\"/>\\n<path d=\"M6.27208 4.44814C6.25708 4.40939 6.22709 4.37564 6.17959 4.36064L5.20339 4.04566C4.57842 3.83942 4.21344 3.33445 4.0422 2.69948L3.61222 0.608342C3.60597 0.584593 3.58848 0.565844 3.56348 0.553345L3.69722 2.62824C3.79971 3.58693 3.88846 4.03816 4.65342 4.1694C5.30963 4.28315 6.06959 4.41314 6.27208 4.44814Z\" fill=\"#FFF176\"/>\\n<path d=\"M6.27353 4.55688L4.58112 4.94561C3.9849 5.09686 3.65616 5.44309 3.65616 6.34554L3.51367 8.46418C3.57117 8.45793 3.60242 8.43293 3.61242 8.39793L4.04239 6.32929C4.21488 5.69682 4.57737 5.1931 5.19983 4.98561L6.18228 4.64688C6.22978 4.63188 6.25853 4.59688 6.27353 4.55688Z\" fill=\"#F4B400\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-r4rmm5\",\"data-framer-name\":\"Group\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:7,intrinsicWidth:5,layoutDependency:layoutDependency,layoutId:\"YDl70w7z6\",svg:'<svg width=\"5\" height=\"7\" viewBox=\"0 0 5 7\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M3.69293 3.14596C2.93172 2.89473 2.86297 2.61099 2.73423 2.13477L2.41549 0.633596C2.39675 0.5611 2.20801 0.5611 2.18801 0.633596L1.97177 2.04977C1.84302 2.52475 1.56929 2.90348 1.10181 3.05847L0.265608 3.3822C0.161863 3.41595 0.160613 3.56219 0.263108 3.59719L1.10431 3.86218C1.57054 4.01717 1.84302 4.39465 1.97177 4.86837L2.18801 6.2383C2.20801 6.30955 2.3955 6.30955 2.41424 6.2383L2.66798 4.87212C2.79672 4.39465 2.99296 4.01592 3.62668 3.86093L4.42289 3.59469C4.52663 3.55969 4.52538 3.41345 4.42164 3.3797L3.69293 3.14596Z\" fill=\"#FDD835\"/>\\n<path d=\"M2.47652 2.11848C2.55401 2.83594 2.59401 3.03593 3.17523 3.18342L4.47891 3.41966C4.46641 3.40216 4.44766 3.38841 4.42267 3.37966L3.6927 3.14467C3.02524 2.91594 2.85525 2.6547 2.71651 2.04598L2.41652 0.633557C2.41027 0.608558 2.39402 0.593559 2.37402 0.58606L2.47652 2.11848Z\" fill=\"#FFF176\"/>\\n<path d=\"M2.49777 4.6234C2.49777 3.94594 2.86775 3.6122 3.45647 3.6122L4.46266 3.57471C4.45016 3.59221 4.38392 3.60971 4.36017 3.61845L3.69395 3.84969C3.13648 3.99968 2.89275 4.16843 2.73525 4.86089L2.41652 6.23832C2.41027 6.26332 2.39402 6.27956 2.37402 6.28706L2.49777 4.6234Z\" fill=\"#F4B400\"/>\\n</svg>\\n',withExternalLayout:true})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-wf5vfr\",\"data-framer-name\":\"total owners\",layoutDependency:layoutDependency,layoutId:\"qu2urVfHq\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v14\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7S2FsYW0tcmVndWxhcg==\",\"--framer-font-family\":'\"Kalam\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-44cf505e-1737-4ea7-a517-90c5b7dccdbf, rgb(84, 120, 119)))\"},children:\"Loved by 3,000+ maid service owners\"})}),className:\"framer-o69hny\",fonts:[\"GF;Kalam-regular\"],layoutDependency:layoutDependency,layoutId:\"oCvKORJK_\",style:{\"--extracted-r6o4lv\":\"var(--token-44cf505e-1737-4ea7-a517-90c5b7dccdbf, rgb(84, 120, 119))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1s53aai\",\"data-framer-name\":\"clock\",layoutDependency:layoutDependency,layoutId:\"Ry_eIuugF\",style:{borderBottomLeftRadius:160,borderBottomRightRadius:160,borderTopLeftRadius:160,borderTopRightRadius:160},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-uh9lva\",\"data-framer-name\":\"Group\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:16,intrinsicWidth:16,layoutDependency:layoutDependency,layoutId:\"hFMdzHa7l\",svg:'<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M8.00094 15.5016C12.1436 15.5016 15.5019 12.1434 15.5019 8.0007C15.5019 3.85804 12.1436 0.499756 8.00094 0.499756C3.85828 0.499756 0.5 3.85804 0.5 8.0007C0.5 12.1434 3.85828 15.5016 8.00094 15.5016Z\" fill=\"#98C0D0\"/>\\n<path d=\"M8.00116 14.0189C11.325 14.0189 14.0194 11.3245 14.0194 8.00068C14.0194 4.67689 11.325 1.98242 8.00116 1.98242C4.67737 1.98242 1.98291 4.67689 1.98291 8.00068C1.98291 11.3245 4.67737 14.0189 8.00116 14.0189Z\" fill=\"#FCEBCD\"/>\\n<path d=\"M6.28811 1.88226C5.48551 2.11478 4.36162 2.47108 3.15897 3.90751C1.97132 5.32894 1.72629 6.9804 1.65003 8.11929C1.65003 8.11929 0.963692 8.97815 0.931188 8.81813C0.672406 7.57422 1.19497 4.79387 2.56139 3.32369C4.15159 1.61347 6.21935 1.00715 6.96694 0.893381C7.09571 0.873379 6.53189 1.81225 6.28811 1.88226Z\" fill=\"#C2E3F0\"/>\\n<path d=\"M8.00171 13.7002C11.1494 13.7002 13.7012 11.1485 13.7012 8.00074C13.7012 4.85301 11.1494 2.30127 8.00171 2.30127C4.85398 2.30127 2.30225 4.85301 2.30225 8.00074C2.30225 11.1485 4.85398 13.7002 8.00171 13.7002Z\" fill=\"white\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8.00096 4.12524C8.13903 4.12524 8.25095 4.23717 8.25095 4.37523V8.00004C8.25095 8.13811 8.13903 8.25003 8.00096 8.25003C7.8629 8.25003 7.75098 8.13811 7.75098 8.00004V4.37523C7.75098 4.23717 7.8629 4.12524 8.00096 4.12524Z\" fill=\"#563428\"/>\\n<path d=\"M8.00112 8.6331C8.35042 8.6331 8.63359 8.34993 8.63359 8.00063C8.63359 7.65133 8.35042 7.36816 8.00112 7.36816C7.65182 7.36816 7.36865 7.65133 7.36865 8.00063C7.36865 8.34993 7.65182 8.6331 8.00112 8.6331Z\" fill=\"#563428\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M7.65645 7.81552C7.75877 7.63546 7.98767 7.57244 8.16773 7.67476L10.4751 8.98594C10.6552 9.08826 10.7182 9.31717 10.6159 9.49722C10.5135 9.67728 10.2846 9.7403 10.1046 9.63798L7.79721 8.3268C7.61715 8.22448 7.55413 7.99557 7.65645 7.81552Z\" fill=\"#563428\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M7.68848 13.1264V12.5015H8.31344V13.1264H7.68848Z\" fill=\"#6596A3\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M7.68848 3.50021V2.87524H8.31344V3.50021H7.68848Z\" fill=\"#6596A3\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M7.68848 13.1264V12.5015H8.31344V13.1264H7.68848Z\" fill=\"#6596A3\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M7.68848 3.50021V2.87524H8.31344V3.50021H7.68848Z\" fill=\"#6596A3\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M2.87549 7.68823H3.50046V8.3132H2.87549V7.68823Z\" fill=\"#6596A3\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.5015 7.68823H13.1264V8.3132H12.5015V7.68823Z\" fill=\"#6596A3\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M2.87549 7.68823H3.50046V8.3132H2.87549V7.68823Z\" fill=\"#6596A3\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.5015 7.68823H13.1264V8.3132H12.5015V7.68823Z\" fill=\"#6596A3\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M5.27588 12.3464L5.58836 11.8052L5.9131 11.9927L5.60062 12.5339L5.27588 12.3464Z\" fill=\"#B0BEC5\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.0889 4.009L10.4014 3.46777L10.7261 3.65527L10.4136 4.19649L10.0889 4.009Z\" fill=\"#B0BEC5\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M5.27588 12.3464L5.58836 11.8052L5.9131 11.9927L5.60062 12.5339L5.27588 12.3464Z\" fill=\"#B0BEC5\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.0889 4.009L10.4014 3.46777L10.7261 3.65527L10.4136 4.19649L10.0889 4.009Z\" fill=\"#B0BEC5\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.4014 12.5339L10.0889 11.9927L10.4136 11.8052L10.7261 12.3464L10.4014 12.5339Z\" fill=\"#B0BEC5\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M5.58836 4.19649L5.27588 3.65527L5.60062 3.46777L5.9131 4.009L5.58836 4.19649Z\" fill=\"#B0BEC5\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.4014 12.5339L10.0889 11.9927L10.4136 11.8052L10.7261 12.3464L10.4014 12.5339Z\" fill=\"#B0BEC5\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M5.58836 4.19649L5.27588 3.65527L5.60062 3.46777L5.9131 4.009L5.58836 4.19649Z\" fill=\"#B0BEC5\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3464 10.7261L11.8052 10.4136L11.9927 10.0889L12.5339 10.4014L12.3464 10.7261Z\" fill=\"#B0BEC5\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M4.00899 5.91286L3.46777 5.60037L3.65527 5.27563L4.19649 5.58812L4.00899 5.91286Z\" fill=\"#B0BEC5\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3464 10.7261L11.8052 10.4136L11.9927 10.0889L12.5339 10.4014L12.3464 10.7261Z\" fill=\"#B0BEC5\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M4.00899 5.91286L3.46777 5.60037L3.65527 5.27563L4.19649 5.58812L4.00899 5.91286Z\" fill=\"#B0BEC5\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M3.46777 10.4014L4.00899 10.0889L4.19649 10.4136L3.65527 10.7261L3.46777 10.4014Z\" fill=\"#B0BEC5\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M11.8052 5.58812L12.3464 5.27563L12.5339 5.60038L11.9927 5.91286L11.8052 5.58812Z\" fill=\"#B0BEC5\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M3.46777 10.4014L4.00899 10.0889L4.19649 10.4136L3.65527 10.7261L3.46777 10.4014Z\" fill=\"#B0BEC5\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M11.8052 5.58812L12.3464 5.27563L12.5339 5.60038L11.9927 5.91286L11.8052 5.58812Z\" fill=\"#B0BEC5\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-bfk0h3\",\"data-framer-name\":\"onboarding\",layoutDependency:layoutDependency,layoutId:\"pmbfBFrP2\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v15\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7S2FsYW0tcmVndWxhcg==\",\"--framer-font-family\":'\"Kalam\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-44cf505e-1737-4ea7-a517-90c5b7dccdbf, rgb(84, 120, 119)))\"},children:\"Takes less than 5 minutes to get started\"})}),className:\"framer-151uj41\",fonts:[\"GF;Kalam-regular\"],layoutDependency:layoutDependency,layoutId:\"OKcvKD22y\",style:{\"--extracted-r6o4lv\":\"var(--token-44cf505e-1737-4ea7-a517-90c5b7dccdbf, rgb(84, 120, 119))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})})],speed:40,style:{height:\"100%\",maxWidth:\"100%\",width:\"100%\"},width:\"100%\"})})})]})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-qJnOI.framer-1a4y4n3, .framer-qJnOI .framer-1a4y4n3 { display: block; }\",\".framer-qJnOI.framer-1khgh7g { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 72px 0px 0px 0px; position: relative; width: 1200px; }\",\".framer-qJnOI .framer-td2cjt { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; overflow: visible; padding: 0px 24px 0px 24px; position: relative; width: 100%; }\",\".framer-qJnOI .framer-uwm7nq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-qJnOI .framer-13ciibd { flex: none; gap: 0px; height: 70px; overflow: visible; position: relative; width: 70px; }\",\".framer-qJnOI .framer-14kgzp4 { flex: none; height: 46px; left: calc(50.00000000000002% - 46px / 2); overflow: visible; position: absolute; top: calc(50.00000000000002% - 46px / 2); width: 46px; }\",\".framer-qJnOI .framer-b1qvzt { height: 48px; left: -1px; position: absolute; top: -1px; width: 48px; }\",\".framer-qJnOI .framer-12tqbku { height: 48px; left: 0px; position: absolute; top: 0px; width: 48px; }\",\".framer-qJnOI .framer-16uzw1n, .framer-qJnOI .framer-1gti2j { height: 41px; left: 0px; position: absolute; top: 0px; width: 48px; }\",\".framer-qJnOI .framer-j0vv78 { height: 6px; left: 19px; position: absolute; top: 5px; width: 11px; }\",\".framer-qJnOI .framer-1il1ppu { height: 9px; left: 20px; position: absolute; top: 10px; width: 9px; }\",\".framer-qJnOI .framer-z6a7sk { height: 12px; left: 2px; position: absolute; top: 19px; width: 45px; }\",\".framer-qJnOI .framer-10fk4n1, .framer-qJnOI .framer-1hkse1f, .framer-qJnOI .framer-19a2kmm, .framer-qJnOI .framer-1gkzd8l { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-qJnOI .framer-1lkdcjl { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; max-width: 1024px; overflow: hidden; padding: 0px 24px 0px 24px; position: relative; width: 100%; }\",\".framer-qJnOI .framer-1ddy128 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: 303px; justify-content: flex-start; overflow: hidden; padding: 24px 24px 0px 24px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-qJnOI .framer-1f3rzqb, .framer-qJnOI .framer-e0ee6, .framer-qJnOI .framer-rrw6xi { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-qJnOI .framer-1y3e8sk, .framer-qJnOI .framer-1xdt0yf, .framer-qJnOI .framer-1rmaaa2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 28px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 28px; }\",\".framer-qJnOI .framer-1pju87y, .framer-qJnOI .framer-a76490, .framer-qJnOI .framer-gwj5t8, .framer-qJnOI .framer-18j8wva, .framer-qJnOI .framer-15lcqf5, .framer-qJnOI .framer-o69hny, .framer-qJnOI .framer-151uj41 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-qJnOI .framer-pv6kiy { aspect-ratio: 1.4099616858237547 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 231px); overflow: visible; position: relative; width: 326px; }\",\".framer-qJnOI .framer-1ejqkzn { flex: none; height: 13px; position: relative; width: 28px; }\",\".framer-qJnOI .framer-sg2zbq, .framer-qJnOI .framer-h2z0o5 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: 303px; justify-content: flex-start; overflow: hidden; padding: 24px 24px 0px 24px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-qJnOI .framer-17xznl6 { aspect-ratio: 1.3713298791018997 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 302px); overflow: visible; position: relative; width: 414px; }\",\".framer-qJnOI .framer-1lyucvm { flex: none; height: 13px; position: relative; width: 27px; }\",\".framer-qJnOI .framer-1k2tpmk { aspect-ratio: 1.6111636707663197 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 237px); overflow: visible; position: relative; width: 382px; }\",\".framer-qJnOI .framer-196fdt { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-qJnOI .framer-13vtjsf { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-qJnOI .framer-etlsyr { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-qJnOI .framer-94l5g8-container, .framer-qJnOI .framer-1gpd0v3-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-qJnOI .framer-eknvsj-container { flex: none; height: 69px; max-width: 1024px; position: relative; width: 100%; }\",\".framer-qJnOI .framer-fxw2z2, .framer-qJnOI .framer-1kkv2qg, .framer-qJnOI .framer-h6xep, .framer-qJnOI .framer-1s53aai { align-content: center; align-items: center; aspect-ratio: 1 / 1; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 20px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 20px; will-change: var(--framer-will-change-override, transform); }\",\".framer-qJnOI .framer-1aqcxjt { aspect-ratio: 1.1428571428571428 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 20px); position: relative; width: 23px; }\",\".framer-qJnOI .framer-1af4lcx, .framer-qJnOI .framer-do0jiq, .framer-qJnOI .framer-wf5vfr, .framer-qJnOI .framer-bfk0h3 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-qJnOI .framer-m7asub { aspect-ratio: 0.7142857142857143 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 20px); position: relative; width: 14px; }\",\".framer-qJnOI .framer-2sy0tj { aspect-ratio: 1 / 1; flex: none; gap: 0px; height: var(--framer-aspect-ratio-supported, 20px); overflow: hidden; position: relative; width: 20px; }\",\".framer-qJnOI .framer-oo8w0q { flex: none; height: 14px; left: calc(50.00000000000002% - 16px / 2); position: absolute; top: calc(50.00000000000002% - 14px / 2); width: 16px; }\",\".framer-qJnOI .framer-1ib9gaa { flex: none; height: 2px; left: calc(56.96221507257886% - 2px / 2); position: absolute; top: calc(67.00317660967508% - 2px / 2); width: 2px; }\",\".framer-qJnOI .framer-1n1232 { flex: none; height: 2px; left: calc(59.460782673623825% - 2px / 2); position: absolute; top: calc(36.296581890847946% - 2px / 2); width: 2px; }\",\".framer-qJnOI .framer-g5bxea { flex: none; height: 3px; left: calc(68.07098869692152% - 3px / 2); position: absolute; top: calc(57.12009193393912% - 3px / 2); width: 3px; }\",\".framer-qJnOI .framer-1bcuw0w { flex: none; height: 9px; left: 3px; position: absolute; top: 6px; width: 7px; }\",\".framer-qJnOI .framer-r4rmm5 { flex: none; height: 7px; left: 11px; position: absolute; top: 1px; width: 5px; }\",\".framer-qJnOI .framer-uh9lva { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 20px); position: relative; width: 20px; }\",\".framer-qJnOI.framer-v-1fxiotn.framer-1khgh7g { width: 481px; }\",\".framer-qJnOI.framer-v-1fxiotn .framer-1lkdcjl, .framer-qJnOI.framer-v-mrrr3l .framer-1lkdcjl { flex-direction: column; gap: 16px; }\",\".framer-qJnOI.framer-v-1fxiotn .framer-1ddy128 { flex: none; gap: 21px; width: 100%; }\",\".framer-qJnOI.framer-v-1fxiotn .framer-1f3rzqb, .framer-qJnOI.framer-v-1fxiotn .framer-e0ee6, .framer-qJnOI.framer-v-1fxiotn .framer-rrw6xi, .framer-qJnOI.framer-v-mrrr3l .framer-1f3rzqb, .framer-qJnOI.framer-v-mrrr3l .framer-e0ee6, .framer-qJnOI.framer-v-mrrr3l .framer-rrw6xi { align-content: center; align-items: center; }\",\".framer-qJnOI.framer-v-1fxiotn .framer-sg2zbq, .framer-qJnOI.framer-v-1fxiotn .framer-h2z0o5 { flex: none; width: 100%; }\",\".framer-qJnOI.framer-v-1fxiotn .framer-17xznl6 { height: var(--framer-aspect-ratio-supported, 301px); }\",\".framer-qJnOI.framer-v-1fxiotn .framer-etlsyr { flex-direction: column; }\",\".framer-qJnOI.framer-v-mrrr3l.framer-1khgh7g { width: 700px; }\",\".framer-qJnOI.framer-v-mrrr3l .framer-1ddy128, .framer-qJnOI.framer-v-mrrr3l .framer-sg2zbq, .framer-qJnOI.framer-v-mrrr3l .framer-h2z0o5 { align-content: center; align-items: center; flex: none; width: 100%; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,'.framer-qJnOI[data-border=\"true\"]::after, .framer-qJnOI [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 717\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"yQd9rJ9K6\":{\"layout\":[\"fixed\",\"auto\"]},\"ZbhlMeFm9\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramercyUsdSIvK=withCSS(Component,css,\"framer-qJnOI\");export default FramercyUsdSIvK;FramercyUsdSIvK.displayName=\"Pre-footer / v2\";FramercyUsdSIvK.defaultProps={height:717,width:1200};addPropertyControls(FramercyUsdSIvK,{variant:{options:[\"K2bUgYYE_\",\"yQd9rJ9K6\",\"ZbhlMeFm9\"],optionTitles:[\"Desktop\",\"Phone\",\"Tablet\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramercyUsdSIvK,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Kalam\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/kalam/v17/YA9dr0Wd4kDdMuhTMibDszkB.woff2\",weight:\"400\"}]},...ButtonFonts,...TickerFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramercyUsdSIvK\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"1200\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"yQd9rJ9K6\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ZbhlMeFm9\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerColorSyntax\":\"true\",\"framerIntrinsicHeight\":\"717\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerAutoSizeImages\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./cyUsdSIvK.map"],
  "mappings": "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",
  "names": ["createStore", "state1", "dataStore", "Data", "setDataStore", "newState", "storeState", "storeSetters", "setStoreState", "setter", "useStore", "state", "setState", "ye", "ue", "useObserveData", "useValueStore", "createStore", "useStore", "createStore", "LogoIconBreathingAnimation", "Component", "props", "p", "UseCurrentLiteValue", "store", "useValueStore", "UseCurrentEssentialsValue", "UseCurrentMaxValue", "UseCurrentUnits", "UseDisplayMessage", "UseHideMessage", "UseEditMessage", "UseDisplayFrame", "UseHideFrame", "UseHideFrame12", "threshold", "UseShowFrame12", "withUseCurrentLiteValue", "C", "props", "re", "DataObserverContext", "p", "withUseCurrentEssentialsValue", "withUseCurrentMaxValue", "withUseCurrentUnits", "withUseDisplayMessage", "withUseHideMessage", "withUseEditMessage", "withUseDisplayFrame", "withUseHideFrame", "withUseHideFrame12", "withUseShowFrame12", "cyUsdSIvK_0_exports", "__export", "__FramerMetadata__", "v0", "v1", "v10", "v11", "v12", "v13", "v14", "v15", "v2", "v3", "v4", "v5", "v6", "v7", "v8", "v9", "v0", "p", "x", "motion", "v1", "v2", "v3", "v4", "v5", "v6", "v7", "v8", "v9", "v10", "v11", "v12", "v13", "v14", "v15", "__FramerMetadata__", "cyUsdSIvK_1_exports", "__export", "__FramerMetadata__", "v0", "v1", "v10", "v11", "v12", "v13", "v14", "v15", "v2", "v3", "v4", "v5", "v6", "v7", "v8", "v9", "v0", "p", "x", "motion", "v1", "v2", "v3", "v4", "v5", "v6", "v7", "v8", "v9", "v10", "v11", "v12", "v13", "v14", "v15", "__FramerMetadata__", "valuesByLocaleId", "cyUsdSIvK_1_exports", "cyUsdSIvK_0_exports", "getLocalizedValue", "key", "locale", "values", "value", "MotionDivLogoIconBreathingAnimation13ciibd", "withCodeBoundaryForOverrides", "motion", "LogoIconBreathingAnimation", "ButtonFonts", "getFonts", "liTuWb7p2_default", "TickerFonts", "Ticker", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "router", "useRouter", "LayoutGroup", "u", "SVG", "RichText", "getLocalizedValue", "Image2", "getLoadingLazyAtYPosition", "ComponentViewportProvider", "SmartComponentScopedContainer", "ResolveLinks", "resolvedLinks", "css", "FramercyUsdSIvK", "withCSS", "cyUsdSIvK_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts"]
}
