{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/vkHAj2Yk0mTnbM6ZdN5c/Foxm7T4YpJpvPgDlEus0/FormSpark.js", "ssg:https://framerusercontent.com/modules/slCd1zAJshoHfYyNg4MN/6WgWFOCAZm7lE8ECOkuw/EH9cKwiPn.js", "ssg:https://framerusercontent.com/modules/tb0V05RVscLTycRspBWs/LSA2dL9sdBvvD9jMV8R4/iKsZ9Lcbf.js", "ssg:https://framerusercontent.com/modules/yKcjdsYIlpUoUhGwzqNj/avjRyUHo2wl68DpmiQ6l/UyW2ieNZz.js", "ssg:https://framerusercontent.com/modules/bot4FDA1McO1sYlH2K9H/5drcsszjUSmXkqUG82Pd/XJ2AFy8gf.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,RenderTarget,withCSS}from\"framer\";import{motion}from\"framer-motion\";import{containerStyles,usePadding,useRadius,paddingControl,borderRadiusControl,fontControls,useFontControls}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";import{useCallback,useMemo,useState}from\"react\";const emailRegex=/^(([^<>()[\\]\\\\.,;:\\s@\"]+(\\.[^<>()[\\]\\\\.,;:\\s@\"]+)*)|(\".+\"))@((\\[[0-9]{1,3}\\.[0-9]{1,3}\\.[0-9]{1,3}\\.[0-9]{1,3}\\])|(([a-zA-Z\\-0-9]+\\.)+[a-zA-Z]{2,}))$/;const validateEmail=email=>{return emailRegex.test(String(email).toLowerCase());};/**\n * FORMSPARK\n *\n * @framerIntrinsicWidth 550\n * @framerIntrinsicHeight 290\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */ const FormSpark=withCSS(function FormSpark({formId,withName,nameField:name,withEmail,email,withMessage,message,layout,inputs,button,style,gap,onSubmit,...props}){const[nameValue,setName]=useState(name===null||name===void 0?void 0:name.value);const[emailValue,setEmail]=useState(email===null||email===void 0?void 0:email.value);const[messageValue,setMessage]=useState(message===null||message===void 0?void 0:message.value);const[isNameError,setNameError]=useState(false);const[isEmailError,setEmailError]=useState(false);const[isMessageError,setMessageError]=useState(false);const[isLoading,setLoading]=useState(false);const[isSuccess,setSuccess]=useState(false);const isCanvas=useMemo(()=>{return RenderTarget.current()===RenderTarget.canvas;},[]);const gridTemplateRows=useMemo(()=>{const rows=[];if(withName||withMessage){rows.push(\"max-content\");}if(withMessage){rows.push(\"1fr\");}return[...rows,\"max-content\"].join(\" \");},[withName,withEmail,withMessage]);const gridTemplateColumns=useMemo(()=>{const cols=[];if((withName&&!withEmail||withEmail&&!withName)&&!withMessage&&layout===\"horizontal\"){return\"1fr max-content\";}return\"1fr\";},[withName,withEmail,withMessage,layout]);const{fontFamily,fontSize,fontWeight}=useFontControls(props);const borderRadius=useRadius(props);const paddingValue=usePadding(props);const validateForm=useCallback(()=>{let error=false;setNameError(false);setEmailError(false);setMessageError(false);if(withName&&!nameValue){setNameError(true);error=true;}if(withEmail&&(!emailValue||!validateEmail(emailValue))){setEmailError(true);error=true;}if(withMessage&&!messageValue){setMessageError(true);error=true;}return error;},[validateEmail,withName,withEmail,withMessage,nameValue,emailValue,messageValue,]);const handleSubmit=useCallback(event=>{setLoading(true);event.preventDefault();if(validateForm()){setLoading(false);}else{const data=new FormData(event.target);const entries=Object.fromEntries(data.entries());fetch(`https://api.formspark.io/${formId}`,{method:\"POST\",headers:{\"Content-Type\":\"application/json\",Accept:\"application/json\"},body:JSON.stringify(entries)}).then(()=>{setSuccess(true);onSubmit();}).catch(()=>setLoading(false));}},[formId,onSubmit,validateForm]);const handleNameChange=useCallback(event=>{setNameError(false);setName(event.target.value);},[]);const handleEmailChange=useCallback(event=>{setEmailError(false);setEmail(event.target.value);},[]);const handleMessageChange=useCallback(event=>{setMessageError(false);setMessage(event.target.value);},[]);return /*#__PURE__*/ _jsx(motion.div,{style:{...style,...containerStyles,flexDirection:\"column\",\"--framer-formspark-placeholder-color\":inputs.placeholderColor},children:isSuccess?/*#__PURE__*/ _jsx(motion.div,{style:{height:\"60px\",width:\"60px\",background:button.fill,color:button.color,borderRadius:\"50%\",display:\"flex\",justifyContent:\"center\",alignItems:\"center\"},initial:{scale:0},animate:{scale:1},transition:{duration:.3},children:/*#__PURE__*/ _jsx(\"svg\",{xmlns:\"http://www.w3.org/2000/svg\",width:\"28\",height:\"28\",children:/*#__PURE__*/ _jsx(\"path\",{d:\"M 2 14 L 10 22 L 26 6\",fill:\"transparent\",strokeWidth:\"4\",stroke:\"currentColor\",strokeLinecap:\"round\"})})}):/*#__PURE__*/ _jsxs(\"form\",{style:{display:\"grid\",gridTemplateRows,gridTemplateColumns,gap,width:\"100%\",height:\"100%\"},onSubmit:handleSubmit,method:\"POST\",children:[(withName||withEmail)&&/*#__PURE__*/ _jsxs(\"div\",{style:{width:\"100%\",display:\"grid\",gridAutoFlow:layout===\"horizontal\"?\"column\":\"row\",gap},children:[withName&&/*#__PURE__*/ _jsx(\"input\",{className:\"framer-formspark-input\",type:\"text\",name:\"name\",placeholder:name.placeholder,value:isCanvas?name.value:nameValue,onChange:handleNameChange,style:{...defaultStyle,padding:paddingValue,borderRadius,fontFamily,fontWeight,fontSize,background:inputs.fill,color:inputs.color,boxShadow:`inset 0 0 0 1px ${isNameError?inputs.error:\"transparent\"}`}}),withEmail&&/*#__PURE__*/ _jsx(\"input\",{className:\"framer-formspark-input\",type:\"email\",name:\"email\",placeholder:email.placeholder,value:isCanvas?email.value:emailValue,onChange:handleEmailChange,style:{...defaultStyle,padding:paddingValue,borderRadius,fontFamily,fontWeight,fontSize,background:inputs.fill,color:inputs.color,boxShadow:`inset 0 0 0 1px ${isEmailError?inputs.error:\"transparent\"}`}})]}),withMessage&&/*#__PURE__*/ _jsx(\"textarea\",{className:\"framer-formspark-input\",placeholder:message.placeholder,name:\"message\",value:isCanvas?message.value:messageValue,onChange:handleMessageChange,style:{...defaultStyle,minHeight:0,padding:paddingValue,resize:\"vertical\",borderRadius,background:inputs.fill,fontFamily,fontWeight,fontSize,color:inputs.color,boxShadow:`inset 0 0 0 1px ${isMessageError?inputs.error:\"transparent\"}`}}),/*#__PURE__*/ _jsxs(\"div\",{children:[/*#__PURE__*/ _jsx(motion.input,{type:\"submit\",value:button.label,style:{...defaultStyle,borderRadius,padding:paddingValue,fontFamily,fontWeight:button.fontWeight,fontSize,background:button.fill,cursor:\"pointer\",color:button.color,zIndex:1},transition:{type:\"ease\",duration:.3},whileHover:{opacity:.8}}),isLoading&&/*#__PURE__*/ _jsx(\"div\",{style:{borderRadius,position:\"absolute\",display:\"flex\",justifyContent:\"center\",alignItems:\"center\",width:\"100%\",height:\"100%\",left:0,top:0,zIndex:2,color:button.color,background:button.fill},children:/*#__PURE__*/ _jsx(motion.div,{style:{height:16,width:16},initial:{rotate:0},animate:{rotate:360},transition:{duration:2,repeat:Infinity},children:/*#__PURE__*/ _jsxs(\"svg\",{xmlns:\"http://www.w3.org/2000/svg\",width:\"16\",height:\"16\",children:[/*#__PURE__*/ _jsx(\"path\",{d:\"M 8 0 C 3.582 0 0 3.582 0 8 C 0 12.419 3.582 16 8 16 C 12.418 16 16 12.419 16 8 C 15.999 3.582 12.418 0 8 0 Z M 8 14 C 4.687 14 2 11.314 2 8 C 2 4.687 4.687 2 8 2 C 11.314 2 14 4.687 14 8 C 14 11.314 11.314 14 8 14 Z\",fill:\"currentColor\",opacity:\"0.2\"}),/*#__PURE__*/ _jsx(\"path\",{d:\"M 8 0 C 12.418 0 15.999 3.582 16 8 C 16 8 16 9 15 9 C 14 9 14 8 14 8 C 14 4.687 11.314 2 8 2 C 4.687 2 2 4.687 2 8 C 2 8 2 9 1 9 C 0 9 0 8 0 8 C 0 3.582 3.582 0 8 0 Z\",fill:\"currentColor\"})]})})})]})]})});},[\".framer-formspark-input::placeholder { color: var(--framer-formspark-placeholder-color) !important; }\",]);FormSpark.defaultProps={fontSize:16,fontFamily:\"Inter\",fontWeight:400,padding:15,paddingTop:15,paddingBottom:15,paddingLeft:15,paddingRight:15,borderRadius:8,topLeftRadius:8,topRightRadius:8,bottomRightRadius:8,bottomLeftRadius:8,gap:15,nameField:{value:undefined,placeholder:\"Name\"},email:{value:undefined,placeholder:\"Email\"},message:{value:undefined,placeholder:\"Message\"},inputs:{fill:\"#EBEBEB\",color:\"#000\",placeholderColor:\"rgba(0, 0, 0, 0.5)\",error:\"#EE4444\"},layout:{fill:\"#EBEBEB\",color:\"#000\",placeholderColor:\"rgba(0, 0, 0, 0.5)\",error:\"#EE4444\"},button:{label:\"Sign Up\",fontWeight:600,fill:\"#000\",color:\"#FFF\"}};addPropertyControls(FormSpark,{formId:{title:\"ID\",placeholder:\"7PbPpGN3\",type:ControlType.String,description:\"Create a [FormSpark](https://formspark.io/) account, add a new form and copy its ID. [Learn more\u2026](https://www.framer.com/sites/integrations/formspark/)\"},withName:{title:\"Name\",type:ControlType.Boolean,enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:true},nameField:{title:\" \",type:ControlType.Object,controls:{placeholder:{title:\"Placeholder\",type:ControlType.String,defaultValue:\"Name\"},value:{title:\"Value\",type:ControlType.String,defaultValue:\"\"}},hidden:props=>!props.withName},withEmail:{title:\"Email\",type:ControlType.Boolean,enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:true},email:{title:\" \",type:ControlType.Object,controls:{placeholder:{title:\"Placeholder\",type:ControlType.String,defaultValue:\"Email\"},value:{title:\"Value\",type:ControlType.String}},hidden:props=>!props.withEmail},withMessage:{title:\"Message\",type:ControlType.Boolean,enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:true},message:{title:\" \",type:ControlType.Object,controls:{placeholder:{title:\"Placeholder\",type:ControlType.String,defaultValue:\"Message\"},value:{title:\"Value\",type:ControlType.String}},hidden:props=>!props.withMessage},layout:{title:\"Layout\",type:ControlType.Enum,options:[\"horizontal\",\"vertical\"],displaySegmentedControl:true,defaultValue:\"horizontal\"},inputs:{title:\"Inputs\",type:ControlType.Object,controls:{fill:{title:\"Fill\",type:ControlType.Color,defaultValue:\"#EBEBEB\"},color:{title:\"Text\",type:ControlType.Color,defaultValue:\"#000\"},placeholderColor:{title:\"Placeholder\",type:ControlType.Color,defaultValue:\"rgba(0, 0, 0, 0.5)\"},error:{title:\"Error\",type:ControlType.Color,defaultValue:\"#EE4444\"}}},button:{title:\"Button\",type:ControlType.Object,controls:{label:{title:\"Label\",type:ControlType.String,defaultValue:\"Sign Up\"},fontWeight:{...fontControls.fontWeight,defaultValue:600},fill:{title:\"Fill\",type:ControlType.Color,defaultValue:\"#000\"},color:{title:\"Text\",type:ControlType.Color,defaultValue:\"#FFF\"}}},...fontControls,fontSize:{title:\"Font Size\",type:ControlType.Number,displayStepper:true,defaultValue:16},...paddingControl,...borderRadiusControl,gap:{title:\"Gap\",type:ControlType.Number,displayStepper:true,min:0},onSubmit:{type:ControlType.EventHandler}});const defaultStyle={WebkitAppearance:\"none\",display:\"inline-block\",width:\"100%\",lineHeight:\"1.4em\",outline:\"none\",border:\"none\"};export default FormSpark;\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FormSpark\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"290\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"550\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./FormSpark.map", "import{fontStore}from\"framer\";fontStore.loadFonts([]);export const fonts=[];export const css=['.framer-vie4g .framer-styles-preset-1o6drd7:not(.rich-text-wrapper), .framer-vie4g .framer-styles-preset-1o6drd7.rich-text-wrapper a { --framer-link-current-text-color: var(--token-40b101e4-4bd7-49ca-8b91-7207c1239740, #374836) /* {\"name\":\"Green\"} */; --framer-link-current-text-decoration: underline; --framer-link-hover-text-color: var(--token-40b101e4-4bd7-49ca-8b91-7207c1239740, #374836) /* {\"name\":\"Green\"} */; --framer-link-hover-text-decoration: underline; --framer-link-text-color: var(--token-40b101e4-4bd7-49ca-8b91-7207c1239740, #374836); --framer-link-text-decoration: none; }'];export const className=\"framer-vie4g\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{fontStore}from\"framer\";fontStore.loadFonts([]);export const fonts=[];export const css=['.framer-bOjXh .framer-styles-preset-18l3c65:not(.rich-text-wrapper), .framer-bOjXh .framer-styles-preset-18l3c65.rich-text-wrapper a { --framer-link-current-text-color: var(--token-2cea0ecc-9836-4375-a80c-26247641252f, #f9fbf3) /* {\"name\":\"White\"} */; --framer-link-current-text-decoration: underline; --framer-link-hover-text-color: var(--token-2cea0ecc-9836-4375-a80c-26247641252f, #f9fbf3) /* {\"name\":\"White\"} */; --framer-link-hover-text-decoration: underline; --framer-link-text-color: var(--token-2cea0ecc-9836-4375-a80c-26247641252f, #f9fbf3); --framer-link-text-decoration: none; }'];export const className=\"framer-bOjXh\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{fontStore}from\"framer\";fontStore.loadFonts([\"GF;DM Sans-regular\",\"GF;DM Sans-700\",\"GF;DM Sans-700italic\",\"GF;DM Sans-italic\"]);export const fonts=[{family:\"DM Sans\",style:\"normal\",url:\"https://fonts.gstatic.com/s/dmsans/v14/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwAopxhS2f3ZGMZpg.woff2\",weight:\"400\"},{family:\"DM Sans\",style:\"normal\",url:\"https://fonts.gstatic.com/s/dmsans/v14/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwARZthS2f3ZGMZpg.woff2\",weight:\"700\"},{family:\"DM Sans\",style:\"italic\",url:\"https://fonts.gstatic.com/s/dmsans/v14/rP2rp2ywxg089UriCZaSExd86J3t9jz86Mvy4qCRAL19DksVat9uCm32RmYJpso5.woff2\",weight:\"700\"},{family:\"DM Sans\",style:\"italic\",url:\"https://fonts.gstatic.com/s/dmsans/v14/rP2rp2ywxg089UriCZaSExd86J3t9jz86Mvy4qCRAL19DksVat-JDW32RmYJpso5.woff2\",weight:\"400\"}];export const css=['.framer-oLzbT .framer-styles-preset-1fzdb0c:not(.rich-text-wrapper), .framer-oLzbT .framer-styles-preset-1fzdb0c.rich-text-wrapper p { --framer-font-family: \"DM Sans\", \"DM Sans Placeholder\", sans-serif; --framer-font-family-bold: \"DM Sans\", \"DM Sans Placeholder\", sans-serif; --framer-font-family-bold-italic: \"DM Sans\", \"DM Sans Placeholder\", sans-serif; --framer-font-family-italic: \"DM Sans\", \"DM Sans Placeholder\", sans-serif; --framer-font-size: 16px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: 0em; --framer-line-height: 24px; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: #f9faf3; --framer-text-decoration: none; --framer-text-transform: none; }'];export const className=\"framer-oLzbT\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (ff86393)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,Link,RichText,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import FormSpark from\"https://framerusercontent.com/modules/vkHAj2Yk0mTnbM6ZdN5c/Foxm7T4YpJpvPgDlEus0/FormSpark.js\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/slCd1zAJshoHfYyNg4MN/6WgWFOCAZm7lE8ECOkuw/EH9cKwiPn.js\";import*as sharedStyle3 from\"https://framerusercontent.com/modules/tb0V05RVscLTycRspBWs/LSA2dL9sdBvvD9jMV8R4/iKsZ9Lcbf.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/KTA4y0ZGCPJml1J7lSQK/hyIQVm4ZUJuagY2q4TLy/ntjZxmtmi.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/yKcjdsYIlpUoUhGwzqNj/avjRyUHo2wl68DpmiQ6l/UyW2ieNZz.js\";const FormSparkFonts=getFonts(FormSpark);const cycleOrder=[\"OK61EYYSf\",\"aTHdSfHDG\",\"tJLVNJjPf\",\"J9PZg7_ft\",\"ZtDKfIVfp\",\"glTZqpauz\"];const serializationHash=\"framer-NwdCY\";const variantClassNames={aTHdSfHDG:\"framer-v-1be5h9\",glTZqpauz:\"framer-v-1evl0mo\",J9PZg7_ft:\"framer-v-h9op42\",OK61EYYSf:\"framer-v-1d2yvcd\",tJLVNJjPf:\"framer-v-188znmv\",ZtDKfIVfp:\"framer-v-1p8lazy\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Desktop 1\":\"OK61EYYSf\",\"Desktop 2\":\"aTHdSfHDG\",\"Mobile 1\":\"J9PZg7_ft\",\"Mobile 2\":\"glTZqpauz\",\"Tablet 1\":\"tJLVNJjPf\",\"Tablet 2\":\"ZtDKfIVfp\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"OK61EYYSf\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"OK61EYYSf\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const isDisplayed=()=>{if([\"aTHdSfHDG\",\"ZtDKfIVfp\",\"glTZqpauz\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if([\"aTHdSfHDG\",\"ZtDKfIVfp\",\"glTZqpauz\"].includes(baseVariant))return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.footer,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1d2yvcd\",className,classNames),\"data-framer-name\":\"Desktop 1\",layoutDependency:layoutDependency,layoutId:\"OK61EYYSf\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"rgba(0, 0, 0, 0)\",...style},variants:{aTHdSfHDG:{backgroundColor:\"var(--token-40b101e4-4bd7-49ca-8b91-7207c1239740, rgb(55, 72, 54))\"},glTZqpauz:{backgroundColor:\"var(--token-40b101e4-4bd7-49ca-8b91-7207c1239740, rgb(55, 72, 54))\"},ZtDKfIVfp:{backgroundColor:\"var(--token-40b101e4-4bd7-49ca-8b91-7207c1239740, rgb(55, 72, 54))\"}},...addPropertyOverrides({aTHdSfHDG:{\"data-framer-name\":\"Desktop 2\"},glTZqpauz:{\"data-framer-name\":\"Mobile 2\"},J9PZg7_ft:{\"data-framer-name\":\"Mobile 1\"},tJLVNJjPf:{\"data-framer-name\":\"Tablet 1\"},ZtDKfIVfp:{\"data-framer-name\":\"Tablet 2\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-wbkkri\",\"data-framer-name\":\"Container\",layoutDependency:layoutDependency,layoutId:\"b9kKckyC1\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-13t9vwm\",\"data-framer-name\":\"Contents\",layoutDependency:layoutDependency,layoutId:\"olac0VC3k\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-sj7m8z\",\"data-framer-name\":\"Company Logo + Text + Newsletter\",layoutDependency:layoutDependency,layoutId:\"VfOB5BU0t\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1n27fmc\",\"data-framer-name\":\"Company Logo + Text\",layoutDependency:layoutDependency,layoutId:\"z3sTQQy1z\",children:[isDisplayed()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-h4apw7\",\"data-framer-name\":\"Company Logo\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:40,intrinsicWidth:195,layoutDependency:layoutDependency,layoutId:\"ZxmCWLBRC\",svg:'<svg width=\"195\" height=\"40\" viewBox=\"-1 -1 195 40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M31.6756 6.87264C31.0771 7.4216 31.886 8.35219 32.4854 7.80252C34.5232 5.93355 35.903 3.49645 36.4755 0.754581C36.5679 0.311854 36.1837 -0.0802869 35.7541 0.0141823C30.9023 1.08117 27.0825 4.94763 25.9633 9.89542L23.8866 12.0267C24.9842 8.367 24.4916 4.31955 22.4048 1.00985C22.1655 0.630571 21.6238 0.630493 21.3844 1.00985C18.6495 5.34764 18.6494 10.9534 21.3843 15.2913C21.5628 15.5744 21.9349 15.6639 22.2187 15.4799C25.9793 13.0356 30.4064 13.0252 33.9519 14.953C31.2663 16.4154 28.1243 16.7414 25.1848 15.8347C24.4151 15.5972 24.066 16.7919 24.835 17.0291C28.4298 18.1379 32.3111 17.5811 35.4808 15.4764C35.8496 15.2314 35.8511 14.6752 35.4808 14.4293C32.2558 12.2877 28.3119 11.7822 24.7459 12.9085C27.2398 10.3491 27.0563 10.5931 27.102 10.3742C27.986 6.14019 31.0485 2.75067 35.0344 1.49373C34.4169 3.56785 33.2683 5.41187 31.6756 6.87264ZM21.8946 2.57927C23.6898 6.05702 23.6898 10.2442 21.8946 13.7221C20.0994 10.2443 20.0994 6.0571 21.8946 2.57927ZM31.1676 22.6901C26.8707 19.8368 21.5674 19.2706 16.8707 20.9906L20.2166 17.5569C20.7842 16.9743 19.9258 16.0917 19.3573 16.675L16.0114 20.1087C17.6874 15.2887 17.1358 9.846 14.3555 5.43619C14.1162 5.05691 13.5745 5.05683 13.3352 5.43619C10.8308 9.40826 10.0881 14.3049 11.2977 18.8706C11.5083 19.6657 12.6812 19.3395 12.4703 18.5434C11.4381 14.6471 11.9425 10.4902 13.8453 6.98449C16.5251 11.9208 16.365 18.0255 13.3665 22.8229L7.41134 28.9345C9.19101 24.2636 9.22108 19.0091 7.39463 14.265C7.09979 13.4988 5.96912 13.956 6.26441 14.7232C8.31135 20.04 7.87228 26.0405 5.11696 30.9734C1.72615 24.9053 1.89613 17.3367 5.62719 11.4192C6.0633 10.7276 5.04366 10.049 4.60687 10.7417C0.527582 17.2118 0.44077 25.532 4.34515 32.0814L0.186261 36.3495C-0.381468 36.9321 0.477151 37.8145 1.04556 37.2313L5.49944 32.6605C11.2579 28.865 18.6056 28.7015 24.5005 32.1708C19.8824 34.883 14.2397 35.4105 9.21106 33.5593C8.4555 33.281 8.04393 34.4545 8.80077 34.7331C14.3543 36.7777 20.7473 36.1813 25.9978 32.6946C26.3667 32.4496 26.3682 31.8935 25.9978 31.6476C20.6675 28.108 14.0481 27.497 8.27254 29.8146L13.9333 24.0051C19.2454 27.3022 25.9548 27.1988 31.1675 23.7373C31.5366 23.4921 31.5379 22.936 31.1676 22.6901ZM15.0238 23.2136C19.5639 20.6178 25.1191 20.6179 29.6591 23.2136C25.1191 25.8094 19.5639 25.8095 15.0238 23.2136Z\" fill=\"#374836\"/>\\n<path d=\"M48.2023 37.4226V0.999717H51.0172V37.4226H48.2023Z\" fill=\"#374836\"/>\\n<path d=\"M70.1401 38C67.7944 38 65.6832 37.4226 63.8066 36.2679C61.93 35.081 60.4444 33.4772 59.3497 31.4564C58.255 29.4035 57.7077 27.11 57.7077 24.576C57.7077 22.0419 58.2394 19.7805 59.3028 17.7918C60.3662 15.771 61.8049 14.1832 63.619 13.0284C65.433 11.8737 67.466 11.2963 69.7179 11.2963C71.4381 11.2963 72.9863 11.6171 74.3624 12.2586C75.7699 12.9001 76.974 13.7983 77.9749 14.953C79.007 16.0757 79.7889 17.3748 80.3206 18.8503C80.8836 20.2938 81.1651 21.8174 81.1651 23.4212C81.1651 23.742 81.1494 24.0788 81.1182 24.4316C81.0869 24.7845 81.04 25.1533 80.9774 25.5383H59.3497V22.892H79.3823L78.1156 23.9024C78.3033 22.0419 78.0374 20.3739 77.3181 18.8984C76.5987 17.3908 75.5666 16.204 74.2217 15.3379C72.9081 14.4398 71.4068 13.9907 69.7179 13.9907C68.0289 13.9907 66.4808 14.4558 65.0733 15.386C63.6659 16.2842 62.5556 17.5352 61.7424 19.139C60.9292 20.7107 60.5539 22.5391 60.6164 24.6241C60.5539 26.7091 60.9448 28.5535 61.7893 30.1573C62.6337 31.7611 63.791 33.0281 65.261 33.9584C66.731 34.8565 68.3573 35.3056 70.1401 35.3056C71.9541 35.3056 73.5336 34.8725 74.8785 34.0065C76.2234 33.1083 77.3181 31.9215 78.1625 30.446L80.5552 31.7451C79.9922 32.9319 79.1947 34.0065 78.1625 34.9688C77.1304 35.899 75.9263 36.6367 74.5501 37.182C73.2052 37.7273 71.7352 38 70.1401 38Z\" fill=\"#374836\"/>\\n<path d=\"M94.5512 38C92.9874 38 91.5956 37.6953 90.3758 37.0858C89.156 36.4764 88.1864 35.6263 87.4671 34.5357C86.7477 33.4451 86.388 32.1941 86.388 30.7828C86.388 29.5318 86.6539 28.361 87.1856 27.2704C87.7173 26.1798 88.5774 25.2496 89.7659 24.4797C90.9544 23.6778 92.5026 23.1165 94.4104 22.7957L104.497 21.0636V23.758L95.1611 25.3458C93.0343 25.6986 91.533 26.3562 90.6573 27.3185C89.7815 28.2808 89.3436 29.4035 89.3436 30.6865C89.3436 32.0658 89.8441 33.1885 90.8449 34.0546C91.877 34.9207 93.175 35.3537 94.7388 35.3537C96.5529 35.3537 98.1323 34.9367 99.4772 34.1027C100.822 33.2366 101.87 32.114 102.621 30.7347C103.371 29.3233 103.746 27.7836 103.746 26.1156V19.7645C103.746 18.0644 103.152 16.6851 101.964 15.6266C100.775 14.5681 99.227 14.0388 97.3192 14.0388C95.7553 14.0388 94.3479 14.4398 93.0968 15.2417C91.8458 16.0436 90.8918 17.0861 90.235 18.3692L87.7016 16.9738C88.1708 15.9474 88.8901 15.0011 89.8597 14.1351C90.8293 13.269 91.9552 12.5793 93.2376 12.0661C94.5199 11.5529 95.8804 11.2963 97.3192 11.2963C99.1332 11.2963 100.728 11.6652 102.104 12.4029C103.512 13.1086 104.607 14.103 105.388 15.386C106.17 16.637 106.561 18.0965 106.561 19.7645V37.4226H103.746V32.0819L104.075 32.3225C103.668 33.3489 102.996 34.2952 102.058 35.1612C101.119 35.9952 100.009 36.6849 98.7266 37.2302C97.4755 37.7434 96.0837 38 94.5512 38Z\" fill=\"#374836\"/>\\n<path d=\"M116.894 37.4226V14.6162H111.827V11.8737H116.894V9.41981C116.894 7.62352 117.238 6.09989 117.926 4.8489C118.645 3.59792 119.615 2.65166 120.835 2.01013C122.055 1.33652 123.399 0.999717 124.869 0.999717C125.214 0.999717 125.558 1.03179 125.902 1.09595C126.277 1.12802 126.59 1.17614 126.84 1.24029V3.83849C126.59 3.77434 126.293 3.74226 125.949 3.74226C125.604 3.71018 125.339 3.69415 125.151 3.69415C123.525 3.69415 122.211 4.17529 121.21 5.13759C120.209 6.06781 119.709 7.49522 119.709 9.41981V11.8737H133.877V14.6162H119.709V37.4226H116.894ZM132.61 37.4226V0.999717H135.425V37.4226H132.61Z\" fill=\"#374836\"/>\\n<path d=\"M143.177 37.4226V11.8737H145.992V37.4226H143.177ZM143.177 6.86972V1.57709H145.992V6.86972H143.177Z\" fill=\"#374836\"/>\\n<path d=\"M156.295 37.4226V14.6162H151.228V11.8737H156.295V9.41981C156.295 7.62352 156.639 6.09989 157.327 4.8489C158.047 3.59792 159.016 2.65166 160.236 2.01013C161.456 1.33652 162.801 0.999717 164.271 0.999717C164.615 0.999717 164.959 1.03179 165.303 1.09595C165.678 1.12802 165.991 1.17614 166.241 1.24029V3.83849C165.991 3.77434 165.694 3.74226 165.35 3.74226C165.006 3.71018 164.74 3.69415 164.552 3.69415C162.926 3.69415 161.612 4.17529 160.611 5.13759C159.61 6.06781 159.11 7.49522 159.11 9.41981V11.8737H165.303V14.6162H159.11V37.4226H156.295Z\" fill=\"#374836\"/>\\n<path d=\"M181.975 38C179.629 38 177.518 37.4226 175.642 36.2679C173.765 35.081 172.279 33.4772 171.185 31.4564C170.09 29.4035 169.543 27.11 169.543 24.576C169.543 22.0419 170.074 19.7805 171.138 17.7918C172.201 15.771 173.64 14.1832 175.454 13.0284C177.268 11.8737 179.301 11.2963 181.553 11.2963C183.273 11.2963 184.821 11.6171 186.197 12.2586C187.605 12.9001 188.809 13.7983 189.81 14.953C190.842 16.0757 191.624 17.3748 192.156 18.8503C192.719 20.2938 193 21.8174 193 23.4212C193 23.742 192.984 24.0788 192.953 24.4316C192.922 24.7845 192.875 25.1533 192.812 25.5383H171.185V22.892H191.217L189.951 23.9024C190.138 22.0419 189.872 20.3739 189.153 18.8984C188.434 17.3908 187.401 16.204 186.057 15.3379C184.743 14.4398 183.242 13.9907 181.553 13.9907C179.864 13.9907 178.316 14.4558 176.908 15.386C175.501 16.2842 174.39 17.5352 173.577 19.139C172.764 20.7107 172.389 22.5391 172.451 24.6241C172.389 26.7091 172.78 28.5535 173.624 30.1573C174.469 31.7611 175.626 33.0281 177.096 33.9584C178.566 34.8565 180.192 35.3056 181.975 35.3056C183.789 35.3056 185.369 34.8725 186.713 34.0065C188.058 33.1083 189.153 31.9215 189.997 30.446L192.39 31.7451C191.827 32.9319 191.03 34.0065 189.997 34.9688C188.965 35.899 187.761 36.6367 186.385 37.182C185.04 37.7273 183.57 38 181.975 38Z\" fill=\"#374836\"/>\\n</svg>\\n',withExternalLayout:true}),isDisplayed1()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1randol\",\"data-framer-name\":\"Company_Logo\",fill:\"black\",intrinsicHeight:38,intrinsicWidth:193,layoutDependency:layoutDependency,layoutId:\"z3WhCnFMX\",svg:'<svg width=\"193\" height=\"38\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M31.676 6.873c-.599.549.21 1.48.81.93a13.142 13.142 0 0 0 3.99-7.048c.092-.443-.292-.835-.722-.74-4.852 1.066-8.671 4.933-9.79 9.88l-2.077 2.132c1.097-3.66.605-7.707-1.482-11.017a.6.6 0 0 0-1.02 0c-2.736 4.338-2.736 9.943 0 14.281a.6.6 0 0 0 .834.189c3.76-2.444 8.187-2.455 11.733-.527a11.309 11.309 0 0 1-8.767.882c-.77-.238-1.119.957-.35 1.194a12.511 12.511 0 0 0 10.646-1.553.633.633 0 0 0 0-1.047 12.549 12.549 0 0 0-10.735-1.52c2.494-2.56 2.31-2.316 2.356-2.535.884-4.234 3.947-7.623 7.932-8.88a11.852 11.852 0 0 1-3.358 5.379Zm-9.781-4.294a12.2 12.2 0 0 1 0 11.143 12.2 12.2 0 0 1 0-11.143Zm9.273 20.111a15.918 15.918 0 0 0-14.297-1.7l3.346-3.433c.567-.583-.291-1.465-.86-.882l-3.346 3.434c1.676-4.82 1.125-10.263-1.655-14.673a.6.6 0 0 0-1.02 0c-2.505 3.972-3.248 8.869-2.038 13.435.21.795 1.383.469 1.172-.328a15.81 15.81 0 0 1 1.375-11.559c2.68 4.937 2.52 11.042-.479 15.839l-5.955 6.111a20.568 20.568 0 0 0-.016-14.669c-.295-.766-1.426-.309-1.13.458a19.266 19.266 0 0 1-1.148 16.25c-3.39-6.068-3.22-13.636.51-19.554.436-.691-.583-1.37-1.02-.677-4.08 6.47-4.166 14.79-.262 21.34L.186 36.348c-.567.583.291 1.466.86.882l4.453-4.57a17.937 17.937 0 0 1 19.002-.49c-4.619 2.712-10.261 3.24-15.29 1.388-.755-.278-1.167.896-.41 1.174a19.114 19.114 0 0 0 17.197-2.038.633.633 0 0 0 0-1.047 19.126 19.126 0 0 0-17.725-1.833l5.66-5.81a15.918 15.918 0 0 0 17.235-.268.633.633 0 0 0 0-1.047Zm-16.144.524a14.726 14.726 0 0 1 14.635 0 14.726 14.726 0 0 1-14.635 0Zm33.178 14.209V1h2.815v36.423h-2.815ZM70.14 38c-2.346 0-4.457-.577-6.333-1.732-1.877-1.187-3.363-2.79-4.457-4.812-1.095-2.052-1.642-4.346-1.642-6.88s.531-4.796 1.595-6.784c1.063-2.021 2.502-3.609 4.316-4.764 1.814-1.154 3.847-1.732 6.099-1.732 1.72 0 3.268.321 4.644.963a10.467 10.467 0 0 1 3.613 2.694 11.408 11.408 0 0 1 2.346 3.897 12.467 12.467 0 0 1 .797 5.582c-.031.353-.078.721-.14 1.106H59.35v-2.646h20.032l-1.266 1.01c.187-1.86-.079-3.528-.798-5.004-.72-1.507-1.751-2.694-3.096-3.56-1.314-.898-2.815-1.347-4.504-1.347a8.249 8.249 0 0 0-4.645 1.395c-1.407.898-2.517 2.15-3.33 3.753-.814 1.572-1.19 3.4-1.127 5.485-.062 2.085.329 3.93 1.173 5.533.845 1.604 2.002 2.871 3.472 3.801 1.47.898 3.096 1.348 4.88 1.348 1.813 0 3.393-.433 4.737-1.3 1.345-.898 2.44-2.084 3.284-3.56l2.393 1.3c-.563 1.186-1.36 2.26-2.393 3.223-1.032.93-2.236 1.668-3.612 2.213-1.345.545-2.815.818-4.41.818Zm24.411 0c-1.564 0-2.955-.305-4.175-.914-1.22-.61-2.19-1.46-2.909-2.55-.72-1.09-1.079-2.342-1.079-3.753 0-1.251.266-2.422.798-3.513.531-1.09 1.391-2.02 2.58-2.79 1.188-.802 2.737-1.364 4.644-1.684l10.087-1.732v2.694l-9.336 1.588c-2.127.353-3.628 1.01-4.504 1.973-.876.962-1.313 2.085-1.313 3.367 0 1.38.5 2.502 1.5 3.369 1.033.866 2.331 1.299 3.895 1.299 1.814 0 3.393-.417 4.738-1.251a9.169 9.169 0 0 0 3.144-3.368c.75-1.412 1.125-2.951 1.125-4.62v-6.35c0-1.7-.594-3.08-1.782-4.138-1.189-1.059-2.737-1.588-4.645-1.588-1.564 0-2.971.4-4.222 1.203-1.251.802-2.205 1.844-2.862 3.127l-2.533-1.395c.469-1.027 1.188-1.973 2.158-2.839a11.349 11.349 0 0 1 3.378-2.069 10.882 10.882 0 0 1 4.081-.77c1.814 0 3.409.37 4.785 1.107 1.408.706 2.503 1.7 3.284 2.983.782 1.251 1.173 2.71 1.173 4.379v17.658h-2.815v-5.341l.329.24c-.407 1.027-1.079 1.973-2.017 2.84-.939.833-2.049 1.523-3.331 2.068-1.252.513-2.643.77-4.176.77Zm22.343-.577V14.616h-5.067v-2.742h5.067V9.42c0-1.796.344-3.32 1.032-4.571.719-1.251 1.689-2.197 2.909-2.839 1.22-.673 2.564-1.01 4.034-1.01.345 0 .689.032 1.033.096.375.032.688.08.938.144v2.598a3.619 3.619 0 0 0-.891-.096 9.233 9.233 0 0 0-.798-.048c-1.626 0-2.94.481-3.941 1.444-1.001.93-1.501 2.357-1.501 4.282v2.454h14.168v2.742h-14.168v22.807h-2.815Zm15.716 0V1h2.815v36.423h-2.815Zm10.567 0v-25.55h2.815v25.55h-2.815Zm0-30.553V1.577h2.815V6.87h-2.815Zm13.118 30.553V14.616h-5.067v-2.742h5.067V9.42c0-1.796.344-3.32 1.032-4.571.72-1.251 1.689-2.197 2.909-2.839 1.22-.673 2.565-1.01 4.035-1.01.344 0 .688.032 1.032.096.375.032.688.08.938.144v2.598a3.619 3.619 0 0 0-.891-.096 9.21 9.21 0 0 0-.798-.048c-1.626 0-2.94.481-3.941 1.444-1.001.93-1.501 2.357-1.501 4.282v2.454h6.193v2.742h-6.193v22.807h-2.815Zm25.68.577c-2.346 0-4.457-.577-6.333-1.732-1.877-1.187-3.363-2.79-4.457-4.812-1.095-2.052-1.642-4.346-1.642-6.88s.531-4.796 1.595-6.784c1.063-2.021 2.502-3.609 4.316-4.764 1.814-1.154 3.847-1.732 6.099-1.732 1.72 0 3.268.321 4.644.963a10.465 10.465 0 0 1 3.613 2.694 11.415 11.415 0 0 1 2.346 3.897 12.467 12.467 0 0 1 .797 5.582c-.031.353-.078.721-.141 1.106h-21.627v-2.646h20.032l-1.266 1.01c.187-1.86-.079-3.528-.798-5.004-.719-1.507-1.752-2.694-3.096-3.56-1.314-.898-2.815-1.347-4.504-1.347a8.251 8.251 0 0 0-4.645 1.395c-1.407.898-2.518 2.15-3.331 3.753-.813 1.572-1.188 3.4-1.126 5.485-.062 2.085.329 3.93 1.173 5.533.845 1.604 2.002 2.871 3.472 3.801 1.47.898 3.096 1.348 4.879 1.348 1.814 0 3.394-.433 4.738-1.3 1.345-.898 2.44-2.084 3.284-3.56l2.393 1.3c-.563 1.186-1.36 2.26-2.393 3.223-1.032.93-2.236 1.668-3.612 2.213-1.345.545-2.815.818-4.41.818Z\" fill=\"#F9FBF3\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1j20j0j\",\"data-border\":true,\"data-framer-name\":\"Text\",layoutDependency:layoutDependency,layoutId:\"rRQrCo3T3\",style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgb(55, 72, 54)\",\"--border-left-width\":\"2px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"},variants:{aTHdSfHDG:{\"--border-color\":\"var(--token-2cea0ecc-9836-4375-a80c-26247641252f, rgb(249, 251, 243))\"},glTZqpauz:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\"},J9PZg7_ft:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\"},ZtDKfIVfp:{\"--border-color\":\"var(--token-2cea0ecc-9836-4375-a80c-26247641252f, rgb(249, 251, 243))\"}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{className:\"framer-styles-preset-1fzdb0c\",\"data-styles-preset\":\"UyW2ieNZz\",children:[/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-text-color\":\"var(--extracted-1w3ko1f, var(--token-40b101e4-4bd7-49ca-8b91-7207c1239740, rgb(55, 72, 54)))\"},children:\"Stay updated with our latest\"}),/*#__PURE__*/_jsx(motion.br,{}),/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-text-color\":\"var(--extracted-c9yw3e, var(--token-40b101e4-4bd7-49ca-8b91-7207c1239740, rgb(55, 72, 54)))\"},children:\"projects and gardening tips.\"})]})}),className:\"framer-tyi8gn\",\"data-framer-name\":\"Stay updated with our latest projects and gardening tips.\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"uiLar2f67\",style:{\"--extracted-1w3ko1f\":\"var(--token-40b101e4-4bd7-49ca-8b91-7207c1239740, rgb(55, 72, 54))\",\"--extracted-c9yw3e\":\"var(--token-40b101e4-4bd7-49ca-8b91-7207c1239740, rgb(55, 72, 54))\",\"--framer-paragraph-spacing\":\"0px\",opacity:.75},variants:{aTHdSfHDG:{\"--extracted-1w3ko1f\":\"var(--token-2cea0ecc-9836-4375-a80c-26247641252f, rgb(249, 251, 243))\",\"--extracted-c9yw3e\":\"var(--token-2cea0ecc-9836-4375-a80c-26247641252f, rgb(249, 251, 243))\"},glTZqpauz:{\"--extracted-r6o4lv\":\"var(--token-2cea0ecc-9836-4375-a80c-26247641252f, rgb(249, 251, 243))\"},J9PZg7_ft:{\"--extracted-r6o4lv\":\"var(--token-40b101e4-4bd7-49ca-8b91-7207c1239740, rgb(55, 72, 54))\"},ZtDKfIVfp:{\"--extracted-r6o4lv\":\"var(--token-2cea0ecc-9836-4375-a80c-26247641252f, rgb(249, 251, 243))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({aTHdSfHDG:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{className:\"framer-styles-preset-1fzdb0c\",\"data-styles-preset\":\"UyW2ieNZz\",children:[/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-text-color\":\"var(--extracted-1w3ko1f, var(--token-2cea0ecc-9836-4375-a80c-26247641252f, rgb(249, 251, 243)))\"},children:\"Stay updated with our latest\"}),/*#__PURE__*/_jsx(motion.br,{}),/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-text-color\":\"var(--extracted-c9yw3e, var(--token-2cea0ecc-9836-4375-a80c-26247641252f, rgb(249, 251, 243)))\"},children:\"projects and gardening tips.\"})]})})},glTZqpauz:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1fzdb0c\",\"data-styles-preset\":\"UyW2ieNZz\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2cea0ecc-9836-4375-a80c-26247641252f, rgb(249, 251, 243)))\"},children:\"Stay updated with our latest projects and gardening tips.\"})})},J9PZg7_ft:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1fzdb0c\",\"data-styles-preset\":\"UyW2ieNZz\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-40b101e4-4bd7-49ca-8b91-7207c1239740, rgb(55, 72, 54)))\"},children:\"Stay updated with our latest projects and gardening tips.\"})})},ZtDKfIVfp:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1fzdb0c\",\"data-styles-preset\":\"UyW2ieNZz\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2cea0ecc-9836-4375-a80c-26247641252f, rgb(249, 251, 243)))\"},children:\"Stay updated with our latest projects and gardening tips.\"})})}},baseVariant,gestureVariant)})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1b0pv67\",\"data-framer-name\":\"Newsletter Email Form\",layoutDependency:layoutDependency,layoutId:\"jhWnpmhHP\",style:{backgroundColor:\"rgb(225, 235, 226)\",borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12},variants:{glTZqpauz:{backgroundColor:\"rgba(0, 0, 0, 0)\"},ZtDKfIVfp:{backgroundColor:\"rgba(0, 0, 0, 0)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ey1yp6-container\",layoutDependency:layoutDependency,layoutId:\"kymMUD2XG-container\",children:/*#__PURE__*/_jsx(FormSpark,{borderRadius:8,bottomLeftRadius:8,bottomRightRadius:8,button:{color:\"rgb(255, 255, 255)\",fill:\"var(--token-40b101e4-4bd7-49ca-8b91-7207c1239740, rgb(55, 72, 54))\",fontWeight:600,label:\"Sign Up\"},email:{placeholder:\"Email\",value:\"\"},font:false,fontFamily:\"Inter\",fontSize:16,fontWeight:400,formId:\"\",gap:15,height:\"100%\",id:\"kymMUD2XG\",inputs:{color:\"rgb(0, 0, 0)\",error:\"rgb(238, 68, 68)\",fill:\"var(--token-2cea0ecc-9836-4375-a80c-26247641252f, rgb(249, 251, 243))\",placeholderColor:\"rgba(0, 0, 0, 0.5)\"},isMixedBorderRadius:false,layout:\"horizontal\",layoutId:\"kymMUD2XG\",message:{placeholder:\"Message\",value:\"\"},nameField:{placeholder:\"Name\",value:\"\"},padding:15,paddingBottom:15,paddingLeft:15,paddingPerSide:false,paddingRight:15,paddingTop:15,style:{height:\"100%\",width:\"100%\"},topLeftRadius:8,topRightRadius:8,width:\"100%\",withEmail:true,withMessage:false,withName:false,...addPropertyOverrides({aTHdSfHDG:{button:{color:\"var(--token-2cea0ecc-9836-4375-a80c-26247641252f, rgb(249, 251, 243))\",fill:\"var(--token-40b101e4-4bd7-49ca-8b91-7207c1239740, rgb(55, 72, 54))\",fontWeight:600,label:\"Sign Up\"}},glTZqpauz:{button:{color:\"rgb(255, 255, 255)\",fill:\"var(--token-e1803149-d8de-4456-9922-9330e1218518, rgb(127, 143, 128))\",fontWeight:600,label:\"Sign Up\"},layout:\"vertical\"},J9PZg7_ft:{layout:\"vertical\"},ZtDKfIVfp:{button:{color:\"rgb(255, 255, 255)\",fill:\"var(--token-e1803149-d8de-4456-9922-9330e1218518, rgb(127, 143, 128))\",fontWeight:600,label:\"Sign Up\"}}},baseVariant,gestureVariant)})})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-652uwk\",\"data-framer-name\":\"Menu\",layoutDependency:layoutDependency,layoutId:\"XSf_hNncE\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-zuu1em\",\"data-framer-name\":\"Links\",layoutDependency:layoutDependency,layoutId:\"bJO3RXAD5\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-wdqdm4\",\"data-styles-preset\":\"ntjZxmtmi\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-40b101e4-4bd7-49ca-8b91-7207c1239740, rgb(55, 72, 54)))\"},children:\"LINKS\"})}),className:\"framer-1m96k0x\",\"data-framer-name\":\"LINKS\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"IxcconH_V\",style:{\"--extracted-r6o4lv\":\"var(--token-40b101e4-4bd7-49ca-8b91-7207c1239740, rgb(55, 72, 54))\",\"--framer-paragraph-spacing\":\"0px\"},variants:{aTHdSfHDG:{\"--extracted-r6o4lv\":\"var(--token-2cea0ecc-9836-4375-a80c-26247641252f, rgb(249, 251, 243))\"},glTZqpauz:{\"--extracted-r6o4lv\":\"var(--token-2cea0ecc-9836-4375-a80c-26247641252f, rgb(249, 251, 243))\"},ZtDKfIVfp:{\"--extracted-r6o4lv\":\"var(--token-2cea0ecc-9836-4375-a80c-26247641252f, rgb(249, 251, 243))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({aTHdSfHDG:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-wdqdm4\",\"data-styles-preset\":\"ntjZxmtmi\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2cea0ecc-9836-4375-a80c-26247641252f, rgb(249, 251, 243)))\"},children:\"LINKS\"})})},glTZqpauz:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-wdqdm4\",\"data-styles-preset\":\"ntjZxmtmi\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2cea0ecc-9836-4375-a80c-26247641252f, rgb(249, 251, 243)))\"},children:\"LINKS\"})})},ZtDKfIVfp:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-wdqdm4\",\"data-styles-preset\":\"ntjZxmtmi\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2cea0ecc-9836-4375-a80c-26247641252f, rgb(249, 251, 243)))\"},children:\"LINKS\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-12ipr0x\",\"data-framer-name\":\"Items\",layoutDependency:layoutDependency,layoutId:\"dc5LOvymX\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1fzdb0c\",\"data-styles-preset\":\"UyW2ieNZz\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-40b101e4-4bd7-49ca-8b91-7207c1239740, rgb(55, 72, 54)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"augiA20Il\"},nodeId:\"S9svG7iur\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1o6drd7\",\"data-styles-preset\":\"EH9cKwiPn\",children:\"HOME\"})})})}),className:\"framer-2f2mof\",\"data-framer-name\":\"BLOG\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"S9svG7iur\",style:{\"--extracted-r6o4lv\":\"var(--token-40b101e4-4bd7-49ca-8b91-7207c1239740, rgb(55, 72, 54))\",\"--framer-paragraph-spacing\":\"0px\"},variants:{aTHdSfHDG:{\"--extracted-r6o4lv\":\"var(--token-2cea0ecc-9836-4375-a80c-26247641252f, rgb(249, 251, 243))\"},ZtDKfIVfp:{\"--extracted-r6o4lv\":\"var(--token-2cea0ecc-9836-4375-a80c-26247641252f, rgb(249, 251, 243))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({aTHdSfHDG:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1fzdb0c\",\"data-styles-preset\":\"UyW2ieNZz\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2cea0ecc-9836-4375-a80c-26247641252f, rgb(249, 251, 243)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"augiA20Il\"},nodeId:\"S9svG7iur\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-18l3c65\",\"data-styles-preset\":\"iKsZ9Lcbf\",children:\"HOME\"})})})})},glTZqpauz:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1fzdb0c\",\"data-styles-preset\":\"UyW2ieNZz\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-40b101e4-4bd7-49ca-8b91-7207c1239740, rgb(55, 72, 54)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"augiA20Il\"},nodeId:\"S9svG7iur\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-18l3c65\",\"data-styles-preset\":\"iKsZ9Lcbf\",children:\"HOME\"})})})})},ZtDKfIVfp:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1fzdb0c\",\"data-styles-preset\":\"UyW2ieNZz\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2cea0ecc-9836-4375-a80c-26247641252f, rgb(249, 251, 243)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"augiA20Il\"},nodeId:\"S9svG7iur\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-18l3c65\",\"data-styles-preset\":\"iKsZ9Lcbf\",children:\"HOME\"})})})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1fzdb0c\",\"data-styles-preset\":\"UyW2ieNZz\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-40b101e4-4bd7-49ca-8b91-7207c1239740, rgb(55, 72, 54)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"ZvpvkoXuh\"},nodeId:\"nM0NpcBSS\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1o6drd7\",\"data-styles-preset\":\"EH9cKwiPn\",children:\"ABOUT US\"})})})}),className:\"framer-4mj9b3\",\"data-framer-name\":\"ABOUT US\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"nM0NpcBSS\",style:{\"--extracted-r6o4lv\":\"var(--token-40b101e4-4bd7-49ca-8b91-7207c1239740, rgb(55, 72, 54))\",\"--framer-paragraph-spacing\":\"0px\"},variants:{aTHdSfHDG:{\"--extracted-r6o4lv\":\"var(--token-2cea0ecc-9836-4375-a80c-26247641252f, rgb(249, 251, 243))\"},ZtDKfIVfp:{\"--extracted-r6o4lv\":\"var(--token-2cea0ecc-9836-4375-a80c-26247641252f, rgb(249, 251, 243))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({aTHdSfHDG:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1fzdb0c\",\"data-styles-preset\":\"UyW2ieNZz\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2cea0ecc-9836-4375-a80c-26247641252f, rgb(249, 251, 243)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"ZvpvkoXuh\"},nodeId:\"nM0NpcBSS\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-18l3c65\",\"data-styles-preset\":\"iKsZ9Lcbf\",children:\"ABOUT US\"})})})})},glTZqpauz:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1fzdb0c\",\"data-styles-preset\":\"UyW2ieNZz\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-40b101e4-4bd7-49ca-8b91-7207c1239740, rgb(55, 72, 54)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"ZvpvkoXuh\"},nodeId:\"nM0NpcBSS\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-18l3c65\",\"data-styles-preset\":\"iKsZ9Lcbf\",children:\"ABOUT US\"})})})})},ZtDKfIVfp:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1fzdb0c\",\"data-styles-preset\":\"UyW2ieNZz\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2cea0ecc-9836-4375-a80c-26247641252f, rgb(249, 251, 243)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"ZvpvkoXuh\"},nodeId:\"nM0NpcBSS\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-18l3c65\",\"data-styles-preset\":\"iKsZ9Lcbf\",children:\"ABOUT US\"})})})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1fzdb0c\",\"data-styles-preset\":\"UyW2ieNZz\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-40b101e4-4bd7-49ca-8b91-7207c1239740, rgb(55, 72, 54)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"q7NnAXljr\"},nodeId:\"rgbfimdwD\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1o6drd7\",\"data-styles-preset\":\"EH9cKwiPn\",children:\"SERVICES\"})})})}),className:\"framer-zebife\",\"data-framer-name\":\"STORIES\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"rgbfimdwD\",style:{\"--extracted-r6o4lv\":\"var(--token-40b101e4-4bd7-49ca-8b91-7207c1239740, rgb(55, 72, 54))\",\"--framer-paragraph-spacing\":\"0px\"},variants:{aTHdSfHDG:{\"--extracted-r6o4lv\":\"var(--token-2cea0ecc-9836-4375-a80c-26247641252f, rgb(249, 251, 243))\"},ZtDKfIVfp:{\"--extracted-r6o4lv\":\"var(--token-2cea0ecc-9836-4375-a80c-26247641252f, rgb(249, 251, 243))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({aTHdSfHDG:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1fzdb0c\",\"data-styles-preset\":\"UyW2ieNZz\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2cea0ecc-9836-4375-a80c-26247641252f, rgb(249, 251, 243)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"q7NnAXljr\"},nodeId:\"rgbfimdwD\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-18l3c65\",\"data-styles-preset\":\"iKsZ9Lcbf\",children:\"SERVICES\"})})})})},glTZqpauz:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1fzdb0c\",\"data-styles-preset\":\"UyW2ieNZz\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-40b101e4-4bd7-49ca-8b91-7207c1239740, rgb(55, 72, 54)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"q7NnAXljr\"},nodeId:\"rgbfimdwD\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-18l3c65\",\"data-styles-preset\":\"iKsZ9Lcbf\",children:\"SERVICES\"})})})})},ZtDKfIVfp:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1fzdb0c\",\"data-styles-preset\":\"UyW2ieNZz\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2cea0ecc-9836-4375-a80c-26247641252f, rgb(249, 251, 243)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"q7NnAXljr\"},nodeId:\"rgbfimdwD\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-18l3c65\",\"data-styles-preset\":\"iKsZ9Lcbf\",children:\"SERVICES\"})})})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1fzdb0c\",\"data-styles-preset\":\"UyW2ieNZz\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-40b101e4-4bd7-49ca-8b91-7207c1239740, rgb(55, 72, 54)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"zr9mLjRGW\"},nodeId:\"tLUx7xKJI\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1o6drd7\",\"data-styles-preset\":\"EH9cKwiPn\",children:\"PROJECTS\"})})})}),className:\"framer-1pqqcei\",\"data-framer-name\":\"PROJECTS\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"tLUx7xKJI\",style:{\"--extracted-r6o4lv\":\"var(--token-40b101e4-4bd7-49ca-8b91-7207c1239740, rgb(55, 72, 54))\",\"--framer-paragraph-spacing\":\"0px\"},variants:{aTHdSfHDG:{\"--extracted-r6o4lv\":\"var(--token-2cea0ecc-9836-4375-a80c-26247641252f, rgb(249, 251, 243))\"},ZtDKfIVfp:{\"--extracted-r6o4lv\":\"var(--token-2cea0ecc-9836-4375-a80c-26247641252f, rgb(249, 251, 243))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({aTHdSfHDG:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1fzdb0c\",\"data-styles-preset\":\"UyW2ieNZz\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2cea0ecc-9836-4375-a80c-26247641252f, rgb(249, 251, 243)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"zr9mLjRGW\"},nodeId:\"tLUx7xKJI\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-18l3c65\",\"data-styles-preset\":\"iKsZ9Lcbf\",children:\"PROJECTS\"})})})})},glTZqpauz:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1fzdb0c\",\"data-styles-preset\":\"UyW2ieNZz\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-40b101e4-4bd7-49ca-8b91-7207c1239740, rgb(55, 72, 54)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"zr9mLjRGW\"},nodeId:\"tLUx7xKJI\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-18l3c65\",\"data-styles-preset\":\"iKsZ9Lcbf\",children:\"PROJECTS\"})})})})},ZtDKfIVfp:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1fzdb0c\",\"data-styles-preset\":\"UyW2ieNZz\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2cea0ecc-9836-4375-a80c-26247641252f, rgb(249, 251, 243)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"zr9mLjRGW\"},nodeId:\"tLUx7xKJI\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-18l3c65\",\"data-styles-preset\":\"iKsZ9Lcbf\",children:\"PROJECTS\"})})})})}},baseVariant,gestureVariant)})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-c16uo0\",\"data-framer-name\":\"Services\",layoutDependency:layoutDependency,layoutId:\"zL5arZ_Kd\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-wdqdm4\",\"data-styles-preset\":\"ntjZxmtmi\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-40b101e4-4bd7-49ca-8b91-7207c1239740, rgb(55, 72, 54)))\"},children:\"SERVICES\"})}),className:\"framer-tyehc1\",\"data-framer-name\":\"SERVICES\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"nmUKRolNP\",style:{\"--extracted-r6o4lv\":\"var(--token-40b101e4-4bd7-49ca-8b91-7207c1239740, rgb(55, 72, 54))\",\"--framer-paragraph-spacing\":\"0px\"},variants:{aTHdSfHDG:{\"--extracted-r6o4lv\":\"var(--token-2cea0ecc-9836-4375-a80c-26247641252f, rgb(249, 251, 243))\"},glTZqpauz:{\"--extracted-r6o4lv\":\"var(--token-2cea0ecc-9836-4375-a80c-26247641252f, rgb(249, 251, 243))\"},ZtDKfIVfp:{\"--extracted-r6o4lv\":\"var(--token-2cea0ecc-9836-4375-a80c-26247641252f, rgb(249, 251, 243))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({aTHdSfHDG:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-wdqdm4\",\"data-styles-preset\":\"ntjZxmtmi\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2cea0ecc-9836-4375-a80c-26247641252f, rgb(249, 251, 243)))\"},children:\"SERVICES\"})})},glTZqpauz:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-wdqdm4\",\"data-styles-preset\":\"ntjZxmtmi\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2cea0ecc-9836-4375-a80c-26247641252f, rgb(249, 251, 243)))\"},children:\"SERVICES\"})})},ZtDKfIVfp:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-wdqdm4\",\"data-styles-preset\":\"ntjZxmtmi\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2cea0ecc-9836-4375-a80c-26247641252f, rgb(249, 251, 243)))\"},children:\"SERVICES\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-oz1agp\",\"data-framer-name\":\"Items\",layoutDependency:layoutDependency,layoutId:\"xky1LuTQ_\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1fzdb0c\",\"data-styles-preset\":\"UyW2ieNZz\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-40b101e4-4bd7-49ca-8b91-7207c1239740, rgb(55, 72, 54)))\"},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{n1d3aNaGb:\"hardscaping\"},unresolvedPathSlugs:{n1d3aNaGb:{collectionId:\"i6pVVGRUM\",collectionItemId:\"E7q2vqRPS\"}},webPageId:\"f2Ua1CqED\"},nodeId:\"yK9EEV6tr\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1o6drd7\",\"data-styles-preset\":\"EH9cKwiPn\",children:\"HARDSCAPING\"})})})}),className:\"framer-158a2uv\",\"data-framer-name\":\"HOME GARDEN\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"yK9EEV6tr\",style:{\"--extracted-r6o4lv\":\"var(--token-40b101e4-4bd7-49ca-8b91-7207c1239740, rgb(55, 72, 54))\",\"--framer-paragraph-spacing\":\"0px\"},variants:{aTHdSfHDG:{\"--extracted-r6o4lv\":\"var(--token-2cea0ecc-9836-4375-a80c-26247641252f, rgb(249, 251, 243))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({aTHdSfHDG:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1fzdb0c\",\"data-styles-preset\":\"UyW2ieNZz\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2cea0ecc-9836-4375-a80c-26247641252f, rgb(249, 251, 243)))\"},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{n1d3aNaGb:\"hardscaping\"},unresolvedPathSlugs:{n1d3aNaGb:{collectionId:\"i6pVVGRUM\",collectionItemId:\"E7q2vqRPS\"}},webPageId:\"f2Ua1CqED\"},nodeId:\"yK9EEV6tr\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-18l3c65\",\"data-styles-preset\":\"iKsZ9Lcbf\",children:\"HARDSCAPING\"})})})})},glTZqpauz:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1fzdb0c\",\"data-styles-preset\":\"UyW2ieNZz\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-40b101e4-4bd7-49ca-8b91-7207c1239740, rgb(55, 72, 54)))\"},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{n1d3aNaGb:\"hardscaping\"},unresolvedPathSlugs:{n1d3aNaGb:{collectionId:\"i6pVVGRUM\",collectionItemId:\"E7q2vqRPS\"}},webPageId:\"f2Ua1CqED\"},nodeId:\"yK9EEV6tr\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-18l3c65\",\"data-styles-preset\":\"iKsZ9Lcbf\",children:\"HARDSCAPING\"})})})})},ZtDKfIVfp:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1fzdb0c\",\"data-styles-preset\":\"UyW2ieNZz\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-40b101e4-4bd7-49ca-8b91-7207c1239740, rgb(55, 72, 54)))\"},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{n1d3aNaGb:\"hardscaping\"},unresolvedPathSlugs:{n1d3aNaGb:{collectionId:\"i6pVVGRUM\",collectionItemId:\"E7q2vqRPS\"}},webPageId:\"f2Ua1CqED\"},nodeId:\"yK9EEV6tr\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-18l3c65\",\"data-styles-preset\":\"iKsZ9Lcbf\",children:\"HARDSCAPING\"})})})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1fzdb0c\",\"data-styles-preset\":\"UyW2ieNZz\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-40b101e4-4bd7-49ca-8b91-7207c1239740, rgb(55, 72, 54)))\"},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{n1d3aNaGb:\"plant-selection\"},unresolvedPathSlugs:{n1d3aNaGb:{collectionId:\"i6pVVGRUM\",collectionItemId:\"BuBMOrFsk\"}},webPageId:\"f2Ua1CqED\"},nodeId:\"Y1erdObJX\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1o6drd7\",\"data-styles-preset\":\"EH9cKwiPn\",children:\"PLANT SELECTION\"})})})}),className:\"framer-1el894s\",\"data-framer-name\":\"PLANT SELECTION\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Y1erdObJX\",style:{\"--extracted-r6o4lv\":\"var(--token-40b101e4-4bd7-49ca-8b91-7207c1239740, rgb(55, 72, 54))\",\"--framer-paragraph-spacing\":\"0px\"},variants:{aTHdSfHDG:{\"--extracted-r6o4lv\":\"var(--token-2cea0ecc-9836-4375-a80c-26247641252f, rgb(249, 251, 243))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({aTHdSfHDG:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1fzdb0c\",\"data-styles-preset\":\"UyW2ieNZz\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2cea0ecc-9836-4375-a80c-26247641252f, rgb(249, 251, 243)))\"},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{n1d3aNaGb:\"plant-selection\"},unresolvedPathSlugs:{n1d3aNaGb:{collectionId:\"i6pVVGRUM\",collectionItemId:\"BuBMOrFsk\"}},webPageId:\"f2Ua1CqED\"},nodeId:\"Y1erdObJX\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-18l3c65\",\"data-styles-preset\":\"iKsZ9Lcbf\",children:\"PLANT SELECTION\"})})})})},glTZqpauz:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1fzdb0c\",\"data-styles-preset\":\"UyW2ieNZz\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-40b101e4-4bd7-49ca-8b91-7207c1239740, rgb(55, 72, 54)))\"},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{n1d3aNaGb:\"plant-selection\"},unresolvedPathSlugs:{n1d3aNaGb:{collectionId:\"i6pVVGRUM\",collectionItemId:\"BuBMOrFsk\"}},webPageId:\"f2Ua1CqED\"},nodeId:\"Y1erdObJX\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-18l3c65\",\"data-styles-preset\":\"iKsZ9Lcbf\",children:\"PLANT SELECTION\"})})})})},ZtDKfIVfp:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1fzdb0c\",\"data-styles-preset\":\"UyW2ieNZz\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-40b101e4-4bd7-49ca-8b91-7207c1239740, rgb(55, 72, 54)))\"},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{n1d3aNaGb:\"plant-selection\"},unresolvedPathSlugs:{n1d3aNaGb:{collectionId:\"i6pVVGRUM\",collectionItemId:\"BuBMOrFsk\"}},webPageId:\"f2Ua1CqED\"},nodeId:\"Y1erdObJX\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-18l3c65\",\"data-styles-preset\":\"iKsZ9Lcbf\",children:\"PLANT SELECTION\"})})})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1fzdb0c\",\"data-styles-preset\":\"UyW2ieNZz\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-40b101e4-4bd7-49ca-8b91-7207c1239740, rgb(55, 72, 54)))\"},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{n1d3aNaGb:\"garden-design\"},unresolvedPathSlugs:{n1d3aNaGb:{collectionId:\"i6pVVGRUM\",collectionItemId:\"M2Ao_1FFi\"}},webPageId:\"f2Ua1CqED\"},nodeId:\"QyehLBvzT\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1o6drd7\",\"data-styles-preset\":\"EH9cKwiPn\",children:\"GARDEN DESIGN\"})})})}),className:\"framer-qblxm\",\"data-framer-name\":\"HARDSCAPING\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"QyehLBvzT\",style:{\"--extracted-r6o4lv\":\"var(--token-40b101e4-4bd7-49ca-8b91-7207c1239740, rgb(55, 72, 54))\",\"--framer-paragraph-spacing\":\"0px\"},variants:{aTHdSfHDG:{\"--extracted-r6o4lv\":\"var(--token-2cea0ecc-9836-4375-a80c-26247641252f, rgb(249, 251, 243))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({aTHdSfHDG:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1fzdb0c\",\"data-styles-preset\":\"UyW2ieNZz\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2cea0ecc-9836-4375-a80c-26247641252f, rgb(249, 251, 243)))\"},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{n1d3aNaGb:\"garden-design\"},unresolvedPathSlugs:{n1d3aNaGb:{collectionId:\"i6pVVGRUM\",collectionItemId:\"M2Ao_1FFi\"}},webPageId:\"f2Ua1CqED\"},nodeId:\"QyehLBvzT\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-18l3c65\",\"data-styles-preset\":\"iKsZ9Lcbf\",children:\"GARDEN DESIGN\"})})})})},glTZqpauz:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1fzdb0c\",\"data-styles-preset\":\"UyW2ieNZz\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-40b101e4-4bd7-49ca-8b91-7207c1239740, rgb(55, 72, 54)))\"},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{n1d3aNaGb:\"garden-design\"},unresolvedPathSlugs:{n1d3aNaGb:{collectionId:\"i6pVVGRUM\",collectionItemId:\"M2Ao_1FFi\"}},webPageId:\"f2Ua1CqED\"},nodeId:\"QyehLBvzT\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-18l3c65\",\"data-styles-preset\":\"iKsZ9Lcbf\",children:\"GARDEN DESIGN\"})})})})},ZtDKfIVfp:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1fzdb0c\",\"data-styles-preset\":\"UyW2ieNZz\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-40b101e4-4bd7-49ca-8b91-7207c1239740, rgb(55, 72, 54)))\"},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{n1d3aNaGb:\"garden-design\"},unresolvedPathSlugs:{n1d3aNaGb:{collectionId:\"i6pVVGRUM\",collectionItemId:\"M2Ao_1FFi\"}},webPageId:\"f2Ua1CqED\"},nodeId:\"QyehLBvzT\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-18l3c65\",\"data-styles-preset\":\"iKsZ9Lcbf\",children:\"GARDEN DESIGN\"})})})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1fzdb0c\",\"data-styles-preset\":\"UyW2ieNZz\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-40b101e4-4bd7-49ca-8b91-7207c1239740, rgb(55, 72, 54)))\"},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{n1d3aNaGb:\"garden-consultation\"},unresolvedPathSlugs:{n1d3aNaGb:{collectionId:\"i6pVVGRUM\",collectionItemId:\"jjQ4CigY1\"}},webPageId:\"f2Ua1CqED\"},nodeId:\"oAw580txl\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1o6drd7\",\"data-styles-preset\":\"EH9cKwiPn\",children:\"GARDEN CONSULTANT\"})})})}),className:\"framer-3sp9ii\",\"data-framer-name\":\"PUBLIC GARDEN\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"oAw580txl\",style:{\"--extracted-r6o4lv\":\"var(--token-40b101e4-4bd7-49ca-8b91-7207c1239740, rgb(55, 72, 54))\",\"--framer-paragraph-spacing\":\"0px\"},variants:{aTHdSfHDG:{\"--extracted-r6o4lv\":\"var(--token-2cea0ecc-9836-4375-a80c-26247641252f, rgb(249, 251, 243))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({aTHdSfHDG:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1fzdb0c\",\"data-styles-preset\":\"UyW2ieNZz\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2cea0ecc-9836-4375-a80c-26247641252f, rgb(249, 251, 243)))\"},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{n1d3aNaGb:\"garden-consultation\"},unresolvedPathSlugs:{n1d3aNaGb:{collectionId:\"i6pVVGRUM\",collectionItemId:\"jjQ4CigY1\"}},webPageId:\"f2Ua1CqED\"},nodeId:\"oAw580txl\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-18l3c65\",\"data-styles-preset\":\"iKsZ9Lcbf\",children:\"GARDEN CONSULTANT\"})})})})},glTZqpauz:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1fzdb0c\",\"data-styles-preset\":\"UyW2ieNZz\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-40b101e4-4bd7-49ca-8b91-7207c1239740, rgb(55, 72, 54)))\"},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{n1d3aNaGb:\"garden-consultation\"},unresolvedPathSlugs:{n1d3aNaGb:{collectionId:\"i6pVVGRUM\",collectionItemId:\"jjQ4CigY1\"}},webPageId:\"f2Ua1CqED\"},nodeId:\"oAw580txl\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-18l3c65\",\"data-styles-preset\":\"iKsZ9Lcbf\",children:\"GARDEN CONSULTANT\"})})})})},ZtDKfIVfp:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1fzdb0c\",\"data-styles-preset\":\"UyW2ieNZz\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-40b101e4-4bd7-49ca-8b91-7207c1239740, rgb(55, 72, 54)))\"},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{n1d3aNaGb:\"garden-consultation\"},unresolvedPathSlugs:{n1d3aNaGb:{collectionId:\"i6pVVGRUM\",collectionItemId:\"jjQ4CigY1\"}},webPageId:\"f2Ua1CqED\"},nodeId:\"oAw580txl\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-18l3c65\",\"data-styles-preset\":\"iKsZ9Lcbf\",children:\"GARDEN CONSULTANT\"})})})})}},baseVariant,gestureVariant)})]})]})]})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-ktzpds\",\"data-border\":true,\"data-framer-name\":\"Copyright\",layoutDependency:layoutDependency,layoutId:\"c943qoDjJ\",style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgb(55, 72, 54)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\"},variants:{aTHdSfHDG:{\"--border-color\":\"var(--token-2cea0ecc-9836-4375-a80c-26247641252f, rgb(249, 251, 243))\"},glTZqpauz:{\"--border-color\":\"var(--token-2cea0ecc-9836-4375-a80c-26247641252f, rgb(249, 251, 243))\"},ZtDKfIVfp:{\"--border-color\":\"var(--token-2cea0ecc-9836-4375-a80c-26247641252f, rgb(249, 251, 243))\"}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1fzdb0c\",\"data-styles-preset\":\"UyW2ieNZz\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-40b101e4-4bd7-49ca-8b91-7207c1239740, rgb(55, 72, 54)))\"},children:\"COURTESY \\xa9 2023. ALL RIGHTS RESERVED.\"})}),className:\"framer-ke8j1y\",\"data-framer-name\":\"COURTESY \\xa9 2023. ALL RIGHTS RESERVED.\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"krlbuJ4oS\",style:{\"--extracted-r6o4lv\":\"var(--token-40b101e4-4bd7-49ca-8b91-7207c1239740, rgb(55, 72, 54))\",\"--framer-paragraph-spacing\":\"0px\",opacity:.75},variants:{aTHdSfHDG:{\"--extracted-r6o4lv\":\"var(--token-2cea0ecc-9836-4375-a80c-26247641252f, rgb(249, 251, 243))\"},glTZqpauz:{\"--extracted-r6o4lv\":\"var(--token-2cea0ecc-9836-4375-a80c-26247641252f, rgb(249, 251, 243))\"},ZtDKfIVfp:{\"--extracted-r6o4lv\":\"var(--token-2cea0ecc-9836-4375-a80c-26247641252f, rgb(249, 251, 243))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({aTHdSfHDG:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1fzdb0c\",\"data-styles-preset\":\"UyW2ieNZz\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2cea0ecc-9836-4375-a80c-26247641252f, rgb(249, 251, 243)))\"},children:\"COURTESY \\xa9 2023. ALL RIGHTS RESERVED.\"})})},glTZqpauz:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1fzdb0c\",\"data-styles-preset\":\"UyW2ieNZz\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2cea0ecc-9836-4375-a80c-26247641252f, rgb(249, 251, 243)))\"},children:\"COURTESY \\xa9 2023. ALL RIGHTS RESERVED.\"})})},ZtDKfIVfp:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1fzdb0c\",\"data-styles-preset\":\"UyW2ieNZz\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2cea0ecc-9836-4375-a80c-26247641252f, rgb(249, 251, 243)))\"},children:\"COURTESY \\xa9 2023. ALL RIGHTS RESERVED.\"})})}},baseVariant,gestureVariant)})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-NwdCY.framer-1oor8v9, .framer-NwdCY .framer-1oor8v9 { display: block; }\",\".framer-NwdCY.framer-1d2yvcd { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1440px; }\",\".framer-NwdCY .framer-wbkkri { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: flex-start; max-width: 1920px; overflow: visible; padding: 0px 80px 24px 80px; position: relative; width: 1px; }\",\".framer-NwdCY .framer-13t9vwm { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-NwdCY .framer-sj7m8z { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 722px; }\",\".framer-NwdCY .framer-1n27fmc { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-NwdCY .framer-h4apw7 { flex: none; height: 40px; position: relative; width: 195px; }\",\".framer-NwdCY .framer-1randol { aspect-ratio: 5.078947368421052 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 38px); position: relative; width: 193px; }\",\".framer-NwdCY .framer-1j20j0j { 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 0px 0px 32px; position: relative; width: min-content; }\",\".framer-NwdCY .framer-tyi8gn, .framer-NwdCY .framer-1m96k0x, .framer-NwdCY .framer-2f2mof, .framer-NwdCY .framer-4mj9b3, .framer-NwdCY .framer-zebife, .framer-NwdCY .framer-1pqqcei, .framer-NwdCY .framer-tyehc1, .framer-NwdCY .framer-158a2uv, .framer-NwdCY .framer-1el894s, .framer-NwdCY .framer-qblxm, .framer-NwdCY .framer-3sp9ii { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-NwdCY .framer-1b0pv67 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 24px; position: relative; width: 722px; }\",\".framer-NwdCY .framer-1ey1yp6-container { flex: 1 0 0px; height: 55px; position: relative; width: 1px; }\",\".framer-NwdCY .framer-652uwk { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 72px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-NwdCY .framer-zuu1em, .framer-NwdCY .framer-c16uo0 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-NwdCY .framer-12ipr0x, .framer-NwdCY .framer-oz1agp { 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: min-content; }\",\".framer-NwdCY .framer-ktzpds { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 656px; height: min-content; justify-content: center; overflow: visible; padding: 16px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-NwdCY .framer-ke8j1y { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-NwdCY.framer-1d2yvcd, .framer-NwdCY .framer-wbkkri, .framer-NwdCY .framer-sj7m8z, .framer-NwdCY .framer-1n27fmc, .framer-NwdCY .framer-1j20j0j, .framer-NwdCY .framer-1b0pv67, .framer-NwdCY .framer-652uwk, .framer-NwdCY .framer-zuu1em, .framer-NwdCY .framer-12ipr0x, .framer-NwdCY .framer-c16uo0, .framer-NwdCY .framer-oz1agp, .framer-NwdCY .framer-ktzpds { gap: 0px; } .framer-NwdCY.framer-1d2yvcd > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-NwdCY.framer-1d2yvcd > :first-child, .framer-NwdCY .framer-1n27fmc > :first-child, .framer-NwdCY .framer-1j20j0j > :first-child, .framer-NwdCY .framer-1b0pv67 > :first-child, .framer-NwdCY .framer-652uwk > :first-child, .framer-NwdCY .framer-ktzpds > :first-child { margin-left: 0px; } .framer-NwdCY.framer-1d2yvcd > :last-child, .framer-NwdCY .framer-1n27fmc > :last-child, .framer-NwdCY .framer-1j20j0j > :last-child, .framer-NwdCY .framer-1b0pv67 > :last-child, .framer-NwdCY .framer-652uwk > :last-child, .framer-NwdCY .framer-ktzpds > :last-child { margin-right: 0px; } .framer-NwdCY .framer-wbkkri > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } .framer-NwdCY .framer-wbkkri > :first-child, .framer-NwdCY .framer-sj7m8z > :first-child, .framer-NwdCY .framer-zuu1em > :first-child, .framer-NwdCY .framer-12ipr0x > :first-child, .framer-NwdCY .framer-c16uo0 > :first-child, .framer-NwdCY .framer-oz1agp > :first-child { margin-top: 0px; } .framer-NwdCY .framer-wbkkri > :last-child, .framer-NwdCY .framer-sj7m8z > :last-child, .framer-NwdCY .framer-zuu1em > :last-child, .framer-NwdCY .framer-12ipr0x > :last-child, .framer-NwdCY .framer-c16uo0 > :last-child, .framer-NwdCY .framer-oz1agp > :last-child { margin-bottom: 0px; } .framer-NwdCY .framer-sj7m8z > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-NwdCY .framer-1n27fmc > * { margin: 0px; margin-left: calc(32px / 2); margin-right: calc(32px / 2); } .framer-NwdCY .framer-1j20j0j > *, .framer-NwdCY .framer-1b0pv67 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-NwdCY .framer-652uwk > * { margin: 0px; margin-left: calc(72px / 2); margin-right: calc(72px / 2); } .framer-NwdCY .framer-zuu1em > *, .framer-NwdCY .framer-c16uo0 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-NwdCY .framer-12ipr0x > *, .framer-NwdCY .framer-oz1agp > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-NwdCY .framer-ktzpds > * { margin: 0px; margin-left: calc(656px / 2); margin-right: calc(656px / 2); } }\",\".framer-NwdCY.framer-v-1be5h9 .framer-wbkkri { padding: 100px 80px 24px 80px; }\",\".framer-NwdCY.framer-v-1be5h9 .framer-2f2mof { order: 0; }\",\".framer-NwdCY.framer-v-1be5h9 .framer-4mj9b3 { order: 1; }\",\".framer-NwdCY.framer-v-1be5h9 .framer-zebife { order: 2; }\",\".framer-NwdCY.framer-v-1be5h9 .framer-1pqqcei { order: 3; }\",\".framer-NwdCY.framer-v-188znmv.framer-1d2yvcd { width: 810px; }\",\".framer-NwdCY.framer-v-188znmv .framer-wbkkri { padding: 0px 50px 24px 50px; }\",\".framer-NwdCY.framer-v-188znmv .framer-13t9vwm, .framer-NwdCY.framer-v-1p8lazy .framer-13t9vwm { flex-direction: column; gap: 85px; justify-content: flex-start; }\",\".framer-NwdCY.framer-v-188znmv .framer-sj7m8z, .framer-NwdCY.framer-v-188znmv .framer-1b0pv67, .framer-NwdCY.framer-v-h9op42 .framer-sj7m8z, .framer-NwdCY.framer-v-h9op42 .framer-1b0pv67, .framer-NwdCY.framer-v-1p8lazy .framer-sj7m8z, .framer-NwdCY.framer-v-1evl0mo .framer-sj7m8z { width: 100%; }\",\".framer-NwdCY.framer-v-188znmv .framer-1n27fmc, .framer-NwdCY.framer-v-188znmv .framer-652uwk, .framer-NwdCY.framer-v-1p8lazy .framer-1n27fmc, .framer-NwdCY.framer-v-1p8lazy .framer-652uwk { gap: unset; justify-content: space-between; width: 100%; }\",\".framer-NwdCY.framer-v-188znmv .framer-tyi8gn, .framer-NwdCY.framer-v-1p8lazy .framer-tyi8gn { white-space: pre-wrap; width: 451px; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-NwdCY.framer-v-188znmv .framer-13t9vwm, .framer-NwdCY.framer-v-188znmv .framer-1n27fmc, .framer-NwdCY.framer-v-188znmv .framer-652uwk { gap: 0px; } .framer-NwdCY.framer-v-188znmv .framer-13t9vwm > * { margin: 0px; margin-bottom: calc(85px / 2); margin-top: calc(85px / 2); } .framer-NwdCY.framer-v-188znmv .framer-13t9vwm > :first-child { margin-top: 0px; } .framer-NwdCY.framer-v-188znmv .framer-13t9vwm > :last-child { margin-bottom: 0px; } .framer-NwdCY.framer-v-188znmv .framer-1n27fmc > *, .framer-NwdCY.framer-v-188znmv .framer-1n27fmc > :first-child, .framer-NwdCY.framer-v-188znmv .framer-1n27fmc > :last-child, .framer-NwdCY.framer-v-188znmv .framer-652uwk > *, .framer-NwdCY.framer-v-188znmv .framer-652uwk > :first-child, .framer-NwdCY.framer-v-188znmv .framer-652uwk > :last-child { margin: 0px; } }\",\".framer-NwdCY.framer-v-h9op42.framer-1d2yvcd { width: 390px; }\",\".framer-NwdCY.framer-v-h9op42 .framer-wbkkri { padding: 0px 20px 24px 20px; }\",\".framer-NwdCY.framer-v-h9op42 .framer-13t9vwm, .framer-NwdCY.framer-v-1evl0mo .framer-13t9vwm { flex-direction: column; gap: 40px; justify-content: flex-start; }\",\".framer-NwdCY.framer-v-h9op42 .framer-1n27fmc, .framer-NwdCY.framer-v-1evl0mo .framer-1n27fmc { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 40px; width: 100%; }\",\".framer-NwdCY.framer-v-h9op42 .framer-1j20j0j, .framer-NwdCY.framer-v-1p8lazy .framer-1b0pv67, .framer-NwdCY.framer-v-1evl0mo .framer-1j20j0j, .framer-NwdCY.framer-v-1evl0mo .framer-1b0pv67 { padding: 0px; width: 100%; }\",\".framer-NwdCY.framer-v-h9op42 .framer-tyi8gn, .framer-NwdCY.framer-v-1evl0mo .framer-tyi8gn { flex: 1 0 0px; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-NwdCY.framer-v-h9op42 .framer-1ey1yp6-container, .framer-NwdCY.framer-v-1evl0mo .framer-1ey1yp6-container { height: 121px; }\",\".framer-NwdCY.framer-v-h9op42 .framer-652uwk, .framer-NwdCY.framer-v-1evl0mo .framer-652uwk { flex-direction: column; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-NwdCY.framer-v-h9op42 .framer-13t9vwm, .framer-NwdCY.framer-v-h9op42 .framer-1n27fmc, .framer-NwdCY.framer-v-h9op42 .framer-652uwk { gap: 0px; } .framer-NwdCY.framer-v-h9op42 .framer-13t9vwm > *, .framer-NwdCY.framer-v-h9op42 .framer-1n27fmc > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-NwdCY.framer-v-h9op42 .framer-13t9vwm > :first-child, .framer-NwdCY.framer-v-h9op42 .framer-1n27fmc > :first-child, .framer-NwdCY.framer-v-h9op42 .framer-652uwk > :first-child { margin-top: 0px; } .framer-NwdCY.framer-v-h9op42 .framer-13t9vwm > :last-child, .framer-NwdCY.framer-v-h9op42 .framer-1n27fmc > :last-child, .framer-NwdCY.framer-v-h9op42 .framer-652uwk > :last-child { margin-bottom: 0px; } .framer-NwdCY.framer-v-h9op42 .framer-652uwk > * { margin: 0px; margin-bottom: calc(72px / 2); margin-top: calc(72px / 2); } }\",\".framer-NwdCY.framer-v-1p8lazy.framer-1d2yvcd { padding: 80px 0px 0px 0px; width: 810px; }\",\".framer-NwdCY.framer-v-1p8lazy .framer-wbkkri { padding: 0px 50px 20px 50px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-NwdCY.framer-v-1p8lazy .framer-13t9vwm, .framer-NwdCY.framer-v-1p8lazy .framer-1n27fmc, .framer-NwdCY.framer-v-1p8lazy .framer-652uwk { gap: 0px; } .framer-NwdCY.framer-v-1p8lazy .framer-13t9vwm > * { margin: 0px; margin-bottom: calc(85px / 2); margin-top: calc(85px / 2); } .framer-NwdCY.framer-v-1p8lazy .framer-13t9vwm > :first-child { margin-top: 0px; } .framer-NwdCY.framer-v-1p8lazy .framer-13t9vwm > :last-child { margin-bottom: 0px; } .framer-NwdCY.framer-v-1p8lazy .framer-1n27fmc > *, .framer-NwdCY.framer-v-1p8lazy .framer-1n27fmc > :first-child, .framer-NwdCY.framer-v-1p8lazy .framer-1n27fmc > :last-child, .framer-NwdCY.framer-v-1p8lazy .framer-652uwk > *, .framer-NwdCY.framer-v-1p8lazy .framer-652uwk > :first-child, .framer-NwdCY.framer-v-1p8lazy .framer-652uwk > :last-child { margin: 0px; } }\",\".framer-NwdCY.framer-v-1evl0mo.framer-1d2yvcd { padding: 80px 0px 0px 0px; width: 390px; }\",\".framer-NwdCY.framer-v-1evl0mo .framer-wbkkri { padding: 0px 20px 20px 20px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-NwdCY.framer-v-1evl0mo .framer-13t9vwm, .framer-NwdCY.framer-v-1evl0mo .framer-1n27fmc, .framer-NwdCY.framer-v-1evl0mo .framer-652uwk { gap: 0px; } .framer-NwdCY.framer-v-1evl0mo .framer-13t9vwm > *, .framer-NwdCY.framer-v-1evl0mo .framer-1n27fmc > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-NwdCY.framer-v-1evl0mo .framer-13t9vwm > :first-child, .framer-NwdCY.framer-v-1evl0mo .framer-1n27fmc > :first-child, .framer-NwdCY.framer-v-1evl0mo .framer-652uwk > :first-child { margin-top: 0px; } .framer-NwdCY.framer-v-1evl0mo .framer-13t9vwm > :last-child, .framer-NwdCY.framer-v-1evl0mo .framer-1n27fmc > :last-child, .framer-NwdCY.framer-v-1evl0mo .framer-652uwk > :last-child { margin-bottom: 0px; } .framer-NwdCY.framer-v-1evl0mo .framer-652uwk > * { margin: 0px; margin-bottom: calc(72px / 2); margin-top: calc(72px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,'.framer-NwdCY[data-border=\"true\"]::after, .framer-NwdCY [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 327\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"aTHdSfHDG\":{\"layout\":[\"fixed\",\"auto\"]},\"tJLVNJjPf\":{\"layout\":[\"fixed\",\"auto\"]},\"J9PZg7_ft\":{\"layout\":[\"fixed\",\"auto\"]},\"ZtDKfIVfp\":{\"layout\":[\"fixed\",\"auto\"]},\"glTZqpauz\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerXJ2AFy8gf=withCSS(Component,css,\"framer-NwdCY\");export default FramerXJ2AFy8gf;FramerXJ2AFy8gf.displayName=\"Footer\";FramerXJ2AFy8gf.defaultProps={height:327,width:1440};addPropertyControls(FramerXJ2AFy8gf,{variant:{options:[\"OK61EYYSf\",\"aTHdSfHDG\",\"tJLVNJjPf\",\"J9PZg7_ft\",\"ZtDKfIVfp\",\"glTZqpauz\"],optionTitles:[\"Desktop 1\",\"Desktop 2\",\"Tablet 1\",\"Mobile 1\",\"Tablet 2\",\"Mobile 2\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerXJ2AFy8gf,[{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\"}]},...FormSparkFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerXJ2AFy8gf\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"aTHdSfHDG\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"tJLVNJjPf\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"J9PZg7_ft\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ZtDKfIVfp\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"glTZqpauz\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"1440\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"327\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./XJ2AFy8gf.map"],
  "mappings": "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",
  "names": ["emailRegex", "validateEmail", "email", "FormSpark", "withCSS", "formId", "withName", "name", "withEmail", "withMessage", "message", "layout", "inputs", "button", "style", "gap", "onSubmit", "props", "nameValue", "setName", "ye", "emailValue", "setEmail", "messageValue", "setMessage", "isNameError", "setNameError", "isEmailError", "setEmailError", "isMessageError", "setMessageError", "isLoading", "setLoading", "isSuccess", "setSuccess", "isCanvas", "se", "RenderTarget", "gridTemplateRows", "rows", "gridTemplateColumns", "cols", "fontFamily", "fontSize", "fontWeight", "useFontControls", "borderRadius", "useRadius", "paddingValue", "usePadding", "validateForm", "te", "error", "handleSubmit", "event", "data", "entries", "handleNameChange", "handleEmailChange", "handleMessageChange", "p", "motion", "containerStyles", "u", "defaultStyle", "addPropertyControls", "ControlType", "fontControls", "paddingControl", "borderRadiusControl", "FormSpark_default", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "FormSparkFonts", "getFonts", "FormSpark_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "isDisplayed", "isDisplayed1", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "u", "SVG", "RichText2", "ComponentViewportProvider", "Link", "css", "FramerXJ2AFy8gf", "withCSS", "XJ2AFy8gf_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts"]
}
