{
  "version": 3,
  "sources": ["ssg:https://framer.com/m/framer/store.js@^1.0.0", "ssg:https://framer.com/m/framer/utils.js@^0.9.0", "ssg:https://framerusercontent.com/modules/2BvGY7NOU67M00oU4fiF/1TGli9moUd6SWujfe6Wb/Intercom_widget.js", "ssg:https://framerusercontent.com/modules/OBWlLsqA9HsOMA6etsX3/qAe7T4w64cnjNzXCGoub/k_zj9sMN8.js", "ssg:https://framerusercontent.com/modules/R7MEjMmtn6uM4NzIZThQ/e5awXmakuTXbUHCxn7cw/fhNg5oqH9.js"],
  "sourcesContent": ["import{useState,useEffect}from\"react\";import{Data,useObserveData}from\"framer\";export function createStore(state1){// Use Data so that a Preview reload resets the state\nconst dataStore=Data({state:Object.freeze({...state1})});// Create a set function that updates the state\nconst setDataStore=newState=>{// If the state is an object, make sure we copy it\nif(typeof newState===\"function\"){newState=newState(dataStore.state);}dataStore.state=Object.freeze({...dataStore.state,...newState});};// Store the initial state, copy the object if it's an object\nlet storeState=typeof state1===\"object\"?Object.freeze({...state1}):state1;// Keep a list of all the listeners, in the form of React hook setters\nconst storeSetters=new Set();// Create a set function that updates all the listeners / setters\nconst setStoreState=newState=>{// If the state is an object, make sure we copy it\nif(typeof newState===\"function\"){newState=newState(storeState);}storeState=typeof newState===\"object\"?Object.freeze({...storeState,...newState}):newState;// Update all the listeners / setters with the new value\nstoreSetters.forEach(setter=>setter(storeState));};// Create the actual hook based on everything above\nfunction useStore(){// Create the hook we are going to use as a listener\nconst[state,setState]=useState(storeState);// If we unmount the component using this hook, we need to remove the listener\n// @ts-ignore\nuseEffect(()=>{// But right now, we need to add the listener\nstoreSetters.add(setState);return()=>storeSetters.delete(setState);},[]);// If Data context exists, use Data, otherwise use vanilla React state\nif(useObserveData()===true){useObserveData();return[dataStore.state,setDataStore];}else{// Return the state and a function to update the central store\nreturn[state,setStoreState];}}return useStore;}\nexport const __FramerMetadata__ = {\"exports\":{\"createStore\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./createStore.map", "export const centerContent = {\n    display: \"flex\",\n    justifyContent: \"center\",\n    alignItems: \"center\"\n};\nexport const autoSizingText = {\n    width: \"max-content\",\n    wordBreak: \"break-word\",\n    overflowWrap: \"break-word\",\n    overflow: \"hidden\",\n    whiteSpace: \"pre-wrap\",\n    flexShrink: 0\n};\nexport const defaultContainerStyles = {\n    ...centerContent,\n    overflow: \"hidden\"\n};\nexport const containerStyles = defaultContainerStyles;\nexport const randomColor = ()=>\"#\" + Math.floor(Math.random() * 16777215).toString(16)\n;\n\nexport const __FramerMetadata__ = {\"exports\":{\"centerContent\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"containerStyles\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"autoSizingText\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"defaultContainerStyles\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"randomColor\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}}}}\n//# sourceMappingURL=./Utils.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import{createStore}from\"https://framer.com/m/framer/store.js@^1.0.0\";import{randomColor}from\"https://framer.com/m/framer/utils.js@^0.9.0\";// Learn more: https://www.framer.com/developers/overrides/\nconst useStore=createStore({background:\"#0099FF\"});export function withRotate(Component){return props=>{return /*#__PURE__*/_jsx(Component,{...props,animate:{rotate:90},transition:{duration:2}});};}export function withHover(Component){return props=>{return /*#__PURE__*/_jsx(Component,{...props,whileHover:{scale:1.05}});};}export function withRandomColor(Component){return props=>{const[store,setStore]=useStore();return /*#__PURE__*/_jsx(Component,{...props,animate:{background:store.background},onClick:()=>{setStore({background:randomColor()});}});};}export function triggerIntercom(){return{onTap:()=>window.Intercom(\"show\")};}import{useContext as __legacyOverrideHOC_useContext}from\"react\";import{DataObserverContext as __legacyOverrideHOC_DataObserverContext}from\"framer\";export function withtriggerIntercom(C){return props=>{__legacyOverrideHOC_useContext(__legacyOverrideHOC_DataObserverContext);return _jsx(C,{...props,...triggerIntercom(props)});};}withtriggerIntercom.displayName=\"triggerIntercom\";\nexport const __FramerMetadata__ = {\"exports\":{\"triggerIntercom\":{\"type\":\"override\",\"name\":\"triggerIntercom\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withRotate\":{\"type\":\"reactHoc\",\"name\":\"withRotate\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withHover\":{\"type\":\"reactHoc\",\"name\":\"withHover\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withtriggerIntercom\":{\"type\":\"reactHoc\",\"name\":\"withtriggerIntercom\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withRandomColor\":{\"type\":\"reactHoc\",\"name\":\"withRandomColor\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Intercom_widget.map", "// Generated by Framer (258d1f3)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{withtriggerIntercom}from\"https://framerusercontent.com/modules/2BvGY7NOU67M00oU4fiF/1TGli9moUd6SWujfe6Wb/Intercom_widget.js\";const RichTextWithtriggerIntercom=withtriggerIntercom(RichText);const enabledGestures={OGCZKtngv:{hover:true}};const serializationHash=\"framer-aeJvV\";const variantClassNames={OGCZKtngv:\"framer-v-1i2uhnk\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const transformTemplate1=(_,t)=>`translateY(-50%) ${t}`;const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({click,height,id,width,...props})=>{return{...props,mMJ14XFVA:click!==null&&click!==void 0?click:props.mMJ14XFVA};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,mMJ14XFVA,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"OGCZKtngv\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTaphf47j0=activeVariantCallback(async(...args)=>{if(mMJ14XFVA){const res=await mMJ14XFVA(...args);if(res===false)return false;}});const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1i2uhnk\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"OGCZKtngv\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({\"OGCZKtngv-hover\":{\"data-framer-name\":undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichTextWithtriggerIntercom,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNjAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"25px\"},children:\"Contact us\"})}),className:\"framer-ffsnfx\",\"data-framer-name\":\"Contact us\",\"data-highlight\":true,fonts:[\"GF;Plus Jakarta Sans-600\"],layoutDependency:layoutDependency,layoutId:\"xklrmXLJj\",onTap:onTaphf47j0,style:{\"--framer-paragraph-spacing\":\"0px\"},transformTemplate:transformTemplate1,variants:{\"OGCZKtngv-hover\":{\"--extracted-r6o4lv\":\"rgb(92, 87, 87)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"OGCZKtngv-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNjAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"25px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(92, 87, 87))\"},children:\"Contact us\"})})}},baseVariant,gestureVariant)})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-aeJvV.framer-13two6x, .framer-aeJvV .framer-13two6x { display: block; }\",\".framer-aeJvV.framer-1i2uhnk { cursor: pointer; height: 25px; overflow: visible; position: relative; width: 85px; }\",\".framer-aeJvV .framer-ffsnfx { cursor: pointer; flex: none; height: auto; left: 0px; position: absolute; top: 48%; white-space: pre; width: auto; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 25\n * @framerIntrinsicWidth 85\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"aaWl9yS9m\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"mMJ14XFVA\":\"click\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framerk_zj9sMN8=withCSS(Component,css,\"framer-aeJvV\");export default Framerk_zj9sMN8;Framerk_zj9sMN8.displayName=\"component/Contact us button\";Framerk_zj9sMN8.defaultProps={height:25,width:85};addPropertyControls(Framerk_zj9sMN8,{mMJ14XFVA:{title:\"Click\",type:ControlType.EventHandler}});addFonts(Framerk_zj9sMN8,[{explicitInter:true,fonts:[{family:\"Plus Jakarta Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/plusjakartasans/v8/LDIbaomQNQcsA88c7O9yZ4KMCoOg4IA6-91aHEjcWuA_d0nNTxXUEKi4Rw.woff2\",weight:\"600\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerk_zj9sMN8\",\"slots\":[],\"annotations\":{\"framerVariables\":\"{\\\"mMJ14XFVA\\\":\\\"click\\\"}\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"25\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"aaWl9yS9m\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicWidth\":\"85\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./k_zj9sMN8.map", "// Generated by Framer (47ebf4a)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,RichText,SmartComponentScopedContainer,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Intercom from\"https://framerusercontent.com/modules/UIhUTcd796YH7Ndybys8/totj55n8qE3VYpdXhshW/Intercom.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/oJXHrBPWY88O3FHKkrp9/HDl9PGBejlgyVgfgusV7/KRdW8tnMC.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/tWbwL7VZiYe5sUWt3LPf/mCQ5HwB57SeC4DzKElM8/TEgDFMRVa.js\";import ComponentContactUsButton from\"https://framerusercontent.com/modules/OBWlLsqA9HsOMA6etsX3/qAe7T4w64cnjNzXCGoub/k_zj9sMN8.js\";import CarefreeFoundationsCarefreeLogo from\"https://framerusercontent.com/modules/uc59TBGxBpc7sCWuUyDi/4BMDD4kZGjhS2bYN7GNP/UWzKVx_uF.js\";const CarefreeFoundationsCarefreeLogoFonts=getFonts(CarefreeFoundationsCarefreeLogo);const ComponentContactUsButtonFonts=getFonts(ComponentContactUsButton);const IntercomFonts=getFonts(Intercom);const cycleOrder=[\"shAVnHb7M\",\"wLr1h1bZq\",\"cyWgsZ5Xk\",\"Pdi4IQNg0\"];const serializationHash=\"framer-QQBRu\";const variantClassNames={cyWgsZ5Xk:\"framer-v-38ad40\",Pdi4IQNg0:\"framer-v-13hagme\",shAVnHb7M:\"framer-v-163p83u\",wLr1h1bZq:\"framer-v-f7cgjp\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Dektop small\":\"wLr1h1bZq\",Desktop:\"shAVnHb7M\",mobile:\"Pdi4IQNg0\",Tablet:\"cyWgsZ5Xk\"};const getProps=({height,hover,id,width,...props})=>{return{...props,eNhGnmgGE:hover??props.eNhGnmgGE,variant:humanReadableVariantMap[props.variant]??props.variant??\"shAVnHb7M\"};};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,eNhGnmgGE,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"shAVnHb7M\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const mMJ14XFVA1ykv41o=activeVariantCallback(async(...args)=>{if(eNhGnmgGE){const res=await eNhGnmgGE(...args);if(res===false)return false;}});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.footer,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-163p83u\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"shAVnHb7M\",ref:refBinding,style:{backgroundColor:\"var(--token-b0d2a89c-22fb-4260-8a8b-160690dacb68, rgb(255, 255, 255))\",...style},...addPropertyOverrides({cyWgsZ5Xk:{\"data-framer-name\":\"Tablet\"},Pdi4IQNg0:{\"data-framer-name\":\"mobile\"},wLr1h1bZq:{\"data-framer-name\":\"Dektop small\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-gzsxef\",\"data-framer-name\":\"top\",layoutDependency:layoutDependency,layoutId:\"xegg_Nqe_\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-10gjylp\",\"data-framer-name\":\"divider\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:3,intrinsicWidth:1242,layoutDependency:layoutDependency,layoutId:\"UISHSXSnT\",svg:'<svg width=\"1242\" height=\"3\" viewBox=\"-1 -1 1242 3\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<line x1=\"8.74228e-09\" y1=\"0.9\" x2=\"1240\" y2=\"0.900108\" stroke=\"black\" stroke-width=\"0.2\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-3xxed6\",\"data-framer-name\":\"top \",layoutDependency:layoutDependency,layoutId:\"r8D0deHaa\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-r1pf8u\",layoutDependency:layoutDependency,layoutId:\"rwXnJRFYo\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1kfhzns\",layoutDependency:layoutDependency,layoutId:\"EravD6cqB\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:27,width:\"137px\",y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-20-450)/2+0+0)+0+38+0+0+0,...addPropertyOverrides({cyWgsZ5Xk:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-20-570)/2+0+0)+0+38+0+0+0+0+0+0},Pdi4IQNg0:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-20-949)/2+0+0)+0+38+0+0+0+0+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-djeiyf-container\",layoutDependency:layoutDependency,layoutId:\"cK8ivLkz0-container\",nodeId:\"cK8ivLkz0\",rendersWithMotion:true,scopeId:\"fhNg5oqH9\",children:/*#__PURE__*/_jsx(CarefreeFoundationsCarefreeLogo,{height:\"100%\",id:\"cK8ivLkz0\",layoutId:\"cK8ivLkz0\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-18cizf8\",layoutDependency:layoutDependency,layoutId:\"QVKdF7WFz\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1bo393j\",\"data-framer-name\":\"Frame 269\",layoutDependency:layoutDependency,layoutId:\"qQsDZvDAN\",transformTemplate:transformTemplate1,...addPropertyOverrides({cyWgsZ5Xk:{transformTemplate:undefined},Pdi4IQNg0:{transformTemplate:undefined}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-4lvfke\",\"data-framer-name\":\"Frame 2812\",layoutDependency:layoutDependency,layoutId:\"GBJVXs6vY\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNjAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"25px\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"hqiuHunKj\"},motionChild:true,nodeId:\"Q5hQvfYyP\",openInNewTab:false,scopeId:\"fhNg5oqH9\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1v2isbs\",\"data-styles-preset\":\"KRdW8tnMC\",children:\"How it works\"})})})}),className:\"framer-1xw6onn\",\"data-framer-name\":\"How it works\",fonts:[\"GF;Plus Jakarta Sans-600\"],layoutDependency:layoutDependency,layoutId:\"Q5hQvfYyP\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNjAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"25px\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"RmI_QEsUd\"},motionChild:true,nodeId:\"oa6rk6Ecw\",openInNewTab:false,scopeId:\"fhNg5oqH9\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1v2isbs\",\"data-styles-preset\":\"KRdW8tnMC\",children:\"Why carer breaks\"})})})}),className:\"framer-ve2cxj\",\"data-framer-name\":\"Why carer breaks\",fonts:[\"GF;Plus Jakarta Sans-600\"],layoutDependency:layoutDependency,layoutId:\"oa6rk6Ecw\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNjAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"25px\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"YKqTRcRg8\"},motionChild:true,nodeId:\"fDJfoDe3Z\",openInNewTab:false,scopeId:\"fhNg5oqH9\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1v2isbs\",\"data-styles-preset\":\"KRdW8tnMC\",children:\"Give rooms\"})})})}),className:\"framer-ku9p17\",\"data-framer-name\":\"Give rooms\",fonts:[\"GF;Plus Jakarta Sans-600\"],layoutDependency:layoutDependency,layoutId:\"fDJfoDe3Z\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNjAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"25px\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"eF1xkyMNM\"},motionChild:true,nodeId:\"Y0cumdHO4\",openInNewTab:false,scopeId:\"fhNg5oqH9\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1v2isbs\",\"data-styles-preset\":\"KRdW8tnMC\",children:\"Refer carers\"})})})}),className:\"framer-x9jc3r\",\"data-framer-name\":\"Refer Carers\",fonts:[\"GF;Plus Jakarta Sans-600\"],layoutDependency:layoutDependency,layoutId:\"Y0cumdHO4\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNjAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"25px\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"gnxXdG0cT\"},motionChild:true,nodeId:\"z2CJkat7b\",openInNewTab:false,scopeId:\"fhNg5oqH9\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1v2isbs\",\"data-styles-preset\":\"KRdW8tnMC\",children:\"Donate\"})})})}),className:\"framer-2cjzk9\",\"data-framer-name\":\"Donate\",fonts:[\"GF;Plus Jakarta Sans-600\"],layoutDependency:layoutDependency,layoutId:\"z2CJkat7b\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{\"aria-label\":\"links\",className:\"framer-s0tand\",\"data-framer-name\":\"Frame 2813\",layoutDependency:layoutDependency,layoutId:\"Il_gGtCGc\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNjAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"25px\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"HMEyU_Hga\"},motionChild:true,nodeId:\"v2NBwVmvQ\",openInNewTab:false,scopeId:\"fhNg5oqH9\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1v2isbs\",\"data-styles-preset\":\"KRdW8tnMC\",children:\"About us\"})})})}),className:\"framer-1dqk0ij\",\"data-framer-name\":\"About us\",fonts:[\"GF;Plus Jakarta Sans-600\"],layoutDependency:layoutDependency,layoutId:\"v2NBwVmvQ\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNjAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"25px\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"FQVPgTe_y\"},motionChild:true,nodeId:\"D7Lm2YjEP\",openInNewTab:false,scopeId:\"fhNg5oqH9\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1v2isbs\",\"data-styles-preset\":\"KRdW8tnMC\",children:\"Careers\"})})})}),className:\"framer-15cy8g3\",\"data-framer-name\":\"Help Articles\",fonts:[\"GF;Plus Jakarta Sans-600\"],layoutDependency:layoutDependency,layoutId:\"D7Lm2YjEP\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:25,width:\"85px\",y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-20-450)/2+0+0)+0+38+0+0+0+0+0+98,...addPropertyOverrides({cyWgsZ5Xk:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-20-570)/2+0+0)+0+38+0+0+0+73+0+0+0+98},Pdi4IQNg0:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-20-949)/2+0+0)+0+38+0+0+0+67+0+0+0+0+98}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-thgmx-container\",layoutDependency:layoutDependency,layoutId:\"YijKKEGut-container\",nodeId:\"YijKKEGut\",rendersWithMotion:true,scopeId:\"fhNg5oqH9\",children:/*#__PURE__*/_jsx(ComponentContactUsButton,{height:\"100%\",id:\"YijKKEGut\",layoutId:\"YijKKEGut\",mMJ14XFVA:mMJ14XFVA1ykv41o,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(motion.div,{\"aria-label\":\"links\",className:\"framer-s4sd9y\",\"data-framer-name\":\"Frame 2814\",layoutDependency:layoutDependency,layoutId:\"YnAS3GSjV\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNjAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"25px\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://help.carefreespace.org/en/?_gl=1*mgrx0j*_gcl_au*MTM5OTk1NzAzOS4xNzIxMDQ4Mzcw*_ga*MTg0Mzc0MjE4OS4xNzIxMDQ4Mzcw*_ga_FY2MLCVZGT*MTcyODQxNDU4NC45OS4wLjE3Mjg0MTQ1ODcuNTcuMC4w\",motionChild:true,nodeId:\"zytBdnZP8\",openInNewTab:true,scopeId:\"fhNg5oqH9\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1v2isbs\",\"data-styles-preset\":\"KRdW8tnMC\",children:\"Help articles\"})})})}),className:\"framer-b33jg6\",\"data-framer-name\":\"Help Articles\",fonts:[\"GF;Plus Jakarta Sans-600\"],layoutDependency:layoutDependency,layoutId:\"zytBdnZP8\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNjAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"25px\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"tZgKrlahh\"},motionChild:true,nodeId:\"gZsyGo6JL\",openInNewTab:true,scopeId:\"fhNg5oqH9\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1v2isbs\",\"data-styles-preset\":\"KRdW8tnMC\",children:\"Newsroom\"})})})}),className:\"framer-2z0hvs\",\"data-framer-name\":\"Media\",fonts:[\"GF;Plus Jakarta Sans-600\"],layoutDependency:layoutDependency,layoutId:\"gZsyGo6JL\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ynl7ok\",\"data-framer-name\":\"Frame 2815\",layoutDependency:layoutDependency,layoutId:\"N5qOq22GK\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNjAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"25px\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"OOUC25Had\"},motionChild:true,nodeId:\"HceYeqrMn\",openInNewTab:false,scopeId:\"fhNg5oqH9\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1v2isbs\",\"data-styles-preset\":\"KRdW8tnMC\",children:\"Take a break\"})})})}),className:\"framer-nvjzd1\",\"data-framer-name\":\"Take a break\",fonts:[\"GF;Plus Jakarta Sans-600\"],layoutDependency:layoutDependency,layoutId:\"HceYeqrMn\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNjAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"25px\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"I7Lx5pXiQ\"},motionChild:true,nodeId:\"Z1_qkTHC0\",openInNewTab:false,scopeId:\"fhNg5oqH9\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1v2isbs\",\"data-styles-preset\":\"KRdW8tnMC\",children:\"Log in\"})})})}),className:\"framer-5rz1xx\",\"data-framer-name\":\"Log in\",fonts:[\"GF;Plus Jakarta Sans-600\"],layoutDependency:layoutDependency,layoutId:\"Z1_qkTHC0\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]})]})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-f01jdl\",layoutDependency:layoutDependency,layoutId:\"dBmTLRTtV\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-za3vhr\",\"data-framer-name\":\"Frame 268\",layoutDependency:layoutDependency,layoutId:\"Xzrso4x_M\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-rv8dnl\",\"data-framer-name\":\"facebook\",layoutDependency:layoutDependency,layoutId:\"Bp8Q8Jiqt\",children:/*#__PURE__*/_jsx(Link,{href:\"https://www.facebook.com/carefreespace/\",motionChild:true,nodeId:\"N9W4FjDkn\",openInNewTab:false,scopeId:\"fhNg5oqH9\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"facebook\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||200)-20-450)/2+0+0)+0+38+0+0+0+0+0),src:\"https://framerusercontent.com/images/ivlHNGqT5viDZQ83Ye4TAKtfMUM.png\"},className:\"framer-x48w19 framer-zfe9e8\",\"data-framer-name\":\"facebook-icon\",layoutDependency:layoutDependency,layoutId:\"N9W4FjDkn\",...addPropertyOverrides({cyWgsZ5Xk:{background:{alt:\"facebook\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||200)-20-570)/2+0+0)+0+38+0+0+0+340+20+0+0),src:\"https://framerusercontent.com/images/ivlHNGqT5viDZQ83Ye4TAKtfMUM.png\"}},Pdi4IQNg0:{background:{alt:\"facebook\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||200)-20-949)/2+0+0)+0+38+0+0+0+547+0+0+0+0),src:\"https://framerusercontent.com/images/ivlHNGqT5viDZQ83Ye4TAKtfMUM.png\"}}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1uhpc0z\",\"data-framer-name\":\"linkedin\",layoutDependency:layoutDependency,layoutId:\"XSM0DEjBL\",children:/*#__PURE__*/_jsx(Link,{href:\"https://uk.linkedin.com/company/carefreespace\",motionChild:true,nodeId:\"q3XTM9t7u\",openInNewTab:false,scopeId:\"fhNg5oqH9\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"linkedin\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||200)-20-450)/2+0+0)+0+38+0+0+0+0+0),pixelHeight:20,pixelWidth:21,src:\"https://framerusercontent.com/images/LBfech65WMNRUf8rVDm36CkKmyI.svg\"},className:\"framer-29726i framer-zfe9e8\",\"data-framer-name\":\"linkedin icon\",layoutDependency:layoutDependency,layoutId:\"q3XTM9t7u\",...addPropertyOverrides({cyWgsZ5Xk:{background:{alt:\"linkedin\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||200)-20-570)/2+0+0)+0+38+0+0+0+340+20+0+0),pixelHeight:20,pixelWidth:21,src:\"https://framerusercontent.com/images/LBfech65WMNRUf8rVDm36CkKmyI.svg\"}},Pdi4IQNg0:{background:{alt:\"linkedin\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||200)-20-949)/2+0+0)+0+38+0+0+0+547+0+0+0+0),pixelHeight:20,pixelWidth:21,src:\"https://framerusercontent.com/images/LBfech65WMNRUf8rVDm36CkKmyI.svg\"}}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-q0npyx\",\"data-framer-name\":\"instagra\",layoutDependency:layoutDependency,layoutId:\"GNA62BYkP\",children:/*#__PURE__*/_jsx(Link,{href:\"https://www.instagram.com/carefreespace/\",motionChild:true,nodeId:\"LTc3LWRXs\",openInNewTab:false,scopeId:\"fhNg5oqH9\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"Instagram\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||200)-20-450)/2+0+0)+0+38+0+0+0+0+0),pixelHeight:20,pixelWidth:21,src:\"https://framerusercontent.com/images/wIslgFK4YmNOnyOAcbggbaEz4.svg\"},className:\"framer-a0oaqn framer-zfe9e8\",\"data-framer-name\":\"instagram\",layoutDependency:layoutDependency,layoutId:\"LTc3LWRXs\",...addPropertyOverrides({cyWgsZ5Xk:{background:{alt:\"Instagram\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||200)-20-570)/2+0+0)+0+38+0+0+0+340+20+0+0),pixelHeight:20,pixelWidth:21,src:\"https://framerusercontent.com/images/wIslgFK4YmNOnyOAcbggbaEz4.svg\"}},Pdi4IQNg0:{background:{alt:\"Instagram\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||200)-20-949)/2+0+0)+0+38+0+0+0+547+0+0+0+0),pixelHeight:20,pixelWidth:21,src:\"https://framerusercontent.com/images/wIslgFK4YmNOnyOAcbggbaEz4.svg\"}}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-oos00v\",\"data-framer-name\":\"instagra\",layoutDependency:layoutDependency,layoutId:\"NU1cS2r8w\",children:/*#__PURE__*/_jsx(Link,{href:\"https://www.instagram.com/carefreespace/\",motionChild:true,nodeId:\"OCy9eESS7\",openInNewTab:false,scopeId:\"fhNg5oqH9\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"Instagram\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||200)-20-450)/2+0+0)+0+38+0+0+0+0+0),pixelHeight:24,pixelWidth:24,src:\"https://framerusercontent.com/images/5pwp3CaAULtWDao6VQEGnt8AI.svg\"},className:\"framer-18ghhrt framer-zfe9e8\",\"data-framer-name\":\"instagram\",layoutDependency:layoutDependency,layoutId:\"OCy9eESS7\",...addPropertyOverrides({cyWgsZ5Xk:{background:{alt:\"Instagram\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||200)-20-570)/2+0+0)+0+38+0+0+0+340+20+0+0),pixelHeight:24,pixelWidth:24,src:\"https://framerusercontent.com/images/5pwp3CaAULtWDao6VQEGnt8AI.svg\"}},Pdi4IQNg0:{background:{alt:\"Instagram\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||200)-20-949)/2+0+0)+0+38+0+0+0+547+0+0+0+0),pixelHeight:24,pixelWidth:24,src:\"https://framerusercontent.com/images/5pwp3CaAULtWDao6VQEGnt8AI.svg\"}}},baseVariant,gestureVariant)})})})]}),/*#__PURE__*/_jsx(Image,{as:\"aside\",background:{alt:\"carefree brand illustration \",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||200)-20-450)/2+0+0)+0+38+0+0+320-60),sizes:\"79px\",src:\"https://framerusercontent.com/images/8Aq1BZkg4VMvCKvYyCKTtFUviv4.png\",srcSet:\"https://framerusercontent.com/images/8Aq1BZkg4VMvCKvYyCKTtFUviv4.png?scale-down-to=512 512w,https://framerusercontent.com/images/8Aq1BZkg4VMvCKvYyCKTtFUviv4.png 558w\"},className:\"framer-1vfd6zz\",\"data-framer-name\":\"illustration\",layoutDependency:layoutDependency,layoutId:\"kVHhPVSkD\",...addPropertyOverrides({cyWgsZ5Xk:{background:{alt:\"carefree brand illustration \",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||200)-20-570)/2+0+0)+0+38+0+0+0+340+0),sizes:\"79px\",src:\"https://framerusercontent.com/images/8Aq1BZkg4VMvCKvYyCKTtFUviv4.png\",srcSet:\"https://framerusercontent.com/images/8Aq1BZkg4VMvCKvYyCKTtFUviv4.png?scale-down-to=512 512w,https://framerusercontent.com/images/8Aq1BZkg4VMvCKvYyCKTtFUviv4.png 558w\"}},Pdi4IQNg0:{background:{alt:\"carefree brand illustration \",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||200)-20-949)/2+0+0)+0+38+0+0+0+547+-92),sizes:\"79px\",src:\"https://framerusercontent.com/images/8Aq1BZkg4VMvCKvYyCKTtFUviv4.png\",srcSet:\"https://framerusercontent.com/images/8Aq1BZkg4VMvCKvYyCKTtFUviv4.png?scale-down-to=512 512w,https://framerusercontent.com/images/8Aq1BZkg4VMvCKvYyCKTtFUviv4.png 558w\"}}},baseVariant,gestureVariant)})]})]})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1a4xql4\",\"data-framer-name\":\"middle\",layoutDependency:layoutDependency,layoutId:\"M3gDKjwCy\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-sb3vi3\",\"data-framer-name\":\"divider\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:3,intrinsicWidth:1242,layoutDependency:layoutDependency,layoutId:\"lMoydzNV6\",svg:'<svg width=\"1242\" height=\"3\" viewBox=\"-1 -1 1242 3\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<line x1=\"8.74228e-09\" y1=\"0.9\" x2=\"1240\" y2=\"0.900108\" stroke=\"black\" stroke-width=\"0.2\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-gc7rrq\",\"data-framer-name\":\"bottom\",layoutDependency:layoutDependency,layoutId:\"PPl9XXCz2\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-uox4wx\",layoutDependency:layoutDependency,layoutId:\"aeYCZ5C8r\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ohuymj\",\"data-framer-name\":\"fundraising\",layoutDependency:layoutDependency,layoutId:\"NtqhNq1Ke\",children:[/*#__PURE__*/_jsx(Link,{href:\"https://www.fundraisingregulator.org.uk\",motionChild:true,nodeId:\"Ctlb5_WOS\",scopeId:\"fhNg5oqH9\",children:/*#__PURE__*/_jsx(motion.a,{\"aria-label\":\"link to fundraiser regulator\",className:\"framer-mi6jv5 framer-zfe9e8\",\"data-framer-name\":\"fundraising refulator\",layoutDependency:layoutDependency,layoutId:\"Ctlb5_WOS\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-ocd5x1\",\"data-framer-name\":\"fundraiser regulator 1\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:49,intrinsicWidth:158,layoutDependency:layoutDependency,layoutId:\"ATCrjrqks\",svg:'<svg width=\"158\" height=\"49\" viewBox=\"0 0 158 49\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_207_2785)\">\\n<path d=\"M24.2036 0.00196457C10.8362 0.00196457 0 10.8382 0 24.2056C0 37.573 10.8362 48.4092 24.2036 48.4092C37.5709 48.4092 48.4072 37.573 48.4072 24.2056C48.4072 10.8382 37.5709 0.00196457 24.2036 0.00196457ZM24.2036 3.98078C35.3555 3.98078 44.4284 13.0537 44.4284 24.2056C44.4284 35.3575 35.3555 44.4304 24.2036 44.4304C13.0516 44.4304 3.97878 35.3575 3.97878 24.2056C3.97878 13.0537 13.0516 3.98078 24.2036 3.98078Z\" fill=\"#615E5E\"/>\\n<path d=\"M9.82031 16.0894H23.5684V20.2628H14.5832V23.1841H22.7092V27.1368H14.5832V33.2744H9.82031V16.0894Z\" fill=\"#615E5E\"/>\\n<path d=\"M32.4569 24.3384C34.0528 24.3384 35.01 23.5526 35.01 22.3002V22.2514C35.01 20.8767 34.0039 20.189 32.4324 20.189H29.29V24.3384H32.4569ZM24.5273 16.0894H32.6534C35.2806 16.0894 37.097 16.7766 38.251 17.9306C39.2574 18.937 39.7729 20.2382 39.7729 21.9322V21.9814C39.7729 24.6326 38.3738 26.3758 36.2378 27.2838L40.3379 33.2744H34.8631L31.4014 28.0695H29.29V33.2744H24.5273V16.0894Z\" fill=\"#615E5E\"/>\\n<path d=\"M57.7617 16.8342H65.2171V17.5612H58.5483V21.9005H64.5372V22.6275H58.5483V27.4209H57.7617V16.8342Z\" fill=\"#615E5E\"/>\\n<path d=\"M66.7617 23.0205V16.8347H67.5483V22.9448C67.5483 25.4408 68.8944 26.8778 71.1325 26.8778C73.2799 26.8778 74.6566 25.5766 74.6566 23.0205V16.8347H75.4426V22.9306C75.4426 25.9701 73.6735 27.5879 71.1019 27.5879C68.5615 27.5879 66.7617 25.9854 66.7617 23.0205Z\" fill=\"#615E5E\"/>\\n<path d=\"M77.6699 16.8342H78.4106L85.7159 26.0453V16.8342H86.4719V27.4209H85.8824L78.4259 18.0149V27.4209H77.6699V16.8342Z\" fill=\"#615E5E\"/>\\n<path d=\"M92.3854 26.6953C95.3341 26.6953 97.1944 24.684 97.1944 22.1583V22.1275C97.1944 19.6174 95.3341 17.5612 92.3854 17.5612H89.6473V26.6953H92.3854ZM88.8613 16.8342H92.3854C95.7117 16.8342 98.0109 19.1187 98.0109 22.0981V22.1275C98.0109 25.107 95.7117 27.4209 92.3854 27.4209H88.8613V16.8342Z\" fill=\"#615E5E\"/>\\n<path d=\"M104.291 22.3249C106.061 22.3249 107.376 21.4327 107.376 19.9045V19.8751C107.376 18.4534 106.257 17.5612 104.337 17.5612H100.721V22.3249H104.291ZM99.9355 16.8342H104.381C105.683 16.8342 106.726 17.2433 107.361 17.8777C107.86 18.3777 108.162 19.088 108.162 19.8443V19.8751C108.162 21.6441 106.847 22.6572 105.062 22.8994L108.556 27.4209H107.557L104.186 23.0352H100.721V27.4209H99.9355V16.8342Z\" fill=\"#615E5E\"/>\\n<path d=\"M117.284 23.7466L114.501 17.6213L111.703 23.7466H117.284ZM114.138 16.7585H114.895L119.823 27.4209H118.962L117.616 24.457H111.37L110.024 27.4209H109.207L114.138 16.7585Z\" fill=\"#615E5E\"/>\\n<path d=\"M121.414 16.8342H122.201V27.4209H121.414V16.8342Z\" fill=\"#615E5E\"/>\\n<path d=\"M124.018 25.8789L124.531 25.2891C125.695 26.3622 126.77 26.8619 128.328 26.8619C129.915 26.8619 131.005 25.9698 131.005 24.7595V24.729C131.005 23.6095 130.414 22.9596 128.009 22.4763C125.47 21.9622 124.441 21.0994 124.441 19.4969V19.4662C124.441 17.8933 125.877 16.683 127.844 16.683C129.386 16.683 130.399 17.1073 131.473 17.9689L130.975 18.5892C129.976 17.7268 128.978 17.3944 127.813 17.3944C126.256 17.3944 125.227 18.2869 125.227 19.3908V19.4212C125.227 20.5407 125.802 21.2213 128.312 21.7352C130.762 22.234 131.791 23.111 131.791 24.6533V24.6841C131.791 26.393 130.324 27.5723 128.282 27.5723C126.588 27.5723 125.288 27.0133 124.018 25.8789Z\" fill=\"#615E5E\"/>\\n<path d=\"M133.729 16.8342H134.516V27.4209H133.729V16.8342Z\" fill=\"#615E5E\"/>\\n<path d=\"M137.01 16.8342H137.751L145.056 26.0453V16.8342H145.812V27.4209H145.222L137.766 18.0149V27.4209H137.01V16.8342Z\" fill=\"#615E5E\"/>\\n<path d=\"M147.736 22.1588V22.1281C147.736 19.2706 149.808 16.6541 152.97 16.6541C154.694 16.6541 155.782 17.1681 156.841 18.0451L156.327 18.6346C155.495 17.909 154.527 17.3644 152.925 17.3644C150.353 17.3644 148.553 19.5423 148.553 22.0987V22.1281C148.553 24.8664 150.262 26.9073 153.09 26.9073C154.436 26.9073 155.692 26.3483 156.463 25.6973V22.6578H152.925V21.9319H157.22V26.0152C156.267 26.8624 154.785 27.6035 153.061 27.6035C149.719 27.6035 147.736 25.1382 147.736 22.1588Z\" fill=\"#615E5E\"/>\\n<path d=\"M62.8682 35.8417C64.1392 35.8417 64.8684 35.1635 64.8684 34.1625V34.1292C64.8684 33.0101 64.0884 32.4334 62.8173 32.4334H60.2239V35.8417H62.8682ZM57.6133 30.078H63.0378C64.5464 30.078 65.7159 30.501 66.4959 31.281C67.157 31.9418 67.5127 32.8743 67.5127 33.9935V34.0277C67.5127 35.9432 66.4788 37.1465 64.9702 37.7055L67.869 41.9434H64.8177L62.2749 38.1461H60.2239V41.9434H57.6133V30.078Z\" fill=\"#615E5E\"/>\\n<path d=\"M69.0137 30.078H77.9638V32.4002H71.6067V34.8077H77.2016V37.1298H71.6067V39.6212H78.0488V41.9434H69.0137V30.078Z\" fill=\"#615E5E\"/>\\n<path d=\"M78.9922 36.0448V36.0105C78.9922 32.6376 81.6203 29.8746 85.2127 29.8746C87.3496 29.8746 88.6379 30.4502 89.8753 31.5019L88.231 33.4851C87.3155 32.7217 86.501 32.2808 85.1291 32.2808C83.2298 32.2808 81.722 33.959 81.722 35.9763V36.0105C81.722 38.1802 83.213 39.7735 85.3144 39.7735C86.2648 39.7735 87.112 39.5359 87.7725 39.0621V37.3662H85.1458V35.1124H90.2996V40.265C89.0789 41.2992 87.4005 42.1465 85.2308 42.1465C81.5353 42.1465 78.9922 39.5535 78.9922 36.0448Z\" fill=\"#615E5E\"/>\\n<path d=\"M91.7676 36.8578V30.0779H94.3776V36.7905C94.3776 38.723 95.3447 39.7226 96.9374 39.7226C98.5308 39.7226 99.4972 38.7572 99.4972 36.8744V30.0779H102.108V36.7728C102.108 40.3668 100.091 42.1299 96.9033 42.1299C93.7171 42.1299 91.7676 40.3502 91.7676 36.8578Z\" fill=\"#615E5E\"/>\\n<path d=\"M103.916 30.078H106.527V39.5704H112.443V41.9434H103.916V30.078Z\" fill=\"#615E5E\"/>\\n<path d=\"M120.369 36.9775L118.792 33.1296L117.216 36.9775H120.369ZM117.623 29.9929H120.03L125.115 41.9434H122.387L121.301 39.2819H116.283L115.199 41.9434H112.537L117.623 29.9929Z\" fill=\"#615E5E\"/>\\n<path d=\"M127.331 32.4843H123.721V30.078H133.552V32.4843H129.942V41.9434H127.331V32.4843Z\" fill=\"#615E5E\"/>\\n<path d=\"M143.548 36.0448V36.0105C143.548 33.9766 142.055 32.2808 139.954 32.2808C137.851 32.2808 136.395 33.9423 136.395 35.9763V36.0105C136.395 38.0444 137.886 39.7403 139.987 39.7403C142.09 39.7403 143.548 38.0787 143.548 36.0448ZM133.664 36.0448V36.0105C133.664 32.6376 136.326 29.8746 139.987 29.8746C143.65 29.8746 146.276 32.6033 146.276 35.9763V36.0105C146.276 39.3835 143.615 42.1465 139.954 42.1465C136.293 42.1465 133.664 39.4177 133.664 36.0448Z\" fill=\"#615E5E\"/>\\n<path d=\"M153 35.8417C154.272 35.8417 155.001 35.1635 155.001 34.1625V34.1292C155.001 33.0101 154.221 32.4334 152.949 32.4334H150.357V35.8417H153ZM147.746 30.078H153.171C154.679 30.078 155.848 30.501 156.629 31.281C157.289 31.9418 157.646 32.8743 157.646 33.9935V34.0277C157.646 35.9432 156.612 37.1465 155.103 37.7055L158.002 41.9434H154.95L152.407 38.1461H150.357V41.9434H147.746V30.078Z\" fill=\"#615E5E\"/>\\n<path d=\"M60.4757 8.2783C61.2712 8.2783 61.7774 7.8627 61.7774 7.22072V7.20275C61.7774 6.52475 61.2892 6.15436 60.4667 6.15436H58.8484V8.2783H60.4757ZM57.7363 5.14193H60.5568C61.3523 5.14193 61.9761 5.3768 62.383 5.77443C62.7178 6.11792 62.9075 6.58822 62.9075 7.13962V7.15753C62.9075 8.1972 62.2837 8.821 61.4068 9.07384L63.1151 11.4697H61.7954L60.2406 9.26385H58.8484V11.4697H57.7363V5.14193Z\" fill=\"#615E5E\"/>\\n<path d=\"M67.3451 8.74866C67.273 8.04348 66.8568 7.49208 66.1337 7.49208C65.465 7.49208 64.9947 8.0076 64.8951 8.74866H67.3451ZM63.8105 9.10114V9.08316C63.8105 7.71825 64.7778 6.59719 66.143 6.59719C67.6616 6.59719 68.4299 7.79064 68.4299 9.16454C68.4299 9.2639 68.4207 9.36325 68.4118 9.47181H64.9044C65.0219 10.2494 65.5733 10.6835 66.2785 10.6835C66.812 10.6835 67.1913 10.4842 67.571 10.1136L68.213 10.6835C67.7613 11.2256 67.1372 11.5781 66.2606 11.5781C64.8771 11.5781 63.8105 10.5746 63.8105 9.10114Z\" fill=\"#615E5E\"/>\\n<path d=\"M73.1354 8.84881V8.83028C73.1354 8.05327 72.493 7.51985 71.7343 7.51985C70.9748 7.51985 70.3784 8.044 70.3784 8.83028V8.84881C70.3784 9.62609 70.9839 10.1593 71.7343 10.1593C72.493 10.1593 73.1354 9.62609 73.1354 8.84881ZM69.5103 12.3652L69.9172 11.5424C70.4327 11.8589 70.9658 12.0487 71.6165 12.0487C72.5926 12.0487 73.1264 11.5424 73.1264 10.5844V10.2137C72.7285 10.7289 72.231 11.0906 71.4451 11.0906C70.3241 11.0906 69.2754 10.2589 69.2754 8.85752V8.83954C69.2754 7.42948 70.3331 6.59771 71.4451 6.59771C72.2492 6.59771 72.7466 6.96844 73.1173 7.41122V6.69706H74.2112V10.494C74.2112 11.2983 74.0036 11.8949 73.605 12.2928C73.1716 12.7269 72.5028 12.9346 71.6437 12.9346C70.8571 12.9346 70.1248 12.7356 69.5103 12.3652Z\" fill=\"#615E5E\"/>\\n<path d=\"M75.6371 6.69649H76.731V11.4697H75.6371V6.69649ZM75.5918 4.92447H76.7672V5.96408H75.5918V4.92447Z\" fill=\"#615E5E\"/>\\n<path d=\"M77.7383 10.8464L78.2267 10.1053C78.7513 10.4939 79.3025 10.6926 79.7902 10.6926C80.2605 10.6926 80.5315 10.4939 80.5315 10.1774V10.1592C80.5315 9.78873 80.0257 9.6622 79.4648 9.49018C78.7597 9.29126 77.9738 9.0019 77.9738 8.0891V8.07113C77.9738 7.16724 78.7242 6.61556 79.6731 6.61556C80.2695 6.61556 80.9203 6.82354 81.4268 7.15797L80.9928 7.93561C80.5315 7.65524 80.0438 7.48322 79.646 7.48322C79.2209 7.48322 78.9771 7.68248 78.9771 7.95352V7.97149C78.9771 8.32453 79.492 8.46903 80.0529 8.64977C80.7489 8.86666 81.5348 9.18319 81.5348 10.0416V10.0601C81.5348 11.0633 80.758 11.5605 79.7637 11.5605C79.0858 11.5605 78.3354 11.3161 77.7383 10.8464Z\" fill=\"#615E5E\"/>\\n<path d=\"M82.875 10.1507V7.63747H82.2695V6.69714H82.875V5.38644H83.9696V6.69714H85.253V7.63747H83.9696V9.97866C83.9696 10.4035 84.1863 10.5752 84.5569 10.5752C84.8008 10.5752 85.0175 10.5211 85.2349 10.4127V11.3076C84.9638 11.4611 84.6649 11.5518 84.2497 11.5518C83.4449 11.5518 82.875 11.199 82.875 10.1507Z\" fill=\"#615E5E\"/>\\n<path d=\"M89.4994 8.74866C89.4269 8.04348 89.0117 7.49208 88.2885 7.49208C87.6196 7.49208 87.1493 8.0076 87.0497 8.74866H89.4994ZM85.9648 9.10114V9.08316C85.9648 7.71825 86.9319 6.59719 88.2975 6.59719C89.8157 6.59719 90.5842 7.79064 90.5842 9.16454C90.5842 9.2639 90.5752 9.36325 90.5661 9.47181H87.0587C87.1765 10.2494 87.7276 10.6835 88.4327 10.6835C88.9664 10.6835 89.3461 10.4842 89.7252 10.1136L90.3675 10.6835C89.9154 11.2256 89.2918 11.5781 88.4146 11.5781C87.0315 11.5781 85.9648 10.5746 85.9648 9.10114Z\" fill=\"#615E5E\"/>\\n<path d=\"M91.7051 6.69649H92.799V7.77212C93.0972 7.05824 93.649 6.56996 94.4893 6.60613V7.76342H94.4265C93.4678 7.76342 92.799 8.38721 92.799 9.65249V11.4697H91.7051V6.69649Z\" fill=\"#615E5E\"/>\\n<path d=\"M98.6388 8.74866C98.5663 8.04348 98.1504 7.49208 97.4271 7.49208C96.7583 7.49208 96.288 8.0076 96.1883 8.74866H98.6388ZM95.1035 9.10114V9.08316C95.1035 7.71825 96.0713 6.59719 97.4362 6.59719C98.9551 6.59719 99.7236 7.79064 99.7236 9.16454C99.7236 9.2639 99.7139 9.36325 99.7055 9.47181H96.1974C96.3152 10.2494 96.8663 10.6835 97.5721 10.6835C98.1051 10.6835 98.4848 10.4842 98.8645 10.1136L99.5062 10.6835C99.054 11.2256 98.4305 11.5781 97.554 11.5781C96.1702 11.5781 95.1035 10.5746 95.1035 9.10114Z\" fill=\"#615E5E\"/>\\n<path d=\"M104.452 9.09235V9.0741C104.452 8.15231 103.801 7.5467 103.069 7.5467C102.318 7.5467 101.695 8.12507 101.695 9.0741V9.09235C101.695 10.0144 102.327 10.62 103.069 10.62C103.801 10.62 104.452 10.0054 104.452 9.09235ZM100.592 9.09235V9.0741C100.592 7.49229 101.668 6.59739 102.807 6.59739C103.593 6.59739 104.09 6.9861 104.434 7.43815V4.8708H105.528V11.47H104.434V10.6744C104.081 11.1714 103.584 11.5693 102.807 11.5693C101.686 11.5693 100.592 10.6744 100.592 9.09235Z\" fill=\"#615E5E\"/>\\n<path d=\"M109.215 6.69737H110.336L111.295 9.9699L112.352 6.67939H113.292L114.35 9.9699L115.326 6.69737H116.429L114.865 11.5068H113.88L112.813 8.2433L111.737 11.5068H110.761L109.215 6.69737Z\" fill=\"#615E5E\"/>\\n<path d=\"M117.37 6.69649H118.463V11.4697H117.37V6.69649ZM117.324 4.92447H118.5V5.96408H117.324V4.92447Z\" fill=\"#615E5E\"/>\\n<path d=\"M120.063 10.1507V7.63747H119.457V6.69714H120.063V5.38644H121.157V6.69714H122.44V7.63747H121.157V9.97866C121.157 10.4035 121.374 10.5752 121.744 10.5752C121.988 10.5752 122.206 10.5211 122.422 10.4127V11.3076C122.151 11.4611 121.853 11.5518 121.437 11.5518C120.632 11.5518 120.063 11.199 120.063 10.1507Z\" fill=\"#615E5E\"/>\\n<path d=\"M123.545 4.87054H124.638V7.42891C124.945 6.98585 125.388 6.59714 126.13 6.59714C127.206 6.59714 127.829 7.32028 127.829 8.42309V11.4697H126.735V8.75787C126.735 8.01626 126.365 7.59167 125.714 7.59167C125.081 7.59167 124.638 8.03473 124.638 8.77585V11.4697H123.545V4.87054Z\" fill=\"#615E5E\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_207_2785\">\\n<rect width=\"158\" height=\"48.4096\" fill=\"white\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',title:\"Registered with Fundraising Regulator\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtcmVndWxhcg==\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-letter-spacing\":\"0.01em\",\"--framer-line-height\":\"19px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(88, 83, 83))\"},children:[\"Carefree is the trading name of Carefreespace. \",/*#__PURE__*/_jsx(motion.br,{}),\"Company number 10933982, Registered charity number 1176459. \",/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-text-color\":\"var(--extracted-3sq8v0, rgb(134, 130, 130))\"},children:\"   \"})]})}),className:\"framer-1n3cd8l\",\"data-framer-name\":\"Carefree is the trading name of Carefreespace. \\u2028Company number 10933982, Registered charity number 1176459.\",fonts:[\"GF;Plus Jakarta Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"LhxsJ6I7g\",style:{\"--extracted-3sq8v0\":\"rgb(134, 130, 130)\",\"--extracted-r6o4lv\":\"rgb(88, 83, 83)\",\"--framer-paragraph-spacing\":\"0px\"},variants:{Pdi4IQNg0:{\"--extracted-1w3ko1f\":\"rgb(134, 130, 130)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({Pdi4IQNg0:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtcmVndWxhcg==\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-letter-spacing\":\"0.01em\",\"--framer-line-height\":\"19px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(88, 83, 83))\"},children:[\"Carefree is the trading name of Carefreespace.  Company number 10933982, Registered charity number 1176459. \",/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-text-color\":\"var(--extracted-1w3ko1f, rgb(134, 130, 130))\"},children:\"   \"})]})})}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1o7xljl\",\"data-framer-name\":\"copyright\",layoutDependency:layoutDependency,layoutId:\"jrXykgUpl\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtcmVndWxhcg==\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-letter-spacing\":\"0.01em\",\"--framer-line-height\":\"25px\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(89, 83, 83))\"},children:\"\\xa9 Carefree 2025. All rights reserved    \"})}),className:\"framer-2rpmwr\",\"data-framer-name\":\"\\xa9 Carefree 2024. All rights reserved\",fonts:[\"GF;Plus Jakarta Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"b4GJOLTwA\",style:{\"--extracted-r6o4lv\":\"rgb(89, 83, 83)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-3egpb3\",layoutDependency:layoutDependency,layoutId:\"nV4lZrCV5\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNTAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"25px\",\"--framer-text-alignment\":\"right\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"Xtjjxy7Rd\"},motionChild:true,nodeId:\"e2HcYdOpl\",openInNewTab:false,scopeId:\"fhNg5oqH9\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1wbuva2\",\"data-styles-preset\":\"TEgDFMRVa\",children:\"Terms \"})})})}),className:\"framer-wghyrh\",\"data-framer-name\":\"Terms\",fonts:[\"GF;Plus Jakarta Sans-500\"],layoutDependency:layoutDependency,layoutId:\"e2HcYdOpl\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNTAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"25px\",\"--framer-text-alignment\":\"right\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"o490e3bai\"},motionChild:true,nodeId:\"rkU0XWTWK\",openInNewTab:false,scopeId:\"fhNg5oqH9\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1wbuva2\",\"data-styles-preset\":\"TEgDFMRVa\",children:\"Privacy\"})})})}),className:\"framer-zf1d25\",\"data-framer-name\":\"Privacy\",fonts:[\"GF;Plus Jakarta Sans-500\"],layoutDependency:layoutDependency,layoutId:\"rkU0XWTWK\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]})]})]})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-sja5ek-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"ZX8skrczf-container\",nodeId:\"ZX8skrczf\",rendersWithMotion:true,scopeId:\"fhNg5oqH9\",children:/*#__PURE__*/_jsx(Intercom,{appId:\"ix2fbv21\",height:\"100%\",id:\"ZX8skrczf\",layoutId:\"ZX8skrczf\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-QQBRu.framer-zfe9e8, .framer-QQBRu .framer-zfe9e8 { display: block; }\",\".framer-QQBRu.framer-163p83u { 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 100px 20px 100px; position: relative; width: 1440px; }\",\".framer-QQBRu .framer-gzsxef { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 35px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-QQBRu .framer-10gjylp, .framer-QQBRu .framer-sb3vi3 { flex: none; height: 3px; position: relative; width: 100%; }\",\".framer-QQBRu .framer-3xxed6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 320px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-QQBRu .framer-r1pf8u { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-QQBRu .framer-1kfhzns, .framer-QQBRu .framer-f01jdl { flex: 1 0 0px; height: 100%; position: relative; width: 1px; }\",\".framer-QQBRu .framer-djeiyf-container { flex: none; height: 27px; left: 0px; position: absolute; top: 0px; width: 137px; }\",\".framer-QQBRu .framer-18cizf8 { flex: 3 0 0px; height: 100%; position: relative; width: 1px; }\",\".framer-QQBRu .framer-1bo393j { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: flex-start; left: 50%; overflow: visible; padding: 0px; position: absolute; top: 0px; width: min-content; }\",\".framer-QQBRu .framer-4lvfke, .framer-QQBRu .framer-s0tand, .framer-QQBRu .framer-s4sd9y, .framer-QQBRu .framer-1ynl7ok { align-content: flex-start; align-items: flex-start; 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: min-content; }\",\".framer-QQBRu .framer-1xw6onn, .framer-QQBRu .framer-ve2cxj, .framer-QQBRu .framer-ku9p17, .framer-QQBRu .framer-x9jc3r, .framer-QQBRu .framer-2cjzk9, .framer-QQBRu .framer-1dqk0ij, .framer-QQBRu .framer-15cy8g3, .framer-QQBRu .framer-b33jg6, .framer-QQBRu .framer-2z0hvs, .framer-QQBRu .framer-nvjzd1, .framer-QQBRu .framer-5rz1xx, .framer-QQBRu .framer-1n3cd8l, .framer-QQBRu .framer-2rpmwr, .framer-QQBRu .framer-wghyrh, .framer-QQBRu .framer-zf1d25 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-QQBRu .framer-thgmx-container { flex: none; height: 25px; position: relative; width: 85px; }\",\".framer-QQBRu .framer-za3vhr { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 19px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: absolute; right: 0px; top: 0px; width: min-content; }\",\".framer-QQBRu .framer-rv8dnl, .framer-QQBRu .framer-1uhpc0z, .framer-QQBRu .framer-q0npyx, .framer-QQBRu .framer-oos00v { flex: none; height: 20px; overflow: visible; position: relative; width: 20px; }\",\".framer-QQBRu .framer-x48w19, .framer-QQBRu .framer-29726i, .framer-QQBRu .framer-a0oaqn, .framer-QQBRu .framer-18ghhrt { aspect-ratio: 1 / 1; bottom: var(--framer-aspect-ratio-supported, 0px); flex: none; height: 20px; left: 0px; position: absolute; right: 0px; text-decoration: none; top: 0px; }\",\".framer-QQBRu .framer-1vfd6zz { aspect-ratio: 1.3166666666666667 / 1; bottom: 0px; flex: none; height: var(--framer-aspect-ratio-supported, 60px); position: absolute; right: 0px; width: 79px; }\",\".framer-QQBRu .framer-1a4xql4 { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-QQBRu .framer-gc7rrq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 35px; height: min-content; justify-content: center; overflow: hidden; padding: 10px 0px 10px 0px; position: relative; width: 100%; }\",\".framer-QQBRu .framer-uox4wx { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-QQBRu .framer-ohuymj { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-QQBRu .framer-mi6jv5 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-QQBRu .framer-ocd5x1 { flex: none; height: 49px; position: relative; width: 158px; }\",\".framer-QQBRu .framer-1o7xljl { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-QQBRu .framer-3egpb3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-QQBRu .framer-sja5ek-container { bottom: 20px; flex: none; height: 100px; left: calc(50.00000000000002% - 200px / 2); position: absolute; width: 200px; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-QQBRu.framer-163p83u, .framer-QQBRu .framer-gzsxef, .framer-QQBRu .framer-3xxed6, .framer-QQBRu .framer-r1pf8u, .framer-QQBRu .framer-1bo393j, .framer-QQBRu .framer-4lvfke, .framer-QQBRu .framer-s0tand, .framer-QQBRu .framer-s4sd9y, .framer-QQBRu .framer-1ynl7ok, .framer-QQBRu .framer-za3vhr, .framer-QQBRu .framer-1a4xql4, .framer-QQBRu .framer-gc7rrq, .framer-QQBRu .framer-uox4wx, .framer-QQBRu .framer-ohuymj, .framer-QQBRu .framer-mi6jv5, .framer-QQBRu .framer-1o7xljl, .framer-QQBRu .framer-3egpb3 { gap: 0px; } .framer-QQBRu.framer-163p83u > *, .framer-QQBRu .framer-1a4xql4 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-QQBRu.framer-163p83u > :first-child, .framer-QQBRu .framer-gzsxef > :first-child, .framer-QQBRu .framer-4lvfke > :first-child, .framer-QQBRu .framer-s0tand > :first-child, .framer-QQBRu .framer-s4sd9y > :first-child, .framer-QQBRu .framer-1ynl7ok > :first-child, .framer-QQBRu .framer-1a4xql4 > :first-child { margin-top: 0px; } .framer-QQBRu.framer-163p83u > :last-child, .framer-QQBRu .framer-gzsxef > :last-child, .framer-QQBRu .framer-4lvfke > :last-child, .framer-QQBRu .framer-s0tand > :last-child, .framer-QQBRu .framer-s4sd9y > :last-child, .framer-QQBRu .framer-1ynl7ok > :last-child, .framer-QQBRu .framer-1a4xql4 > :last-child { margin-bottom: 0px; } .framer-QQBRu .framer-gzsxef > * { margin: 0px; margin-bottom: calc(35px / 2); margin-top: calc(35px / 2); } .framer-QQBRu .framer-3xxed6 > *, .framer-QQBRu .framer-r1pf8u > *, .framer-QQBRu .framer-uox4wx > *, .framer-QQBRu .framer-3egpb3 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-QQBRu .framer-3xxed6 > :first-child, .framer-QQBRu .framer-r1pf8u > :first-child, .framer-QQBRu .framer-1bo393j > :first-child, .framer-QQBRu .framer-za3vhr > :first-child, .framer-QQBRu .framer-gc7rrq > :first-child, .framer-QQBRu .framer-uox4wx > :first-child, .framer-QQBRu .framer-ohuymj > :first-child, .framer-QQBRu .framer-mi6jv5 > :first-child, .framer-QQBRu .framer-1o7xljl > :first-child, .framer-QQBRu .framer-3egpb3 > :first-child { margin-left: 0px; } .framer-QQBRu .framer-3xxed6 > :last-child, .framer-QQBRu .framer-r1pf8u > :last-child, .framer-QQBRu .framer-1bo393j > :last-child, .framer-QQBRu .framer-za3vhr > :last-child, .framer-QQBRu .framer-gc7rrq > :last-child, .framer-QQBRu .framer-uox4wx > :last-child, .framer-QQBRu .framer-ohuymj > :last-child, .framer-QQBRu .framer-mi6jv5 > :last-child, .framer-QQBRu .framer-1o7xljl > :last-child, .framer-QQBRu .framer-3egpb3 > :last-child { margin-right: 0px; } .framer-QQBRu .framer-1bo393j > * { margin: 0px; margin-left: calc(80px / 2); margin-right: calc(80px / 2); } .framer-QQBRu .framer-4lvfke > *, .framer-QQBRu .framer-s0tand > *, .framer-QQBRu .framer-s4sd9y > *, .framer-QQBRu .framer-1ynl7ok > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-QQBRu .framer-za3vhr > * { margin: 0px; margin-left: calc(18.85714340209961px / 2); margin-right: calc(18.85714340209961px / 2); } .framer-QQBRu .framer-gc7rrq > * { margin: 0px; margin-left: calc(35px / 2); margin-right: calc(35px / 2); } .framer-QQBRu .framer-ohuymj > * { margin: 0px; margin-left: calc(32px / 2); margin-right: calc(32px / 2); } .framer-QQBRu .framer-mi6jv5 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-QQBRu .framer-1o7xljl > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } }\",\".framer-QQBRu.framer-v-f7cgjp.framer-163p83u { padding: 0px 40px 20px 40px; width: 1200px; }\",\".framer-QQBRu.framer-v-38ad40.framer-163p83u { padding: 0px 20px 20px 20px; width: 810px; }\",\".framer-QQBRu.framer-v-38ad40 .framer-3xxed6, .framer-QQBRu.framer-v-13hagme .framer-3xxed6 { align-content: flex-start; align-items: flex-start; flex-direction: column; height: min-content; }\",\".framer-QQBRu.framer-v-38ad40 .framer-r1pf8u { align-content: flex-start; align-items: flex-start; flex: none; flex-direction: column; gap: 46px; height: min-content; order: 0; width: 100%; }\",\".framer-QQBRu.framer-v-38ad40 .framer-1kfhzns { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; padding: 0px; width: 100%; }\",\".framer-QQBRu.framer-v-38ad40 .framer-djeiyf-container, .framer-QQBRu.framer-v-13hagme .framer-djeiyf-container { left: unset; position: relative; top: unset; }\",\".framer-QQBRu.framer-v-38ad40 .framer-18cizf8, .framer-QQBRu.framer-v-38ad40 .framer-f01jdl { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; padding: 0px; width: 100%; }\",\".framer-QQBRu.framer-v-38ad40 .framer-1bo393j { flex: 1 0 0px; left: unset; position: relative; top: unset; width: 1px; }\",\".framer-QQBRu.framer-v-38ad40 .framer-za3vhr { flex: 1 0 0px; position: relative; right: unset; top: unset; width: 1px; }\",\".framer-QQBRu.framer-v-38ad40 .framer-1vfd6zz { bottom: unset; position: relative; right: unset; }\",\".framer-QQBRu.framer-v-38ad40 .framer-gc7rrq { flex-direction: column; padding: 16px 0px 0px 0px; }\",\".framer-QQBRu.framer-v-38ad40 .framer-uox4wx, .framer-QQBRu.framer-v-13hagme .framer-uox4wx { align-content: flex-start; align-items: flex-start; flex: none; flex-direction: column; gap: 19px; width: 100%; }\",\".framer-QQBRu.framer-v-38ad40 .framer-ohuymj { flex: none; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-QQBRu.framer-v-38ad40 .framer-3xxed6, .framer-QQBRu.framer-v-38ad40 .framer-r1pf8u, .framer-QQBRu.framer-v-38ad40 .framer-1kfhzns, .framer-QQBRu.framer-v-38ad40 .framer-18cizf8, .framer-QQBRu.framer-v-38ad40 .framer-f01jdl, .framer-QQBRu.framer-v-38ad40 .framer-gc7rrq, .framer-QQBRu.framer-v-38ad40 .framer-uox4wx { gap: 0px; } .framer-QQBRu.framer-v-38ad40 .framer-3xxed6 > *, .framer-QQBRu.framer-v-38ad40 .framer-1kfhzns > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-QQBRu.framer-v-38ad40 .framer-3xxed6 > :first-child, .framer-QQBRu.framer-v-38ad40 .framer-r1pf8u > :first-child, .framer-QQBRu.framer-v-38ad40 .framer-1kfhzns > :first-child, .framer-QQBRu.framer-v-38ad40 .framer-gc7rrq > :first-child, .framer-QQBRu.framer-v-38ad40 .framer-uox4wx > :first-child { margin-top: 0px; } .framer-QQBRu.framer-v-38ad40 .framer-3xxed6 > :last-child, .framer-QQBRu.framer-v-38ad40 .framer-r1pf8u > :last-child, .framer-QQBRu.framer-v-38ad40 .framer-1kfhzns > :last-child, .framer-QQBRu.framer-v-38ad40 .framer-gc7rrq > :last-child, .framer-QQBRu.framer-v-38ad40 .framer-uox4wx > :last-child { margin-bottom: 0px; } .framer-QQBRu.framer-v-38ad40 .framer-r1pf8u > * { margin: 0px; margin-bottom: calc(46px / 2); margin-top: calc(46px / 2); } .framer-QQBRu.framer-v-38ad40 .framer-18cizf8 > *, .framer-QQBRu.framer-v-38ad40 .framer-f01jdl > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-QQBRu.framer-v-38ad40 .framer-18cizf8 > :first-child, .framer-QQBRu.framer-v-38ad40 .framer-f01jdl > :first-child { margin-left: 0px; } .framer-QQBRu.framer-v-38ad40 .framer-18cizf8 > :last-child, .framer-QQBRu.framer-v-38ad40 .framer-f01jdl > :last-child { margin-right: 0px; } .framer-QQBRu.framer-v-38ad40 .framer-gc7rrq > * { margin: 0px; margin-bottom: calc(35px / 2); margin-top: calc(35px / 2); } .framer-QQBRu.framer-v-38ad40 .framer-uox4wx > * { margin: 0px; margin-bottom: calc(19px / 2); margin-top: calc(19px / 2); } }\",\".framer-QQBRu.framer-v-13hagme.framer-163p83u { gap: 35px; padding: 0px 20px 20px 20px; width: 320px; }\",\".framer-QQBRu.framer-v-13hagme .framer-r1pf8u { align-content: flex-start; align-items: flex-start; flex: none; flex-direction: column; gap: 40px; height: min-content; order: 0; width: 100%; }\",\".framer-QQBRu.framer-v-13hagme .framer-1kfhzns { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; order: 0; padding: 0px; width: 100%; }\",\".framer-QQBRu.framer-v-13hagme .framer-18cizf8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; order: 1; padding: 0px; width: 100%; }\",\".framer-QQBRu.framer-v-13hagme .framer-1bo393j { align-content: unset; align-items: unset; display: grid; flex: 1 0 0px; gap: 40px; grid-auto-rows: 200px; grid-template-columns: repeat(2, minmax(50px, 1fr)); grid-template-rows: repeat(2, 200px); justify-content: center; left: unset; position: relative; top: unset; width: 1px; }\",\".framer-QQBRu.framer-v-13hagme .framer-4lvfke { align-self: start; justify-self: start; order: 0; width: 100%; }\",\".framer-QQBRu.framer-v-13hagme .framer-s0tand { align-self: start; justify-self: start; order: 1; width: 100%; }\",\".framer-QQBRu.framer-v-13hagme .framer-s4sd9y { align-self: start; justify-self: start; order: 2; width: 100%; }\",\".framer-QQBRu.framer-v-13hagme .framer-1ynl7ok { align-self: start; justify-self: start; order: 3; width: 100%; }\",\".framer-QQBRu.framer-v-13hagme .framer-f01jdl { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 38px; height: min-content; justify-content: center; order: 2; padding: 0px; width: 100%; }\",\".framer-QQBRu.framer-v-13hagme .framer-za3vhr { align-content: center; align-items: center; position: relative; right: unset; top: unset; width: 100%; }\",\".framer-QQBRu.framer-v-13hagme .framer-1vfd6zz { bottom: unset; top: -92px; z-index: 1; }\",\".framer-QQBRu.framer-v-13hagme .framer-1a4xql4 { gap: 12px; }\",\".framer-QQBRu.framer-v-13hagme .framer-gc7rrq { align-content: flex-start; align-items: flex-start; flex-direction: column; padding: 16px 0px 0px 0px; }\",\".framer-QQBRu.framer-v-13hagme .framer-ohuymj { align-content: flex-start; align-items: flex-start; flex: none; flex-direction: column; width: 100%; }\",\".framer-QQBRu.framer-v-13hagme .framer-1n3cd8l { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-QQBRu.framer-v-13hagme .framer-1o7xljl { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 10px; width: 100%; }\",\".framer-QQBRu.framer-v-13hagme .framer-2rpmwr { order: 0; }\",\".framer-QQBRu.framer-v-13hagme .framer-3egpb3 { align-content: flex-start; align-items: flex-start; justify-content: flex-start; order: 1; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-QQBRu.framer-v-13hagme.framer-163p83u, .framer-QQBRu.framer-v-13hagme .framer-3xxed6, .framer-QQBRu.framer-v-13hagme .framer-r1pf8u, .framer-QQBRu.framer-v-13hagme .framer-1kfhzns, .framer-QQBRu.framer-v-13hagme .framer-18cizf8, .framer-QQBRu.framer-v-13hagme .framer-1bo393j, .framer-QQBRu.framer-v-13hagme .framer-f01jdl, .framer-QQBRu.framer-v-13hagme .framer-1a4xql4, .framer-QQBRu.framer-v-13hagme .framer-gc7rrq, .framer-QQBRu.framer-v-13hagme .framer-uox4wx, .framer-QQBRu.framer-v-13hagme .framer-ohuymj, .framer-QQBRu.framer-v-13hagme .framer-1o7xljl { gap: 0px; } .framer-QQBRu.framer-v-13hagme.framer-163p83u > *, .framer-QQBRu.framer-v-13hagme .framer-gc7rrq > * { margin: 0px; margin-bottom: calc(35px / 2); margin-top: calc(35px / 2); } .framer-QQBRu.framer-v-13hagme.framer-163p83u > :first-child, .framer-QQBRu.framer-v-13hagme .framer-3xxed6 > :first-child, .framer-QQBRu.framer-v-13hagme .framer-r1pf8u > :first-child, .framer-QQBRu.framer-v-13hagme .framer-1kfhzns > :first-child, .framer-QQBRu.framer-v-13hagme .framer-f01jdl > :first-child, .framer-QQBRu.framer-v-13hagme .framer-1a4xql4 > :first-child, .framer-QQBRu.framer-v-13hagme .framer-gc7rrq > :first-child, .framer-QQBRu.framer-v-13hagme .framer-uox4wx > :first-child, .framer-QQBRu.framer-v-13hagme .framer-ohuymj > :first-child, .framer-QQBRu.framer-v-13hagme .framer-1o7xljl > :first-child { margin-top: 0px; } .framer-QQBRu.framer-v-13hagme.framer-163p83u > :last-child, .framer-QQBRu.framer-v-13hagme .framer-3xxed6 > :last-child, .framer-QQBRu.framer-v-13hagme .framer-r1pf8u > :last-child, .framer-QQBRu.framer-v-13hagme .framer-1kfhzns > :last-child, .framer-QQBRu.framer-v-13hagme .framer-f01jdl > :last-child, .framer-QQBRu.framer-v-13hagme .framer-1a4xql4 > :last-child, .framer-QQBRu.framer-v-13hagme .framer-gc7rrq > :last-child, .framer-QQBRu.framer-v-13hagme .framer-uox4wx > :last-child, .framer-QQBRu.framer-v-13hagme .framer-ohuymj > :last-child, .framer-QQBRu.framer-v-13hagme .framer-1o7xljl > :last-child { margin-bottom: 0px; } .framer-QQBRu.framer-v-13hagme .framer-3xxed6 > *, .framer-QQBRu.framer-v-13hagme .framer-1kfhzns > *, .framer-QQBRu.framer-v-13hagme .framer-1o7xljl > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-QQBRu.framer-v-13hagme .framer-r1pf8u > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-QQBRu.framer-v-13hagme .framer-18cizf8 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-QQBRu.framer-v-13hagme .framer-18cizf8 > :first-child { margin-left: 0px; } .framer-QQBRu.framer-v-13hagme .framer-18cizf8 > :last-child { margin-right: 0px; } .framer-QQBRu.framer-v-13hagme .framer-1bo393j > *, .framer-QQBRu.framer-v-13hagme .framer-1bo393j > :first-child, .framer-QQBRu.framer-v-13hagme .framer-1bo393j > :last-child { margin: 0px; } .framer-QQBRu.framer-v-13hagme .framer-f01jdl > * { margin: 0px; margin-bottom: calc(38px / 2); margin-top: calc(38px / 2); } .framer-QQBRu.framer-v-13hagme .framer-1a4xql4 > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-QQBRu.framer-v-13hagme .framer-uox4wx > * { margin: 0px; margin-bottom: calc(19px / 2); margin-top: calc(19px / 2); } .framer-QQBRu.framer-v-13hagme .framer-ohuymj > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 470\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"wLr1h1bZq\":{\"layout\":[\"fixed\",\"auto\"]},\"cyWgsZ5Xk\":{\"layout\":[\"fixed\",\"auto\"]},\"Pdi4IQNg0\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"eNhGnmgGE\":\"hover\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerfhNg5oqH9=withCSS(Component,css,\"framer-QQBRu\");export default FramerfhNg5oqH9;FramerfhNg5oqH9.displayName=\"Section / Footer\";FramerfhNg5oqH9.defaultProps={height:470,width:1440};addPropertyControls(FramerfhNg5oqH9,{variant:{options:[\"shAVnHb7M\",\"wLr1h1bZq\",\"cyWgsZ5Xk\",\"Pdi4IQNg0\"],optionTitles:[\"Desktop\",\"Dektop small\",\"Tablet\",\"mobile\"],title:\"Variant\",type:ControlType.Enum},eNhGnmgGE:{title:\"Hover\",type:ControlType.EventHandler}});addFonts(FramerfhNg5oqH9,[{explicitInter:true,fonts:[{family:\"Plus Jakarta Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/plusjakartasans/v8/LDIbaomQNQcsA88c7O9yZ4KMCoOg4IA6-91aHEjcWuA_d0nNTxXUEKi4Rw.woff2\",weight:\"600\"},{family:\"Plus Jakarta Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/plusjakartasans/v8/LDIbaomQNQcsA88c7O9yZ4KMCoOg4IA6-91aHEjcWuA_qU7NTxXUEKi4Rw.woff2\",weight:\"400\"},{family:\"Plus Jakarta Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/plusjakartasans/v8/LDIbaomQNQcsA88c7O9yZ4KMCoOg4IA6-91aHEjcWuA_m07NTxXUEKi4Rw.woff2\",weight:\"500\"}]},...CarefreeFoundationsCarefreeLogoFonts,...ComponentContactUsButtonFonts,...IntercomFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerfhNg5oqH9\",\"slots\":[],\"annotations\":{\"framerVariables\":\"{\\\"eNhGnmgGE\\\":\\\"hover\\\"}\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"1440\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"wLr1h1bZq\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"cyWgsZ5Xk\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Pdi4IQNg0\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"470\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./fhNg5oqH9.map"],
  "mappings": "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",
  "names": ["createStore", "state1", "dataStore", "Data", "setDataStore", "newState", "storeState", "storeSetters", "setStoreState", "setter", "useStore", "state", "setState", "ye", "ue", "useObserveData", "centerContent", "defaultContainerStyles", "centerContent", "useStore", "createStore", "triggerIntercom", "window", "withtriggerIntercom", "C", "props", "re", "DataObserverContext", "p", "RichTextWithtriggerIntercom", "withtriggerIntercom", "RichText2", "enabledGestures", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transformTemplate1", "_", "t", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "click", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "mMJ14XFVA", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTaphf47j0", "args", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "css", "Framerk_zj9sMN8", "withCSS", "k_zj9sMN8_default", "addPropertyControls", "ControlType", "addFonts", "CarefreeFoundationsCarefreeLogoFonts", "getFonts", "UWzKVx_uF_default", "ComponentContactUsButtonFonts", "k_zj9sMN8_default", "IntercomFonts", "Intercom", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transformTemplate1", "_", "t", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "hover", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "eNhGnmgGE", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "mMJ14XFVA1ykv41o", "args", "scopingClassNames", "cx", "LayoutGroup", "u", "SVG", "ComponentViewportProvider", "SmartComponentScopedContainer", "RichText2", "Link", "Image2", "getLoadingLazyAtYPosition", "css", "FramerfhNg5oqH9", "withCSS", "fhNg5oqH9_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts"]
}
