{"version":3,"file":"sgVJlS8nv.90tU5YCP.mjs","names":["Component","PrimaryCTA","PrimaryCTAInfo","className","_Fragment","FormPlainTextInput","css"],"sources":["https:/framerusercontent.com/modules/mGRz3WuVJaY99cQDqcVz/jrA9Q0QscTsA7EFojjFQ/ContactFormSubmission.js","https:/framerusercontent.com/modules/Wt9QcS4WDrBm3EpMncRa/8MoI1sVFTa7DDSTqXr3p/sgVJlS8nv.js"],"sourcesContent":["import{jsx as _jsx}from\"react/jsx-runtime\";import{forwardRef}from\"react\";import{createStore}from\"https://framer.com/m/framer/store.js@^1.0.0\";// Learn more: https://www.framer.com/developers/overrides/\nconst useStore=createStore({background:\"#0099FF\",isSubmitting:false,submitMessage:\"\"});// HubSpot configuration - replace with your actual values\nconst HUBSPOT_PORTAL_ID=\"7933788\";const HUBSPOT_FORM_GUID=\"a956b0ca-f09f-4cf8-a398-dc17b4410063\";// Function to submit form data to HubSpot\nasync function submitToHubSpot(formData){try{console.log(formData);const payload={fields:[{name:\"email\",value:formData.email},{name:\"firstname\",value:formData.firstname},{name:\"lastname\",value:formData.lastname},{name:\"message\",value:formData.message},{name:\"newsletter\",value:formData.newsletter}]};console.log(\"Submitting to HubSpot:\",{url:`https://api.hsforms.com/submissions/v3/integration/submit/${HUBSPOT_PORTAL_ID}/${HUBSPOT_FORM_GUID}`,payload:payload});const response=await fetch(`https://api.hsforms.com/submissions/v3/integration/submit/${HUBSPOT_PORTAL_ID}/${HUBSPOT_FORM_GUID}`,{method:\"POST\",headers:{\"Content-Type\":\"application/json\"},body:JSON.stringify(payload)});// Log the response details\nconsole.log(\"Response status:\",response.status);console.log(\"Response headers:\",Object.fromEntries(response.headers.entries()));const responseData=await response.json();console.log(\"Response data:\",responseData);if(response.ok){return{success:true,message:\"Thank you! Your submission was successful.\"};}else{// Show the actual error from HubSpot\nconst errorMessage=responseData.message||responseData.errors?.[0]?.message||\"Unknown error\";console.error(\"HubSpot API error:\",responseData);return{success:false,message:`Submission failed: ${errorMessage}`};}}catch(error){console.error(\"HubSpot submission error:\",error);return{success:false,message:\"Network error. Please check your connection and try again.\"};}}// Main submit function for the button\nexport function withHubSpotSubmit(Component){return /*#__PURE__*/forwardRef((props,ref)=>{const[store,setStore]=useStore();const handleClick=async event=>{console.log(\"Submit button clicked!\");event.preventDefault();// Set loading state\nsetStore({isSubmitting:true,submitMessage:\"\"});try{// Find the form element\nconst form=event.target.closest(\"form\")||document.querySelector(\"form\");if(!form){console.error(\"No form found\");setStore({isSubmitting:false,submitMessage:\"Error: Form not found\"});return;}// Get form data\nconst formData=new FormData(form);const data={email:formData.get(\"email\"),firstname:formData.get(\"firstname\"),lastname:formData.get(\"lastname\"),message:formData.get(\"message\"),newsletter:formData.get(\"newsletter\")};console.log(\"Submitting data:\",data);// Validate required fields\nif(!data.email){setStore({isSubmitting:false,submitMessage:\"Please enter your email address\"});return;}// Submit to HubSpot\nconst result=await submitToHubSpot(data);setStore({isSubmitting:false,submitMessage:result.message});// Reset form if successful\nif(result.success){form.reset();}}catch(error){console.error(\"Submit error:\",error);setStore({isSubmitting:false,submitMessage:\"An unexpected error occurred. Please try again.\"});}};return /*#__PURE__*/_jsx(Component,{ref:ref,...props,onClick:handleClick,disabled:store.isSubmitting,style:{opacity:store.isSubmitting?.7:1,cursor:store.isSubmitting?\"not-allowed\":\"pointer\",...props.style}});});}// Override for submit button\nexport function withSubmitButton(Component){return /*#__PURE__*/forwardRef((props,ref)=>{const[store]=useStore();return /*#__PURE__*/_jsx(Component,{ref:ref,...props,disabled:store.isSubmitting,children:store.isSubmitting?\"Submitting...\":props.children||\"Submit\"});});}// Override to show submission status\nexport function withSubmitMessage(Component){return /*#__PURE__*/forwardRef((props,ref)=>{const[store]=useStore();console.log(store);if(!store.submitMessage)return null;return /*#__PURE__*/_jsx(Component,{ref:ref,...props,style:{color:store.submitMessage.includes(\"success\")?\"green\":\"red\",...props.style},children:store.submitMessage});});}\nexport const __FramerMetadata__ = {\"exports\":{\"withSubmitMessage\":{\"type\":\"reactHoc\",\"name\":\"withSubmitMessage\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withHubSpotSubmit\":{\"type\":\"reactHoc\",\"name\":\"withHubSpotSubmit\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withSubmitButton\":{\"type\":\"reactHoc\",\"name\":\"withSubmitButton\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./ContactFormSubmission.map","// Generated by Framer (8f9ffef)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,FormBooleanInput,FormContainer,FormPlainTextInput,getFonts,getFontsFromSharedStyle,RichText,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useVariantState,withCodeBoundaryForOverrides,withCSS,withMappedReactProps}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{withHubSpotSubmit,withSubmitMessage}from\"https://framerusercontent.com/modules/mGRz3WuVJaY99cQDqcVz/jrA9Q0QscTsA7EFojjFQ/ContactFormSubmission.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/2q69SZZDTwwOtH4qS4BA/rcrvpO6EFwOe9jBxtCjy/PhMIq4ozm.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/GkDFJvw8BSQP0R1W1AWh/TzsBGkbKK6HHuuxUCSRj/RL5cN0Xah.js\";import PrimaryCTA,*as PrimaryCTAInfo from\"https://framerusercontent.com/modules/bYvC0VIZUiAW10nP9dmQ/XdfmzJREL6iuoS2xm0pc/Ggnjm28yw.js\";const PrimaryCTAFonts=getFonts(PrimaryCTA);const PrimaryCTAWithHubSpotSubmitldz7dsWithMappedReactProps1xeoovv=withMappedReactProps(withCodeBoundaryForOverrides(PrimaryCTA,{nodeId:\"fNQ5YVXmz\",override:withHubSpotSubmit,scopeId:\"sgVJlS8nv\"}),PrimaryCTAInfo);const RichTextWithSubmitMessage1wiubqr=withCodeBoundaryForOverrides(RichText,{nodeId:\"rVBOVPjvw\",override:withSubmitMessage,scopeId:\"sgVJlS8nv\"});const cycleOrder=[\"fJIRK7S_m\",\"WmshA1eJM\"];const serializationHash=\"framer-9a71q\";const variantClassNames={fJIRK7S_m:\"framer-v-1u5e08e\",WmshA1eJM:\"framer-v-8t6un9\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Desktop:\"fJIRK7S_m\",Phone:\"WmshA1eJM\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"fJIRK7S_m\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"fJIRK7S_m\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1u5e08e\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"fJIRK7S_m\",ref:refBinding,style:{backgroundColor:\"rgb(255, 255, 255)\",...style},...addPropertyOverrides({WmshA1eJM:{\"data-framer-name\":\"Phone\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1d4uoma\",layoutDependency:layoutDependency,layoutId:\"Xv9mc0yzr\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-105q895\",layoutDependency:layoutDependency,layoutId:\"B_LzOspQT\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{className:\"framer-styles-preset-1xkqcy4\",\"data-styles-preset\":\"RL5cN0Xah\",children:\"Contact Us\"})}),className:\"framer-iemu97\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"EM72ilVdW\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1hyz5t5\",\"data-styles-preset\":\"PhMIq4ozm\",children:\"Call in the experts to solve your hardest perception problems. Grow your product and scale quickly.\"})}),className:\"framer-jth0u4\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"LcIfyJ5lf\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1hyz5t5\",\"data-styles-preset\":\"PhMIq4ozm\",style:{\"--framer-text-alignment\":\"left\"},children:/*#__PURE__*/_jsx(motion.em,{children:\"Note: Tangram Robotics needs the contact information you provide to us to contact you about our products and services. You may unsubscribe from these communications at any time.\"})})}),className:\"framer-tphmwq\",fonts:[\"Inter\",\"Inter-Italic\"],layoutDependency:layoutDependency,layoutId:\"wRaPTpVjx\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(FormContainer,{action:\"https://api.framer.com/forms/v1/forms/eb2463e3-ed57-44b9-968e-91c5b21ed74d/submit\",className:\"framer-wgln6o\",layoutDependency:layoutDependency,layoutId:\"SnFZds0eU\",nodeId:\"SnFZds0eU\",children:formState=>/*#__PURE__*/_jsxs(_Fragment,{children:[/*#__PURE__*/_jsxs(motion.label,{className:\"framer-1d31ohg\",layoutDependency:layoutDependency,layoutId:\"aganlVp8v\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1hyz5t5\",\"data-styles-preset\":\"PhMIq4ozm\",children:\"First Name\"})}),className:\"framer-1ipts16\",\"data-framer-name\":\"First Name\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"hpbJ1YxyR\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-82tij2\",inputName:\"firstname\",layoutDependency:layoutDependency,layoutId:\"k6BcCSzwB\",placeholder:\"Jane\",required:true,style:{\"--framer-input-background\":\"rgba(187, 187, 187, 0.15)\",\"--framer-input-border-bottom-width\":\"1px\",\"--framer-input-border-color\":\"rgba(136, 136, 136, 0.1)\",\"--framer-input-border-left-width\":\"1px\",\"--framer-input-border-radius-bottom-left\":\"10px\",\"--framer-input-border-radius-bottom-right\":\"10px\",\"--framer-input-border-radius-top-left\":\"10px\",\"--framer-input-border-radius-top-right\":\"10px\",\"--framer-input-border-right-width\":\"1px\",\"--framer-input-border-style\":\"solid\",\"--framer-input-border-top-width\":\"1px\",\"--framer-input-font-color\":\"rgb(51, 51, 51)\",\"--framer-input-icon-color\":\"rgb(153, 153, 153)\",\"--framer-input-placeholder-color\":\"rgb(153, 153, 153)\"},type:\"text\"})]}),/*#__PURE__*/_jsxs(motion.label,{className:\"framer-16n4l2u\",layoutDependency:layoutDependency,layoutId:\"NBlkZB3U3\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1hyz5t5\",\"data-styles-preset\":\"PhMIq4ozm\",children:\"Last Name\"})}),className:\"framer-3clc5q\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"HqO3LiyKE\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-1bm8zoi\",inputName:\"lastname\",layoutDependency:layoutDependency,layoutId:\"Z2j9o959i\",placeholder:\"Smith\",required:true,style:{\"--framer-input-background\":\"rgba(187, 187, 187, 0.15)\",\"--framer-input-border-bottom-width\":\"1px\",\"--framer-input-border-color\":\"rgba(136, 136, 136, 0.1)\",\"--framer-input-border-left-width\":\"1px\",\"--framer-input-border-radius-bottom-left\":\"10px\",\"--framer-input-border-radius-bottom-right\":\"10px\",\"--framer-input-border-radius-top-left\":\"10px\",\"--framer-input-border-radius-top-right\":\"10px\",\"--framer-input-border-right-width\":\"1px\",\"--framer-input-border-style\":\"solid\",\"--framer-input-border-top-width\":\"1px\",\"--framer-input-font-color\":\"rgb(51, 51, 51)\",\"--framer-input-icon-color\":\"rgb(153, 153, 153)\",\"--framer-input-placeholder-color\":\"rgb(153, 153, 153)\"},type:\"text\"})]}),/*#__PURE__*/_jsxs(motion.label,{className:\"framer-1q1omnp\",layoutDependency:layoutDependency,layoutId:\"f7FQBsCI_\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1hyz5t5\",\"data-styles-preset\":\"PhMIq4ozm\",children:\"Email\"})}),className:\"framer-1czb7s7\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"myMf0s1fk\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-1v6ijnt\",inputName:\"email\",layoutDependency:layoutDependency,layoutId:\"Ldr8aSCIL\",placeholder:\"Janesmith@gmail.com\",required:true,style:{\"--framer-input-background\":\"rgba(187, 187, 187, 0.15)\",\"--framer-input-border-bottom-width\":\"1px\",\"--framer-input-border-color\":\"rgba(136, 136, 136, 0.1)\",\"--framer-input-border-left-width\":\"1px\",\"--framer-input-border-radius-bottom-left\":\"10px\",\"--framer-input-border-radius-bottom-right\":\"10px\",\"--framer-input-border-radius-top-left\":\"10px\",\"--framer-input-border-radius-top-right\":\"10px\",\"--framer-input-border-right-width\":\"1px\",\"--framer-input-border-style\":\"solid\",\"--framer-input-border-top-width\":\"1px\",\"--framer-input-font-color\":\"rgb(51, 51, 51)\",\"--framer-input-icon-color\":\"rgb(153, 153, 153)\",\"--framer-input-placeholder-color\":\"rgb(153, 153, 153)\"},type:\"email\"})]}),/*#__PURE__*/_jsxs(motion.label,{className:\"framer-1nssnyn\",layoutDependency:layoutDependency,layoutId:\"MVBcDtU9Z\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1hyz5t5\",\"data-styles-preset\":\"PhMIq4ozm\",children:\"Message\"})}),className:\"framer-eola1x\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"UfPJ1xBHO\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-1dawphy\",inputName:\"message\",layoutDependency:layoutDependency,layoutId:\"ex547UthD\",placeholder:\"How can we help?\",required:true,style:{\"--framer-input-background\":\"rgba(187, 187, 187, 0.15)\",\"--framer-input-border-bottom-width\":\"1px\",\"--framer-input-border-color\":\"rgba(136, 136, 136, 0.1)\",\"--framer-input-border-left-width\":\"1px\",\"--framer-input-border-radius-bottom-left\":\"10px\",\"--framer-input-border-radius-bottom-right\":\"10px\",\"--framer-input-border-radius-top-left\":\"10px\",\"--framer-input-border-radius-top-right\":\"10px\",\"--framer-input-border-right-width\":\"1px\",\"--framer-input-border-style\":\"solid\",\"--framer-input-border-top-width\":\"1px\",\"--framer-input-font-color\":\"rgb(51, 51, 51)\",\"--framer-input-icon-color\":\"rgb(153, 153, 153)\",\"--framer-input-placeholder-color\":\"rgb(153, 153, 153)\"},type:\"textarea\"})]}),/*#__PURE__*/_jsxs(motion.label,{className:\"framer-dxsohw\",layoutDependency:layoutDependency,layoutId:\"uB_0xBgBQ\",children:[/*#__PURE__*/_jsx(FormBooleanInput,{className:\"framer-13xwh9u\",defaultChecked:false,inputName:\"newsletter\",layoutDependency:layoutDependency,layoutId:\"FjlnN8Fs0\",style:{\"--framer-input-background\":\"rgba(187, 187, 187, 0.2)\",\"--framer-input-boolean-checked-background\":\"rgb(0, 153, 255)\",\"--framer-input-border-bottom-width\":\"1px\",\"--framer-input-border-color\":\"rgba(136, 136, 136, 0.2)\",\"--framer-input-border-left-width\":\"1px\",\"--framer-input-border-radius-bottom-left\":\"4px\",\"--framer-input-border-radius-bottom-right\":\"4px\",\"--framer-input-border-radius-top-left\":\"4px\",\"--framer-input-border-radius-top-right\":\"4px\",\"--framer-input-border-right-width\":\"1px\",\"--framer-input-border-style\":\"solid\",\"--framer-input-border-top-width\":\"1px\",\"--framer-input-icon-color\":\"rgb(255, 255, 255)\"},type:\"checkbox\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1hyz5t5\",\"data-styles-preset\":\"PhMIq4ozm\",children:\"Subscribe to Newsletter\"})}),className:\"framer-1fnp042\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"WoHCV1u9P\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,width:`max((max(${componentViewport?.width||\"100vw\"} - 80px, 1px) - 40px) / 2, 1px)`,...addPropertyOverrides({WmshA1eJM:{width:`max(${componentViewport?.width||\"100vw\"} - 80px, 1px)`}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-ldz7ds-container\",layoutDependency:layoutDependency,layoutId:\"fNQ5YVXmz-container\",nodeId:\"fNQ5YVXmz\",rendersWithMotion:true,scopeId:\"sgVJlS8nv\",children:/*#__PURE__*/_jsx(PrimaryCTAWithHubSpotSubmitldz7dsWithMappedReactProps1xeoovv,{height:\"100%\",id:\"fNQ5YVXmz\",layoutId:\"fNQ5YVXmz\",style:{height:\"100%\",width:\"100%\"},variant:\"VCWXElqP5\",width:\"100%\",WOHdaRJ75:\"Submit\"})})}),/*#__PURE__*/_jsx(RichTextWithSubmitMessage1wiubqr,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0dsYWNpYWwgSW5kaWZmZXJlbmNlIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Glacial Indifference Regular\", \"Glacial Indifference Regular Placeholder\", sans-serif',\"--framer-text-alignment\":\"center\"},children:\"status\"})}),className:\"framer-1wiubqr\",\"data-framer-name\":\"Status\",fonts:[\"CUSTOM;Glacial Indifference Regular\"],layoutDependency:layoutDependency,layoutId:\"rVBOVPjvw\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-9a71q.framer-tegxij, .framer-9a71q .framer-tegxij { display: block; }\",\".framer-9a71q.framer-1u5e08e { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 20px 40px 40px 40px; position: relative; width: 810px; }\",\".framer-9a71q .framer-1d4uoma { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 40px 40px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-9a71q .framer-105q895 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; max-width: 300px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-9a71q .framer-iemu97 { flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-9a71q .framer-jth0u4, .framer-9a71q .framer-tphmwq, .framer-9a71q .framer-1wiubqr { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-9a71q .framer-wgln6o { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-9a71q .framer-1d31ohg, .framer-9a71q .framer-16n4l2u, .framer-9a71q .framer-1q1omnp, .framer-9a71q .framer-1nssnyn { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 100%; }\",\".framer-9a71q .framer-1ipts16, .framer-9a71q .framer-3clc5q, .framer-9a71q .framer-1czb7s7, .framer-9a71q .framer-eola1x { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",'.framer-9a71q .framer-82tij2, .framer-9a71q .framer-1bm8zoi, .framer-9a71q .framer-1v6ijnt { --framer-input-focused-border-color: #0099ff; --framer-input-focused-border-style: solid; --framer-input-focused-border-width: 1px; --framer-input-font-family: \"Open Sans\"; --framer-input-font-letter-spacing: 0em; --framer-input-font-line-height: 1.2em; --framer-input-font-size: 14px; --framer-input-font-weight: 400; --framer-input-padding: 12px; flex: none; height: 40px; position: relative; width: 100%; }','.framer-9a71q .framer-1dawphy { --framer-input-focused-border-color: #0099ff; --framer-input-focused-border-style: solid; --framer-input-focused-border-width: 1px; --framer-input-font-family: \"Open Sans\"; --framer-input-font-letter-spacing: 0em; --framer-input-font-line-height: 1.2em; --framer-input-font-size: 14px; --framer-input-font-weight: 400; --framer-input-padding: 12px; --framer-input-wrapper-height: auto; --framer-textarea-resize: vertical; flex: none; height: auto; min-height: 200px; position: relative; width: 100%; }',\".framer-9a71q .framer-dxsohw { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 100%; }\",\".framer-9a71q .framer-13xwh9u { --framer-input-focused-border-color: #0099ff; --framer-input-focused-border-style: solid; --framer-input-focused-border-width: 1px; aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 16px); position: relative; width: 16px; }\",\".framer-9a71q .framer-1fnp042 { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre; width: auto; }\",\".framer-9a71q .framer-ldz7ds-container { flex: none; height: 40px; position: relative; width: 100%; }\",\".framer-9a71q.framer-v-8t6un9.framer-1u5e08e { width: 320px; }\",\".framer-9a71q.framer-v-8t6un9 .framer-1d4uoma { flex-direction: column; }\",\".framer-9a71q.framer-v-8t6un9 .framer-105q895, .framer-9a71q.framer-v-8t6un9 .framer-wgln6o { flex: none; width: 100%; }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 727\n * @framerIntrinsicWidth 810\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"WmshA1eJM\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramersgVJlS8nv=withCSS(Component,css,\"framer-9a71q\");export default FramersgVJlS8nv;FramersgVJlS8nv.displayName=\"Contact Form\";FramersgVJlS8nv.defaultProps={height:727,width:810};addPropertyControls(FramersgVJlS8nv,{variant:{options:[\"fJIRK7S_m\",\"WmshA1eJM\"],optionTitles:[\"Desktop\",\"Phone\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramersgVJlS8nv,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/CfMzU8w2e7tHgF4T4rATMPuWosA.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/867QObYax8ANsfX4TGEVU9YiCM.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Oyn2ZbENFdnW7mt2Lzjk1h9Zb9k.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/cdAe8hgZ1cMyLu9g005pAW3xMo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/DOfvtmE1UplCq161m6Hj8CSQYg.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vFzuJY0c65av44uhEKB6vyjFMg.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/tKtBcDnBMevsEEJKdNGhhkLzYo.woff2\",weight:\"400\"},{family:\"Open Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/opensans/v43/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjZ0C4iY1M2xLER.woff2\",weight:\"400\"},{family:\"Glacial Indifference Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/h1rRkphz8NOXjZKULGnYM1wnhME.woff2\"}]},...PrimaryCTAFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramersgVJlS8nv\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"WmshA1eJM\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"727\",\"framerIntrinsicWidth\":\"810\",\"framerAutoSizeImages\":\"true\",\"framerColorSyntax\":\"true\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],"mappings":"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"}