{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/PvdUUjlb9diQ9NhpYH8m/oYNL0QwB8U2aEZTBw8kI/FormSpark.js", "ssg:https://framerusercontent.com/modules/rawudvwV5CbzL49dxn0Z/yHJBD6oPetpiiWaK82Ug/PChojTFcd.js", "ssg:https://framerusercontent.com/modules/zjF5qYayoOajACO6Lpgx/V8sfOw9IKjSwxEkwu2a4/PChojTFcd.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\":{\"framerSupportedLayoutWidth\":\"fixed\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicHeight\":\"290\",\"framerIntrinsicWidth\":\"550\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./FormSpark.map", "// Generated by Framer (4991a04)\nimport{LazyValue}from\"framer\";const valuesByLocaleId={lAUgLZKll:new LazyValue(()=>import(\"./PChojTFcd-0.js\"))};export default function getLocalizedValue(key,locale){while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values.read()[key];if(value)return value;}locale=locale.fallback;}}function preload(locale){const promises=[];while(locale){const values=valuesByLocaleId[locale.id];if(values){const promise=values.preload();if(promise)promises.push(promise);}locale=locale.fallback;}if(promises.length>0)return Promise.all(promises);}export function usePreloadLocalizedValues(locale){const preloadPromise=preload(locale);if(preloadPromise)throw preloadPromise;}\nexport const __FramerMetadata__ = {\"exports\":{\"usePreloadLocalizedValues\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (4991a04)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentPresetsProvider,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,getWhereExpressionFromPathVariables,Image,NotFoundError,PropertyOverrides,RichText,useCurrentPathVariables,useCustomCursors,useHydratedBreakpointVariants,useLocaleInfo,useQueryData,withCSS}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import Header from\"#framer/local/canvasComponent/bod_1Z_3W/bod_1Z_3W.js\";import FooterSection from\"#framer/local/canvasComponent/S3d51prJ7/S3d51prJ7.js\";import FormSpark from\"#framer/local/codeFile/B0Ar0H8/FormSpark.js\";import Cms from\"#framer/local/collection/JjGXlOjue/JjGXlOjue.js\";import*as sharedStyle4 from\"#framer/local/css/fGHfj5UOW/fGHfj5UOW.js\";import*as sharedStyle2 from\"#framer/local/css/K6yLR4gXI/K6yLR4gXI.js\";import*as sharedStyle3 from\"#framer/local/css/MkdlFFrE5/MkdlFFrE5.js\";import*as sharedStyle1 from\"#framer/local/css/wqdB5IV7E/wqdB5IV7E.js\";import*as sharedStyle from\"#framer/local/css/zJcSD4QEk/zJcSD4QEk.js\";import getLocalizedValue,{usePreloadLocalizedValues}from\"#framer/local/localization/PChojTFcd/PChojTFcd.js\";import metadataProvider from\"#framer/local/webPageMetadata/PChojTFcd/PChojTFcd.js\";const HeaderFonts=getFonts(Header);const FormSparkFonts=getFonts(FormSpark);const FooterSectionFonts=getFonts(FooterSection);const breakpoints={gN6KIleVM:\"(max-width: 767px)\",MNL7ITveU:\"(min-width: 1200px) and (max-width: 1439px)\",W8ldQ4lZa:\"(min-width: 1440px)\",YxQglmX3n:\"(min-width: 768px) and (max-width: 1199px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-H85xk\";const variantClassNames={gN6KIleVM:\"framer-v-revw6a\",MNL7ITveU:\"framer-v-1avljxs\",W8ldQ4lZa:\"framer-v-d796kq\",YxQglmX3n:\"framer-v-ev4nhe\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const metadata=metadataProvider();const humanReadableVariantMap={\"Large Desktop\":\"W8ldQ4lZa\",Desktop:\"MNL7ITveU\",Phone:\"gN6KIleVM\",Tablet:\"YxQglmX3n\"};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:\"W8ldQ4lZa\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const currentPathVariables=useCurrentPathVariables();const[currentRouteData]=useQueryData({from:{alias:\"PChojTFcd\",data:Cms,type:\"Collection\"},select:[{collection:\"PChojTFcd\",name:\"psbAU0uht\",type:\"Identifier\"},{collection:\"PChojTFcd\",name:\"yVac2ywaB\",type:\"Identifier\"},{collection:\"PChojTFcd\",name:\"gni_NB9u1\",type:\"Identifier\"}],where:getWhereExpressionFromPathVariables(currentPathVariables,\"PChojTFcd\")});const getFromCurrentRouteData=key=>{if(!currentRouteData)throw new NotFoundError(`No data matches path variables: ${JSON.stringify(currentPathVariables)}`);return currentRouteData[key];};var _getFromCurrentRouteData,_getFromCurrentRouteData1;const{style,className,layoutId,variant,psbAU0uht=(_getFromCurrentRouteData=getFromCurrentRouteData(\"psbAU0uht\"))!==null&&_getFromCurrentRouteData!==void 0?_getFromCurrentRouteData:\"\",yVac2ywaB=getFromCurrentRouteData(\"yVac2ywaB\"),gni_NB9u1=(_getFromCurrentRouteData1=getFromCurrentRouteData(\"gni_NB9u1\"))!==null&&_getFromCurrentRouteData1!==void 0?_getFromCurrentRouteData1:\"\",...restProps}=getProps(props);React.useEffect(()=>{const metadata1=metadataProvider(currentRouteData,activeLocale);if(metadata1.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata1.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata1.robots);document.head.appendChild(robotsTag);}}},[currentRouteData,activeLocale]);React.useInsertionEffect(()=>{const metadata1=metadataProvider(currentRouteData,activeLocale);document.title=metadata1.title||\"\";if(metadata1.viewport){var _document_querySelector;(_document_querySelector=document.querySelector('meta[name=\"viewport\"]'))===null||_document_querySelector===void 0?void 0:_document_querySelector.setAttribute(\"content\",metadata1.viewport);}const bodyCls=metadata1.bodyClassName;if(bodyCls){const body=document.body;body.classList.forEach(c=>c.startsWith(\"framer-body-\")&&body.classList.remove(c));body.classList.add(`${metadata1.bodyClassName}-framer-H85xk`);}return()=>{if(bodyCls)document.body.classList.remove(`${metadata1.bodyClassName}-framer-H85xk`);};},[currentRouteData,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const ref1=React.useRef(null);usePreloadLocalizedValues(activeLocale);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className];useCustomCursors({});var _getLocalizedValue,_getLocalizedValue1,_getLocalizedValue2,_getLocalizedValue3,_getLocalizedValue4,_getLocalizedValue5,_getLocalizedValue6;return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"W8ldQ4lZa\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:[/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-d796kq\",className),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:135,width:\"100vw\",y:0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1vqfc45-container\",layoutScroll:true,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gN6KIleVM:{variant:\"z4PH5xKhV\"}},children:/*#__PURE__*/_jsx(Header,{height:\"100%\",id:\"q4Ex4BwIg\",layoutId:\"q4Ex4BwIg\",lSFZjaZ4m:\"var(--token-a7f7ae5f-a181-442b-8823-be0ca1b170fe, rgb(255, 255, 255))\",style:{width:\"100%\"},variant:\"PYie5QMdg\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-140a5kg\",\"data-framer-name\":\"Banner Section\",name:\"Banner Section\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ijo0w0\",\"data-framer-name\":\"Container\",name:\"Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ybdoz6\",\"data-framer-name\":\"Banner Content Wrapper\",name:\"Banner Content Wrapper\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-fzkpsq\",\"data-framer-name\":\"Heading Block\",name:\"Heading Block\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1ag3u16\",\"data-styles-preset\":\"zJcSD4QEk\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-f512b2c0-ccff-4c1c-81ef-5b1a68ff0d48, rgb(0, 0, 0))\"},children:\"10 tips for managing your money in the new year\"})}),className:\"framer-c2b4aq\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],name:\"Title\",text:psbAU0uht,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gN6KIleVM:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:5504,intrinsicWidth:8256,loading:getLoadingLazyAtYPosition(229.2),pixelHeight:5504,pixelWidth:8256,sizes:\"calc(min(100vw, 520px) - 48px)\",...toResponsiveImage(yVac2ywaB)}},YxQglmX3n:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:5504,intrinsicWidth:8256,loading:getLoadingLazyAtYPosition(279.2),pixelHeight:5504,pixelWidth:8256,sizes:\"calc((min(100vw, 720px) - 48px) * 0.9985)\",...toResponsiveImage(yVac2ywaB)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:5504,intrinsicWidth:8256,loading:getLoadingLazyAtYPosition(312.2),pixelHeight:5504,pixelWidth:8256,sizes:\"calc((min(100vw, 1356px) - 60px) * 0.9985)\",...toResponsiveImage(yVac2ywaB)},className:\"framer-19yab14\",\"data-framer-name\":\"Image\",name:\"Image\"})})]})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-jng8qj\",\"data-framer-name\":\"Body Section\",name:\"Body Section\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-pkbmue\",\"data-framer-name\":\"Container\",name:\"Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1b8ftoz\",\"data-framer-name\":\"Body Content Wrapper\",name:\"Body Content Wrapper\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1fq9afq\",\"data-framer-name\":\"Body Text Block\",name:\"Body Text Block\",children:/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:gni_NB9u1,className:\"framer-1j847fh\",\"data-framer-name\":\"Content\",fonts:[\"Inter\"],name:\"Content\",stylesPresetsClassNames:{h2:\"framer-styles-preset-vlhi6s\",img:\"framer-styles-preset-fod4lc\"},verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1fm3o7v\",\"data-framer-name\":\"Form Box\",name:\"Form Box\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1nalqef\",\"data-framer-name\":\"Form Title Block\",name:\"Form Title Block\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue=getLocalizedValue(\"v0\",activeLocale))!==null&&_getLocalizedValue!==void 0?_getLocalizedValue:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-df4jnw\",\"data-styles-preset\":\"MkdlFFrE5\",style:{\"--framer-text-alignment\":\"center\"},children:\"Contact Us\"})}),className:\"framer-10m8ncr\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],name:\"Title\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue1=getLocalizedValue(\"v1\",activeLocale))!==null&&_getLocalizedValue1!==void 0?_getLocalizedValue1:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-sd6way\",\"data-styles-preset\":\"fGHfj5UOW\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-0c8fd507-faea-491a-8caf-ad6cd40c959b, rgb(23, 26, 31))\"},children:\"Let's start a conversation that goes beyond transactions, shaping a financial future tailored to your unique goals.\"})}),className:\"framer-1imu5wr\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],name:\"Text\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-rqfmdz-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{YxQglmX3n:{gap:30}},children:/*#__PURE__*/_jsx(FormSpark,{borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,button:{color:\"rgb(255, 255, 255)\",fill:\"var(--token-67de9bfa-cb82-43e8-b26e-1fd6c7216e76, rgb(31, 48, 78))\",fontWeight:600,label:(_getLocalizedValue2=getLocalizedValue(\"v5\",activeLocale))!==null&&_getLocalizedValue2!==void 0?_getLocalizedValue2:\"Sign Up\"},email:{placeholder:(_getLocalizedValue3=getLocalizedValue(\"v3\",activeLocale))!==null&&_getLocalizedValue3!==void 0?_getLocalizedValue3:\"Enter Email Address\",value:\"\"},font:true,fontFamily:(_getLocalizedValue4=getLocalizedValue(\"v6\",activeLocale))!==null&&_getLocalizedValue4!==void 0?_getLocalizedValue4:\"Satoshi\",fontSize:16,fontWeight:400,formId:\"\",gap:40,height:\"100%\",id:\"pb7CnX4gC\",inputs:{color:\"rgb(0, 0, 0)\",error:\"rgb(238, 68, 68)\",fill:\"var(--token-a7f7ae5f-a181-442b-8823-be0ca1b170fe, rgb(255, 255, 255))\",placeholderColor:\"var(--token-d8aebec7-127a-45a9-b7a0-7e4b0ca8d5d3, rgb(127, 137, 149))\"},isMixedBorderRadius:false,layout:\"vertical\",layoutId:\"pb7CnX4gC\",message:{placeholder:(_getLocalizedValue5=getLocalizedValue(\"v4\",activeLocale))!==null&&_getLocalizedValue5!==void 0?_getLocalizedValue5:\"Write Your Massage\",value:\"\"},nameField:{placeholder:(_getLocalizedValue6=getLocalizedValue(\"v2\",activeLocale))!==null&&_getLocalizedValue6!==void 0?_getLocalizedValue6:\"Enter Your Name\",value:\"\"},padding:24,paddingBottom:24,paddingLeft:24,paddingPerSide:false,paddingRight:24,paddingTop:24,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,width:\"100%\",withEmail:true,withMessage:true,withName:true})})})})]})]})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gN6KIleVM:{y:1893},YxQglmX3n:{y:1821}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:304,width:\"100vw\",y:1929,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1snk0qq-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gN6KIleVM:{variant:\"lVzuqy5Qz\"},MNL7ITveU:{variant:\"KFdAfpyz4\"},YxQglmX3n:{variant:\"QCtYfiZhs\"}},children:/*#__PURE__*/_jsx(FooterSection,{height:\"100%\",id:\"GfWmu1ZCo\",layoutId:\"GfWmu1ZCo\",style:{width:\"100%\"},variant:\"whR14OyrF\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:cx(serializationHash,...sharedStyleClassNames),id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",`.${metadata.bodyClassName}-framer-H85xk { background: white; }`,\".framer-H85xk.framer-1fbcoi1, .framer-H85xk .framer-1fbcoi1 { display: block; }\",\".framer-H85xk.framer-d796kq { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1440px; }\",\".framer-H85xk .framer-1vqfc45-container { flex: none; height: auto; left: 50%; position: fixed; top: 0px; transform: translateX(-50%); width: 100%; z-index: 10; }\",\".framer-H85xk .framer-140a5kg { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 200px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-H85xk .framer-1ijo0w0, .framer-H85xk .framer-pkbmue { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; max-width: 1356px; overflow: visible; padding: 0px 30px 0px 30px; position: relative; width: 100%; }\",\".framer-H85xk .framer-ybdoz6 { align-content: center; align-items: center; background-color: var(--token-a7f7ae5f-a181-442b-8823-be0ca1b170fe, #ffffff); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 33px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-H85xk .framer-fzkpsq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; max-width: 1000px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-H85xk .framer-c2b4aq { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-H85xk .framer-19yab14 { aspect-ratio: 2.265734265734266 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 572px); overflow: hidden; position: relative; width: 100%; }\",\".framer-H85xk .framer-jng8qj { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 82px 0px 117px 0px; position: relative; width: 100%; }\",\".framer-H85xk .framer-1b8ftoz { 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: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-H85xk .framer-1fq9afq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 61px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 57%; }\",\".framer-H85xk .framer-1j847fh { --framer-paragraph-spacing: 32px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-H85xk .framer-1fm3o7v { align-content: center; align-items: center; background-color: var(--token-636a3fe4-9f0f-4ae1-a43c-60a743a1245b, #eaedf0); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: hidden; padding: 24px; position: relative; width: 33%; }\",\".framer-H85xk .framer-1nalqef { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-H85xk .framer-10m8ncr, .framer-H85xk .framer-1imu5wr { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-H85xk .framer-rqfmdz-container { aspect-ratio: 0.6607773851590106 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 575px); position: relative; width: 100%; }\",\".framer-H85xk .framer-1snk0qq-container { flex: none; height: auto; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-H85xk.framer-d796kq, .framer-H85xk .framer-140a5kg, .framer-H85xk .framer-1ijo0w0, .framer-H85xk .framer-ybdoz6, .framer-H85xk .framer-fzkpsq, .framer-H85xk .framer-jng8qj, .framer-H85xk .framer-pkbmue, .framer-H85xk .framer-1fq9afq, .framer-H85xk .framer-1fm3o7v, .framer-H85xk .framer-1nalqef { gap: 0px; } .framer-H85xk.framer-d796kq > *, .framer-H85xk .framer-1ijo0w0 > *, .framer-H85xk .framer-jng8qj > *, .framer-H85xk .framer-pkbmue > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-H85xk.framer-d796kq > :first-child, .framer-H85xk .framer-140a5kg > :first-child, .framer-H85xk .framer-1ijo0w0 > :first-child, .framer-H85xk .framer-ybdoz6 > :first-child, .framer-H85xk .framer-fzkpsq > :first-child, .framer-H85xk .framer-jng8qj > :first-child, .framer-H85xk .framer-pkbmue > :first-child, .framer-H85xk .framer-1fq9afq > :first-child, .framer-H85xk .framer-1fm3o7v > :first-child, .framer-H85xk .framer-1nalqef > :first-child { margin-top: 0px; } .framer-H85xk.framer-d796kq > :last-child, .framer-H85xk .framer-140a5kg > :last-child, .framer-H85xk .framer-1ijo0w0 > :last-child, .framer-H85xk .framer-ybdoz6 > :last-child, .framer-H85xk .framer-fzkpsq > :last-child, .framer-H85xk .framer-jng8qj > :last-child, .framer-H85xk .framer-pkbmue > :last-child, .framer-H85xk .framer-1fq9afq > :last-child, .framer-H85xk .framer-1fm3o7v > :last-child, .framer-H85xk .framer-1nalqef > :last-child { margin-bottom: 0px; } .framer-H85xk .framer-140a5kg > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-H85xk .framer-ybdoz6 > * { margin: 0px; margin-bottom: calc(33px / 2); margin-top: calc(33px / 2); } .framer-H85xk .framer-fzkpsq > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-H85xk .framer-1fq9afq > * { margin: 0px; margin-bottom: calc(61px / 2); margin-top: calc(61px / 2); } .framer-H85xk .framer-1fm3o7v > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-H85xk .framer-1nalqef > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } }\",`@media (min-width: 1200px) and (max-width: 1439px) { .${metadata.bodyClassName}-framer-H85xk { background: white; } .framer-H85xk.framer-d796kq { width: 1200px; } .framer-H85xk .framer-fzkpsq { max-width: 650px; } .framer-H85xk .framer-19yab14 { height: var(--framer-aspect-ratio-supported, 502px); } .framer-H85xk .framer-rqfmdz-container { height: var(--framer-aspect-ratio-supported, 497px); }}`,`@media (min-width: 768px) and (max-width: 1199px) { .${metadata.bodyClassName}-framer-H85xk { background: white; } .framer-H85xk.framer-d796kq { width: 768px; } .framer-H85xk .framer-140a5kg { padding: 160px 0px 0px 0px; } .framer-H85xk .framer-1ijo0w0, .framer-H85xk .framer-pkbmue { max-width: 720px; padding: 0px 24px 0px 24px; } .framer-H85xk .framer-ybdoz6 { gap: 40px; } .framer-H85xk .framer-19yab14 { height: var(--framer-aspect-ratio-supported, 296px); } .framer-H85xk .framer-jng8qj { padding: 70px 0px 70px 0px; } .framer-H85xk .framer-1b8ftoz { align-content: center; align-items: center; flex-direction: column; gap: 60px; justify-content: flex-start; } .framer-H85xk .framer-1fq9afq { gap: 40px; width: 100%; } .framer-H85xk .framer-1fm3o7v { gap: 40px; width: 56%; } .framer-H85xk .framer-rqfmdz-container { aspect-ratio: unset; height: 414px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-H85xk .framer-ybdoz6, .framer-H85xk .framer-1b8ftoz, .framer-H85xk .framer-1fq9afq, .framer-H85xk .framer-1fm3o7v { gap: 0px; } .framer-H85xk .framer-ybdoz6 > *, .framer-H85xk .framer-1fq9afq > *, .framer-H85xk .framer-1fm3o7v > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-H85xk .framer-ybdoz6 > :first-child, .framer-H85xk .framer-1b8ftoz > :first-child, .framer-H85xk .framer-1fq9afq > :first-child, .framer-H85xk .framer-1fm3o7v > :first-child { margin-top: 0px; } .framer-H85xk .framer-ybdoz6 > :last-child, .framer-H85xk .framer-1b8ftoz > :last-child, .framer-H85xk .framer-1fq9afq > :last-child, .framer-H85xk .framer-1fm3o7v > :last-child { margin-bottom: 0px; } .framer-H85xk .framer-1b8ftoz > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } }}`,`@media (max-width: 767px) { .${metadata.bodyClassName}-framer-H85xk { background: white; } .framer-H85xk.framer-d796kq { width: 390px; } .framer-H85xk .framer-140a5kg { padding: 120px 0px 0px 0px; } .framer-H85xk .framer-1ijo0w0, .framer-H85xk .framer-pkbmue { max-width: 520px; padding: 0px 24px 0px 24px; } .framer-H85xk .framer-ybdoz6 { gap: 30px; } .framer-H85xk .framer-fzkpsq { gap: 20px; max-width: unset; } .framer-H85xk .framer-19yab14 { height: var(--framer-aspect-ratio-supported, 151px); width: 100%; } .framer-H85xk .framer-jng8qj { padding: 60px 0px 60px 0px; } .framer-H85xk .framer-1b8ftoz { flex-direction: column; gap: 30px; justify-content: center; } .framer-H85xk .framer-1fq9afq { gap: 30px; width: 100%; } .framer-H85xk .framer-1fm3o7v { width: 100%; } .framer-H85xk .framer-rqfmdz-container { height: var(--framer-aspect-ratio-supported, 445px); } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-H85xk .framer-ybdoz6, .framer-H85xk .framer-fzkpsq, .framer-H85xk .framer-1b8ftoz, .framer-H85xk .framer-1fq9afq { gap: 0px; } .framer-H85xk .framer-ybdoz6 > *, .framer-H85xk .framer-1b8ftoz > *, .framer-H85xk .framer-1fq9afq > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-H85xk .framer-ybdoz6 > :first-child, .framer-H85xk .framer-fzkpsq > :first-child, .framer-H85xk .framer-1b8ftoz > :first-child, .framer-H85xk .framer-1fq9afq > :first-child { margin-top: 0px; } .framer-H85xk .framer-ybdoz6 > :last-child, .framer-H85xk .framer-fzkpsq > :last-child, .framer-H85xk .framer-1b8ftoz > :last-child, .framer-H85xk .framer-1fq9afq > :last-child { margin-bottom: 0px; } .framer-H85xk .framer-fzkpsq > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } }}`,...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 3042\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"MNL7ITveU\":{\"layout\":[\"fixed\",\"auto\"]},\"YxQglmX3n\":{\"layout\":[\"fixed\",\"auto\"]},\"gN6KIleVM\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerResponsiveScreen\n */const FramerPChojTFcd=withCSS(Component,css,\"framer-H85xk\");export default FramerPChojTFcd;FramerPChojTFcd.displayName=\"Service\";FramerPChojTFcd.defaultProps={height:3042,width:1440};addFonts(FramerPChojTFcd,[{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\"}]},...HeaderFonts,...FormSparkFonts,...FooterSectionFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerPChojTFcd\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"MNL7ITveU\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"YxQglmX3n\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"gN6KIleVM\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"1440\",\"framerIntrinsicHeight\":\"3042\",\"framerResponsiveScreen\":\"\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "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", "valuesByLocaleId", "LazyValue", "getLocalizedValue", "key", "locale", "values", "value", "preload", "promises", "promise", "usePreloadLocalizedValues", "preloadPromise", "HeaderFonts", "getFonts", "bod_1Z_3W_default", "FormSparkFonts", "FormSpark_default", "FooterSectionFonts", "S3d51prJ7_default", "breakpoints", "serializationHash", "variantClassNames", "toResponsiveImage", "value", "metadata", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "currentPathVariables", "useCurrentPathVariables", "currentRouteData", "useQueryData", "JjGXlOjue_default", "getWhereExpressionFromPathVariables", "getFromCurrentRouteData", "key", "NotFoundError", "_getFromCurrentRouteData", "_getFromCurrentRouteData1", "style", "className", "layoutId", "variant", "psbAU0uht", "yVac2ywaB", "gni_NB9u1", "restProps", "ue", "metadata1", "robotsTag", "ie", "_document_querySelector", "bodyCls", "body", "c", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "breakpoints", "gestureVariant", "ref1", "pe", "usePreloadLocalizedValues", "defaultLayoutId", "ae", "sharedStyleClassNames", "useCustomCursors", "_getLocalizedValue", "_getLocalizedValue1", "_getLocalizedValue2", "_getLocalizedValue3", "_getLocalizedValue4", "_getLocalizedValue5", "_getLocalizedValue6", "p", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "cx", "ComponentViewportProvider", "Container", "PropertyOverrides2", "bod_1Z_3W_default", "RichText2", "x", "getLoadingLazyAtYPosition", "Image2", "ComponentPresetsProvider", "getLocalizedValue", "FormSpark_default", "S3d51prJ7_default", "css", "FramerPChojTFcd", "withCSS", "PChojTFcd_default", "addFonts", "HeaderFonts", "FormSparkFonts", "FooterSectionFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
